diff --git a/README.md b/README.md index 6f92da7..4413429 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,83 @@ docker compose up -d bundle exec ruby map/step-01.rb ``` -### Step 2 - \ No newline at end of file +### Step 2 - Generate Objects + +Continents and countries should be objects instead of literals. To this end, we can transform the following data: + +``` +base:location\/ARG-BahBlanca-00 a base:location; + base:location\#City "Bahia Blanca"; + base:location\#Continent "South America"; + base:location\#Country "Argentina"; + base:location\#GeoNamesID "3865086"; + base:location\#IDLocation "ARG-BahBlanca-00"; + base:location\#latitude -3.87253e1; + base:location\#longitude -6.22742e1; + base:location\#wikidata "Q54108"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bah%C3%ADa_Blanca" . +``` + +Into the following data: + +``` +base:location\/ARG-BahBlanca-00 a base:location; + base:location\#City base:City-BahiaBlanca; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3865086"; + base:location\#IDLocation "ARG-BahBlanca-00"; + base:location\#latitude -3.87253e1; + base:location\#longitude -6.22742e1; + base:location\#wikidata "Q54108"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bah%C3%ADa_Blanca" . + +base:City-BahiaBlanca a base:City; + rdfs:label "Bahia Blanca"@en . + +base:Continent-SouthAmerica a base:Continent; + rdfs:label "South America"@en . + +base:Country-Argentina a base:Country; + rdfs:label "Argentina"@en . +``` + +Notice that all ranges of property `rdfs:label` are stated to be in English. + +Generate an SPARQL UPDATE query that do this tranformation for all elements of the table and save it a new folder called `updates`. Do the same with the other tables, proposing which columns should be defined as objects. For every table define a different SPARQL UPDATE query and to be saved in the `updates` folder. Enumerate these generated queries adding a prefix number like 001, 002, 003, and so on. + +After generating the update queries, generate a Ruby script that executes the updates on the RDF graph generated in the previous step and generates a new RDF graph to be saved: `data/graph-02.ttl`. + +#### Summary + +19 SPARQL UPDATE queries in `updates/` transform literal values into typed objects across all tables: + +| Query | Table | Column | Object type | +|-------|-------|--------|-------------| +| 001 | location | Continent | Continent | +| 002 | location | Country | Country | +| 003 | location | State | State | +| 004 | location | City | City | +| 005 | migration_table | reason | MigrationReason | +| 006 | migration_table | reason2 | MigrationReason | +| 007 | organisation | InstType | InstitutionType | +| 008 | person | gender | Gender | +| 009 | person | Nametype | Nametype | +| 010 | person | Importsource | ImportSource | +| 011 | person_profession | Eprofession | Profession | +| 012 | personnames | Nametype | Nametype | +| 013 | relationship | Relationshiptype | RelationshipType | +| 014 | relationship | relationshiptype_precise | RelationshipTypePrecise | +| 015 | religions | religion | Religion | +| 016 | work | Profession | Profession | +| 017 | work | Profession2 | Profession | +| 018 | work | Profession3 | Profession | +| 019 | work | EmploymentType | EmploymentType | + +Each query replaces a literal value with an object reference and creates the object with `rdf:type` and `rdfs:label` (in English). The script `map/step-02.rb` loads `data/graph-01.ttl`, applies all queries in order, and writes `data/graph-02.ttl` (164,632 triples). + +To run: + +```sh +bundle exec ruby map/step-02.rb +``` \ No newline at end of file diff --git a/data/graph-01.ttl b/data/graph-01.ttl new file mode 100644 index 0000000..8e88c30 --- /dev/null +++ b/data/graph-01.ttl @@ -0,0 +1,182044 @@ +@prefix rdf: . +@prefix xsd: . + + a ; + "Bahia Blanca"; + "South America"; + "Argentina"; + "3865086"; + "ARG-BahBlanca-00"; + -3.87253e1; + -6.22742e1; + "Q54108"; + "https://en.wikipedia.org/wiki/Bah%C3%ADa_Blanca" . + + a ; + "Carhué"; + "South America"; + "Argentina"; + "3862634"; + "ARG-Carhue-00"; + -3.71796e1; + -6.27601e1; + "Q54117"; + "https://en.wikipedia.org/wiki/Carhu%C3%A9" . + + a ; + "Ituzaingó"; + "South America"; + "Argentina"; + "3433359"; + "ARG-Ituz-00"; + "Buenos Aires Province"; + -3.46522e1; + -5.8675e1; + "Q615244"; + "https://en.wikipedia.org/wiki/Ituzaing%C3%B3,_Buenos_Aires" . + + a ; + "Recoleta (Buenos Aires)"; + "South America"; + "Argentina"; + "3429595"; + "ARG-Reco-00"; + -3.45906e1; + -5.83906e1; + "Q1010253"; + "https://en.wikipedia.org/wiki/Recoleta,_Buenos_Aires" . + + a ; + "Traunsee"; + "Europe"; + "Austria"; + "2763410"; + "AT-Traun-00"; + 4.78667e1; + 1.38e1; + "Q250907"; + "https://en.wikipedia.org/wiki/Traunsee" . + + a ; + "Wieselburg"; + "Europe"; + "Austria"; + "2761314"; + "AT-Wieslb-00"; + 4.81333e1; + 1.51389e1; + "Q661734"; + "https://en.wikipedia.org/wiki/Wieselburg" . + + a ; + "Baku"; + "Asia"; + "Azerbaijan"; + "Aze-DiJeSt-148"; + 4.03667e1; + 4.98352e1; + "Q9248"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Belo Horizonte"; + "South America"; + "Brazil"; + "3470127"; + "BR-BelHor-00"; + -1.99167e1; + -4.39333e1; + "Q42800"; + "https://en.wikipedia.org/wiki/Belo_Horizonte" . + + a ; + "Juiz de Fora"; + "South America"; + "Brazil"; + "3459505"; + "BR-JuFor-00"; + -2.17523e1; + -4.33509e1; + "Q193019"; + "https://en.wikipedia.org/wiki/Juiz_de_Fora" . + + a ; + "Broža"; + "Europe"; + "Belarus"; + "BY-Broz-00"; + "Babrujsk"; + 5.29658e1; + 2.9115e1; + "Q16274643" . + + a ; + "Lunna"; + "Europe"; + "Belarus"; + "625816"; + "Bel-DiJeSt-1"; + 5.34547e1; + 2.42614e1; + "Q1011346"; + "https://en.wikipedia.org/wiki/Lunna,_Belarus" . + + a ; + "Vitebsk Region"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-53"; + 5.53333e1; + 2.9e1; + "Q185700"; + "https://en.wikipedia.org/wiki/" . + + a ; + "St. Catharines"; + "North America"; + "Canada"; + "CA-StCath-00"; + "Ontario"; + 4.31583e1; + -7.92458e1; + "Q126805" . + + a ; + "Vevey"; + "Europe"; + "Switzerland"; + "CH-Veve-00"; + 4.64592e1; + 6.84194e0; + "Q68160"; + "https://de.wikipedia.org/wiki/Vevey" . + + a ; + "Mariafeld (Meilen)"; + "Europe"; + "Switzerland"; + "2659703"; + "CH-Zur-01"; + "Zürich"; + 4.72705e1; + 8.641389999999999e0; + "Q68261"; + "https://en.wikipedia.org/wiki/Feldmeilen" . + + a ; + "Harbin"; + "Asia"; + "China"; + "CN-DiJeSt-116"; + 4.575e1; + 1.26633e2; + "Q42956"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Tianjin"; + "Asia"; + "China"; + "1792947"; + "CN-Tian-00"; + 3.91333e1; + 1.17183e2; + "Q11736"; + "https://en.wikipedia.org/wiki/Tianjin" . + + a ; + "Barranquilla"; + "South America"; + "Columbia"; + "3689147"; + "COL-Barranq-00"; + 1.09727e1; + -7.47958e1; + "Q62823"; + "https://en.wikipedia.org/wiki/Barranquilla" . + + a ; + "Bogotá"; + "South America"; + "Columbia"; + "3688689"; + "COL-Bogot-00"; + 4.59889e0; + -7.40808e1; + "Q2841"; + "https://en.wikipedia.org/wiki/Bogot%C3%A1" . + + a ; + "South America"; + "Costa Rica"; + "3624060"; + "CSTR-00"; + 1.0e1; + -8.4e1; + "Q800"; + "https://en.wikipedia.org/wiki/Costa_Rica" . + + a ; + "Libeň (Prague)"; + "Europe"; + "Czech Republic"; + "3071966"; + "CZ-Prag-01"; + 5.01114e1; + 1.44733e1; + "Q2003486"; + "https://de.wikipedia.org/wiki/Libe%C5%88_(Prag)" . + + a ; + "Stráž"; + "Europe"; + "Czech Republic"; + "CZ-Straz-00"; + 4.8977e1; + 1.35824e1; + "Q30514" . + + a ; + "San Salvador"; + "South America"; + "El Salvador"; + "3583361"; + "ELSL-SanSalv-00"; + 1.36833e1; + -8.91833e1; + "Q3110"; + "https://en.wikipedia.org/wiki/San_Salvador" . + + a ; + "Leamington Spa"; + "Europe"; + "England"; + "EN-LeamSpa-00"; + 5.22919e1; + -1.53583e0; + "Q546635"; + "https://en.wikipedia.org/wiki/Leamington_Spa" . + + a ; + "Leeds"; + "Europe"; + "England"; + "EN-Leeds-00"; + 5.37975e1; + -1.54361e0; + "Q39121"; + "https://en.wikipedia.org/wiki/Leeds" . + + a ; + "León"; + "Europe"; + "Spain"; + "3118532"; + "ES-Leon-00"; + 4.25997e1; + -5.57167e0; + "Q15699"; + "https://en.wikipedia.org/wiki/Le%C3%B3n,_Spain" . + + a ; + "Martínez"; + "Europe"; + "Spain"; + "ES-Martin-00"; + 4.06308e1; + -5.34833e0; + "Q1769968" . + + a ; + "Toulon"; + "Europe"; + "France"; + "2972328"; + "FR-Toul-00"; + 4.31258e1; + 5.93056e0; + "Q44160"; + "https://en.wikipedia.org/wiki/Toulon" . + + a ; + "Ballenstedt"; + "Europe"; + "Germany"; + "2953060"; + "GER-Ballen-00"; + 5.172e1; + 1.12375e1; + "Q50886"; + "https://en.wikipedia.org/wiki/Ballenstedt" . + + a ; + "Middoge (Wangerland)"; + "Europe"; + "Germany"; + "2871247"; + "GER-Jev-00"; + 5.36347e1; + 7.8436e0; + "Q1931935"; + "https://en.wikipedia.org/wiki/Wangerland" . + + a ; + "Karlsbad"; + "Europe"; + "Germany"; + "2953481"; + "GER-Karslb-00"; + 4.89144e1; + 8.50639e0; + "Q542659"; + "https://en.wikipedia.org/wiki/Karlsbad_(Baden)" . + + a ; + "Langenargen"; + "Europe"; + "Germany"; + "2881263"; + "GER-Lang-00"; + 4.76e1; + 9.54167e0; + "Q532326"; + "https://en.wikipedia.org/wiki/Langenargen" . + + a ; + "Neuhaldensleben (Haldensleben)"; + "Europe"; + "Germany"; + "2911584"; + "GER-Neuh-00"; + 5.22833e1; + 1.14167e1; + "Q186557"; + "https://en.wikipedia.org/wiki/Haldensleben" . + + a ; + "Europe"; + "Greece"; + "GR-00"; + 3.9e1; + 2.2e1; + "Q41" . + + a ; + "Castlemaine"; + "Europe"; + "Ireland"; + "IE-Castl-00"; + "County Kerry"; + 5.21681e1; + -9.70083e0; + "Q3775979"; + "https://en.wikipedia.org/wiki/Castlemaine,_County_Kerry" . + + a ; + "Varanasi"; + "Europe"; + "India"; + "IN-Vara-00"; + 2.53185e1; + 8.29853e1; + "Q1321140"; + "https://de.wikipedia.org/wiki/Varanasi" . + + a ; + "Carate Urio"; + "Europe"; + "Italy"; + "6534414"; + "IT-CarUri-00"; + "Como"; + 4.58667e1; + 9.116669999999999e0; + "Q244231"; + "https://en.wikipedia.org/wiki/Carate_Urio" . + + a ; + "Gorizia"; + "Europe"; + "Italy"; + "3175986"; + "IT-Gori-00"; + 4.59333e1; + 1.36167e1; + "Q6596"; + "https://en.wikipedia.org/wiki/Gorizia" . + + a ; + "Robecco d'Oglio"; + "Europe"; + "Italy"; + "3169210"; + "IT-ROgLomb-00"; + 4.52667e1; + 1.00833e1; + "Q42245"; + "https://en.wikipedia.org/wiki/Robecco_d%27Oglio" . + + a ; + "Umbria"; + "Europe"; + "Italy"; + "IT-Umb-00"; + 4.31121e1; + 1.23888e1; + "Q1280"; + "https://en.wikipedia.org/wiki/Umbria" . + + a ; + "Asia"; + "Japan"; + "1862047"; + "JPN-Hyo-00"; + "Hyōgo Prefecture"; + 3.5e1; + 1.34916e2; + "Q130290"; + "https://en.wikipedia.org/wiki/Hy%C5%8Dgo_Prefecture" . + + a ; + "Kobe"; + "Asia"; + "Japan"; + "1859171"; + "JPN-Kobe-00"; + 3.46903e1; + 1.35196e2; + "Q48320"; + "https://en.wikipedia.org/wiki/Kobe" . + + a ; + "Europe"; + "Latvia"; + "460496"; + "LV-Cour-00"; + "Courland"; + 5.7e1; + 2.2e1; + "Q185072"; + "https://en.m.wikipedia.org/wiki/Courland" . + + a ; + "Tiraspol"; + "Europe"; + "Moldova"; + "Mol-DiJeSt-13"; + 4.685e1; + 2.96333e1; + "Q132572"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Zwolle"; + "Europe"; + "Netherlands"; + "2743477"; + "NL-Zwo-00"; + 5.25125e1; + 6.08861e0; + "Q793"; + "https://en.wikipedia.org/wiki/Zwolle" . + + a ; + "The Hague"; + "Europe"; + "Netherlands"; + "NLD-Hag-00"; + 5.208e1; + 4.31e0; + "Q36600"; + "https://en.wikipedia.org/wiki/The_Hague" . + + a ; + "Pātea"; + "Oceania"; + "New Zealand"; + "NZ-Pat-00"; + -3.97542e1; + 1.74473e2; + "Q2056659" . + + a ; + "South America"; + "Panama"; + "3703430"; + "PA-00"; + 8.695069999999999e0; + -8.00629e1; + "Q804"; + "https://en.wikipedia.org/wiki/Panama" . + + a ; + "Colón"; + "South America"; + "Panama"; + "3712076"; + "PA-Col-00"; + 9.341670000000001e0; + -7.98944e1; + "Q12825018"; + "https://en.wikipedia.org/wiki/Col%C3%B3n,_Panama" . + + a ; + "South America"; + "Paraguay"; + "3437598"; + "PRY-00"; + -2.32667e1; + -5.80833e1; + "Q733"; + "https://en.wikipedia.org/wiki/Paraguay" . + + a ; + "Assunção"; + "Europe"; + "Portugal"; + "8012599"; + "PT-Assunc-00"; + "Arronches"; + 3.91072e1; + -7.27417e0; + "Q2868"; + "https://en.wikipedia.org/wiki/Arronches" . + + a ; + "Białystok"; + "Europe"; + "Poland"; + "Pol-DiJeSt-139"; + 5.31167e1; + 2.31667e1; + "Q761"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Skierniewice"; + "Europe"; + "Poland"; + "Pol-DiJeSt-90"; + 5.19569e1; + 2.0143e1; + "Q2734"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Giurgiu"; + "Europe"; + "Romania"; + "Rom-DiJeSt-66"; + 4.39e1; + 2.59667e1; + "Q202351"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Roman"; + "Europe"; + "Romania"; + "Rom-DiJeSt-67"; + 4.693e1; + 2.693e1; + "Q202458"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Europe"; + "Scotland"; + "2661886"; + "SE-000"; + 6.3e1; + 1.6e1; + "Q34"; + "https://en.wikipedia.org/wiki/Sweden" . + + a ; + "Nyitra County"; + "Europe"; + "Slovakia"; + "SK-NytC-00"; + 4.83167e1; + 1.80833e1; + "Q371208"; + "https://en.wikipedia.org/wiki/Nyitra_County" . + + a ; + "Europe"; + "Ukraine"; + "689558"; + "UA-Obl-00"; + "Vinnytsia Oblast"; + 4.893e1; + 2.869e1; + "Q166709"; + "https://en.wikipedia.org/wiki/Vinnytsia_Oblast" . + + a ; + "Europe"; + "England"; + "UK-Engl-00"; + 5.24833e1; + -1.56667e0; + "Q21" . + + a ; + "Peterborough"; + "Europe"; + "England (UK)"; + "2640354"; + "UK-Petb-00"; + 5.25725e1; + -2.43056e-1; + "Q172438"; + "https://en.wikipedia.org/wiki/Peterborough" . + + a ; + "Europe"; + "England (UK)"; + "2633560"; + "UK-Worc-00"; + "Worcestershire"; + 5.22e1; + 2.16667e0; + "Q23135"; + "https://en.wikipedia.org/wiki/Worcestershire" . + + a ; + "Auburn"; + "North America"; + "USA"; + "USA-Aub-00"; + "Alabama"; + 3.26053e1; + -8.5485e1; + "Q79728" . + + a ; + "Aurora"; + "North America"; + "USA"; + "USA-Auror-00"; + "Illinois"; + 4.17639e1; + -8.829000000000001e1; + "Q22595"; + "https://en.wikipedia.org/wiki/Aurora,_Illinois" . + + a ; + "Battleboro"; + "North America"; + "USA"; + "USA-BattleVer-00"; + "Vermont"; + 4.286e1; + -7.263290000000001e1; + "Q26300877" . + + a ; + "Landsides"; + "North America"; + "USA"; + "4350049"; + "USA-CA-03"; + "Southern California"; + 3.4e1; + -1.17e2; + "Q5021271"; + "https://en.wikipedia.org/wiki/California_landslides" . + + a ; + "San Jacinto"; + "North America"; + "USA"; + "5392090"; + "USA-CA-06"; + "California"; + 3.37872e1; + -1.16967e2; + "Q985265"; + "https://en.wikipedia.org/wiki/San_Jacinto,_California" . + + a ; + "Decatur"; + "North America"; + "USA"; + "USA-Decat-00"; + "Georgia"; + 3.37714e1; + -8.42978e1; + "Q986200" . + + a ; + "Durham"; + "North America"; + "USA"; + "USA-Durh-00"; + "North Carolina"; + 3.59875e1; + -7.89072e1; + "Q49229"; + "https://de.wikipedia.org/wiki/Durham_(North_Carolina)" . + + a ; + "Fairmount"; + "North America"; + "USA"; + "USA-FairmV-00"; + "Virginia"; + 3.94814e1; + -8.01433e1 . + + a ; + "Hilo"; + "North America"; + "USA"; + "5855927"; + "USA-Hilo-00"; + "Hawaii"; + 1.97294e1; + -1.5509e2; + "Q216258"; + "https://en.wikipedia.org/wiki/Hilo,_Hawaii" . + + a ; + "Kauai"; + "North America"; + "USA"; + "5848514"; + "USA-Kau-00"; + "Hawaii"; + 2.2075e1; + -1.595e2; + "Q201026"; + "https://en.wikipedia.org/wiki/Kauai" . + + a ; + "Lafayette"; + "North America"; + "USA"; + "USA-Lafay-00"; + "Louisiana"; + 3.02169e1; + -9.20264e1; + "Q128891" . + + a ; + "Las Vegas"; + "North America"; + "USA"; + "5506956"; + "USA-LasVeg-00"; + "Nevada"; + 3.6175e1; + -1.15136e2; + "Q23768"; + "https://en.wikipedia.org/wiki/Las_Vegas" . + + a ; + "Leavenworth"; + "North America"; + "USA"; + "USA-LeavW-00"; + "Washington"; + 4.75964e1; + -1.20665e2; + "Q1025813" . + + a ; + "Lincoln"; + "North America"; + "USA"; + "USA-LincM-00"; + "Massachusetts"; + 4.24258e1; + -7.13044e1; + "Q663035" . + + a ; + "Maui"; + "North America"; + "USA"; + "5850862"; + "USA-Maui-00"; + "Hawaii"; + 2.08075e1; + -1.56331e2; + "Q188705"; + "https://en.wikipedia.org/wiki/Maui" . + + a ; + "North America"; + "USA"; + "5001836"; + "USA-Michigan"; + "Michigan"; + 4.42333e1; + -8.483329999999999e1; + "Q1166"; + "https://en.wikipedia.org/wiki/Michigan" . + + a ; + "Muncie"; + "North America"; + "USA"; + "USA-MuncIl-00"; + "Illinois"; + 4.01161e1; + -8.784310000000001e1; + "Q2039265"; + "https://en.wikipedia.org/wiki/Muncie,_Illinois" . + + a ; + "Norwich"; + "North America"; + "USA"; + "USA-NYNorw-00"; + "New York"; + 4.25319e1; + -7.55217e1; + "Q1380484" . + + a ; + "North America"; + "USA"; + "USA-NewJers-00"; + "New Jersey"; + 4.0e1; + -7.45e1; + "Q1408"; + "https://en.wikipedia.org/wiki/New_Jersey" . + + a ; + "Oshkosh"; + "North America"; + "USA"; + "USA-Oshk-00"; + "Nebraska"; + 4.14025e1; + -1.02346e2; + "Q965063" . + + a ; + "Peoria"; + "North America"; + "UAS"; + "USA-PeoI-00"; + "Iowa"; + 4.14619e1; + -9.28014e1; + "Q56277946"; + "https://en.wikipedia.org/wiki/Peoria,_Iowa" . + + a ; + "Quincy"; + "North America"; + "USA"; + "USA-Quinc-01"; + "Massachusetts"; + 4.22528e1; + -7.100279999999999e1; + "Q49143" . + + a ; + "Saratoga Springs"; + "North America"; + "USA"; + "5136334"; + "USA-Sarat-00"; + "New York"; + 4.30832e1; + -7.37848e1; + "Q1144357"; + "https://en.wikipedia.org/wiki/Saratoga_Springs,_New_York" . + + a ; + "Victoria"; + "North America"; + "USA"; + "USA-Vict-00"; + "Texas"; + 2.88169e1; + -9.69933e1; + "Q784496"; + "https://en.wikipedia.org/wiki/Victoria,_British_Columbia" . + + a ; + "Warren"; + "North America"; + "USA"; + "USA-Warr-00"; + "Michigan"; + 4.24919e1; + -8.30239e1; + "Q499401" . + + a ; + "Wisconsin"; + "North America"; + "USA"; + "5279468"; + "USA-Wisc-00"; + 4.46243e1; + -8.99941e1; + "Q1537"; + "https://en.wikipedia.org/wiki/Wisconsin" . + + a ; + "Zolochiv"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-131"; + 4.98075e1; + 2.49031e1; + "Q623594"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Nadvirna"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-26"; + 4.86333e1; + 2.45833e1; + "Q156820"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Cherkasy"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-28"; + 4.94444e1; + 3.20597e1; + "Q157055"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Zlatopil"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-87"; + 4.88219e1; + 3.16539e1; + "Q2578764"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Whitechapel"; + "Europe"; + "United Kingdom"; + "Uni-DiJeSt-10"; + 5.15164e1; + -6.91667e-2; + "Q124539"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Harlem"; + "North America"; + "United States"; + "Uni-DiJeSt-56"; + 4.0809e1; + -7.394840000000001e1; + "Q189074"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Europe"; + "West Europe"; + "WestEurope"; + 5.3e1; + 9.0e0; + "Q27496"; + "https://en.wikipedia.org/wiki/Western_Europe" . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 10; + "Labour"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 100; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + 1004; + ; + ; + ; + "New York" . + + a ; + "1912-12-27"^^xsd:date; + "1912-10-30"^^xsd:date; + "1912-12-27"^^xsd:date; + "1912-10-30"^^xsd:date; + 1009; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + 1014; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 1019; + "Labour"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 102; + "Education"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 1023; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 1024; + "Family"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 1029; + "Labour"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 103; + "Forced"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 1034; + "Labour"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 1039; + "Labour"; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 104; + "Labour"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 1044; + "Family"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-08-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 1049; + "Family"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 105; + "Labour"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 1053; + "Family"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 1054; + "Family"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 1059; + "Labour"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 106; + "Labour"; + ; + ; + . + + a ; + "between 1874 and 1875"; + "1875-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "between 1874 and 1875"; + "1875-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 1064; + "Family"; + ; + ; + . + + a ; + "probably before 8th Dezember 1882"; + "1882-12-08"^^xsd:date; + "probably before 8th Dezember 1882"; + "1882-12-08"^^xsd:date; + 1069; + "Education"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 107; + "Labour"; + ; + ; + . + + a ; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 1074; + "Labour"; + "Family"; + ; + ; + ; + "Paris – St. Petersburg (October 1891)" . + + a ; + "December 1894"; + "1894-12-31"^^xsd:date; + "1894-12-01"^^xsd:date; + "September 1894"; + "1894-09-30"^^xsd:date; + "1894-09-01"^^xsd:date; + 1079; + "Family"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 108; + "Labour"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 1084; + "Labour"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 1089; + "Family"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 109; + "Labour"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 1094; + "Labour"; + ; + ; + . + + a ; + 1099; + "Education"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 11; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 110; + "Labour"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 1104; + "Labour"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 1109; + "Labour"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 111; + "Labour"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 1114; + "Labour"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 1119; + "Labour"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 112; + "Labour"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 1129; + "Labour"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 113; + "Labour"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 1134; + "Labour"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 1139; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 114; + "Labour"; + ; + ; + . + + a ; + 1144; + "Education"; + ; + ; + ; + "Indianapolis" . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 1149; + "Labour"; + ; + ; + ; + "Nice" . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 115; + "Labour"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 1154; + "Labour"; + ; + ; + ; + "Nice" . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 1159; + "Labour"; + ; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + 116; + "Forced"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 1164; + "Labour"; + ; + ; + . + + a ; + 1169; + "Labour"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 117; + "Labour"; + ; + ; + . + + a ; + 1174; + "Labour"; + ; + ; + . + + a ; + 1179; + "Labour"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 118; + "Labour"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 1184; + "Labour"; + ; + ; + . + + a ; + "1896-1900"; + "1900-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896-1900"; + "1900-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 1189; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 119; + "Labour"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 1194; + "Labour"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 1199; + "Labour"; + ; + ; + . + + a ; + 12; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 120; + "Labour"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 1204; + "Labour"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 1209; + "Labour"; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 121; + "Family"; + "Labour"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 1214; + "Labour"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 1219; + "Family"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 122; + "Labour"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 1224; + "Labour"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 1229; + "Labour"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 123; + "Labour"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 1234; + "Forced"; + ; + ; + . + + a ; + "1939-11-05"^^xsd:date; + "1939-11-05"^^xsd:date; + "1939-10-19"^^xsd:date; + "1939-10-19"^^xsd:date; + 1239; + "Forced"; + ; + ; + ; + "La Pallice, La Rochella, Buenos Aires" . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 124; + ; + . + + a ; + 1244; + ; + ; + . + + a ; + 1249; + "Labour"; + ; + ; + . + + a ; + "1885-03-20"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 125; + "Labour"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 1254; + "Family"; + "Labour"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 1259; + "Labour"; + ; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "-"; + 126; + "Labour"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1885-02-09"^^xsd:date; + "1885-02-09"^^xsd:date; + 1264; + "Family"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 1269; + "Family"; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "-"; + 127; + "Labour"; + "Other"; + ; + ; + . + + a ; + "1846"; + 1274; + "Labour"; + ; + ; + . + + a ; + "1849"; + 1279; + "Labour"; + ; + ; + . + + a ; + "1827-06-07"^^xsd:date; + 128; + "Labour"; + ; + ; + . + + a ; + "1844"; + 1284; + "Education"; + ; + ; + . + + a ; + "1844"; + 1289; + "Labour"; + ; + ; + . + + a ; + 129; + "Labour"; + ; + ; + . + + a ; + "1846"; + 1294; + "Education"; + ; + ; + . + + a ; + "1850"; + 1299; + "Labour"; + ; + ; + . + + a ; + "18th June 1864"; + "1864-06-18"^^xsd:date; + "1864-06-18"^^xsd:date; + 13; + "Labour"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 130; + ; + ; + . + + a ; + "1881"; + 1304; + "Labour"; + ; + ; + . + + a ; + "1884"; + 1309; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 131; + ; + ; + . + + a ; + 1314; + . + + a ; + 1319; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 132; + ; + ; + . + + a ; + "17th December 1909"; + "1909-12-17"^^xsd:date; + "1909-12-17"^^xsd:date; + "-"; + 1324; + "Family"; + ; + ; + . + + a ; + "17th May 1939"; + "1939-05-17"^^xsd:date; + "1939-05-17"^^xsd:date; + "4th May 1939"; + "1939-05-04"^^xsd:date; + "1939-05-04"^^xsd:date; + 1329; + "Labour"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 133; + ; + . + + a ; + "25th October 1940"; + "1940-11-15"^^xsd:date; + "1940-10-25"^^xsd:date; + "1940-10-02"^^xsd:date; + "1940-10-02"^^xsd:date; + 1334; + "Labour"; + ; + ; + ; + "Rio de Janeiro (10th July 1940) - New York (15th or 17th October 1940 - Chicago October 1940" . + + a ; + "before 1848"; + 1339; + "Education"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 134; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 1344; + "Forced"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 1349; + "Labour"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 135; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 1354; + "Education"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 1359; + "Labour"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 136; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 1364; + "Labour"; + ; + ; + . + + a ; + "1869"; + "1969-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1969-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 1369; + "Labour"; + ; + ; + . + + a ; + 137; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 1374; + "Labour"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 1379; + "Labour"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 138; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 1384; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 1389; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 139; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 1394; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 1399; + ; + ; + . + + a ; + "30th August 1868"; + "1868-08-30"^^xsd:date; + "1868-08-30"^^xsd:date; + 14; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 140; + ; + . + + a ; + "before 1865"; + "1865-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "before 1865"; + "1865-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 1404; + "Education"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 1409; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 141; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 1414; + "Labour"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 1419; + "Labour"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 142; + ; + . + + a ; + "after 1873"; + "1916-12-16"^^xsd:date; + "1873-01-01"^^xsd:date; + "after 1873"; + "1916-12-16"^^xsd:date; + "1873-01-01"^^xsd:date; + 1424; + "Labour"; + ; + ; + . + + a ; + 143; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 1434; + "Other"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 1439; + "Other"; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 144; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 1444; + "Labour"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 1449; + "Labour"; + ; + ; + . + + a ; + 145; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 1454; + "Labour"; + ; + ; + . + + a ; + "December 1843"; + "1843-12-31"^^xsd:date; + "1843-12-01"^^xsd:date; + "-"; + 1459; + "Labour"; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 146; + ; + ; + . + + a ; + "January 1868"; + "1868-01-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "-"; + 1464; + "Labour"; + ; + ; + . + + a ; + "May 1869"; + "1869-05-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "-"; + 1469; + "Labour"; + ; + ; + . + + a ; + 147; + ; + ; + . + + a ; + "December 1869"; + "1869-12-31"^^xsd:date; + "1869-12-01"^^xsd:date; + "-"; + 1474; + "Labour"; + ; + ; + . + + a ; + "December 1875"; + "1875-12-31"^^xsd:date; + "1875-12-01"^^xsd:date; + "-"; + 1479; + "Other"; + ; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 148; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 1484; + "Education"; + "Labour"; + ; + ; + . + + a ; + "01.10.1874"; + "1874-10-01"^^xsd:date; + "1874-10-01"^^xsd:date; + "30.09.1874"; + "1874-09-30"^^xsd:date; + "1874-09-30"^^xsd:date; + 1489; + "Labour"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 149; + "Education"; + ; + ; + . + + a ; + 1494; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-12-31"^^xsd:date; + "1898"; + "1898-01-01"^^xsd:date; + "1898-01-01"^^xsd:date; + 1499; + "Family"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 15; + "Forced"; + ; + ; + ; + "Paris – London – New York" . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 150; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 1504; + "Family"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-12-31"^^xsd:date; + "1906"; + "1906-01-01"^^xsd:date; + "1906-01-01"^^xsd:date; + 1509; + "Labour"; + ; + ; + . + + a ; + 151; + "Education"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "-"; + 1514; + "Family"; + ; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "-"; + 1519; + "Labour"; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 152; + ; + . + + a ; + "June 1893"; + "1893-06-30"^^xsd:date; + "1893-06-01"^^xsd:date; + "-"; + 1524; + "Family"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "-"; + 1529; + "Labour"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 153; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "-"; + 1534; + "Family"; + "Labour"; + ; + ; + . + + a ; + "5th May 1872"; + "1872-05-05"^^xsd:date; + "1872-05-05"^^xsd:date; + "-"; + 1539; + "Family"; + "Labour"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 154; + "Other"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 1544; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 1549; + "Labour"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1865"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 155; + "Other"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 1551; + "Labour"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 1554; + "Labour"; + "Education"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 1559; + "Labour"; + ; + ; + . + + a ; + "July 1886"; + "1886-07-31"^^xsd:date; + "1886-07-01"^^xsd:date; + "July 1886"; + "1886-07-31"^^xsd:date; + "1886-07-01"^^xsd:date; + 156; + "Other"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 1564; + "Family"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 1569; + "Education"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 157; + "Labour"; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 1574; + "Labour"; + ; + ; + . + + a ; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + 1579; + "Forced"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 158; + "Labour"; + ; + . + + a ; + "1975"; + "1975-12-31"^^xsd:date; + "1975-01-01"^^xsd:date; + "1975"; + "1975-12-31"^^xsd:date; + "1975-09-01"^^xsd:date; + 1584; + "Other"; + ; + ; + . + + a ; + "01.07.1876"; + "1876-07-01"^^xsd:date; + "1876-07-01"^^xsd:date; + "30.06.1876"; + "1876-06-30"^^xsd:date; + "1876-06-30"^^xsd:date; + 1589; + "Labour"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 159; + "Labour"; + ; + . + + a ; + "01.09.1877"; + "1877-09-01"^^xsd:date; + "1877-09-01"^^xsd:date; + "After 05.07.1877"; + "1877-08-31"^^xsd:date; + "1877-07-05"^^xsd:date; + 1594; + "Labour"; + ; + ; + . + + a ; + "04.09.1878"; + "1878-09-04"^^xsd:date; + "1878-09-04"^^xsd:date; + "Ca. 25.08.1878"; + "1878-08-25"^^xsd:date; + "1878-08-23"^^xsd:date; + 1599; + "Labour"; + ; + ; + . + + a ; + "1879-09-24"^^xsd:date; + 16; + ; + ; + ; + "" . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 160; + "Labour"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 1604; + "Family"; + ; + ; + . + + a ; + "-"; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 1609; + "Labour"; + "Education"; + ; + ; + ; + "Paris" . + + a ; + "-"; + "1827"; + "1827-10-06"^^xsd:date; + "1827-09-01"^^xsd:date; + 161; + "Labour"; + ; + ; + . + + a ; + "-"; + "1853-1854 (two months stay)"; + "1854-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 1614; + "Labour"; + "Education"; + ; + ; + ; + "Paris" . + + a ; + "between May and June 1866"; + "1866-05-31"^^xsd:date; + "1866-05-01"^^xsd:date; + "May 1866"; + "1866-05-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 1619; + ; + ; + . + + a ; + "March 1856"; + "1856-03-31"^^xsd:date; + "1856-03-01"^^xsd:date; + "-"; + 162; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + "-"; + "March 1867"; + "1867-03-31"^^xsd:date; + "1867-03-01"^^xsd:date; + 1624; + ; + ; + . + + a ; + "-"; + "May 1868"; + "1868-05-31"^^xsd:date; + "1868-05-01"^^xsd:date; + 1629; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "-"; + 163; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 1639; + "Family"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "-"; + 164; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + "between 1858 and 1862"; + "between 1858 and 1862"; + 1644; + "Education"; + ; + ; + . + + a ; + "between 1861 and 1864"; + "between 1861 and 1864"; + 1649; + "Education"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "-"; + 165; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + "1868-08-18"^^xsd:date; + "1868-08-18"^^xsd:date; + "between July and August 1868"; + "1868-08-18"^^xsd:date; + "1868-07-11"^^xsd:date; + 1654; + "Labour"; + ; + ; + . + + a ; + 1659; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 166; + "Labour"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 1664; + "Education"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 1669; + "Family"; + ; + ; + . + + a ; + "May 1899"; + "1899-05-31"^^xsd:date; + "1899-05-01"^^xsd:date; + 167; + "Labour"; + ; + ; + . + + a ; + "1911-1913"; + "1913-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911-1913"; + "1913-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 1674; + "Education"; + ; + ; + . + + a ; + "1915-1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915-1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 1679; + "Other"; + ; + ; + . + + a ; + "June 1899"; + "1899-06-30"^^xsd:date; + "1899-06-01"^^xsd:date; + 168; + "Labour"; + ; + ; + . + + a ; + "1850"; + "1850"; + 1684; + "Family"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 169; + "Labour"; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 17; + ; + ; + . + + a ; + 170; + ; + . + + a ; + 171; + ; + . + + a ; + 172; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 173; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 174; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 175; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1874-02-17"^^xsd:date; + 176; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 177; + ; + . + + a ; + 178; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 179; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 18; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 180; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 181; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 182; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 183; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 184; + "Labour"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 185; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 186; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 187; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 188; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 189; + "Labour"; + ; + ; + . + + a ; + 19; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 190; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 191; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 192; + "Family"; + "Labour"; + ; + ; + . + + a ; + "1964"; + "1964-12-31"^^xsd:date; + "1964-01-01"^^xsd:date; + 193; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 194; + "Labour"; + "Family"; + ; + ; + . + + a ; + 195; + "Education"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 196; + "Family"; + "Other"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 197; + "Other"; + ; + . + + a ; + 2; + ; + . + + a ; + 20; + ; + ; + . + + a ; + "between 1883 and 1885"; + "1855-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 201; + "Labour"; + "Forced"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 202; + "Labour"; + ; + ; + . + + a ; + "between 07.07.1888 and 31.07.1889"; + "1889-07-31"^^xsd:date; + "1888-01-07"^^xsd:date; + 203; + "Labour"; + ; + ; + . + + a ; + "between 01.11.1903 and 02.12.1903"; + "1903-12-02"^^xsd:date; + "1903-11-01"^^xsd:date; + "November 1903"; + "1903-11-30"^^xsd:date; + "1903-11-01"^^xsd:date; + 204; + ; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 205; + ; + . + + a ; + 206; + ; + . + + a ; + 207; + ; + . + + a ; + "January 1898"; + "1898-01-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1897-10-21"^^xsd:date; + "1897-10-21"^^xsd:date; + 2074; + "Other"; + "Labour"; + ; + ; + ; + "Paris-New York-Puerto Limón" . + + a ; + "Spring 1898"; + "1898-06-23"^^xsd:date; + "1898-03-24"^^xsd:date; + "January 1898"; + "1898-01-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 2078; + "Labour"; + ; + ; + . + + a ; + 208; + ; + . + + a ; + "Spring 1898"; + "1898-06-23"^^xsd:date; + "1898-03-24"^^xsd:date; + "Spring 1898"; + "1898-06-23"^^xsd:date; + "1898-03-24"^^xsd:date; + 2082; + "Labour"; + ; + ; + . + + a ; + "Between1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Between1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 2086; + "Family"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 209; + "Other"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 2090; + "Labour"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 2094; + "Labour"; + ; + ; + ; + "Long tour without fix residence (New York- Saigon)" . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 2098; + "Labour"; + ; + ; + ; + "Hong Kong - Shanghai" . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + 21; + ; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + 210; + ; + . + + a ; + "Autumn 1908"; + "1908-12-23"^^xsd:date; + "1908-09-24"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 2102; + "Labour"; + ; + ; + ; + "Tour in Australia, New Zealand, Pacific Islands (2 years without fix residence)" . + + a ; + "Probable in 1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 2106; + ; + ; + ; + "New York-Liege and other cities in Europe- tour in US" . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 2107; + ; + ; + . + + a ; + "October 1833"; + "1833-10-31"^^xsd:date; + "1833-10-01"^^xsd:date; + 211; + "Forced"; + ; + . + + a ; + 2110; + "Labour"; + "Education"; + ; + ; + . + + a ; + 2114; + "Education"; + ; + ; + . + + a ; + 2117; + "Labour"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 2118; + "Other"; + ; + ; + . + + a ; + "short after her birth"; + "1868-12-31"^^xsd:date; + "1865-11-01"^^xsd:date; + 2119; + "Family"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 212; + ; + . + + a ; + ""; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 2120; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 2121; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2122; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 2123; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Probably  December 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 2124; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 2125; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 2126; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 2128; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2129; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 213; + ; + ; + . + + a ; + ""; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 2130; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2131; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2132; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 2133; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2134; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2135; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 2136; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 2137; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2138; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1928-1930"; + "1930-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 2139; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + 214; + ; + ; + . + + a ; + ""; + ""; + 2140; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2141; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 2142; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 2143; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1899"; + "1900-01-05"^^xsd:date; + "1899-01-01"^^xsd:date; + 2144; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2145; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2146; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2147; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2148; + "Family"; + ""; + ; + ; + "" . + + a ; + ""; + ""; + 2149; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + "between 23.08.1924 and 04.09.1924"; + "1924-09-04"^^xsd:date; + "1924-08-23"^^xsd:date; + 215; + ; + ; + . + + a ; + ""; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 2150; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 2151; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1885-86"; + "1886-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 2152; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2153; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2154; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2155; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2156; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-05"^^xsd:date; + 2157; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2158; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2159; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 216; + ; + ; + . + + a ; + ""; + ""; + 2160; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2161; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + 2162; + "Family"; + ; + ; + "" . + + a ; + ""; + "circa 1881"; + 2163; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2165; + "Family"; + ""; + ; + ; + . + + a ; + ""; + ""; + 2166; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "before 1942"; + 2167; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-07-15"^^xsd:date; + "1942"; + "1942-12-31"^^xsd:date; + "1940-06-16"^^xsd:date; + 2168; + "Forced"; + ""; + ; + ; + ; + "Lyon" . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "-"; + 217; + "Family"; + ; + ; + . + + a ; + ""; + ""; + 2171; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 2172; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 2173; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-02-08"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-02-08"^^xsd:date; + 2174; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 2175; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1881"; + "1880-12-31"^^xsd:date; + "1880-09-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-09-01"^^xsd:date; + 2176; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 2177; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1899"; + "1900-01-04"^^xsd:date; + "1899-01-01"^^xsd:date; + 2178; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2179; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + "Between 1878 and 1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Between 1878 and 1883"; + "1883-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 218; + "Labour"; + "Family"; + ; + ; + . + + a ; + ""; + ""; + 2180; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2181; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2182; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2183; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2184; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2185; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + 2186; + "Forced"; + ""; + ; + ; + "" . + + a ; + ""; + ""; + 2187; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 2188; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2189; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 219; + ; + ; + . + + a ; + ""; + ""; + 2190; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 2191; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 2192; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1890"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2193; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 2195; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2196; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 2197; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2198; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2199; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 22; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 220; + ; + ; + . + + a ; + ""; + ""; + 2200; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2201; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 2202; + "Labour"; + "Family"; + ; + ; + ; + "Family" . + + a ; + ""; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 2203; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2204; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1899"; + "1900-01-04"^^xsd:date; + "1899-01-01"^^xsd:date; + 2205; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2206; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 2207; + "Labour"; + "Family"; + ; + ; + ; + "Family" . + + a ; + ""; + ""; + 2208; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "he moved in his school years"; + "1870-12-31"^^xsd:date; + "1858-04-19"^^xsd:date; + 2209; + "Education"; + ""; + ; + ; + ; + "He lived in Zhytomyr probably until between 1878 and 1881." . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 221; + ; + ; + . + + a ; + ""; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 2210; + "Forced"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "between March 1870 and 1883"; + "1883-12-31"^^xsd:date; + "1870-03-01"^^xsd:date; + 2211; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 2212; + "Labour"; + ""; + ; + ; + . + + a ; + ""; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2213; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 2214; + "Family"; + "Labour"; + ; + ; + ; + "" . + + a ; + "Probably around 1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "September 1928"; + "1928-12-31"^^xsd:date; + "1928-09-01"^^xsd:date; + 2215; + "Labour"; + ""; + ; + ; + ; + "Buenos Aires - Baltimore - Boston" . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "March 1917"; + "1917-03-31"^^xsd:date; + "1917-03-01"^^xsd:date; + 2216; + "Labour"; + ""; + ; + ; + ; + "Tour in Russia and in Kyev" . + + a ; + ""; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 2217; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2218; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 2219; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + 222; + "Labour"; + ; + ; + . + + a ; + ""; + ""; + 2220; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 2221; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2222; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2223; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + 2224; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + ""; + 2225; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 2226; + "Forced"; + ""; + ; + ; + ; + "Long tour around Russia, Ukraine, Poland - Kobelyaki shtetl -  Poltava -  Smila- Pereyeslav - Chernigov Daugavpils-Minsk- Bobruisk - Vitebsk- Rostov - Riga" . + + a ; + "March 1887"; + "1887-03-31"^^xsd:date; + "1887-03-01"^^xsd:date; + 2229; + "Labour"; + ""; + ; + ; + ; + "New York" . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 223; + ; + ; + . + + a ; + ""; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + 2230; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 2231; + "Labour"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 2232; + "Family"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "between 01.01.1875 and 23.07.1875"; + "1875-07-23"^^xsd:date; + "1875-01-01"^^xsd:date; + 2233; + "Education"; + ""; + ; + ; + ; + "" . + + a ; + ""; + "May 1897"; + "1897-05-31"^^xsd:date; + "1897-05-01"^^xsd:date; + 2234; + "Other"; + ""; + ; + ; + ; + "" . + + a ; + "between 01.01.1875 and 23.07.1875"; + "1875-07-23"^^xsd:date; + "1875-01-01"^^xsd:date; + 2238; + "Labour"; + ; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + 224; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 2242; + "Other"; + ; + ; + . + + a ; + "Autumn 1876"; + "1876-12-21"^^xsd:date; + "1876-09-22"^^xsd:date; + 2243; + "Labour"; + ; + ; + . + + a ; + "just before Passover 1879"; + "1879-04-06"^^xsd:date; + "1879-04-01"^^xsd:date; + 2246; + "Labour"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 225; + ; + ; + . + + a ; + "October 1889"; + "1889-10-31"^^xsd:date; + "1889-10-01"^^xsd:date; + "between 29.07.1889 and 31.10.1889"; + "1889-10-31"^^xsd:date; + "1889-07-29"^^xsd:date; + 2254; + "Labour"; + ; + ; + . + + a ; + "October 1890"; + "1890-10-31"^^xsd:date; + "1890-10-01"^^xsd:date; + 2258; + "Other"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 226; + "Labour"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "between July 1892 and December 1895"; + "1895-12-31"^^xsd:date; + "1892-07-01"^^xsd:date; + 2262; + ; + ; + . + + a ; + "between 15.12.1891 and 31.07.1892"; + "1892-07-31"^^xsd:date; + "1891-12-15"^^xsd:date; + 2266; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 227; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 2270; + "Labour"; + ; + ; + . + + a ; + "Spring"; + "1814-04-30"^^xsd:date; + "1814-03-01"^^xsd:date; + "1813-07-08"^^xsd:date; + "1813-07-08"^^xsd:date; + 2274; + "Forced"; + "Family"; + ; + ; + ; + "Harburg, Karlsbad, Prague" . + + a ; + "December 1821"; + "2025-12-31"^^xsd:date; + "2025-12-01"^^xsd:date; + "December 1821"; + "1821-12-31"^^xsd:date; + "1821-12-01"^^xsd:date; + 2278; + "Other"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 228; + ; + . + + a ; + "End of July 1825"; + "1825-07-31"^^xsd:date; + "1825-07-01"^^xsd:date; + "End of July 1825"; + "1825-07-31"^^xsd:date; + "1825-07-01"^^xsd:date; + 2282; + "Other"; + ; + ; + . + + a ; + "1826-06-08"^^xsd:date; + "1826-06-08"^^xsd:date; + "May 1826"; + "1826-05-26"^^xsd:date; + "1826-05-26"^^xsd:date; + 2286; + "Education"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 229; + ; + . + + a ; + "1829-08-15"^^xsd:date; + "1829-08-15"^^xsd:date; + "1829-07-07"^^xsd:date; + "1829-07-07"^^xsd:date; + 2290; + "Other"; + ; + ; + . + + a ; + "1827-04-30"^^xsd:date; + "1827-04-11"^^xsd:date; + "1827-04-10"^^xsd:date; + "1827-04-10"^^xsd:date; + 2294; + "Labour"; + ; + ; + . + + a ; + "November 1829"; + "1829-11-30"^^xsd:date; + "1829-11-16"^^xsd:date; + "1829-10-20"^^xsd:date; + "1829-10-20"^^xsd:date; + 2298; + "Family"; + "Labour"; + ; + ; + ; + "Buda" . + + a ; + "16th Fabruary 1863"; + "1863-02-16"^^xsd:date; + "1863-02-16"^^xsd:date; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 23; + "Labour"; + ; + ; + . + + a ; + "1878-07-03"^^xsd:date; + "1878-07-03"^^xsd:date; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 230; + "Family"; + ; + ; + . + + a ; + "1830-03-25"^^xsd:date; + "1830-03-25"^^xsd:date; + "March 1830"; + "1830-03-25"^^xsd:date; + "1830-03-01"^^xsd:date; + 2302; + "Labour"; + ; + ; + . + + a ; + "September 1830"; + "1830-09-30"^^xsd:date; + "1830-09-08"^^xsd:date; + "September 1830"; + "1830-09-30"^^xsd:date; + "1830-09-08"^^xsd:date; + 2306; + "Labour"; + ; + ; + ; + "Vienna" . + + a ; + 231; + "Education"; + ; + ; + . + + a ; + "End of May"; + "1831-05-31"^^xsd:date; + "1831-05-20"^^xsd:date; + "End of May 1831"; + "1831-05-31"^^xsd:date; + "1831-05-20"^^xsd:date; + 2310; + "Other"; + ; + ; + . + + a ; + "End of May 1831"; + "1831-05-31"^^xsd:date; + "1831-05-20"^^xsd:date; + "End of May 1831"; + "1831-05-31"^^xsd:date; + "1831-05-20"^^xsd:date; + 2314; + ; + ; + . + + a ; + "September 1831"; + "1831-09-30"^^xsd:date; + "1831-09-01"^^xsd:date; + "September 1831"; + "1831-09-30"^^xsd:date; + "1831-09-01"^^xsd:date; + 2318; + "Labour"; + ; + ; + . + + a ; + 232; + "Other"; + ; + . + + a ; + "1832"; + "1831-10-31"^^xsd:date; + "1832-10-01"^^xsd:date; + "April 1832"; + "1832-04-30"^^xsd:date; + "1832-04-01"^^xsd:date; + 2322; + "Labour"; + ; + ; + ; + "Italy" . + + a ; + "End of March"; + "1833-03-31"^^xsd:date; + "1833-03-24"^^xsd:date; + "1833-03-24"^^xsd:date; + "1833-03-24"^^xsd:date; + 2326; + "Labour"; + ; + ; + . + + a ; + 233; + "Other"; + ; + ; + . + + a ; + "Spring 1839"; + "1839-04-30"^^xsd:date; + "1839-03-01"^^xsd:date; + "Spring 1839"; + "1839-04-30"^^xsd:date; + "1839-03-01"^^xsd:date; + 2330; + "Labour"; + ; + ; + . + + a ; + "1840"; + "1840-08-31"^^xsd:date; + "1840-07-01"^^xsd:date; + "1840"; + "1840-08-31"^^xsd:date; + "1840-07-01"^^xsd:date; + 2334; + "Labour"; + ; + ; + . + + a ; + "June 1944"; + "1944-06-30"^^xsd:date; + "1944-06-01"^^xsd:date; + "May 1944"; + "1944-05-31"^^xsd:date; + "1944-05-01"^^xsd:date; + 2338; + "Labour"; + "Other"; + ; + ; + . + + a ; + "March 1875"; + "1875-03-31"^^xsd:date; + "1875-03-01"^^xsd:date; + "March 1875"; + "1875-03-31"^^xsd:date; + "1875-03-01"^^xsd:date; + 234; + "Other"; + ; + ; + . + + a ; + "Between May and June 1945"; + "1945-06-30"^^xsd:date; + "1945-05-01"^^xsd:date; + "Between May and June 1945"; + "1945-06-30"^^xsd:date; + "1945-05-01"^^xsd:date; + 2342; + "Other"; + "Labour"; + ; + ; + . + + a ; + "1908"; + "1908-01-01"^^xsd:date; + 2344; + "Labour"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 2346; + "Family"; + ; + ; + . + + a ; + "before 1890"; + "1890-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 235; + ; + ; + . + + a ; + 2350; + "Labour"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 2354; + "Labour"; + ; + ; + . + + a ; + "1910"; + "1910-01-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-01-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 2358; + "Labour"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 236; + ; + ; + . + + a ; + "because of the World War"; + 2362; + "Forced"; + ; + ; + . + + a ; + 2366; + "Forced"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 237; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 238; + "Labour"; + ; + ; + . + + a ; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 2382; + "Labour"; + ; + ; + . + + a ; + 2386; + "Education"; + ; + ; + . + + a ; + "1913-12-31"^^xsd:date; + 239; + ; + . + + a ; + "1849-04-20"^^xsd:date; + "1849-04-20"^^xsd:date; + "ca. 20 January 1849; departure from Le Havre on 4 April"; + "1849-01-21"^^xsd:date; + "1849-01-20"^^xsd:date; + 2391; + "Forced"; + ; + ; + ; + "Le Havre, New Orleans" . + + a ; + "October 1841"; + "1841-10-31"^^xsd:date; + "1841-10-01"^^xsd:date; + "Begin of September"; + "1841-09-10"^^xsd:date; + "1841-09-01"^^xsd:date; + 2395; + "Forced"; + ; + ; + ; + "Italy, Tyrol, Munich, Augsburg, Ulm, Stuttgart" . + + a ; + "03.12.1841"; + "1841-12-03"^^xsd:date; + "1841-12-01"^^xsd:date; + "ca. 03.12.1841"; + "1841-12-03"^^xsd:date; + "1841-12-01"^^xsd:date; + 2398; + "Labour"; + ; + ; + . + + a ; + "1803"; + "1803-12-31"^^xsd:date; + "1803-01-01"^^xsd:date; + 24; + "Labour"; + "Education"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 240; + ; + ; + . + + a ; + "April 1842"; + "1842-04-30"^^xsd:date; + "1842-04-01"^^xsd:date; + "April 1842"; + "1842-04-30"^^xsd:date; + "1842-04-01"^^xsd:date; + 2402; + "Labour"; + ; + ; + ; + "Strasbourg" . + + a ; + "1895-12-31"^^xsd:date; + "Beginning of the 1890s"; + "1890-01-01"^^xsd:date; + 241; + "Labour"; + ; + ; + . + + a ; + "1849-05-15"^^xsd:date; + "1849-05-15"^^xsd:date; + "1849-05-15"^^xsd:date; + "1849-05-15"^^xsd:date; + 2410; + "Other"; + ; + ; + . + + a ; + "March 1850"; + "1850-03-31"^^xsd:date; + "1850-03-01"^^xsd:date; + "March 1850"; + "1850-03-31"^^xsd:date; + "1850-03-01"^^xsd:date; + 2414; + "Labour"; + ; + ; + . + + a ; + "August 1869"; + "1869-08-31"^^xsd:date; + "1869-08-01"^^xsd:date; + "July 1868"; + "1868-07-31"^^xsd:date; + "1868-07-01"^^xsd:date; + 2418; + "Other"; + "Labour"; + ; + ; + ; + "Wiesbaden, Italy, Baden" . + + a ; + 242; + ; + ; + . + + a ; + "September 1861"; + "1861-09-30"^^xsd:date; + "1861-09-01"^^xsd:date; + "August 1861"; + "1861-08-31"^^xsd:date; + "1861-08-01"^^xsd:date; + 2422; + "Labour"; + ; + ; + ; + "Washington, New York" . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 2428; + "Forced"; + ; + ; + . + + a ; + 243; + ; + ; + . + + a ; + 2433; + "Labour"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + 2438; + "Labour"; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 244; + ; + ; + . + + a ; + 2443; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 245; + "Labour"; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 2458; + "Labour"; + ; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 246; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 2463; + "Labour"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 2468; + "Labour"; + ; + ; + . + + a ; + 247; + "Family"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2473; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892"; + "1902-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 2478; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 248; + ; + ; + . + + a ; + "1899-1900"; + "1900-01-04"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 2483; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 2488; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 249; + "Labour"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 2498; + ; + ; + . + + a ; + 25; + "Labour"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 250; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-05"^^xsd:date; + 2503; + ; + ; + . + + a ; + 2508; + "Family"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 251; + "Labour"; + ; + ; + . + + a ; + 2513; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 2518; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 252; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 2523; + "Labour"; + ; + ; + . + + a ; + 2528; + "Labour"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 253; + "Family"; + ; + ; + . + + a ; + 2533; + "Labour"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 2538; + "Labour"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 254; + "Other"; + ; + ; + . + + a ; + 2543; + "Labour"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 2548; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 255; + ; + ; + . + + a ; + 2553; + ; + ; + . + + a ; + "1891"; + "1891-01-01"^^xsd:date; + 2558; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 256; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 2563; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 2568; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 257; + "Labour"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 2573; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 2578; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 258; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 2583; + "Family"; + ; + ; + . + + a ; + "1890"; + "1890-01-01"^^xsd:date; + 2588; + ; + ; + ; + "London" . + + a ; + 259; + "Labour"; + ; + ; + . + + a ; + "1841-05-02"^^xsd:date; + "1841-05-02"^^xsd:date; + "1841-05-01"^^xsd:date; + "1841-05-01"^^xsd:date; + 2593; + "Labour"; + ; + ; + . + + a ; + "June 1841"; + "1841-06-13"^^xsd:date; + "1841-06-06"^^xsd:date; + "1841-06-05"^^xsd:date; + "1841-06-05"^^xsd:date; + 2598; + "Labour"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 26; + "Labour"; + ; + ; + . + + a ; + 260; + ; + ; + . + + a ; + "1854-02-19"^^xsd:date; + "1854-02-19"^^xsd:date; + "Between 15 and 18 February 1854"; + "1854-02-18"^^xsd:date; + "1854-02-15"^^xsd:date; + 2603; + "Labour"; + ; + ; + . + + a ; + 2608; + . + + a ; + 261; + "Labour"; + ; + ; + . + + a ; + "probably in 1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 2613; + "Labour"; + ; + ; + ; + "He spent most of his life on the road performing in different cities in Europe, in 1901 went to the United States performing in different cities there and Canada. In his later years, he settled in Chicago." . + + a ; + "probably in 1880s, stayed for 2 years"; + "1989-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 2618; + "Labour"; + ; + ; + "He lived in Zhitomir until he finished secondary school, probably around 1880, when he began his itinerant life, performing in different cities." . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 262; + "Forced"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 2623; + "Labour"; + ; + ; + . + + a ; + 2628; + "Labour"; + ; + ; + ; + "Antwerp - Berlin" . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 263; + "Labour"; + ; + ; + . + + a ; + "between 1906 and 1907"; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 2633; + "Labour"; + ; + ; + . + + a ; + "beginning of 1915"; + "1915-03-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 2638; + "Labour"; + ; + ; + . + + a ; + "April 1869"; + "1869-04-30"^^xsd:date; + "1869-04-01"^^xsd:date; + "between March and April 1869"; + "1869-04-30"^^xsd:date; + "1869-03-01"^^xsd:date; + 264; + "Family"; + "Labour"; + ; + ; + . + + a ; + "probably April 1927"; + "1927-04-30"^^xsd:date; + "1927-04-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 2648; + "Labour"; + ; + ; + ; + "Tour in Soviet Union" . + + a ; + "1821"; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + 265; + "Education"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 2653; + "Labour"; + ; + ; + . + + a ; + 2658; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 266; + "Labour"; + "Family"; + ; + ; + . + + a ; + "before 1873"; + "1873-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 2663; + "Labour"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 2668; + "Labour"; + ; + ; + . + + a ; + "August 1814"; + "1814-08-31"^^xsd:date; + "1814-08-01"^^xsd:date; + "August 1814"; + "1814-08-31"^^xsd:date; + "1814-08-01"^^xsd:date; + 2669; + "Family"; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + 267; + "Forced"; + "Family"; + ; + ; + . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + "1827"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 2673; + "Education"; + ; + ; + . + + a ; + "January 1833"; + "1833-01-31"^^xsd:date; + "1833-01-31"^^xsd:date; + "January 1833"; + "1833-01-31"^^xsd:date; + "1833-01-01"^^xsd:date; + 2678; + "Labour"; + ; + ; + . + + a ; + 268; + ; + ; + . + + a ; + "15th January 1834"; + "1834-01-15"^^xsd:date; + "1834-01-15"^^xsd:date; + "between 6th January  and 15th January  1834"; + "1834-01-15"^^xsd:date; + "1834-01-06"^^xsd:date; + 2683; + "Other"; + ; + ; + . + + a ; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + 2688; + "Labour"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 269; + "Labour"; + ; + ; + . + + a ; + "Spring 1858"; + "1858-04-30"^^xsd:date; + "1858-03-01"^^xsd:date; + "Spring 1858"; + "1858-04-30"^^xsd:date; + "1858-03-01"^^xsd:date; + 2693; + "Forced"; + ; + ; + . + + a ; + "Fall 1869"; + "1869-10-31"^^xsd:date; + "1869-09-01"^^xsd:date; + "Fall 1869"; + "1869-10-31"^^xsd:date; + "1869-09-01"^^xsd:date; + 2694; + "Labour"; + ; + ; + . + + a ; + "Spring 1865"; + "1865-04-30"^^xsd:date; + "1865-03-01"^^xsd:date; + "Spring 1865"; + "1865-04-30"^^xsd:date; + "1865-03-01"^^xsd:date; + 2698; + "Other"; + "Labour"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 27; + "Labour"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 270; + "Labour"; + ; + ; + . + + a ; + "April 1863"; + "1863-04-30"^^xsd:date; + "1863-04-01"^^xsd:date; + "April 1863"; + "1863-04-30"^^xsd:date; + "1863-04-01"^^xsd:date; + 2703; + "Labour"; + ; + ; + . + + a ; + "1907"; + "2025-07-31"^^xsd:date; + "1907-03-01"^^xsd:date; + "1907"; + "1907-07-31"^^xsd:date; + "1907-03-01"^^xsd:date; + 2708; + "Other"; + ; + ; + . + + a ; + 271; + "Other"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 2713; + "Other"; + ; + ; + . + + a ; + 2714; + ; + ; + . + + a ; + "probably after 1906"; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 2719; + "Labour"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 272; + ; + ; + . + + a ; + "probably 1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 2724; + "Labour"; + ; + ; + . + + a ; + "probably 1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 2729; + "Labour"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 273; + "Labour"; + ; + . + + a ; + 274; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 2744; + ; + ; + ; + "Brownville" . + + a ; + "1854-10-23"^^xsd:date; + 275; + "Labour"; + "Family"; + ; + ; + . + + a ; + 2754; + ; + ; + . + + a ; + 2759; + ; + ; + ; + "Dresden" . + + a ; + "January 1855"; + "1855-01-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 276; + ; + ; + . + + a ; + 2764; + ; + ; + . + + a ; + 277; + ; + ; + . + + a ; + "probably 1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 2774; + ; + ; + ; + "London" . + + a ; + 278; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 279; + ; + ; + . + + a ; + "between 1889 and 1892"; + "1892-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2794; + "Labour"; + ; + ; + ; + "Łódź - Lviv" . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 2799; + "Forced"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 28; + "Labour"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 280; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 2804; + "Labour"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 2809; + "Labour"; + ; + ; + . + + a ; + 281; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-08-01"^^xsd:date; + "August 1886"; + "1886-08-31"^^xsd:date; + "1886-08-01"^^xsd:date; + 2814; + "Forced"; + ; + ; + . + + a ; + 282; + ; + ; + . + + a ; + 283; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 284; + ; + ; + . + + a ; + "September 1937"; + "1937-09-30"^^xsd:date; + "1937-09-01"^^xsd:date; + 285; + ; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 286; + ; + ; + . + + a ; + 2869; + ; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 287; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-12-01"^^xsd:date; + "1945"; + "1945-10-31"^^xsd:date; + "1945-10-01"^^xsd:date; + 2879; + "Other"; + ; + ; + . + + a ; + "1945"; + "1945-10-31"^^xsd:date; + "1945-10-01"^^xsd:date; + "1940"; + "1940-08-31"^^xsd:date; + "1940-08-01"^^xsd:date; + 2884; + "Forced"; + ; + ; + . + + a ; + "1931"; + "1931-07-31"^^xsd:date; + "1931-07-01"^^xsd:date; + "1931"; + "1931-06-30"^^xsd:date; + "1931-06-01"^^xsd:date; + 2889; + "Other"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 289; + ; + ; + . + + a ; + "1930"; + "1930-11-30"^^xsd:date; + "1930-11-01"^^xsd:date; + "1930"; + "1930-11-30"^^xsd:date; + "1930-11-01"^^xsd:date; + 2891; + "Forced"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-12-01"^^xsd:date; + "1919"; + "1919-10-31"^^xsd:date; + "1918-10-01"^^xsd:date; + 2894; + "Forced"; + ; + ; + . + + a ; + "1919"; + "1919-07-31"^^xsd:date; + "1919-07-30"^^xsd:date; + "1918"; + "1918-09-30"^^xsd:date; + "1918-09-01"^^xsd:date; + 2896; + "Labour"; + ; + ; + . + + a ; + "1918"; + "1918-08-30"^^xsd:date; + "1918-08-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 2899; + "Forced"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 29; + "Labour"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 290; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 2900; + "Other"; + ; + ; + ; + "famine, financial hardship" . + + a ; + "Summer 1823"; + "1823-09-22"^^xsd:date; + "1823-06-21"^^xsd:date; + "Between1823 and Summer 1823"; + "1823-09-22"^^xsd:date; + "1823-01-01"^^xsd:date; + 2902; + "Family"; + ; + ; + ; + "Calcutta" . + + a ; + "November 1823"; + "1823-11-30"^^xsd:date; + "1823-11-01"^^xsd:date; + "November 1823"; + "1823-11-30"^^xsd:date; + "1823-11-01"^^xsd:date; + 2907; + "Family"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 291; + ; + ; + . + + a ; + "1827-05-19"^^xsd:date; + "1827-01-01"^^xsd:date; + "1826-12-26"^^xsd:date; + 2912; + "Education"; + ; + ; + ; + "Madras, London" . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 2917; + "Family"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 292; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Probably 1832-09-14"; + "1832-09-14"^^xsd:date; + 2922; + "Education"; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 2927; + "Other"; + ; + ; + ; + "Rathbeggan" . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 293; + ; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "1838-09-18"^^xsd:date; + 2932; + "Family"; + ; + ; + ; + "Calcutta, Bernares" . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 2937; + "Other"; + ; + ; + ; + "Calcutta, Portsmouth, London" . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 294; + ; + ; + . + + a ; + "Between 1841 and 1842"; + "1842-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "Between 1841 and 1842"; + "1842-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + 2942; + "Education"; + ; + ; + . + + a ; + "Probably 1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Probably 1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 2947; + "Labour"; + ; + ; + ; + "Sothhampton" . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 295; + ; + ; + . + + a ; + "Between November 1843 and January 1844"; + "1844-01-31"^^xsd:date; + "1843-10-01"^^xsd:date; + "Between November 1843 and January 1844"; + "1844-01-31"^^xsd:date; + "1843-10-01"^^xsd:date; + 2952; + "Labour"; + ; + ; + ; + "Szczecin, Gdansk, Königsberg" . + + a ; + "February 1844"; + "1844-02-29"^^xsd:date; + "1844-02-01"^^xsd:date; + "February 1844"; + "1844-02-29"^^xsd:date; + "1844-02-01"^^xsd:date; + 2957; + "Labour"; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + 296; + "Labour"; + ; + ; + . + + a ; + "Summer 1845"; + "1845-09-22"^^xsd:date; + "1845-06-21"^^xsd:date; + "Between February and March 1844"; + "1844-03-31"^^xsd:date; + "1844-02-01"^^xsd:date; + 2962; + "Labour"; + ; + ; + . + + a ; + "1846-10-05"; + "1846-10-05"^^xsd:date; + "Between July 1846 and 1846-10-05"; + "1846-10-05"^^xsd:date; + "1846-07-01"^^xsd:date; + 2967; + "Labour"; + "Other"; + ; + ; + ; + "Ostend, Heidelberg, Bad Homburg, Stuttgart" . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 297; + "Labour"; + ; + ; + . + + a ; + "Between 1848-02-11 and 1848-02-24"; + "1848-02-24"^^xsd:date; + "1848-02-11"^^xsd:date; + "Between 1848-02-11 and 1848-02-24 "; + "1848-02-24"^^xsd:date; + "1848-02-11"^^xsd:date; + 2972; + ; + ; + ; + "Großhesselohe, Obermenzing, Pasing" . + + a ; + "Between February and March 1848"; + "1848-03-31"^^xsd:date; + "1848-02-01"^^xsd:date; + "1848-02-24"^^xsd:date; + 2977; + "Forced"; + ; + ; + ; + "Romanshorn, Munich" . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + 298; + "Labour"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 2982; + "Labour"; + ; + ; + . + + a ; + "Between March and April 1848"; + "1848-04-30"^^xsd:date; + "1848-03-01"^^xsd:date; + "Between March and April 1848"; + "1848-04-30"^^xsd:date; + "1848-03-01"^^xsd:date; + 2987; + "Other"; + ; + ; + ; + "Lausanne, Vevey" . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 299; + "Labour"; + ; + ; + . + + a ; + "Between November and December 1848"; + "1848-12-31"^^xsd:date; + "1848-11-01"^^xsd:date; + "November 1848"; + "1848-11-30"^^xsd:date; + "1848-11-01"^^xsd:date; + 2992; + "Other"; + ; + ; + . + + a ; + "September 1849"; + "0849-09-30"^^xsd:date; + "0849-09-01"^^xsd:date; + "September 1849"; + "1849-09-30"^^xsd:date; + "0849-09-01"^^xsd:date; + 2997; + "Other"; + ; + ; + ; + "Paris, Marseille, Barcelona, Cádiz, Boulogne" . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 3; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 30; + "Other"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 300; + "Labour"; + ; + ; + . + + a ; + "August 1850"; + "1850-08-31"^^xsd:date; + "1850-08-01"^^xsd:date; + "August 1850"; + "1850-08-31"^^xsd:date; + "1850-08-01"^^xsd:date; + 3002; + "Other"; + ; + ; + . + + a ; + "August 1853"; + "1853-08-31"^^xsd:date; + "1853-01-08"^^xsd:date; + 3007; + "Other"; + ; + ; + ; + "Cities of her America-Tour" . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 301; + "Labour"; + ; + ; + . + + a ; + "Probably August 1856"; + "1856-08-31"^^xsd:date; + "1856-08-01"^^xsd:date; + "July 1856"; + "1856-07-31"^^xsd:date; + "1856-07-01"^^xsd:date; + 3012; + "Other"; + ; + ; + . + + a ; + "1856-12-16"^^xsd:date; + "1856-11-20"^^xsd:date; + 3017; + "Other"; + ; + ; + ; + "Nicaragua" . + + a ; + "1821-06-30"^^xsd:date; + "1821-06-30"^^xsd:date; + "1821"; + "1821-06-30"^^xsd:date; + "1821-01-18"^^xsd:date; + 3019; + ; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 302; + "Labour"; + ; + ; + . + + a ; + 3024; + "Family"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 3029; + "Labour"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 303; + "Labour"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 3034; + "Labour"; + ; + ; + . + + a ; + 3039; + "Family"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 304; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 3044; + "Family"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 3049; + "Family"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 305; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 3054; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 3059; + "Labour"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 306; + ; + ; + . + + a ; + 3060; + "Labour"; + ; + ; + . + + a ; + 3064; + "Education"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-08-01"^^xsd:date; + "End of 1866"; + "1866-12-31"^^xsd:date; + "1866-08-01"^^xsd:date; + 3065; + "Other"; + ; + ; + ; + "Paris. \"Anita\" ship." . + + a ; + 3068; + "Labour"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 307; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 3071; + "Family"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 3073; + "Forced"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 3077; + "Other"; + ; + ; + . + + a ; + "Probably December 1922"; + "1922-12-31"^^xsd:date; + "1922-12-01"^^xsd:date; + 3078; + "Other"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 308; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "End of 1908"; + "1908-12-31"^^xsd:date; + "1908-09-01"^^xsd:date; + 3083; + "Labour"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 3088; + "Labour"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 309; + ; + ; + . + + a ; + "End of 1919"; + "1919-12-31"^^xsd:date; + "1919-09-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + 3093; + "Labour"; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 3098; + "Labour"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 31; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 310; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 3103; + "Labour"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 311; + ; + ; + . + + a ; + 3113; + "Labour"; + ; + . + + a ; + 3118; + "Labour"; + ; + . + + a ; + 312; + ; + ; + . + + a ; + "Probably 1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 3123; + "Other"; + "Labour"; + ; + ; + . + + a ; + 3128; + "Family"; + ; + . + + a ; + 313; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 3133; + "Labour"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 314; + "Labour"; + ; + ; + . + + a ; + 3143; + "Education"; + ; + . + + a ; + 3148; + "Labour"; + ; + ; + . + + a ; + 315; + "Education"; + ; + ; + . + + a ; + 3153; + "Family"; + ; + ; + . + + a ; + "Probably 1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Probably 1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 3155; + "Education"; + ; + ; + . + + a ; + 316; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 3160; + "Family"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Between September und October 1883"; + "1883-10-31"^^xsd:date; + "1883-09-01"^^xsd:date; + 3165; + "Family"; + ; + ; + ; + "St. Gallen (Switzerland) - “kleinen Ort in Bayern”" . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 317; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 318; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 3180; + "Labour"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 3185; + "Forced"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 319; + ; + ; + . + + a ; + "Probably 1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Probably 1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 3190; + "Labour"; + ; + ; + . + + a ; + "1820"; + "1820-12-31"^^xsd:date; + "1820-01-01"^^xsd:date; + 32; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 320; + ; + ; + . + + a ; + "Probably 1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "Probably 1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 3200; + "Labour"; + ; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 3205; + "Labour"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 321; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 3210; + ; + ; + ; + "with his Wife" . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 322; + "Education"; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 323; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 324; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 325; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "-"; + 326; + "Labour"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "-"; + 327; + "Labour"; + ; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + 3270; + "Other"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 3275; + "Labour"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 328; + "Education"; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 3280; + "Labour"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 3285; + "Labour"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 329; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 3290; + "Labour"; + ; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + 3295; + "Labour"; + ; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 33; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 330; + ; + ; + . + + a ; + "1897-05-10"; + "1897-05-10"^^xsd:date; + "1897-05-10"^^xsd:date; + "1897-01-22"; + "1897-01-22"^^xsd:date; + "1897-01-22"^^xsd:date; + 3300; + "Labour"; + ; + ; + ; + "Belgium, Germany, Russia, Ukraine, Romania, Ottoman, Greece, Egypt, Italy" . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 3305; + "Labour"; + ; + ; + . + + a ; + "1914-06-28"; + "1914-06-28"^^xsd:date; + "1914-06-28"^^xsd:date; + 3307; + "Labour"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 331; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 3315; + "Labour"; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 332; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 333; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 334; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 335; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 336; + "Labour"; + ; + ; + . + + a ; + "1815"; + "1815-12-31"^^xsd:date; + "1815-01-01"^^xsd:date; + 337; + ; + . + + a ; + "1816"; + "1816-12-31"^^xsd:date; + "1816-01-01"^^xsd:date; + 338; + ; + . + + a ; + "1818"; + "1818-12-31"^^xsd:date; + "1818-01-01"^^xsd:date; + 339; + ; + . + + a ; + "1821"; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + 340; + ; + . + + a ; + "1824"; + "1824-12-31"^^xsd:date; + "1824-01-01"^^xsd:date; + 341; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 342; + ; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + 343; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + 344; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 345; + ; + . + + a ; + "July 1841"; + "1841-07-31"^^xsd:date; + "1841-07-01"^^xsd:date; + "July 1841"; + "1841-07-31"^^xsd:date; + "1841-07-01"^^xsd:date; + 346; + "Education"; + "Other"; + ; + ; + ; + "Just for two years" . + + a ; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + 348; + "Other"; + ; + ; + ; + "With her husband Otto Goldschmidt" . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 35; + "Forced"; + ; + ; + ; + "Paris and other european cities" . + + a ; + "Fall 1852"; + "1852-12-21"^^xsd:date; + "1852-09-22"^^xsd:date; + "Fall 1852"; + "1852-12-21"^^xsd:date; + "1852-09-22"^^xsd:date; + 350; + "Other"; + ; + ; + ; + "After the tours in USA. Her Husband is a German." . + + a ; + "between 1840 and 1866"; + "1866-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "between 1840 and 1866"; + "1866-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 355; + "Other"; + "Family"; + ; + ; + ; + "Liverpool" . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 356; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 357; + "Labour"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 358; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 359; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 36; + "Forced"; + "Family"; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 360; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 361; + ; + ; + . + + a ; + "-"; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 362; + "Family"; + ; + ; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "-"; + 363; + "Family"; + ; + ; + . + + a ; + "July 1842"; + "1842-07-31"^^xsd:date; + "1842-07-01"^^xsd:date; + "-"; + 364; + "Family"; + ; + ; + . + + a ; + "-"; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 365; + "Labour"; + ; + ; + . + + a ; + "-"; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 366; + "Labour"; + ; + ; + . + + a ; + "-"; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 367; + "Labour"; + ; + ; + . + + a ; + "-"; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 368; + "Labour"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "-"; + 369; + ; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 37; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "-"; + 370; + ; + ; + . + + a ; + "at 22nd July 1856 or 1st August 1856"; + "1856-08-01"^^xsd:date; + "1856-08-01"^^xsd:date; + "-"; + 371; + ; + ; + . + + a ; + "-"; + "1858-11-01"^^xsd:date; + "between 1856 and 1858"; + "1856-08-01"^^xsd:date; + 372; + ; + ; + . + + a ; + "1st November 1858"; + "1858-11-01"^^xsd:date; + "1858-11-01"^^xsd:date; + "-"; + 373; + ; + ; + . + + a ; + "-"; + "1869-12-31"^^xsd:date; + "between 1858 and 1869"; + "1858-11-01"^^xsd:date; + 374; + ; + ; + . + + a ; + "-"; + "1869-12-31"^^xsd:date; + "between 1858 and 1869"; + "1858-11-01"^^xsd:date; + 375; + ; + ; + . + + a ; + "-"; + "1869-12-31"^^xsd:date; + "between 1858 and 1869"; + "1858-11-01"^^xsd:date; + 376; + ; + ; + . + + a ; + "-"; + "1869-12-31"^^xsd:date; + "between 1858 and 1869"; + "1858-11-01"^^xsd:date; + 377; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "-"; + 378; + ; + ; + . + + a ; + "-"; + "7th June 1897"; + "1897-06-07"^^xsd:date; + "1897-06-07"^^xsd:date; + 379; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 38; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 380; + "Education"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 381; + "Labour"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 382; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 383; + "Labour"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "July 1885"; + "1885-07-31"^^xsd:date; + "1885-07-01"^^xsd:date; + 384; + "Labour"; + ; + ; + . + + a ; + "May 1888"; + "1888-05-31"^^xsd:date; + "1888-05-01"^^xsd:date; + "July 1886"; + "1886-07-31"^^xsd:date; + "1886-07-01"^^xsd:date; + 385; + "Labour"; + ; + ; + . + + a ; + "March 1891"; + "1891-03-31"^^xsd:date; + "1891-03-01"^^xsd:date; + "October 1888"; + "1888-10-31"^^xsd:date; + "1888-10-01"^^xsd:date; + 386; + "Labour"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 387; + "Labour"; + ; + . + + a ; + "between April 1897 and December 1907"; + "1907-12-31"^^xsd:date; + "1897-04-01"^^xsd:date; + 388; + "Labour"; + ; + ; + . + + a ; + "February 1911"; + "1911-02-28"^^xsd:date; + "1911-02-01"^^xsd:date; + "1907-12-20"^^xsd:date; + 389; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 39; + ; + ; + . + + a ; + "1911-04-08"^^xsd:date; + "1911-04-08"^^xsd:date; + 390; + ; + ; + ; + "New York- Cherbourg-Paris- Vienna" . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 391; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 392; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 393; + "Family"; + ; + ; + . + + a ; + 394; + "Education"; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 395; + "Labour"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 396; + "Labour"; + ; + . + + a ; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + 397; + "Labour"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 398; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 399; + ; + ; + . + + a ; + 4; + ; + . + + a ; + "1939-04-01"^^xsd:date; + 40; + ; + . + + a ; + 400; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 401; + ; + . + + a ; + "1915"; + "1915-10-27"^^xsd:date; + "1915-10-27"^^xsd:date; + "1915"; + "1915-10-27"^^xsd:date; + "1915-10-27"^^xsd:date; + 402; + ; + ; + ; + "Copenhagen" . + + a ; + 403; + ; + . + + a ; + 404; + ; + . + + a ; + 405; + ; + . + + a ; + "October 1876"; + "1876-10-31"^^xsd:date; + "1876-10-01"^^xsd:date; + "July 1876"; + "1876-07-13"^^xsd:date; + "1876-07-01"^^xsd:date; + 406; + "Other"; + "Labour"; + ; + ; + ; + "Bremen, New York, Los Angeles" . + + a ; + "January 1877"; + "1877-01-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "January 1877"; + "1877-01-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 408; + "Education"; + "Labour"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 41; + ; + . + + a ; + "approx. 1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "approx. 1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 415; + "Family"; + "Other"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 416; + "Labour"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 417; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 418; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 419; + ; + . + + a ; + "23rd September 1870"; + "1870-09-23"^^xsd:date; + "1870-09-23"^^xsd:date; + "-"; + 42; + "Labour"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 420; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 421; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 422; + "Education"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 423; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 424; + "Education"; + ; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + 425; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 426; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 427; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 428; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 429; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "-"; + 43; + "Other"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 430; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 431; + "Labour"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 432; + "Labour"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 433; + "Labour"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 434; + ; + ; + . + + a ; + "February 1905"; + "1905-02-28"^^xsd:date; + "1905-02-01"^^xsd:date; + 435; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 436; + "Forced"; + ; + ; + . + + a ; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 437; + "Family"; + ; + ; + . + + a ; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + 438; + "Family"; + ; + ; + . + + a ; + "1922-09-30"^^xsd:date; + "1922-09-01"^^xsd:date; + 439; + "Family"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "-"; + 44; + "Other"; + ; + ; + . + + a ; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 440; + "Family"; + ; + ; + . + + a ; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 441; + "Family"; + ; + ; + . + + a ; + "1932-02-28"^^xsd:date; + "1932-02-01"^^xsd:date; + 442; + "Forced"; + ; + ; + . + + a ; + "1934-09-29"^^xsd:date; + "1934-09-29"^^xsd:date; + 443; + "Family"; + ; + ; + . + + a ; + 444; + ; + ; + . + + a ; + 445; + ; + ; + . + + a ; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 446; + "Other"; + "Labour"; + ; + ; + . + + a ; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 447; + "Other"; + "Labour"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 448; + "Other"; + ; + ; + ; + "Panama - New York - Seattle" . + + a ; + "between 1897 and 1898"; + "1898-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "between 1897 and 1898"; + "1898-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 449; + "Labour"; + ; + ; + ; + "Yukon Territory" . + + a ; + "16th April 1875"; + "1875-04-16"^^xsd:date; + "1875-04-16"^^xsd:date; + "-"; + 45; + "Labour"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 450; + "Other"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 451; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 452; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 453; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 454; + "Other"; + ; + ; + . + + a ; + "1889-10-31"^^xsd:date; + "1889-09-01"^^xsd:date; + "September/October 1889"; + "1889-10-31"^^xsd:date; + "1889-09-01"^^xsd:date; + 455; + "Labour"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "-"; + 456; + "Labour"; + ; + ; + . + + a ; + "July 1896"; + "1896-07-31"^^xsd:date; + "1896-07-01"^^xsd:date; + "-"; + 457; + "Other"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "-"; + 458; + "Labour"; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "-"; + 459; + "Labour"; + ; + ; + . + + a ; + "between May 1884 and December 1889"; + "1889-12-31"^^xsd:date; + "1884-05-01"^^xsd:date; + "between May 1884 and December 1889"; + "1889-12-31"^^xsd:date; + "1884-05-01"^^xsd:date; + 46; + "Labour"; + ; + ; + ; + "Bremen" . + + a ; + 460; + ; + . + + a ; + 461; + ; + ; + . + + a ; + 462; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 463; + "Labour"; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 464; + ; + ; + . + + a ; + 465; + ; + ; + . + + a ; + "1868-08-18"^^xsd:date; + "1868-08-18"^^xsd:date; + "between 11.07.1868 and 18.08.1868"; + "1868-08-18"^^xsd:date; + "1868-07-11"^^xsd:date; + 466; + "Labour"; + ; + ; + . + + a ; + 467; + ; + ; + . + + a ; + "1869-12-19"^^xsd:date; + "1869-12-19"^^xsd:date; + "between 01.01.1869 and 18.12.1869"; + "1869-12-18"^^xsd:date; + "1869-01-01"^^xsd:date; + 468; + "Labour"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 469; + ; + ; + . + + a ; + "April 1937"; + "1937-04-30"^^xsd:date; + "1937-04-01"^^xsd:date; + "March 1937"; + "1937-03-31"^^xsd:date; + "1937-03-01"^^xsd:date; + 47; + "Labour"; + ; + ; + ; + "New York (date of arrival: 16th March 1937)" . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 470; + "Other"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 471; + "Family"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 472; + ; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + 473; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + 474; + "Education"; + ; + ; + . + + a ; + 475; + "Labour"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 476; + "Labour"; + ; + ; + . + + a ; + "between 1864 and 1865"; + "1865-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "between 1864 and 1865"; + "1865-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 477; + "Other"; + ; + ; + . + + a ; + 479; + ; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "-"; + 48; + "Education"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 480; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 481; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 482; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 483; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 484; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 485; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 486; + "Forced"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 487; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 488; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 489; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 49; + "Forced"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 490; + "Labour"; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + 491; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 492; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 493; + ; + . + + a ; + 494; + "Family"; + ; + ; + . + + a ; + 495; + "Other"; + ; + ; + . + + a ; + "as of may 1880"; + "1880-12-31"^^xsd:date; + "1880-05-05"^^xsd:date; + "1880-05-02"^^xsd:date; + 496; + "Other"; + ; + ; + ; + "Hamburg-Buenos Aires" . + + a ; + "1892"; + "1892-12-30"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892"; + "1892-12-30"^^xsd:date; + "1892-01-01"^^xsd:date; + 497; + "Labour"; + ; + ; + . + + a ; + "1902"; + "1902-12-30"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-30"^^xsd:date; + "1902-01-01"^^xsd:date; + 498; + "Family"; + ; + ; + . + + a ; + "1892"; + "1892-12-30"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892"; + "1892-12-30"^^xsd:date; + "1892-01-01"^^xsd:date; + 499; + "Family"; + ; + ; + . + + a ; + 5; + "Education"; + ; + ; + . + + a ; + 500; + "Education"; + ; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + 501; + "Labour"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 502; + "Labour"; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 503; + "Labour"; + "Family"; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 504; + "Labour"; + ; + . + + a ; + "1813-12-31"^^xsd:date; + 505; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 506; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 507; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 508; + "Forced"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 509; + "Family"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 51; + "Labour"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 510; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 511; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 512; + ; + ; + . + + a ; + "1864"; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 513; + "Family"; + ; + ; + . + + a ; + "1866"; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 514; + "Family"; + ; + ; + . + + a ; + 515; + "Forced"; + "Family"; + ; + ; + . + + a ; + "1874"; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 516; + "Family"; + ; + ; + . + + a ; + "1878"; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 517; + "Labour"; + ; + ; + . + + a ; + "between 1882 and 1887"; + "between 1882 and 1887"; + "1887-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 518; + "Labour"; + ; + ; + . + + a ; + "between 1898 and 1899"; + "between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 519; + "Other"; + ; + ; + . + + a ; + "1964"; + "1964-12-31"^^xsd:date; + "1964-01-01"^^xsd:date; + "1964"; + "1964-12-31"^^xsd:date; + "1964-01-01"^^xsd:date; + 52; + "Other"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 522; + "Education"; + ; + ; + . + + a ; + "January 1900"; + "1900-01-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 523; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 524; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 525; + "Education"; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 526; + "Other"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 527; + "Education"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 528; + "Education"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 529; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 53; + "Family"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 530; + ; + ; + . + + a ; + "August 1885"; + "1885-08-31"^^xsd:date; + "1885-08-01"^^xsd:date; + 531; + ; + ; + . + + a ; + "October 1885"; + "1885-10-31"^^xsd:date; + "1885-10-01"^^xsd:date; + 532; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 533; + "Education"; + ; + ; + . + + a ; + "September 1876"; + "1876-09-30"^^xsd:date; + "1876-09-01"^^xsd:date; + 534; + "Education"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 535; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 536; + "Labour"; + ; + . + + a ; + "approx. 1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "approx. 1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 537; + "Family"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 538; + "Education"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 539; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 54; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 540; + "Labour"; + ; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 541; + "Other"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 542; + "Labour"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 543; + "Labour"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 544; + "Labour"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 545; + "Labour"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 546; + "Labour"; + ; + ; + . + + a ; + 547; + "Family"; + ; + ; + . + + a ; + 548; + "Education"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 549; + "Labour"; + "Family"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 55; + ; + . + + a ; + 550; + ; + ; + . + + a ; + 551; + ; + ; + . + + a ; + 552; + ; + ; + . + + a ; + 553; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 554; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 555; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 556; + "Education"; + ; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + 557; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 558; + "Labour"; + ; + . + + a ; + 559; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 56; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 560; + "Family"; + ; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "between 23.05.1823 abd 31.12.1841"; + "1841-12-31"^^xsd:date; + "1823-05-23"^^xsd:date; + 561; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-12-05"^^xsd:date; + 562; + "Labour"; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 563; + "Labour"; + ; + ; + ; + "Olumuc" . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "between 21.10.1845 and 31.12.1845"; + "1845-12-31"^^xsd:date; + "1845-10-21"^^xsd:date; + 564; + "Forced"; + "Labour"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 565; + "Labour"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 566; + "Labour"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 567; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 568; + "Labour"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 569; + "Labour"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 57; + "Forced"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 570; + "Labour"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 571; + "Labour"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 572; + "Labour"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 573; + "Labour"; + ; + ; + . + + a ; + 574; + ; + ; + ; + "Stockholm-Kassel-Paris" . + + a ; + "1819"; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 575; + ; + . + + a ; + "1824"; + "1824-12-31"^^xsd:date; + "1824-01-01"^^xsd:date; + "1819"; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 576; + "Family"; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + 577; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 578; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + 579; + ; + . + + a ; + 58; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 580; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 581; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 582; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 583; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 584; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 585; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 586; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 587; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 588; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 589; + ; + . + + a ; + 59; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 590; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 591; + ; + . + + a ; + 592; + "Education"; + ; + ; + . + + a ; + 593; + "Family"; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 594; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 595; + ; + ; + . + + a ; + 596; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 597; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 598; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 599; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 6; + "Labour"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 60; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 600; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 601; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 602; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 603; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 604; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 605; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 606; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 607; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 608; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 609; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 61; + ; + ; + . + + a ; + "1887"; + "1887-09-26"^^xsd:date; + "1887-09-26"^^xsd:date; + "1887"; + "1887-09-26"^^xsd:date; + "1887-01-01"^^xsd:date; + 610; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 611; + "Forced"; + "Family"; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 612; + ; + ; + . + + a ; + "27th August 1847"; + "1847-08-27"^^xsd:date; + "-"; + 613; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 614; + "Other"; + ; + ; + . + + a ; + "between March 1899 and December 1899"; + "1899-12-31"^^xsd:date; + "1899-03-01"^^xsd:date; + "March 1899"; + "1899-03-31"^^xsd:date; + "1899-03-01"^^xsd:date; + 615; + "Other"; + ; + ; + . + + a ; + "9th July 1870"; + "1870-07-09"^^xsd:date; + "1870-07-09"^^xsd:date; + "-"; + 616; + "Family"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "-"; + 617; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "-"; + 618; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + 619; + "Labour"; + ; + ; + ; + "Berlin" . + + a ; + 62; + ; + ; + . + + a ; + "June 1837"; + "1837-06-30"^^xsd:date; + "1837-06-01"^^xsd:date; + 621; + "Forced"; + "Labour"; + ; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + 622; + "Forced"; + ; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + 623; + "Other"; + ; + ; + . + + a ; + "April 1842"; + "1842-04-30"^^xsd:date; + "1842-04-01"^^xsd:date; + 624; + "Forced"; + "Labour"; + ; + ; + . + + a ; + "March 1849"; + "1849-03-31"^^xsd:date; + "1849-03-01"^^xsd:date; + 625; + "Forced"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 626; + "Forced"; + ; + ; + . + + a ; + "November 1859"; + "1859-11-30"^^xsd:date; + "1859-11-01"^^xsd:date; + 627; + "Forced"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 628; + "Labour"; + ; + ; + ; + "Altenburg – Nuremberg – Munich – Biebrich - Salzburg" . + + a ; + "14th August 1862"; + "1862-08-14"^^xsd:date; + "1862-08-14"^^xsd:date; + "July 1862"; + "1862-07-31"^^xsd:date; + "1862-07-01"^^xsd:date; + 629; + ; + ; + . + + a ; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + 63; + ; + ; + . + + a ; + "4th May 1864"; + "1864-05-04"^^xsd:date; + "1864-05-04"^^xsd:date; + "March 1864"; + "1864-03-31"^^xsd:date; + "1864-03-01"^^xsd:date; + 630; + "Forced"; + ; + ; + ; + "Mariafeld - Stuttgart" . + + a ; + "15th April 1866"; + "1866-04-15"^^xsd:date; + "1866-04-15"^^xsd:date; + "December 1865"; + "1865-12-31"^^xsd:date; + "1865-12-01"^^xsd:date; + 635; + "Other"; + ; + ; + ; + "Genf - Toulon - Lyon - Marseille" . + + a ; + "March 1872"; + "1872-03-31"^^xsd:date; + "1872-03-01"^^xsd:date; + 636; + "Labour"; + ; + ; + . + + a ; + "1895-12-31"^^xsd:date; + 637; + "Education"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 638; + ; + ; + . + + a ; + 639; + "Education"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 64; + "Labour"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 640; + "Other"; + ; + ; + . + + a ; + "1868-08-18"^^xsd:date; + "1868-08-18"^^xsd:date; + "between 11.07.1868 and 18.08.1868"; + "1868-08-18"^^xsd:date; + "1868-07-11"^^xsd:date; + 641; + "Labour"; + ; + ; + . + + a ; + "1868-08-18"^^xsd:date; + "1868-08-18"^^xsd:date; + "between 11.07.1868 and 18.08.1868"; + "1868-08-18"^^xsd:date; + "1868-07-11"^^xsd:date; + 642; + "Labour"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 643; + "Labour"; + ; + ; + . + + a ; + 644; + "Education"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 645; + "Labour"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 646; + "Labour"; + ; + ; + . + + a ; + "1868-1895"; + "1895-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 648; + "Education"; + ; + ; + . + + a ; + 649; + "Education"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 65; + "Labour"; + ; + ; + . + + a ; + 650; + "Family"; + ; + . + + a ; + "1779-12-17"^^xsd:date; + 651; + "Forced"; + ; + . + + a ; + "1781"; + "1781-12-31"^^xsd:date; + "1781-01-01"^^xsd:date; + 652; + "Labour"; + ; + . + + a ; + "1791"; + "1791-12-31"^^xsd:date; + "1791-01-01"^^xsd:date; + 653; + "Forced"; + ; + . + + a ; + 654; + ; + . + + a ; + "September 1792"; + "1792-09-30"^^xsd:date; + "1792-09-01"^^xsd:date; + 655; + ; + . + + a ; + "1805"; + "1805-12-31"^^xsd:date; + "1805-01-01"^^xsd:date; + 656; + ; + . + + a ; + "1839-11-05"^^xsd:date; + "1839-11-05"^^xsd:date; + "Begin of November 1839"; + "1839-11-05"^^xsd:date; + "1839-11-01"^^xsd:date; + 657; + "Labour"; + ; + ; + . + + a ; + "1840-11-11"^^xsd:date; + "1840-11-11"^^xsd:date; + "1840-11-10"^^xsd:date; + "1840-11-10"^^xsd:date; + 658; + "Labour"; + ; + ; + . + + a ; + "Begin of 1847"; + "1847-01-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Summer 1846"; + "1846-08-31"^^xsd:date; + "1846-07-01"^^xsd:date; + 659; + "Labour"; + ; + ; + ; + "Wrocław, Szczecin, Berlin" . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 66; + "Labour"; + ; + ; + . + + a ; + "Begin of Oktober 1949"; + "1849-10-06"^^xsd:date; + "1849-10-01"^^xsd:date; + "End of September 1949"; + "1849-09-30"^^xsd:date; + "1849-09-29"^^xsd:date; + 660; + "Labour"; + ; + ; + . + + a ; + "1794"; + "1794-12-31"^^xsd:date; + "1794-01-01"^^xsd:date; + 663; + "Family"; + ; + ; + . + + a ; + "1812"; + "1812-12-31"^^xsd:date; + "1812-01-01"^^xsd:date; + 664; + ; + ; + . + + a ; + "1816"; + "1816-12-31"^^xsd:date; + "1816-01-01"^^xsd:date; + 665; + ; + ; + . + + a ; + "1818"; + "1818-12-31"^^xsd:date; + "1818-01-01"^^xsd:date; + 666; + ; + ; + . + + a ; + "1819"; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 667; + ; + ; + . + + a ; + "1822"; + "1822-12-31"^^xsd:date; + "1822-01-01"^^xsd:date; + 668; + "Other"; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 669; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 67; + "Labour"; + ; + ; + . + + a ; + "1824"; + "1824-12-31"^^xsd:date; + "1824-01-01"^^xsd:date; + 670; + ; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + 671; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 672; + ; + ; + . + + a ; + "1808"; + "1808-12-31"^^xsd:date; + "1808-01-01"^^xsd:date; + 673; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 674; + ; + . + + a ; + "September 1825"; + "1825-09-30"^^xsd:date; + "1825-09-01"^^xsd:date; + 675; + "Family"; + ; + ; + . + + a ; + "June 1826"; + "1826-06-30"^^xsd:date; + "1826-06-01"^^xsd:date; + 676; + "Family"; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + 677; + "Family"; + ; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + 678; + "Family"; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 679; + ; + ; + . + + a ; + "Summer 1922"; + "1922-09-23"^^xsd:date; + "1922-06-24"^^xsd:date; + 68; + "Labour"; + ; + ; + . + + a ; + "between June 1826 and November 1828 / late Autumm 1825"; + "1828-11-30"^^xsd:date; + "1826-06-01"^^xsd:date; + 680; + "Family"; + ; + ; + . + + a ; + "1807"; + "1807-12-31"^^xsd:date; + "1807-01-01"^^xsd:date; + 681; + "Family"; + ; + ; + . + + a ; + "1881"; + "1881-01-01"^^xsd:date; + "1881-01-01"^^xsd:date; + 682; + "Forced"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 683; + "Family"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 684; + "Labour"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 685; + "Labour"; + ; + ; + . + + a ; + "1949"; + "1949-12-31"^^xsd:date; + "1949-01-01"^^xsd:date; + 686; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 687; + "Education"; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 688; + "Labour"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 689; + "Labour"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 69; + "Forced"; + ; + ; + . + + a ; + "1877-09-01"^^xsd:date; + 690; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 691; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 692; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 693; + "Labour"; + ; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 694; + "Labour"; + "Family"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 695; + "Family"; + ; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 696; + "Labour"; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 697; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 698; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 699; + "Labour"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 7; + "Labour"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 70; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 700; + "Education"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 701; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 702; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 703; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 704; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 705; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 706; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 707; + ; + . + + a ; + 708; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 709; + "Family"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 71; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + 710; + "Family"; + ; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + 711; + "Family"; + ; + ; + ; + "Liverpool" . + + a ; + "June 1826"; + "1826-06-30"^^xsd:date; + "1826-06-01"^^xsd:date; + "June 1826"; + "1826-06-30"^^xsd:date; + "1826-06-01"^^xsd:date; + 712; + "Family"; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + 713; + "Family"; + ; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 714; + "Family"; + ; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + 715; + "Labour"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 719; + "Forced"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 720; + "Forced"; + "Family"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 721; + "Other"; + ; + ; + . + + a ; + "8th July 1821"; + "1821-07-08"^^xsd:date; + "1821-07-08"^^xsd:date; + "1821"; + "1821-07-08"^^xsd:date; + "1821-01-01"^^xsd:date; + 73; + "Education"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 74; + "Labour"; + ; + ; + . + + a ; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 75; + "Labour"; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + 76; + "Labour"; + ; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + 77; + "Labour"; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 78; + "Labour"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 79; + "Forced"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 8; + "Labour"; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + 80; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 81; + ; + ; + . + + a ; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 814; + "Education"; + ; + ; + . + + a ; + "1888-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1888-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 819; + "Education"; + ; + ; + ; + "Milano" . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 82; + ; + ; + . + + a ; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 829; + "Labour"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 83; + "Labour"; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 834; + "Labour"; + ; + ; + . + + a ; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 839; + "Labour"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 84; + ; + . + + a ; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 844; + "Labour"; + ; + ; + . + + a ; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 849; + "Labour"; + ; + ; + . + + a ; + 85; + ; + . + + a ; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 854; + "Labour"; + ; + ; + . + + a ; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 859; + "Labour"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 86; + "Labour"; + ; + . + + a ; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 864; + "Labour"; + ; + ; + . + + a ; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 869; + "Labour"; + ; + ; + . + + a ; + 87; + ; + . + + a ; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 874; + "Labour"; + ; + ; + . + + a ; + 88; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 884; + "Labour"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882"; + "1882-01-01"^^xsd:date; + "1882-01-01"^^xsd:date; + 889; + "Labour"; + ; + ; + . + + a ; + 89; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1883"; + "1883-01-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 894; + "Labour"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 899; + "Labour"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 9; + "Labour"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 90; + "Labour"; + ; + ; + . + + a ; + "1938-12-31"^^xsd:date; + "1938-12-01"^^xsd:date; + "1938-12-31"^^xsd:date; + "1938-12-01"^^xsd:date; + 909; + "Forced"; + ; + ; + ; + "England, France" . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 91; + "Labour"; + ; + ; + ; + "London-Moscow - London - New York - Mexico City-Jamaica - South America - Buenos Aires" . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 919; + ; + ; + . + + a ; + 92; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 924; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 929; + ; + ; + . + + a ; + 93; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 933; + "Education"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 934; + ; + ; + . + + a ; + 939; + "Education"; + ; + ; + . + + a ; + 94; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 944; + "Education"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 949; + "Labour"; + ; + ; + . + + a ; + 95; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 954; + "Labour"; + ; + ; + . + + a ; + 96; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 964; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 969; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 97; + ; + ; + . + + a ; + "1901/1902"; + "1902-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901/1902"; + "1902-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 974; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 979; + ; + ; + . + + a ; + 98; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 984; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 985; + ; + ; + . + + a ; + 99; + ; + ; + . + + a ; + 1016; + ""; + ""; + "Stadttheater" . + + a ; + 1043; + "Company"; + ""; + "Phenix Dramática theater company" . + + a ; + 106; + "Company"; + ""; + "Carleton Opera Company" . + + a ; + 1061; + "Company"; + ""; + "Tour with Phenix Dramática theater company" . + + a ; + 1137; + ""; + "Niblos Garden" . + + a ; + 114; + "Theatre"; + ""; + "Oper Wien"; + . + + a ; + 116; + "Theatre"; + ""; + "Teatro Malibran" . + + a ; + 118; + "Education (Theatre related)"; + ""; + "Julliard School" . + + a ; + 1194; + ""; + "Hanover Square concert" . + + a ; + 1197; + ""; + ""; + "Soho Theatre" . + + a ; + 1209; + ""; + ""; + "Soho Theatre" . + + a ; + 1227; + ""; + ""; + "Soho Theatre" . + + a ; + 1239; + ""; + ""; + "Sadlers Wells Theatre" . + + a ; + 127; + "Other"; + ""; + "University of Chicago"; + . + + a ; + 128; + "Other"; + ""; + "Holy Family Academy in Chicago"; + . + + a ; + 1299; + "Company"; + ""; + "With Mr. Herne" . + + a ; + 1315; + "Other"; + ""; + "Woods Museum and Metropolitan" . + + a ; + 132; + "Company"; + ""; + "E.A. McDowell acting company" . + + a ; + 1355; + "Company"; + ""; + "Daniel Frohmans stock company" . + + a ; + 1435; + ""; + ""; + "Union Square Theatre" . + + a ; + 152; + "Company"; + ""; + "John W. Albaugh's company" . + + a ; + 1560; + "Company"; + ""; + "Orpheum Circuit" . + + a ; + 1565; + "Circus"; + ""; + "Orpheum Circuit Consolidated (later Orpheum Circuit Inc.)" . + + a ; + 158; + "Education (Theatre related)"; + ""; + "conservatory of Odessa"; + . + + a ; + 159; + "Education (Theatre related)"; + ""; + "Academy of Acting, Moscow"; + . + + a ; + 1590; + ""; + ""; + "Provincial Theatre" . + + a ; + 1595; + ""; + "World Fair Paris" . + + a ; + 160; + "Theatre"; + ""; + "Stanislawsky’s Moscow Art Theatre"; + . + + a ; + 1610; + ""; + ""; + "office of Orpheum theaters in Chicago" . + + a ; + 1620; + ""; + "The Western Vaudeville Managers Association" . + + a ; + 1625; + "Company"; + ""; + "United Booking Offices of Orpheum Circuit" . + + a ; + 173; + "Company"; + ""; + "Modrezjewski’s company" . + + a ; + 174; + "Company"; + ""; + "local company in Cracow"; + . + + a ; + 1761; + "Company"; + ""; + "Sociedade Dramática Nacional" . + + a ; + 177; + "Company"; + ""; + "juvenile opera company" . + + a ; + 179; + "Theatre"; + ""; + "New York Bijou Opera House"; + . + + a ; + 1836; + "Company"; + ""; + "Companhia Phênix Dramática" . + + a ; + 1841; + "Theatre"; + ""; + "Teatro Santanna" . + + a ; + 1861; + "Theatre"; + ""; + "Teatro Santanna" . + + a ; + 1886; + "Theatre"; + ""; + "Teatro Phênix Dramática" . + + a ; + 1901; + "Theatre"; + ""; + "Teatro Eden Lavradio" . + + a ; + 1916; + "Company"; + ""; + "Worked with his father" . + + a ; + 193; + "Theatre"; + ""; + "Palace Theatre London"; + . + + a ; + 1956; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 1961; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 1971; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 1976; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 1981; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 1991; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 2076; + "Company"; + ""; + "Opera Bouffe" . + + a ; + 2081; + "Company"; + ""; + "Opera Bouffe" . + + a ; + 2086; + ""; + ""; + "Booth’s Theatre" . + + a ; + 2091; + "Company"; + ""; + "Opera Bouffe" . + + a ; + 2101; + "Company"; + ""; + "French Opera Bouffe" . + + a ; + 215; + ""; + ""; + "Hoftheater Detmold" . + + a ; + 2241; + "Theatre"; + ""; + "Teatro Solis" . + + a ; + 2265; + "Company"; + ""; + "Colonel Miles’s company" . + + a ; + 2275; + "Company"; + ""; + "Colonel Miles’s company" . + + a ; + 2310; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2315; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2320; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2325; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2330; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2335; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2385; + "Company"; + ""; + "Colonel Miles’s company & McWade Company" . + + a ; + 2400; + "Company"; + ""; + "Company" . + + a ; + 2405; + "Company"; + ""; + "Company" . + + a ; + 2410; + "Company"; + ""; + "Company" . + + a ; + 2435; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2440; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2450; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2455; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2460; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2465; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2475; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 2485; + "Theatre"; + ""; + "Crosbys Opera House" . + + a ; + 2495; + "Theatre"; + ""; + "Manager of the Royal Italian Opera, Covent Garden, London" . + + a ; + 2520; + "Education (Theatre related)"; + ""; + "National Conservatory of Music and Performing Arts" . + + a ; + 2545; + "Education (Theatre related)"; + ""; + "National Conservatory of Music and Performing Arts" . + + a ; + 2555; + "Education (Theatre related)"; + ""; + "National School of Arts of Drama" . + + a ; + 2560; + ""; + "Comisión de Lectura La Comedia" . + + a ; + 261; + ""; + ""; + "Reichshallen Theater" . + + a ; + 2685; + "Education (Theatre related)"; + ""; + "Akademie der Schönen Künste"; + . + + a ; + 2720; + ""; + ""; + "Theatre Italien" . + + a ; + 2731; + "Company"; + ""; + "The Deardon Sisters" . + + a ; + 2736; + ""; + "Folies Bergère Paris" . + + a ; + 2741; + "Company"; + ""; + "Professor Brown’s Lady Velocipede Troupe" . + + a ; + 2751; + "Company"; + ""; + "Schumann’s Transatlantiques" . + + a ; + 2756; + ""; + ""; + "Herrmann’s Broad Street Theatre" . + + a ; + 2761; + ""; + "Burlesque house on Fulton Street" . + + a ; + 2766; + "Theatre"; + ""; + "Herrmann’s Theatre" . + + a ; + 2771; + ""; + ""; + "Hoyt’s Theatre" . + + a ; + 2781; + "Company"; + ""; + "Tour with Leon Herrmann" . + + a ; + 2791; + "Company"; + ""; + "With Leon Herrmann" . + + a ; + 2811; + ""; + ""; + "Hammerstein’s New York Roof Theatre" . + + a ; + 282; + ""; + ""; + "Stamford Circuit theatres" . + + a ; + 2826; + ""; + "Winter Garden, Berlin" . + + a ; + 2831; + "Company"; + ""; + "Adelaide Herrmann Tour" . + + a ; + 2836; + ""; + "London Hippodrome" . + + a ; + 2841; + ""; + "Folies Bergère" . + + a ; + 2846; + "Circus"; + ""; + "Keith-Albee Vaudeville circuit" . + + a ; + 2851; + ""; + "Performances in Vaudeville houses and roof gardens" . + + a ; + 2856; + "Company"; + ""; + "Herrmann the Great Company" . + + a ; + 2861; + ""; + "Klaw’s and Erlanger’s Advanced Vaudeville" . + + a ; + 2866; + "Circus"; + ""; + "Keith and Orpheum circuits" . + + a ; + 2871; + "Circus"; + ""; + "Orpheum circuits" . + + a ; + 2876; + ""; + ""; + "Keith’s Riverside Theatre" . + + a ; + 2881; + "Company"; + ""; + "“Merry Widow“ Company/Adelaide Herrmann Vaudeville Company" . + + a ; + 2886; + ""; + ""; + "Payret theatre" . + + a ; + 2891; + ""; + ""; + "Priscilla theater" . + + a ; + 2896; + ""; + "Hippodrome" . + + a ; + 2901; + ""; + ""; + "Keith’s Theatre" . + + a ; + 2906; + ""; + ""; + "Keith’s Orpheum Theater" . + + a ; + 2990; + ""; + ""; + "Novedades Theatre" . + + a ; + 3000; + "Company"; + ""; + "Mariano Galé Company" . + + a ; + 3010; + "Company"; + ""; + "His own company" . + + a ; + 303; + ""; + ""; + "Deutsches Theater in New York" . + + a ; + 3030; + "Company"; + ""; + "Jerónimo Podestá Company" . + + a ; + 3035; + ""; + "Podestá Brothers" . + + a ; + 3040; + "Company"; + ""; + "Orfilia Rico Company (Dir: Julio Sánchez Gardel)" . + + a ; + 3080; + "Company"; + ""; + "Fanny Brenna Company" . + + a ; + 3150; + ""; + ""; + "Association of Theatre Critics" . + + a ; + 316; + ""; + ""; + "RKO Radio" . + + a ; + 3235; + ""; + ""; + "National Institute of Theatre Studies (INET)" . + + a ; + 324; + "Theatre"; + ""; + "Yiddish theater in Jassy (Romania)"; + . + + a ; + 3240; + "Education (Theatre related)"; + ""; + "National School for Music and Scenic Arts" . + + a ; + 3245; + ""; + "National Senate" . + + a ; + 325; + "Printed Media"; + ""; + "Yiddish Illustrated Newspaper in New York"; + . + + a ; + 326; + "Printed Media"; + "humorous magazine"; + "Der alter Jisrolik"; + . + + a ; + 328; + "Society/Union"; + ""; + "private company of actors by fanny janauschek" . + + a ; + 329; + "Company"; + ""; + "Ringelmannschen Theatergesellschaft" . + + a ; + 330; + ""; + ""; + "Deutscher Bühnenverein" . + + a ; + 332; + ""; + ""; + "Théâtre Viardot (Baden-Baden)" . + + a ; + 333; + "Society/Union"; + ""; + "American Federation of Actors" . + + a ; + 334; + "Company"; + ""; + "The Ullmann-Strakosch Opera Company" . + + a ; + 336; + ""; + ""; + "Kosciuszko Foundation" . + + a ; + 338; + ""; + "Orleneff’s Russian Lyceum" . + + a ; + 339; + ""; + "Garden of Allah" . + + a ; + 340; + ""; + ""; + "Masonic Lodge Charlotte zu den drei Nelken" . + + a ; + 3400; + "Theatre"; + ""; + "Sociedad de Empresarios Teatrales" . + + a ; + 341; + "Printed Media"; + ""; + "Die Breslauer Gesellschaft" . + + a ; + 3415; + ""; + "University of Buenos Aires" . + + a ; + 342; + "Printed Media"; + ""; + "Allgemeine Theater-Revue" . + + a ; + 3420; + "Company"; + ""; + "Alberto Casaux Company" . + + a ; + 3425; + "Company"; + ""; + "Alfredo Camiña, Marcos Caplán and Enrique Serrano Company" . + + a ; + 343; + "Printed Media"; + ""; + "Unterhaltungen für das Theaterpublikum in München"; + . + + a ; + 344; + "Printed Media"; + ""; + "Europa, Chronik der gebildeten Welt in Stuttgart" . + + a ; + 3445; + "Company"; + ""; + "Camila Quiroga Company" . + + a ; + 345; + ""; + ""; + "Catholic Oratorio Society of New York" . + + a ; + 3450; + ""; + "Comedia" . + + a ; + 3455; + "Company"; + ""; + "Concepción Olona Company" . + + a ; + 347; + "Printed Media"; + ""; + "Fine Arts" . + + a ; + 348; + "Company"; + ""; + "Damrosch-Ellis Company" . + + a ; + 3480; + "Company"; + ""; + "El Caracol Company" . + + a ; + 3490; + "Company"; + ""; + "Enrique Muiño Company" . + + a ; + 3495; + "Company"; + ""; + "Ermette Novelli and Tina di Lorenzo Company" . + + a ; + 350; + "Theatre"; + ""; + "Martin Beck Theatre, New York" . + + a ; + 3500; + "Company"; + ""; + "Florencio Parravicini Company" . + + a ; + 3525; + "Company"; + ""; + "Héctor Quiroga Company" . + + a ; + 354; + "Theatre"; + ""; + "Hoftheater Dessau " . + + a ; + 3540; + "Company"; + ""; + "José Podestá Company" . + + a ; + 3560; + "Company"; + ""; + "Luis Arata Company" . + + a ; + 3575; + "Company"; + ""; + "National Company" . + + a ; + 3585; + "Company"; + ""; + "Napolitan Company" . + + a ; + 3595; + "Company"; + ""; + "Pablo Podestá Company" . + + a ; + 360; + "Theatre"; + ""; + "Neustädter Theater Prag" . + + a ; + 3605; + "Company"; + ""; + "Silvio Giovanetti and Julio Traversa Company" . + + a ; + 361; + "Theatre"; + ""; + "Harlem Opera House"; + . + + a ; + 362; + "Theatre"; + ""; + "Columbus Theatre"; + . + + a ; + 3621; + ""; + ""; + "Bolshoi Theater in St. Petersburg" . + + a ; + 364; + ""; + ""; + "Theatre Republic"; + . + + a ; + 365; + "Theatre"; + ""; + "Lew Fields Theatre"; + . + + a ; + 366; + ""; + "Hammerstein's Paradise Roof Garden"; + . + + a ; + 3670; + "Theatre"; + ""; + "Teatro Santa Isabel" . + + a ; + 368; + "Theatre"; + ""; + "Philadelphia Opera House"; + . + + a ; + 3735; + "Casino"; + ""; + "Cassinos tour in São Paulo State" . + + a ; + 374; + "Theatre"; + ""; + "Intimes Theater, Nürnberg" . + + a ; + 378; + "Society/Union"; + ""; + "Reichstheaterkammer"; + . + + a ; + 3780; + ""; + "The Versailles Restaurant" . + + a ; + 379; + "Theatre"; + ""; + "Reinhardt-Bühnen" . + + a ; + 3800; + ""; + "Odeon Records" . + + a ; + 3825; + ""; + "Decca Records" . + + a ; + 3830; + ""; + "Waldorf Astoria" . + + a ; + 3835; + ""; + ""; + "Shubert Theatre" . + + a ; + 3865; + ""; + "Palladium" . + + a ; + 3925; + "Casino"; + ""; + "Town Cassino" . + + a ; + 3935; + ""; + "Ciro’s" . + + a ; + 3940; + "Other"; + ""; + "Mark Hopkins Hotel" . + + a ; + 4031; + "Theatre"; + ""; + "Grande Companhia de Opereta" . + + a ; + 4040; + "Theatre"; + ""; + "Gran Teatro del Liceo" . + + a ; + 4045; + ""; + ""; + "Principal Theatre" . + + a ; + 4050; + ""; + "Palau de la Música" . + + a ; + 4055; + "Education (Theatre related)"; + ""; + "Conservatory of Music of Buenos Aires" . + + a ; + 4070; + "Company"; + ""; + "Tatiana Paulova Company" . + + a ; + 4075; + "Company"; + ""; + "Italia Almirante, Irene López Heredia Company" . + + a ; + 408; + "Media"; + ""; + "Mack Sennetts Keystone Studios"; + . + + a ; + 4080; + "Company"; + ""; + "Werner Krauss Company" . + + a ; + 4085; + "Company"; + ""; + "English Player George Urban Company" . + + a ; + 4090; + "Company"; + ""; + "Armando Falconi Company" . + + a ; + 4126; + "Theatre"; + ""; + "Residenztheater"; + . + + a ; + 4131; + "Education (Theatre related)"; + ""; + "Theaterakademie"; + . + + a ; + 4136; + ""; + "Comedia" . + + a ; + 417; + ""; + ""; + "Masonic Lodge “Zur Beständigkeit”" . + + a ; + 4201; + ""; + "La Nación" . + + a ; + 4226; + ""; + "Federico Ardeirus impresario" . + + a ; + 439; + "Company"; + ""; + "Opera-Bouffe Company" . + + a ; + 4445; + ""; + "Princess Theater" . + + a ; + 4570; + ""; + "Orpheum Theater" . + + a ; + 4600; + ""; + "Raffles Hotel" . + + a ; + 4616; + ""; + "Théâtre Arcadia"; + . + + a ; + 464; + "Theatre"; + ""; + "Palais Garnier"; + . + + a ; + 4656; + ""; + "The California Theatre" . + + a ; + 472; + "Theatre"; + ""; + "French Opera in Moscau"; + . + + a ; + 4756; + ""; + ""; + "Empire Theatre"; + . + + a ; + 4768; + ""; + "Circo Real" . + + a ; + 480; + ""; + ""; + "Zwanglosen Gesellschaft München"; + . + + a ; + 481; + "Education (Theatre related)"; + ""; + "Singing School in Warschau"; + . + + a ; + 485; + "Education (Theatre related)"; + ""; + "Hochschule für Musik, Berlin"; + . + + a ; + 4864; + ""; + "Compañía Dealessi-Camiña-Caplán-Serrano" . + + a ; + 4884; + ""; + "Teatro Real de Lisboa" . + + a ; + 489; + "Theatre"; + ""; + "Volksoper Wien"; + . + + a ; + 48940; + "Printed Media"; + ""; + "A.B.C. Grand Record (Austria)" . + + a ; + 48950; + "Printed Media"; + ""; + "A. Hellmann" . + + a ; + 4900; + "Cerniowce Theatre in Stanisla" . + + a ; + 49270; + "Printed Media"; + ""; + "Albert Teres" . + + a ; + 493; + ""; + ""; + "Musikalischer Verein Polyhymnia"; + . + + a ; + 495; + ""; + "London Holiday Pantimon"; + . + + a ; + 496; + "Company"; + ""; + "Kiralfy Family Hungarian Dance Troupe" . + + a ; + 49600; + "Printed Media"; + ""; + "Arbeiter Zeitung" . + + a ; + 497; + "Company"; + ""; + "Brown`s Lady Velocipede Troupe" . + + a ; + 49730; + "Theatre"; + ""; + "Artef Theatre"; + . + + a ; + 49930; + "Printed Media"; + ""; + "B. Tursh"; + . + + a ; + 50000; + "Printed Media"; + ""; + "Baron" . + + a ; + 50030; + "Printed Media"; + ""; + "Baumritter" . + + a ; + 5008; + "House in Detroit" . + + a ; + 50140; + "Traveling Company"; + ""; + "Berl Bernstein Troupe" . + + a ; + 50350; + "Theatre"; + ""; + "Bowery Garden Theatre"; + . + + a ; + 504; + "Theatre"; + ""; + "Kaminski Theater"; + . + + a ; + 5052; + "Grand Opera House in Kalamazoo" . + + a ; + 50720; + ""; + ""; + "Camp Kinderland" . + + a ; + 50860; + "Theatre"; + ""; + "Casino Teater (previously Gilmore's)"; + . + + a ; + 51050; + "Printed Media"; + ""; + "Chathan Printing" . + + a ; + 511; + "Theatre"; + ""; + "Zuta Theatre"; + . + + a ; + 51200; + "Theatre"; + ""; + "Cidal Circ" . + + a ; + 51370; + "Theatre"; + ""; + "City Theater"; + . + + a ; + 518; + ""; + ""; + "the Hebrew Immigrant Aid Society"; + . + + a ; + 519; + ""; + "World Yiddish Congress" . + + a ; + 520; + ""; + "South American Federation of Polish Jews" . + + a ; + 521; + ""; + "Publishing House Dos Poylishe Yidntum" . + + a ; + 52270; + "Printed Media"; + ""; + "D. Salat" . + + a ; + 52420; + "Printed Media"; + ""; + "Der Moment⁩" . + + a ; + 52430; + "Printed Media"; + ""; + "Der Tog⁩" . + + a ; + 52460; + "Printed Media"; + ""; + "Der Yud⁩" . + + a ; + 52670; + "Theatre"; + ""; + "Die Feymos Teatre"; + . + + a ; + 52680; + "Theatre"; + ""; + "Di Fraye Yidishe Folks-Bine" . + + a ; + 52700; + "Printed Media"; + ""; + "Di idishe tsayṭung⁩" . + + a ; + 52710; + "Printed Media"; + ""; + "Di inṭernatsyonale biblioṭheḳ" . + + a ; + 52730; + "Printed Media"; + ""; + "Di tsukunft" . + + a ; + 52760; + "Printed Media"; + ""; + "Dos Yiddishe Vort" . + + a ; + 52810; + "Amateur"; + ""; + "Dramatic Arts Dramatishe Kunst" . + + a ; + 52840; + "Theatre"; + ""; + "Dramatic Folk Theatre" . + + a ; + 5288; + "Rapids)" . + + a ; + 52940; + "Printed Media"; + ""; + "Dzsheyḳob Gordon" . + + a ; + 53180; + "Printed Media"; + ""; + "Elizeum" . + + a ; + 532; + "Education (Theatre related)"; + ""; + "Accademia di Santa Cecilia"; + . + + a ; + 53250; + "Printed Media"; + ""; + "Empire Music" . + + a ; + 53280; + "Theatre"; + ""; + "Empire Theatre" . + + a ; + 533; + "Education (Theatre related)"; + ""; + "Accademia Filarmonica, Bologna"; + . + + a ; + 535; + "Theatre"; + ""; + "Kaiserhof"; + . + + a ; + 53550; + "Theatre"; + ""; + "Feynman's Folks Theatre" . + + a ; + 5365; + "Albaugh´s Opera House, Baltimore" . + + a ; + 53760; + "Printed Media"; + ""; + "Folḳsbildung" . + + a ; + 53770; + "Kleinkunst"; + ""; + "Folk Singer Troupe" . + + a ; + 53780; + "Theatre"; + ""; + "Folks un Jungt Theatre" . + + a ; + 540; + "Theatre"; + ""; + "German-American Theatre, Berlin"; + . + + a ; + 54070; + "Theatre"; + ""; + "Garden Theatre" . + + a ; + 54100; + "Printed Media"; + ""; + "Garland Pub." . + + a ; + 5453; + "Fresno Grand Opera House, Pasadena" . + + a ; + 54610; + "Printed Media"; + ""; + "Grayzel & Co. Union Printers"; + . + + a ; + 54750; + "Printed Media"; + ""; + "Ha-Asif" . + + a ; + 54770; + "Printed Media"; + ""; + "ha-Dor⁩" . + + a ; + 54780; + "Printed Media"; + ""; + "ha-Karmel⁩" . + + a ; + 549; + "Theatre"; + ""; + "Royal Opera"; + . + + a ; + 54930; + "Printed Media"; + ""; + "ha-Tsofeh ⁩" . + + a ; + 54950; + "Printed Media"; + ""; + "Haynṭ⁩" . + + a ; + 54980; + ""; + ""; + "Hazomir (The Nightingale)" . + + a ; + 55020; + "Printed Media"; + ""; + "Hebrew Publishing Company" . + + a ; + 551; + "Theatre"; + ""; + "Petersburger Hofteather"; + . + + a ; + 552; + "Theatre"; + ""; + "Oper am Boulevard"; + . + + a ; + 553; + "Theatre"; + ""; + "Serbisches Nationaltheater"; + . + + a ; + 55820; + "Theatre"; + ""; + "Hub Theatre" . + + a ; + 55920; + "Traveling Company"; + ""; + "Independent Jewish Actors Company" . + + a ; + 56110; + "Printed Media"; + ""; + "J. Katzenelenbogen"; + . + + a ; + 56310; + "Printed Media"; + ""; + "Joseph Jaffe" . + + a ; + 56370; + "Printed Media"; + ""; + "Jüdischen Künstlerspiele" . + + a ; + 56400; + "Printed Media"; + ""; + "Julius Litwak" . + + a ; + 56410; + "Printed Media"; + ""; + "Julius Litwak|Litwack"; + . + + a ; + 56480; + "Printed Media"; + ""; + "Ḳ. Leṿenshṭeyn , ."; + . + + a ; + 56510; + "Theatre"; + ""; + "Kalich Theatre"; + . + + a ; + 56570; + "Traveling Company"; + ""; + "Karl Zilberman, Max Kurtz, Harry Feinberg, Gazovski and Aba Rosenzweig Toupe" . + + a ; + 56590; + "Printed Media"; + ""; + "Katzenelenbogen & Rabinowitz"; + . + + a ; + 566; + "Theatre"; + ""; + "Neues Deutsches Theater"; + . + + a ; + 567; + "Theatre"; + ""; + "Adolf Philipp Theater"; + . + + a ; + 57000; + "Printed Media"; + ""; + "Kruger Printing" . + + a ; + 57010; + "Printed Media"; + ""; + "Kruger und Lifshits" . + + a ; + 57060; + "Printed Media"; + ""; + "L. Ḥarik" . + + a ; + 5713; + "The Worcester Opera House" . + + a ; + 57390; + "Printed Media"; + ""; + "Leksikon fun yidishn teater ( Lexicon of Yiddish Theatre or Encyclopedia of the Yiddish Theatre)" . + + a ; + 57440; + "Traveling Company"; + ""; + "Leon Berger Troupe" . + + a ; + 57690; + "Printed Media"; + ""; + "Literarisze Bleter⁩" . + + a ; + 580; + "Theatre"; + ""; + "Garrick theatre "; + . + + a ; + 58570; + "Theatre"; + ""; + "Metropolitan Singer Hall" . + + a ; + 58630; + "Printed Media"; + ""; + "Meyer Levin" . + + a ; + 59060; + "Printed Media"; + ""; + "Munish Necheles" . + + a ; + 59120; + "Printed Media"; + ""; + "N. Sṭarovolsḳi"; + . + + a ; + 59470; + "Theatre"; + ""; + "New Orpheum Theater"; + . + + a ; + 595; + "Company"; + ""; + "Rosas & Brasão" . + + a ; + 59570; + "Theatre"; + ""; + "New Star Theatre"; + . + + a ; + 59870; + "Printed Media"; + ""; + "Nowy Dziennik" . + + a ; + 59990; + "Theatre"; + ""; + "Olimpic Theatre"; + . + + a ; + 60420; + "Theatre"; + ""; + "Oriental Theater (Philadelphia)"; + . + + a ; + 60910; + "Theatre"; + ""; + "People's Theater Ohio"; + . + + a ; + 60970; + "Theatre"; + ""; + "Perry Theatre"; + . + + a ; + 61100; + "Printed Media"; + ""; + "Pimelt and Y.Shvabe"; + . + + a ; + 61380; + "Printed Media"; + ""; + "Progres"; + . + + a ; + 616; + "Education (Theatre related)"; + ""; + "Conservatorio Giuseppe Verdi"; + . + + a ; + 61650; + "Printed Media"; + ""; + "Rapaporṭ's Prinṭing" . + + a ; + 623; + "Theatre"; + ""; + "Teatro São Januário"; + . + + a ; + 62340; + "Theatre"; + ""; + "Salon Erfoon Espanol"; + . + + a ; + 62350; + "Theatre"; + ""; + "Salon Garibaldi"; + . + + a ; + 62430; + "Traveling Company"; + ""; + "Sam Dayen Troupe" . + + a ; + 62560; + "Theatre"; + ""; + "Schildkraut Theatre" . + + a ; + 62680; + ""; + ""; + "Shaarei tsion choral school" . + + a ; + 62780; + "Media"; + ""; + "Sidney M. Goldin Productions" . + + a ; + 63060; + "Theatre"; + ""; + "Sommertheater im botanischen Garten"; + . + + a ; + 63800; + "Musical Organization"; + ""; + "Synagogue chorus" . + + a ; + 63870; + "Theatre"; + ""; + "Teater Ermitage"; + . + + a ; + 63880; + "Theatre"; + ""; + "teater gesselshaft" . + + a ; + 63890; + "Printed Media"; + ""; + "Teater un kunst" . + + a ; + 63900; + "Printed Media"; + ""; + "Teatr i Iskusstvo" . + + a ; + 641; + ""; + "Agricultural worker"; + . + + a ; + 643; + "Printed Media"; + ""; + "Páginas de España"; + . + + a ; + 644; + ""; + "El Diario Español"; + . + + a ; + 645; + ""; + "Nueva Villa de Guaymallén"; + . + + a ; + 646; + ""; + "El Porvenir"; + . + + a ; + 648; + "Company"; + ""; + "Pascoal Segreto Company" . + + a ; + 652; + ""; + ""; + "Touring Theater Company Companhia Dramática de Lisboa" . + + a ; + 655; + "Company"; + ""; + "Pascoal Segreto Company" . + + a ; + 65660; + "Theatre"; + ""; + "Terrace Garden Theatre"; + . + + a ; + 659; + "Theatre"; + ""; + "Sociedade Teatral Ltd. In Teatro da Trindade" . + + a ; + 66350; + "Theatre"; + ""; + "The Hebrew Dramatic Club" . + + a ; + 66370; + "Theatre"; + ""; + "The Hebrew Opera and Dramatic Company" . + + a ; + 66390; + ""; + ""; + "The Jewish National Workers' Alliance (Farband-Labor Zionist Order)" . + + a ; + 66520; + "Printed Media"; + ""; + "Theodore Lohr"; + . + + a ; + 66530; + ""; + ""; + "The Order of David's Harp" . + + a ; + 66540; + "Theatre"; + ""; + "The Pavilion Theatre" . + + a ; + 66590; + "Education (Theatre related)"; + ""; + "The Royal Danish Theatre school" . + + a ; + 66600; + "Theatre"; + ""; + "The Russian-Jewish Opera Company" . + + a ; + 66760; + "Theatre"; + ""; + "Tomashefsky Theatre" . + + a ; + 66780; + "Amateur"; + ""; + "Tornberg Dramatic Union" . + + a ; + 66940; + "Theatre"; + ""; + "Tsentral-teater - Varshe" . + + a ; + 67000; + "Theatre"; + ""; + "Turner Hall"; + . + + a ; + 67100; + "Society/Union"; + ""; + "Union Theatre Actors Company" . + + a ; + 67120; + "Society/Union"; + ""; + "United Jewish Actors Company" . + + a ; + 67190; + "Printed Media"; + ""; + "Unzer Leben⁩" . + + a ; + 67230; + "Theatre"; + ""; + "V. Pillings's National Theatre"; + . + + a ; + 67290; + "Printed Media"; + ""; + "Varshaver tageblat" . + + a ; + 67510; + "Traveling Company"; + ""; + "Vilner Operetta" . + + a ; + 68; + "Theatre"; + ""; + "Jacob Adler's Yiddish Theatre" . + + a ; + 68080; + "Amateur"; + ""; + "Yiddish Dramatic Circle" . + + a ; + 68130; + "Theatre"; + ""; + "Yiddish theatre on Alexanderplatz"; + . + + a ; + 68180; + "Printed Media"; + ""; + "Yidishes ṭogblaṭ⁩" . + + a ; + 68210; + "Printed Media"; + ""; + "Yosef Fischer"; + . + + a ; + 68250; + ""; + ""; + "Yung-yidish" . + + a ; + 68260; + "Printed Media"; + ""; + "Yuropian Hibru poblishing ḳompani" . + + a ; + 683; + "Theatre"; + ""; + "Teatro Baquet"; + . + + a ; + 68300; + "Traveling Company"; + ""; + "Zayderman Troupe" . + + a ; + 68380; + "Printed Media"; + ""; + "Amkroyt un Fraynd" . + + a ; + 68390; + "Printed Media"; + ""; + "A. Faust"; + . + + a ; + 68400; + "Traveling Company"; + ""; + "Israelitische Dramatische Gesellschaft" . + + a ; + 68410; + "Theatre"; + ""; + "Israelitisches Nationalgarten"; + . + + a ; + 68420; + "Printed Media"; + ""; + "Elyoḳum Tsunzers" . + + a ; + 68430; + "Printed Media"; + ""; + "Benjamin Munk"; + . + + a ; + 68460; + "Traveling Company"; + ""; + "Avraham Goldfaden Troupe" . + + a ; + 68470; + "Traveling Company"; + ""; + "Gradner's Company" . + + a ; + 68480; + "Printed Media"; + ""; + "D. Roth" . + + a ; + 68490; + "Traveling Company"; + ""; + "Der Oriental Company" . + + a ; + 68500; + "Printed Media"; + ""; + "The Jewish herald" . + + a ; + 68520; + "Printed Media"; + ""; + "Hebrew Publishing Company" . + + a ; + 68570; + "Printed Media"; + ""; + "Warschauer Yiddischer Theater - A.G.Kampaneetz" . + + a ; + 68600; + "Printed Media"; + ""; + "I. Lidski"; + . + + a ; + 68610; + "Printed Media"; + ""; + "Lipshitz Press" . + + a ; + 68620; + "Traveling Company"; + ""; + "Iasser Trupe" . + + a ; + 68630; + "Printed Media"; + ""; + "Yosef Kruger" . + + a ; + 68660; + "Printed Media"; + ""; + "J. Lebenssohn" . + + a ; + 68670; + "Printed Media"; + ""; + "Josef Fischer" . + + a ; + 68720; + "Printed Media"; + ""; + "L. Rabinovitch" . + + a ; + 68730; + "Printed Media"; + ""; + "E. Lewin-Epstein"; + . + + a ; + 68740; + "Printed Media"; + ""; + "M. Zederboim" . + + a ; + 68760; + "Printed Media"; + ""; + "N. Twersky" . + + a ; + 68770; + "Printed Media"; + ""; + "N. Rosenblum" . + + a ; + 68840; + "Printed Media"; + ""; + "Verlags-Buchhandlung E. Gitlin"; + . + + a ; + 68860; + "Printed Media"; + ""; + "Teater bibliyotek" . + + a ; + 68880; + "Theatre"; + ""; + "Folks Garden Hall" . + + a ; + 68890; + "Printed Media"; + ""; + "Verlags buchhandlung Yavne" . + + a ; + 68900; + "Printed Media"; + ""; + "Kultur"; + . + + a ; + 68910; + "Printed Media"; + ""; + "Kunst" . + + a ; + 68920; + "Theatre"; + ""; + "Roof Garden" . + + a ; + 68930; + "Printed Media"; + ""; + "Sh. L. Deytsher"; + . + + a ; + 68950; + "Printed Media"; + ""; + "Shlomo Goldfarb" . + + a ; + 69020; + "Printed Media"; + ""; + "⁨⁨Der Fraynd⁩" . + + a ; + 69030; + "Printed Media"; + ""; + "⁨⁨Di ṿahrhayṭ⁩" . + + a ; + 69050; + "Printed Media"; + ""; + "Abendblatt" . + + a ; + 69060; + "Kleinkunst"; + ""; + "Salon on Strada Kaleyia Vakaresht street" . + + a ; + 69070; + "Traveling Company"; + ""; + "Boris Thomashefsky Troupe" . + + a ; + 69100; + "Traveling Company"; + ""; + "Clara Young Tour" . + + a ; + 69110; + "Theatre"; + ""; + "De L'Ancre 42" . + + a ; + 69130; + "Theatre"; + ""; + "Feinman's Artistic Temple" . + + a ; + 69140; + "Traveling Company"; + ""; + "Feinman Literary Society" . + + a ; + 69160; + "Traveling Company"; + ""; + "Finkel and Mogulesko's Troupe" . + + a ; + 69170; + "Traveling Company"; + ""; + "Folks-teater Troupe" . + + a ; + 69210; + "Theatre"; + ""; + "German Public Theatre (German’s Folks Theatre)" . + + a ; + 69220; + "Printed Media"; + ""; + "Ha'asif ()" . + + a ; + 69270; + "Other"; + ""; + "Hendshke factory" . + + a ; + 69350; + "Theatre"; + ""; + "Kunst-temple (Arts Temple)" . + + a ; + 69370; + "Theatre"; + ""; + "Leipzig's city theatre" . + + a ; + 694; + ""; + "Little Bank" . + + a ; + 69410; + "Traveling Company"; + ""; + "Mandelkern's Troupe" . + + a ; + 69430; + "Kleinkunst"; + ""; + "Meyer's Local" . + + a ; + 69440; + "Traveling Company"; + ""; + "Morris Lieblich Troupe" . + + a ; + 69460; + "Printed Media"; + ""; + "NOWY DZIENNIK (\"The New Daily\")" . + + a ; + 69470; + "Theatre"; + ""; + "Palace Theatre" . + + a ; + 695; + ""; + ""; + "Amateur Dramatic Club of Shanghai (A.D.C)" . + + a ; + 69510; + "Traveling Company"; + ""; + "Rosenberg Troupe" . + + a ; + 69530; + "Traveling Company"; + ""; + "Sarah Goldstein-Karp Troupe" . + + a ; + 69540; + "Circus"; + ""; + "Sidali Circus" . + + a ; + 69550; + "Traveling Company"; + ""; + "Sigmund Feinman Troupe" . + + a ; + 69570; + "Traveling Company"; + ""; + "Solomonesko Troupe" . + + a ; + 69590; + ""; + ""; + "The Actors Union, Local 2" . + + a ; + 69610; + "Printed Media"; + ""; + "Theatre and Arts (Kugel)" . + + a ; + 69630; + "Other"; + ""; + "The International Library" . + + a ; + 69640; + "Printed Media"; + ""; + "Tsayt-gayst" . + + a ; + 69690; + "Company on Tour"; + ""; + "Yiddish literary art theatre" . + + a ; + 697; + ""; + ""; + "Club Concordia" . + + a ; + 69700; + "Amateur"; + ""; + "Yiddish Literary Dramatic Theatre" . + + a ; + 69736; + "Alexandra Theatre" . + + a ; + 69756; + "Globe Theatre"; + . + + a ; + 69760; + "Royal Theatre"; + . + + a ; + 698; + "Company"; + ""; + "China Japan Marine Insurance Company" . + + a ; + 69888; + "Traveling Company"; + "Avraham Axelrad's troupe" . + + a ; + 699; + ""; + "Ministry of Architecture" . + + a ; + 69992; + "Traveling Company"; + "Lieberman’s theatre" . + + a ; + 700; + ""; + "Generaldirektor des Ministeriums für Bauwesen" . + + a ; + 701; + ""; + "Shanghai Municipal Council " . + + a ; + 702; + "Company"; + ""; + "Electric Light Company" . + + a ; + 704; + ""; + "The St. Georges Ball" . + + a ; + 705; + ""; + ""; + "The International Red Cross Society Of Shanghai" . + + a ; + 706; + ""; + "The Shanghai Branch Of The Navy League" . + + a ; + 70976; + "Traveling Company"; + "Clara Young (actress)" . + + a ; + 71852; + "Leksikon fun yidishn teater (לעקסיקאן פון יידישן טעאטער Lexicon of Yiddish Theatre or Encyclopedia o" . + + a ; + 71940; + "Climax! Chrysler Theatre (Hollywood)" . + + a ; + 71965; + "Theatre"; + "Pabst Theatre"; + . + + a ; + 71970; + "Theatre"; + "Lawndale Jewish Theatre Company" . + + a ; + 71980; + "Theatre"; + "O'Briens Theater"; + . + + a ; + 71985; + "Theatre"; + "Rand Theater"; + . + + a ; + 71990; + "Theatre"; + "Bastable Theater" . + + a ; + 71995; + "Other"; + "Masonic Temple"; + . + + a ; + 72000; + "Theatre"; + "Frankfort Theatre" . + + a ; + 72005; + "Theatre"; + "Grand Theatre"; + . + + a ; + 72010; + "Theatre"; + "Park City Theatre"; + . + + a ; + 72015; + "Theatre"; + "Fisher Opera House"; + . + + a ; + 72020; + "Masonic Temple"; + . + + a ; + 72025; + "Masonic Temple"; + . + + a ; + 72030; + "New Opera House"; + . + + a ; + 72035; + "Parson's Theatre"; + . + + a ; + 72040; + "New Wieting Theatre"; + . + + a ; + 72045; + "Theatre"; + "Temple Theatre"; + . + + a ; + 72050; + "Theatre"; + "Macauley's Theatre"; + . + + a ; + 72060; + "Theatre"; + "Los Angeles Theatre"; + . + + a ; + 72065; + "Theatre"; + "Barton's Theatre"; + . + + a ; + 72070; + "Theatre"; + "Victory Theatre"; + . + + a ; + 72085; + "Smith Opera House"; + . + + a ; + 72097; + "Gewandhaus"; + . + + a ; + 72102; + "Philharmonic Society of London"; + . + + a ; + 72127; + "Town Hall"; + . + + a ; + 72132; + "Exeter Hall"; + . + + a ; + 723; + ""; + ""; + "Heller’s theatre" . + + a ; + 72314; + "Teatro Santa Lucía" . + + a ; + 72384; + "El país" . + + a ; + 725; + ""; + ""; + "Gulherme da Silveira’s theater company" . + + a ; + 72563; + "Companía Podestá-Scotti"; + . + + a ; + 72568; + "Iris de paz (play)"; + . + + a ; + 72573; + "Compañía de Joaquín Arjona"; + . + + a ; + 72578; + "Compañía de Alfredo Maza"; + . + + a ; + 72583; + "“Empresa nacional” (campaña argentina para valorizar autores nacionales)"; + . + + a ; + 72588; + "Compañía de María Guerrero"; + . + + a ; + 72593; + "Consejo Directivo"; + . + + a ; + 72598; + "PSI Partido Socialista"; + . + + a ; + 72603; + "Asociación Argentina por la Libertad de la Cultura"; + . + + a ; + 72608; + "Elenco Nacional encabezado por Enrique de Rosas"; + . + + a ; + 72613; + "Elenco Nacional encabezado por Blanca Podestá"; + . + + a ; + 72618; + "Elenco Nacional encabezado por Angela Tesada"; + . + + a ; + 72623; + "Circo Arena"; + . + + a ; + 72628; + "Periódico El País"; + . + + a ; + 72633; + "Periódico Escuela"; + . + + a ; + 72638; + "Periódico El Pueblo"; + . + + a ; + 72643; + "Periódico La Vanguardia"; + . + + a ; + 72648; + "Periódico Nación Catalana"; + . + + a ; + 72653; + "Periódico de la Acción Socialista"; + . + + a ; + 72658; + "Federación Socialista de Buenos Aires"; + . + + a ; + 72663; + "Centro Socialista de Montevideo"; + . + + a ; + 72668; + "Ministerio de Agricultura y Economía"; + . + + a ; + 72673; + "Partido Socialista Unificado de Catalonia"; + . + + a ; + 72678; + "Teatro Jovellanos"; + . + + a ; + 72683; + "Teatro de la Zarzuela"; + . + + a ; + 72688; + "Teatro Santa Lucía"; + . + + a ; + 72693; + "Teatro Íntimo de la Peña"; + . + + a ; + 72698; + "Ateneo Hispanoamericano"; + . + + a ; + 72703; + "Teatro Pasatiempo"; + . + + a ; + 72708; + "Teatro Marconi"; + . + + a ; + 72713; + "Facultad de Filosofía y Letras"; + . + + a ; + 72718; + "Sociedad Argentina de Escritores"; + . + + a ; + 72723; + "Instituto de Literatura Iberoamericana"; + . + + a ; + 72728; + "Colegio Libre de Estudios Superiores (CLES)"; + . + + a ; + 72733; + "Radio del Estado"; + . + + a ; + 72738; + "Diario Clarín"; + . + + a ; + 72743; + "Radio Industry"; + . + + a ; + 72748; + "Revista “Sudamérica”"; + . + + a ; + 72753; + "Courriere Française"; + . + + a ; + 72758; + "El país"; + . + + a ; + 72763; + "Biblioteca Nacional de la República Argentina"; + . + + a ; + 72768; + "Compañía de Gas"; + . + + a ; + 72773; + "Alma Gallega"; + . + + a ; + 72778; + "Teatro Popular Gallego"; + . + + a ; + 72783; + "Centro Republicano Español"; + . + + a ; + 72788; + "Teatro Universitario"; + . + + a ; + 72793; + "Universidad Popular"; + . + + a ; + 72798; + "Centro de Choferes de Uruguay"; + . + + a ; + 72803; + "Teatro Mitre"; + . + + a ; + 72808; + "Ministerio de Instrucción Pública"; + . + + a ; + 72813; + "Companía Podestá-Scotti"; + . + + a ; + 72818; + "Iris de paz (play)"; + . + + a ; + 72823; + "Compañía de Joaquín Arjona"; + . + + a ; + 72828; + "Compañía de Alfredo Maza"; + . + + a ; + 72833; + "“Empresa nacional” (campaña argentina para valorizar autores nacionales)"; + . + + a ; + 72838; + "Compañía de María Guerrero"; + . + + a ; + 72843; + "Consejo Directivo"; + . + + a ; + 72848; + "PSI Partido Socialista"; + . + + a ; + 72853; + "Asociación Argentina por la Libertad de la Cultura"; + . + + a ; + 72858; + "Elenco Nacional encabezado por Enrique de Rosas"; + . + + a ; + 72863; + "Elenco Nacional encabezado por Blanca Podestá"; + . + + a ; + 72868; + "Elenco Nacional encabezado por Angela Tesada"; + . + + a ; + 72873; + "Circo Arena"; + . + + a ; + 72878; + "Periódico El País"; + . + + a ; + 72883; + "Periódico Escuela"; + . + + a ; + 72888; + "Periódico El Pueblo"; + . + + a ; + 72893; + "Periódico La Vanguardia"; + . + + a ; + 72898; + "Periódico Nación Catalana"; + . + + a ; + 729; + ""; + ""; + "Cinira Polonio’s theatre" . + + a ; + 72903; + "Periódico de la Acción Socialista"; + . + + a ; + 72908; + "Federación Socialista de Buenos Aires"; + . + + a ; + 72913; + "Centro Socialista de Montevideo"; + . + + a ; + 72918; + "Ministerio de Agricultura y Economía"; + . + + a ; + 72923; + "Partido Socialista Unificado de Catalonia"; + . + + a ; + 72928; + "Teatro Jovellanos"; + . + + a ; + 72933; + "Teatro de la Zarzuela"; + . + + a ; + 72938; + "Teatro Santa Lucía"; + . + + a ; + 72943; + "Teatro Íntimo de la Peña"; + . + + a ; + 72948; + "Ateneo Hispanoamericano"; + . + + a ; + 72953; + "Teatro Pasatiempo"; + . + + a ; + 72958; + "Teatro Marconi"; + . + + a ; + 72963; + "Facultad de Filosofía y Letras"; + . + + a ; + 72968; + "Sociedad Argentina de Escritores"; + . + + a ; + 72973; + "Instituto de Literatura Iberoamericana"; + . + + a ; + 72978; + "Colegio Libre de Estudios Superiores (CLES)"; + . + + a ; + 72983; + "Radio del Estado"; + . + + a ; + 72988; + "Diario Clarín"; + . + + a ; + 72993; + "Radio Industry"; + . + + a ; + 72998; + "Revista “Sudamérica”"; + . + + a ; + 73003; + "Courriere Française"; + . + + a ; + 73008; + "El país"; + . + + a ; + 73013; + "Biblioteca Nacional de la República Argentina"; + . + + a ; + 73018; + "Compañía de Gas"; + . + + a ; + 73023; + "Alma Gallega"; + . + + a ; + 73028; + "Teatro Popular Gallego"; + . + + a ; + 73033; + "Centro Republicano Español"; + . + + a ; + 73038; + "Teatro Universitario"; + . + + a ; + 73043; + "Universidad Popular"; + . + + a ; + 73048; + "Centro de Choferes de Uruguay"; + . + + a ; + 73053; + "Teatro Mitre"; + . + + a ; + 73058; + "Ministerio de Instrucción Pública"; + . + + a ; + 749; + "Company"; + ""; + "Company with Pepino, Hierónimo and all Podestás" . + + a ; + 759; + "Circus"; + ""; + "Frank Brown Circus Hippodrome" . + + a ; + 767; + "Theatre"; + ""; + "Teatro Politeama Humberto Primo" . + + a ; + 809; + "Company"; + ""; + "Heller’s theatre company" . + + a ; + 830; + "Company"; + ""; + "Theatrical Company of João Caetano" . + + a ; + 836; + "Company"; + ""; + "Theatrical Company of João Caetano" . + + a ; + 848; + "Theatre"; + ""; + "Teatro de Variedades" . + + a ; + 85; + "Theatre"; + ""; + "Galton Opera Company at the Wood’s Museum" . + + a ; + 86; + "Theatre"; + ""; + "Madison Square Theatre of Steele MacKaye" . + + a ; + 87; + "Theatre"; + ""; + "New York’s Theatre Comique"; + . + + a ; + 884; + "Education (Theatre related)"; + ""; + "Escola de Belas Artes" . + + a ; + 911; + "Theatre"; + ""; + "Teatro São Carlos" . + + a ; + 989; + ""; + ""; + "Hofburgtheater" . + + a ; + 998; + ""; + ""; + "Stadttheater" . + + a ; + "AbrCha-1108"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Abramovitsh"; + "Chaim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AbrLiz-3685"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Abramovich"; + "Liza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AbrMen-00"; + "Own"; + "Abramovitsh"; + "Mendele"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeMar-01"; + "Own"; + "Adeler"; + "Baronesse María Inés"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlCha-00"; + "Own"; + "Adler"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlFel-3772"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Dr. Felix"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlFra-1119"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Frances"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlJay-00"; + "Own"; + "Adler"; + "Jay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlLut-00"; + "Own"; + "Adler"; + "Luther"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlNat-3754"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Nathan Marcus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlSon-00"; + "Own"; + "Adler"; + "Sonya"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdwKar-3694"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adwentowcz"; + "Karol"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AgiSam-1132"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Agid"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AksMei-1133"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Akselrad"; + "Meir"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Aliisi-00"; + "Own"; + "Aloisi"; + "Alicia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmbGus-00"; + "Amberg"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndLeo-3714"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Andreyev"; + "Leonid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Ani_1156"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Aniela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AntJos-00"; + "Own"; + "Antoine"; + "Josephine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Antaso-00"; + "Own"; + "Tomaso"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Antssi-00"; + "Own"; + "Bassi"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Armoni-00"; + "Own"; + "Falconi"; + "Armando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Artomo-00"; + "Own"; + "Carisomo"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AscSho-1183"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Asch"; + "Sholem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Augrez-00"; + "Own"; + "Álvarez"; + "Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AusNah-1200"; + "Own"; + ""; + "Auslander"; + "Nahum"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AvrMax-1202"; + "Own"; + ""; + "Avramovitsh"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AxeAne-1203"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Axelrad"; + "Aneta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AzrAle-1209"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Azro"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BadBor-1358"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Badkhan"; + "Borisover"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BadBun-1427"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Badkhan"; + "Bunem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BadGer-1213"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bader"; + "Gershom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BadMor3676"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mordechai"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BadShl-1216"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Badkhan"; + "Shlomo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BalAlb-00"; + "Own"; + "Ballesteros"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalLa-00"; + "Own"; + "Baletta"; + "Belle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarBen-1223"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Baratov"; + "Ben-Tsvi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BasAlf-00"; + "Own"; + "Bastos"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BasSou-01"; + "Own"; + "Bastos"; + "Sousa"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BatJea-00"; + "Own"; + "Batten"; + "Jean"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BauAdo-00"; + "Own"; + "Bäuerle"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BekGeo-3731"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Beker"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Bel-00"; + "Own"; + "Bella"; + "Bella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenCha-1253"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bendel"; + "Chaim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BerAdo-1277"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Berman"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BerAma-00"; + "Own"; + "Bertani"; + "Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerAug-00"; + "Own"; + "Beriot"; + "Auguste"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerBer-3675"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Berlin"; + "Berta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BerLaz-3691"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Börnstein"; + "Lazar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BerYec-00"; + "Berkowitz"; + "Yechiel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Berder-00"; + "Own"; + "Ader"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Berili-00"; + "Own"; + "Arrili"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieGli-1301"; + "Own"; + ""; + "Bielavski"; + "Glika"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BirLou-1312"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Birnbaum"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BlaBen-1322"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Blank"; + "Benjamin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Blaaro-00"; + "Own"; + "Amaro"; + "Blanquita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BluNey-1347"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Blumental"; + "Neytan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BodNat-00"; + "Own"; + "Bodanya"; + "Natalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BogBer-3660"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bogart"; + "Bernard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BonBen-1353"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bonus"; + "Ben"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BonMad-00"; + "Own"; + "Bonnemain"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BorAda-00"; + "Own"; + "von Bornstedt"; + "Adalbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BorLud-00"; + "Own"; + "1786-05-06"^^xsd:date; + "1786-05-06"^^xsd:date; + "born in a Jewish Ghetto as Juda Löb – also Löw Baruch"; + "1837-02-12"^^xsd:date; + "1837-02-12"^^xsd:date; + "Börne"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "Bor_1359"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Borisovo"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BotAnt-00"; + "Own"; + "Botta"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BotJac-1365"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Botoshansky"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BouGen-00"; + "Own"; + "Boulanger"; + "General"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BoyYeh-1372"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Boymvol"; + "Yehuda Leib"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BraJoh-01"; + "Own"; + "Braham"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreEgo-1382"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Brecher"; + "Egon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BroDav-1407"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bronshteyn"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BroEfr-1399"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Broder"; + "Efrim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BroGer-3767"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Broydes"; + "Gershom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BroReu-3768"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Broydes"; + "Reuven (Asher)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BruMon-3727"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Bruner"; + "Monti"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BucNat-3780"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Buchwald"; + "Nathaniel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BuzIzi-1434"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Buzet"; + "Izidor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "CahAbe-883"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Cahan"; + "Abe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "CarCar-00"; + "Own"; + "1787-11-07"^^xsd:date; + "1787-11-07"^^xsd:date; + "1854-08-14"^^xsd:date; + "1854-08-14"^^xsd:date; + "Carl"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "Carisi-00"; + "Own"; + "Aloisi"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Carllo-00"; + "Own"; + "Gallo"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasFan-00"; + "Own"; + "Casanova"; + "Fanni"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasIzi-1437"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Casher"; + "Izidore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "CasSal-00"; + "Own"; + "Castrone"; + "Salvatore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CheAle-1448"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Chertov"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "CitSh.-3743"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Citron"; + "Sh. L."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ComJua-00"; + "Comorera"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "DavFri-489"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "David"; + "Frischmann,"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DavNom-483"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "David"; + "Nomberg, Hersh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DelFre-00"; + "Own"; + "Delius"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelJac-00"; + "Own"; + "Grau Delgado"; + "Jacinto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DemAma-00"; + "Own"; + "Demini"; + "Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DevCar-00"; + "Own"; + "Devrient"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DicAnn-00"; + "Own"; + "Dickey"; + "Annamary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DicIsa-1499"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dick"; + "Isaac Meir"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DinJac-919"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dinezon"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DinSim-1503"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dinman"; + "Simcha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DolHil-3770"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dolitzka"; + "Hilda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DomHen-00"; + "Own"; + "Domingues"; + "Henrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DorSam-3737"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dorf"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Dro-1526"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Drozdovitsh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DruJac-3739"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Drukerman"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "DubYak-1528"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Dubinski"; + "Yakovke"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EddNel-00"; + "Own"; + "Eddy"; + "Nelson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdeJos-707"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Edelstein"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EdeMor-1537"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Edelhofer"; + "Moritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Edoert-00"; + "Own"; + "Bieckert"; + "Edouard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Eduona-00"; + "Own"; + "Carmona"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EinLis-1551"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Einhorn"; + "Lisa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Eleena-00"; + "Own"; + "Lucena"; + "Elena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElkEst-3661"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Elkin"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EllAbr-1568"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ellstein"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ElvBer-1570"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Elving"; + "Bernard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EnrAlo-00"; + "Own"; + "Aloisi"; + "Enrico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Enrini-00"; + "Own"; + "Susini"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Enrisi-01"; + "Own"; + "Aloisi"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Enrolo-00"; + "Own"; + "Discépolo"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ErnBar-01"; + "Own"; + "Adeler"; + "Ernesto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EskYoz-1594"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Eskreyz"; + "Yozef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EspMat-01"; + "Espinosa"; + "Matilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Estdor-00"; + "Own"; + "Serrador"; + "Esteban"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Eugert-00"; + "Own"; + "Bieckert"; + "Eugénie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EvaBar-00"; + "Own"; + "Adeler"; + "Eva"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Evanco-00"; + "Own"; + "Franco"; + "Eva"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Fanert-00"; + "Own"; + "Bieckert"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Fedhiz-00"; + "Own"; + "Sanchiz"; + "Federico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FeiHar-00"; + "Own"; + "Feinberg"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FeiHar-1626"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Feinberg"; + "Harris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FeiHer-1072"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Feinstein"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FelAar-1629"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Feldman"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FerEnr-00"; + "Own"; + "Ferri"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerIgn-1632"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ferkauf"; + "Ignats"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Ferano-00"; + "Own"; + "Quijano"; + "Fernando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Feroza-00"; + "Own"; + "Mendoza"; + "Fernando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FieHer-866"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fiedler"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FilAlf-00"; + "Own"; + "Filho"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FilJan-1644"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Filipesko"; + "Janet"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Fil_1643"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Filipesko"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FisJos-FisJos-3778"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fischer"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FraAna-00"; + "Own"; + "France"; + "Anatole"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraBet-3659"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Frank"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FraJac-744"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Frank"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FreBor-3722"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Frenkel"; + "Boris Brovine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FriFey-1692"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fridman"; + "Feyvele"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FriLou-695"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Friedsell"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FriRos-1706"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Friedman"; + "Rose"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FriSar-1697"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fridman"; + "Sara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FruAbr-1708"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Frumkin"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FukLiz-3656"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fuks"; + "Liza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GabMax-1716"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gabel"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GalJul-00"; + "Galé"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarCar-01"; + "Own"; + "Gardel"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GazMar-01"; + "Own"; + "Gazovski"; + "Markus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GenSol-1742"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Genfer"; + "Solomon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Geoeau-00"; + "Own"; + "Clemenceau"; + "Georges"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GerJac-1755"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gertner"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GesHel-1758"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gespass"; + "Helene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GiaDus-00"; + "Own"; + "Giannini"; + "Dusolina"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilSid-01"; + "Own"; + "Gilliat"; + "Sidney"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GinSau-1776"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ginzburg"; + "Saul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GinYun-1773"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gintsburg"; + "Yuna"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GliEli-1789"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Glickman"; + "Elias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GliNor-1797"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Glimer"; + "Norbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolHer-1825"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldenberg"; + "Hershl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolJak-00"; + "Goldschmidt"; + "Jakob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolLeo-747"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Golubok"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolLou-1816"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldberg"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolNat-1819"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldberg"; + "Nathan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolPau-1831"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldfaden"; + "Paulina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolShi-1832"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldfaden"; + "Shimi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolSid-1836"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldin"; + "Sidney"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolSok-1855"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldstein"; + "Sokher"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolWal-00"; + "Goldschmidt"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gol_1837"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Golditsa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GonAlb-00"; + "Own"; + "González"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorB-890"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gorin"; + "B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GotAvr-1880"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gottlober"; + "Avraham Ber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GotLou-928"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gottlieb"; + "Louis Silo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GraAle-1887"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Granovsky"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GraAne-1882"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gradner"; + "Aneta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GraPet-1885"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Graf"; + "Peter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GraYis-900"; + "Own"; + ""; + "Gradner"; + "Yisroel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GreCae-741"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Greenberg"; + "Caesar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GreEuf-00"; + "Own"; + "Gregory"; + "Eufemia Gregory"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GriEdw-00"; + "Own"; + "Grieg"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GriKha-1901"; + "Own"; + ""; + "Grinberg"; + "Khayim-Betsalel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GroAbr-3664"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Groper"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GroIda-1912"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Groper"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GroLot-3663"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Groper"; + "Lottie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GudBel-1935"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gudinsky"; + "Bella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Guiero-00"; + "Own"; + "Ferrero"; + "Guillermo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gusert-00"; + "Own"; + "Bieckert"; + "Gustave"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GutJul-1953"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Guttman"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GutMil-00"; + "Own"; + "Gutman"; + "Milanie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuzJac-3693"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Guzik"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GyeErn-00"; + "Own"; + "Gye"; + "Ernest"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HaiMor-702"; + "Own"; + ""; + "Haimowitz"; + "Morris (Heine)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HalFro-00"; + "Own"; + "Halévy"; + "Fromental"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HalLeo-1962"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Halpern"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HalMoy-684"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Halevi)"; + "Moyshe (Ish"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HamAnn-00"; + "Own"; + "Hamlin"; + "Anna Hamlin"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Hanmer-00"; + "Own"; + "Dierhammer"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarBer-3723"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Hart"; + "Ber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HarSid-1977"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Hart"; + "Sidney"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HarZig-1978"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Hart"; + "Zigmunt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HelAnn-1980"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Held"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HelJac-01"; + "Own"; + "Heller"; + "Jacinto Heller"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerDav-1986"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Herman"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HilFer-00"; + "Own"; + "Hiller"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HilJam-00"; + "Own"; + "Hilton"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HirDav-2005"; + "Own"; + ""; + "Hirsh"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HirM-3762"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Hirshzohn"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HktYer-3738"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Hktn"; + "Yeruchem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Hnoich-00"; + "Own"; + "Stevanovich"; + "Hnos."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HolIsi-2022"; + "Own"; + ""; + "Hollander"; + "Isidore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HopArt-3701"; + "Own"; + ""; + "Hopkins"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Hugril-00"; + "Own"; + "Carril"; + "Hugo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Humiro-00"; + "Own"; + "Cairo"; + "Humberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IbsHen-00"; + "Own"; + "Ibsen"; + "Henrik"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Iredia-00"; + "Own"; + "Heredia"; + "Irene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IruAgu-00"; + "Own"; + "Irusta"; + "Agustín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IsaIts-3753"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Isakson"; + "Itshele"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "IsaSil-396"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Isaiah"; + "Silberbusch, David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "IsrMar-3730"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Israel"; + "Mark"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Jaclat-00"; + "Own"; + "Gretillat"; + "Jacques"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Jeairn-00"; + "Own"; + "Hirn"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Josllo-00"; + "Own"; + "Castillo"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Josrez-00"; + "Own"; + "Ramírez"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Josssi-00"; + "Own"; + "Dealessi"; + "Josefina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Juauer-00"; + "Own"; + "Berenguer"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JuvJea-2060"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Juvelier"; + "Jeanne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "JuvMin-3665"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Juvelier"; + "Mina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KaiJen-2067"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kaiser"; + "Jenny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KalBer-2068"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kalich"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KalJac-922"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kalich"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KalUlr-2071"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kalmus"; + "Ulrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KamAbb-1019"; + "Own"; + ""; + "Kampanietz"; + "Abba"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KanF-3775"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kantorovitch"; + "F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KapA-3760"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kaplan"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KapLaz-3765"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kapedshoy"; + "Lazar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KasSam-2090"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kasten"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KatMic-2096"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Katz"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KeuGer-00"; + "Own"; + "Keußler"; + "Gerhard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Kha[?]-2107"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Khalan-Khalanov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KigYos-2117"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kigel"; + "Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KirJac-2119"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kirschenbaum"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KleKal-3716"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kleynavitsh"; + "Kalman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KomAba-00"; + "Own"; + "Kompaneyets"; + "Aba"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KopLeo-2139"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kopp"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Kop_3692"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kopilov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KorF-3733"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Korn"; + "F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KraSol-2151"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Krause"; + "Solomon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Kri-3757"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kritikus"; + "Dr. Y."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KroMar-3771"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kropyvnytskyi"; + "Marko Lukych"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Kru_2168"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Krug"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KurG-711"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kurage"; + "G."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KusSon-2176"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kustin"; + "Sonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KutShl-3551"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kutner"; + "Shlomo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LagAar-2180"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lager"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Lan_2192"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Landman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LatJos-00"; + "Own"; + "Latayner"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LatJos-683"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lateiner"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Leótta-00"; + "Own"; + "Barletta"; + "Leónidas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiH-2229"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Leivick"; + "H."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LeiPer-369"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Leib"; + "Peretz, Isaac"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LerKha-00"; + "Own"; + "Lerner"; + "Khane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LerSam-2238"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Leresko"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LerYak-2243"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lerner"; + "Yakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LevDav-2251"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Levenson"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LevI.L-3734"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Levanda"; + "I.L."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LevY. -3726"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Levin"; + "Y. A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LevZ-2263"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Levin"; + "Z."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LiaHer-3725"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Liansky"; + "Hersch"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LibYan-2282"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Libert"; + "Yankev"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LibYit-924"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Libresko"; + "Yitzhok"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LidTse-347"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "LidskÌ£i"; + "Tsevi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LieAbr-2289"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lieberman"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LieMor-2294"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lieblich"; + "Moritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LilIsi-2304"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lillian"; + "Isidore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LimEdn-00"; + "Own"; + "Lima"; + "Edna de Lima"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LinHen-2309"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Linetsky"; + "Henekh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LinIsa-2311"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Linetzky"; + "Isaac Joel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LitAbr-2328"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Littman"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LobMal-2336"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lobel"; + "Malvina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LorTin-00"; + "Own"; + "de Lorenzo"; + "Tina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LowSam-2341"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lowenwirth"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LuaVad-00"; + "Own"; + "Lua)"; + "Vadico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugLeo-00"; + "Own"; + "Lugones"; + "Leopoldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Luiata-00"; + "Own"; + "Arata"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Luibas-00"; + "Own"; + "Cubas"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Luihil-00"; + "Own"; + "Vehil"; + "Luisa"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LukCha-2360"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lukatcher"; + "Chaim Shmuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LysMyk-00"; + "Own"; + "Lyssenko"; + "Mykola"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MagYan-3674"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Magidov"; + "Yankev"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ManLeo-2382"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mandeltort"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Mar[?]-2403"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Marienstros"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Maríaz-00"; + "Own"; + "Díaz"; + "Marujita"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mar-3704"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Marian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarKar-2412"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Marmor"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarRud-724"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Marks"; + "Rudolph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarRuk-3696"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Margules"; + "Rukhl"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarShi-3764"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mark"; + "Shimon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarVan-00"; + "Own"; + "Marcoux"; + "Vanni"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marbré-00"; + "Own"; + "Cabré"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marerg-00"; + "Own"; + "Bronenberg"; + "Marcos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marert-00"; + "Own"; + "Bieckert"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marirn-00"; + "Own"; + "Hirn"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayNac-2423"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mayzel"; + "Nachman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MazR-3776"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mazin"; + "R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MazUri-3755"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mazik"; + "Uriel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "McCNan-00"; + "Own"; + "McCord"; + "Nancy McCord"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mectiz-00"; + "Own"; + "Ortiz"; + "Mecha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeiAbi-2429"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Meisels"; + "Abish"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MeiCla-2430"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Meisels"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MeiMar-3814"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Meierson"; + "Mark Lazarovitch"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MesJac-920"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mestel"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MeyDav-2457"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Meyerowitz"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MeyMor-2456"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Meyer"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MicMic-2463"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Michalesko"; + "Michal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Migcha-00"; + "Own"; + "Rocha"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Migeau-00"; + "Own"; + "Lacreau"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MinCha-863"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Minikes"; + "Chanan Yaakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MirCor-00"; + "Own"; + "Miraglia"; + "Corrado"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mirand-00"; + "Own"; + "Legrand"; + "Mirtha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Moduez-00"; + "Own"; + "Vázquez"; + "Modesto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Monchi-00"; + "Own"; + "Franceschi"; + "Monseñor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MooFer-00"; + "Own"; + "Moog"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorMor-842"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Morrison"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MorMos-2510"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mordechai"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MorPeg-00"; + "Own"; + "Morrow Field"; + "Peggy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MosMor-2512"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Moshkovitch"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MosPas-2517"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Moshkovitsh"; + "Pasha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MosYak-2519"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/moskovitsh-romaner-yakov-yosef.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1226."""; + "Moskovitsh"; + "Yakov Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MukA-2522"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mukdoni"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MyoMar-2528"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Myodovnik"; + "Mark"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NadBel-00"; + "Own"; + "Nadel"; + "Bella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NadBel-2531"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nadel"; + "Bela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NadLeo-812"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nadolsky"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NadMoi-2533"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nadir"; + "Moishe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NahSok-386"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nahum"; + "Sokolow,"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Narnta-00"; + "Own"; + "Menta"; + "Narciso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NatJul-2546"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nathanson"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NazAll-3702"; + "Own"; + ""; + "Nazimova"; + "Alla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NeuEdu-00"; + "Own"; + "Neufeld"; + "Eduard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Nicues-00"; + "Own"; + "Fregues"; + "Nicolás"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NigShm-2567"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Niger"; + "Shmuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NodM-3732"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nodelman"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NomMos-3668"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nomberg"; + "Moshe-Mordechai"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NomYek-3667"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nomberg"; + "Yekhezkel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NorMax-942"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nordau"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NusItz-2583"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nusinov"; + "Itzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ObeAle-2588"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Oberlender"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "OliAlo-00"; + "Own"; + "Oliveira"; + "Aloysio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OpaJos-2594"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Opatoshu"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "OshM-2599"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Osherowitch"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "P?HP?H-00"; + "Own"; + "P?Horton"; + "P?Horton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadJos-00"; + "Own"; + "Padilla"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalMel-00"; + "Own"; + "Palmet"; + "Melicent"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PapAvr-2613"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Papyrna"; + "Avraham Yakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ParAar-2614"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Parkh?"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PelIvo-00"; + "Own"; + "Pelay"; + "Ivo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Pepppo-00"; + "Own"; + "Filippo"; + "Peppino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PerSho-981"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Perlmutter"; + "Sholem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PerYit-2639"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Perkoff"; + "Yitzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PicJan-00"; + "Own"; + "Pickens"; + "Jane Pickens"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PicMol-939"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Picon"; + "Molly"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PimEmí-00"; + "Own"; + "Pimentel"; + "Emília"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PinDav-2655"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Pinski"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PipEdi-00"; + "Own"; + "Piper"; + "Edith Piper"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaMan-3720"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Plater"; + "Mania"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PlaSon-3721"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Plater"; + "Sonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PolBen-2678"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Polipade"; + "Ben Zion"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PolCin-00"; + "Own"; + "Polonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PonAmi-00"; + "Own"; + "Ponchielli"; + "Amilcare"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PriJac-2704"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Prizament"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PriNoa-2701"; + "Own"; + ""; + "Prilutski"; + "Noah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ProHei-00"; + "Own"; + "Proch"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ProSer-00"; + "Own"; + "Prokofiev"; + "Sergei"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Psh_3695"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Pshibilka-Potzatska"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PueBen-00"; + "Own"; + "Puértolas"; + "Benita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QuaPed-00"; + "Own"; + "Quartucci"; + "Pedro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RévLou-00"; + "Own"; + "Révial"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Raúyos-00"; + "Own"; + "Hoyos"; + "Raúl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RabAbr-2720"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rabinowitz"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RabB-3777"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rabinowitz"; + "B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RaiFer-00"; + "Own"; + "Raimund"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RakN-2730"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rakov"; + "N."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RakNah-00"; + "Rakow"; + "Nahum"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RapAar-2734"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rappaport"; + "Aaron B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ReiAvr-3654"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Reisen"; + "Avraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ReiLeo-00"; + "Reichwein"; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiSar-2746"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Reisen"; + "Sara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ReiZal-785"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zalmen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RelEdw-2750"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Relkin"; + "Edwin A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ResJea-00"; + "Own"; + "Reszke"; + "Jean"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RezEmi-00"; + "Own"; + "Reznicek"; + "Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RheHor-00"; + "Own"; + "Rhéa"; + "Hortense"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicMos-3491"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Richter"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RidMar-00"; + "Own"; + "Riddick"; + "Margaret"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RitMen-3666"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ritner"; + "Mendel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RivB-3713"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rivkin"; + "B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RocMig-01"; + "Own"; + "Rocha"; + "Miguel Faust"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RoiYet-2768"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Roich"; + "Yetta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RomMan-00"; + "Own"; + "Romero"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosBet-2778"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosenblum"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosBor-2782"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosenthal"; + "Boris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosIsr-2776"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosenberg"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosRob-3708"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosen"; + "Robert Van"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosSam-00"; + "Own"; + "Rosenstein"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Roseno-00"; + "Own"; + "Moreno"; + "Rosita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Rosino-00"; + "Own"; + "Pino"; + "Rosario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RotAli-964"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rotstein"; + "Alias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RotIsa-3560"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rothstein"; + "Isaiah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RotMen-3718"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rotman"; + "Mendele"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RotN-3779"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rothsprecher"; + "N."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RubNik-00"; + "Own"; + "Rubinstein"; + "Nikolai"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RubRos-2808"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rubin"; + "Rose"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Rubros-00"; + "Own"; + "Rubin"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RudMas-3736"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ruder"; + "Mashkil Simeon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RusHen-RusHen-850"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Russotto"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SabDav-2817"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sabsey"; + "David Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SacHar-2818"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sackler"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Sactry-00"; + "Own"; + "Guitry"; + "Sacha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SakMic-2821"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Saks"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SamDav-2826"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Samolesko"; + "Dave"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Sanñol-00"; + "Own"; + "Rusiñol"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanCha-00"; + "Own"; + "Santley"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanJoa-00"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanPer-857"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sandler"; + "Peretz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Sanlez-00"; + "Own"; + "González"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SatLud-2837"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Satz"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchAbr-696"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Scharkansky"; + "Abraham Michal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchAlb-710"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schoengold"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchBar-2855"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schorr"; + "Baruch"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchLud-00"; + "Own"; + "Schaeffer"; + "Ludovico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchMar-2862"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schwartz"; + "Margareta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchMos-1026"; + "Own"; + ""; + "Schor"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchNah-843"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schaikewitz"; + "Nahum Meïr"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchNat-2858"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schulman"; + "Nathan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchShl-2850"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schneider"; + "Shlomo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchZig-3756"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schwartz"; + "Zigmunt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ScoAnt-00"; + "Own"; + "Scotti"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScrEug-00"; + "Own"; + "Scribe"; + "Eugene"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SebDav-01"; + "Own"; + "Sebastian"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SefMen-522"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sefarim"; + "Mendele Mokher"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SegPas-01"; + "Own"; + "Segreto"; + "Paschoal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Sev_2892"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sevilla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Sevdez-00"; + "Own"; + "Fernández"; + "Severo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShaIsr-3742"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shavelzon"; + "Israelke"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShaLil-ShaLil-3707"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shapero"; + "Lilly"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShaPin-2900"; + "Own"; + ""; + "Shapiro"; + "Pinchas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SheAar-3717"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sherman"; + "Aaron Sholem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SheZig-727"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shenkman"; + "Zigmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShiB-3729"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shimin"; + "B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShiRud-3816"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shildkraut"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShlS-3669"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shliferstein"; + "S."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShnAar-3766"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shnap"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShnCha-2938"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shneyer"; + "Chaim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShnSam-963"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shnayer"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Sho-383"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sholem-Aleykhem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShoYos-3622"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shoengold"; + "Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShpHer-3758"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shpilman"; + "Hersh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShpLeo-3719"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shpachner"; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShrAdo-1038"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shrage"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShrBen-3671"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shrage"; + "Benjamin L."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShrMat-3670"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shrage"; + "Mathilda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShtDin-00"; + "Own"; + "Shtettin"; + "Dinah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShtFer-2949"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shtoyb"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ShvDov-2958"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shvartsbard"; + "Dovid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SieWil-910"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Siegal"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SilEst-717"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Silberman"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SilLiz-2975"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Silbert"; + "Liza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SilMor-701"; + "Own"; + ""; + "Silberman"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SilMoy-800"; + "Own"; + ""; + "Silberman"; + "Moyshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Silisi-00"; + "Own"; + "Aloisi"; + "Silvia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Siltti-00"; + "Own"; + "Giovanetti"; + "Silvio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimAbr-715"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Simowitz"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SimBet-2982"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Simonoff"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SimLea-3672"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Simon"; + "Leah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SimLuc-01"; + "Own"; + "Simões"; + "Lucinda Simões"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimMrs-2981"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Simon"; + "Mrs."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SimSof-3673"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Simon"; + "Sofia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Simhou-00"; + "Own"; + "Michou"; + "Simone"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SinIsr-2989"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/singer-israel-joshua.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.791."""; + "1893-11-30"^^xsd:date; + "1893-11-30"^^xsd:date; + "Singer"; + "Israel Joshua"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "SloMad-2998"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Slonimski"; + "Madam"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SofMar-00"; + "Own"; + "Soffici"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Sofzán-00"; + "Own"; + "Bozán"; + "Sofía"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SolIsi-3010"; + "Own"; + ""; + "Solotorefsky"; + "Isidore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SolOsc-3009"; + "Own"; + ""; + "Solomonesco"; + "Oscar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SolOtt-00"; + "Own"; + "Von Hoym-Sollingen"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SolYos-3662"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Soloveytshik"; + "Yoshe Ber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SteA-3761"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sterling"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "StoPol-00"; + "Own"; + "Stoska"; + "Polyna"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StrGiu-00"; + "Own"; + "Strepponi"; + "Giuseppina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StuI-3686"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sturm"; + "I."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SusGro-00"; + "Own"; + "Grosso"; + "Susana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SveSve-00"; + "Own"; + "Sveinbjörnsson"; + "Sveinbjörn"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SwiMr.-00"; + "Own"; + "Swinbourne"; + "Mr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TanJos-730"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tanzman"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TanPin-3735"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tanzman"; + "Pinchas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Tatova-00"; + "Own"; + "Pavlova"; + "Tatiana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TeyMos-3069"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Teytsh"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ThoBor-00"; + "Thomashefsky"; + "Boris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoJoh-00"; + "Own"; + "Thomashefsky"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoJos-3750"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Thomashefsky"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ThoMik-3073"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Thomashefsky"; + "Mike"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ThoPin-845"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Thomashefsky"; + "Pinkhes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ThuKar-00"; + "Own"; + "von Thurn-Valsassina"; + "Graf Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThuMat-3074"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Thur"; + "Matias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Tinnzo-00"; + "Own"; + "Lorenzo"; + "Tina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Titllo-00"; + "Own"; + "Merello"; + "Tita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Titrdo-00"; + "Own"; + "Lusiardo"; + "Tito"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TobSam-3079"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tobias"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TomBor-693"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tomashevsky"; + "Boris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TorA-3773"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Torczyner"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TorAug-3678"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Torn"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TorDav-3677"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Torn"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TorLul-3679"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Torn"; + "Lulu"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TraJul-00"; + "Own"; + "Traversa"; + "Julio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TraSh.-3763"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Trachtman"; + "Sh."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TreCha-3089"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Treitler"; + "Chaim Benjamin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TriMan-3093"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Trilling"; + "Manya"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TsiHei-3705"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tsimerman"; + "Heinrich (Sholem-Tzvi)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TsiIsr-3108"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tsinberg"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "UgeYes-3128"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Uger"; + "Yeshaya"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Uli_3703"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ulianov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VadMah-3751"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vadya"; + "Maharaja"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VakEst-00"; + "Own"; + "Vaksman"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VakEst-3135"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vaksman"; + "Ester"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VakYak-3139"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vaksman"; + "Yakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ValP-3752"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vald"; + "P."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Valier-00"; + "Own"; + "Tassier"; + "Valentine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VayHel-3172"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vaysman"; + "Helena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VayIta-3158"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vaynshteyn"; + "Ita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VayMos-3171"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vaysfeld"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VerS-3178"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Verite"; + "S."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Verine-00"; + "Own"; + "Sergine"; + "Vera"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VilCar-00"; + "Own"; + "Villalba"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VlaB-3190"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vladeck"; + "B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VolJul-3728"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Volin"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WagFri-00"; + "Wagner"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WagKla-00"; + "Wagner"; + "Klara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WagRos-00"; + "Wagner"; + "Rosalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WaiA-3200"; + "Own"; + ""; + "Waiter"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WalRos-3205"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wallerstein"; + "Rose"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Walney-00"; + "Own"; + "Disney"; + "Walt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarYit-3209"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Warshavsky"; + "Yitskhok Meir"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiIsr-713"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weinblatt"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiMic-3211"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weichert"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiPau-3715"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weiss"; + "Paula"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiRub-752"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weissman"; + "Rubens"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiSig-3236"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weintraub"; + "Sigmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiSop-1053"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weinstock"; + "Sophia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiYos-1052"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weinstock"; + "Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WilMax-3267"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wilner"; + "Max R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WohYeh-3274"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wohlman"; + "Yehuda-Leib"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WolAar-3277"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wolfsohn-Halle"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WolSim-3276"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wolf"; + "Simon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "XirMar-00"; + "Own"; + "Xirgu"; + "Margarita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YakYaa-3295"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Yakubovitsh"; + "Yaakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YanSau-3301"; + "Own"; + ""; + "Yanovsky"; + "Saul Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YarEli-868"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Yarikhovski"; + "Elihu Zalmen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YerRos-3309"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Yermolina-Veysman"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YevA. -3710"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Yevalenko"; + "A. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YosHer-3741"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Yosef"; + "Hersh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZanJul-3347"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zandberg"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZasRud-3356"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zaslavsky"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZbaVel-3360"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zbarzher"; + "Velvel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZelMey-3769"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zelniker"; + "Meyer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZemNak-3709"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zemach"; + "Nakhum"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Zey[?]-3378"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zeyderman.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.772."""; + "1922-01-01"^^xsd:date; + "1922-12-31"^^xsd:date; + "Zeyderman"; + "1922"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "ZhiYos-3384"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zhitomirski"; + "Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZhuYez-3712"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zhulavski"; + "Yezhi (Julian)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZieAvr-3681"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Avraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZieEla-3684"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Ela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZieErn-3389"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Erna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZieLaz-3683"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Lazar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZieShm-3682"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Shmuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZilMax-00"; + "Own"; + "Zilzer"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZolHil-3419"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zolotarov"; + "Hilel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZucHer-3427"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zuckerberg"; + "Hershel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZucIsi-3431"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zuckerman"; + "Isidor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZusM-3711"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zusman"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZylZal-3440"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zylbercweig"; + "Zalmen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "pro-383"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Proft"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + 10235; + "Manager"; + . + + a ; + 10236; + "Director"; + . + + a ; + 10238; + "Impresario"; + . + + a ; + 10243; + "Actor"; + . + + a ; + 10248; + "Founder"; + . + + a ; + 10249; + "Actor"; + . + + a ; + 10254; + "Singer"; + . + + a ; + 10259; + "Teacher (Theatre related)"; + . + + a ; + 10264; + "Musician"; + . + + a ; + 10269; + "Teacher (Theatre related)"; + . + + a ; + 10274; + "Music Director"; + . + + a ; + 10279; + "Impresario"; + . + + a ; + 10284; + "Music Director"; + . + + a ; + 10289; + . + + a ; + 10293; + "Impresario"; + . + + a ; + 10303; + "Actor"; + . + + a ; + 10304; + "Singer"; + . + + a ; + 10305; + "Founder"; + . + + a ; + 10309; + "Actor"; + . + + a ; + 10314; + "Manager"; + . + + a ; + 10334; + "Musician"; + . + + a ; + 10339; + "Composer"; + . + + a ; + 10344; + "Actor"; + . + + a ; + 10349; + "Teacher (Theatre related)"; + . + + a ; + 10354; + "Singer"; + . + + a ; + 10359; + "Singer"; + . + + a ; + 10362; + "Other"; + . + + a ; + 10366; + "Choreographer"; + . + + a ; + 10370; + "Musician"; + . + + a ; + 10374; + "Teacher (Theatre related)"; + . + + a ; + 10378; + "Director"; + . + + a ; + 10382; + "Singer"; + . + + a ; + 10385; + "Director"; + . + + a ; + 10386; + "Actor"; + . + + a ; + 10390; + "Journalist"; + . + + a ; + 10394; + "Author"; + . + + a ; + 10398; + "Actor"; + . + + a ; + 10402; + "Actor"; + . + + a ; + 10406; + "Author"; + . + + a ; + 10410; + "Translator"; + . + + a ; + 10414; + "Actor"; + . + + a ; + 10418; + "Manager"; + . + + a ; + 10422; + "Actor"; + . + + a ; + 10426; + "Other"; + . + + a ; + 10430; + "Actor"; + . + + a ; + 10434; + "Director"; + . + + a ; + 10438; + "Manager"; + . + + a ; + 10442; + "Author"; + . + + a ; + 10446; + "Translator"; + . + + a ; + 10450; + "Author"; + . + + a ; + 10454; + "Translator"; + . + + a ; + 10457; + "Teacher (Theatre related)"; + . + + a ; + 10458; + "Actor"; + . + + a ; + 10462; + "Author"; + . + + a ; + 10466; + "Journalist"; + . + + a ; + 10470; + "Translator"; + . + + a ; + 10474; + "Actor"; + . + + a ; + 10478; + . + + a ; + 10482; + "Actor"; + . + + a ; + 10486; + "Translator"; + . + + a ; + 10487; + "Actor"; + . + + a ; + 10490; + "Actor"; + . + + a ; + 10494; + "Translator"; + . + + a ; + 10498; + "Actor"; + . + + a ; + 10502; + "Actor"; + . + + a ; + 10506; + "Director"; + . + + a ; + 10513; + "Actor"; + . + + a ; + 10518; + "Singer"; + . + + a ; + 10523; + "Translator"; + . + + a ; + 10528; + "Journalist"; + . + + a ; + 10531; + "Journalist"; + . + + a ; + 10533; + "Actor"; + . + + a ; + 10538; + "Actor"; + . + + a ; + 10543; + "Actor"; + . + + a ; + 10548; + "Author"; + . + + a ; + 10553; + "Director"; + . + + a ; + 10558; + . + + a ; + 10563; + . + + a ; + 10568; + "Journalist"; + . + + a ; + 10573; + "Author"; + . + + a ; + 10578; + "Translator"; + . + + a ; + 10583; + . + + a ; + 10584; + "Actor"; + . + + a ; + 10589; + "Singer"; + . + + a ; + 10594; + "Actor"; + . + + a ; + 10599; + "Singer"; + . + + a ; + 10604; + "Actor"; + . + + a ; + 10609; + "Actor"; + . + + a ; + 10614; + "Singer"; + . + + a ; + 10619; + . + + a ; + 10624; + "Actor"; + . + + a ; + 10629; + "Director"; + . + + a ; + 10634; + "Founder"; + . + + a ; + 10639; + "Author"; + . + + a ; + 10644; + "Actor"; + . + + a ; + 10649; + "Singer"; + . + + a ; + 10654; + "Director"; + . + + a ; + 10659; + "Impresario"; + . + + a ; + 10664; + "Author"; + . + + a ; + 10666; + "Journalist"; + . + + a ; + 10667; + "Other"; + . + + a ; + 10669; + "Actor"; + . + + a ; + 10674; + "Manager"; + . + + a ; + "Dancer"; + 10682; + . + + a ; + "Actor"; + 10687; + . + + a ; + 10689; + . + + a ; + 10694; + . + + a ; + 10699; + "Actor"; + . + + a ; + 10704; + "Manager"; + . + + a ; + 10709; + "Composer"; + . + + a ; + 10714; + . + + a ; + 10719; + "Journalist"; + . + + a ; + 10724; + "Author"; + . + + a ; + 10729; + "Actor"; + . + + a ; + 10734; + "Director"; + . + + a ; + 10739; + "Founder"; + . + + a ; + 10745; + "Impresario"; + . + + a ; + 10749; + "Founder"; + . + + a ; + 10754; + "Translator"; + . + + a ; + 10759; + "Author"; + . + + a ; + 10764; + "Journalist"; + . + + a ; + 10769; + "Author"; + . + + a ; + 10774; + "Other"; + . + + a ; + 10776; + "Actor"; + . + + a ; + 10779; + "Author"; + . + + a ; + 10784; + "Author"; + . + + a ; + 10789; + "Journalist"; + . + + a ; + 10794; + "Other"; + . + + a ; + 10799; + "Author"; + . + + a ; + 10803; + "Director"; + . + + a ; + 10808; + "Actor"; + . + + a ; + 10813; + "Manager"; + . + + a ; + 10823; + "Founder"; + . + + a ; + 10828; + "Actor"; + . + + a ; + 10833; + "Director"; + . + + a ; + 10838; + "Actor"; + . + + a ; + 10843; + "Actor"; + . + + a ; + 10848; + "Director"; + . + + a ; + 10853; + "Actor"; + . + + a ; + 10858; + "Singer"; + . + + a ; + 10860; + "Author"; + . + + a ; + 10863; + "Director"; + . + + a ; + 10868; + "Translator"; + . + + a ; + 10873; + "Actor"; + . + + a ; + 10878; + "Actor"; + . + + a ; + 10883; + "Singer"; + . + + a ; + 10888; + "Singer"; + . + + a ; + 10893; + "Author"; + . + + a ; + 10898; + "Other"; + . + + a ; + 10903; + "Actor"; + . + + a ; + 10908; + "Actor"; + . + + a ; + 10912; + "Stage manager"; + . + + a ; + 10913; + "Other"; + . + + a ; + 10918; + "Author"; + . + + a ; + 10923; + "Teacher (Theatre related)"; + . + + a ; + 10928; + "Actor"; + . + + a ; + 10933; + "Other"; + . + + a ; + 10938; + "Other"; + . + + a ; + 10945; + "Other"; + . + + a ; + 10950; + "Singer"; + . + + a ; + 10955; + "Teacher (Theatre related)"; + . + + a ; + 10960; + "Composer"; + . + + a ; + 10965; + "Actor"; + . + + a ; + 10969; + "Manager"; + . + + a ; + 10975; + "Director"; + . + + a ; + 10980; + "Teacher (Theatre related)"; + . + + a ; + 10985; + "Actor"; + . + + a ; + 10990; + "Director"; + . + + a ; + 10995; + "Teacher (Theatre related)"; + . + + a ; + 11000; + "Actor"; + . + + a ; + 11004; + "Founder"; + . + + a ; + 11005; + . + + a ; + 11010; + "Actor"; + . + + a ; + 11015; + "Other"; + . + + a ; + 11020; + "Director"; + . + + a ; + 5120; + "Singer"; + . + + a ; + 5125; + "Seamstress"; + . + + a ; + 5130; + "Singer"; + . + + a ; + 5135; + "Singer"; + . + + a ; + 5150; + "Actor"; + . + + a ; + 5155; + "Singer"; + . + + a ; + 5160; + "Dancer"; + . + + a ; + 5165; + "Actor"; + . + + a ; + 5170; + "Singer"; + . + + a ; + 5175; + "Actor"; + . + + a ; + 5180; + "Founder"; + . + + a ; + 5185; + "Impresario"; + . + + a ; + 5190; + "Actor"; + . + + a ; + 5195; + "Composer"; + . + + a ; + 5200; + "Composer"; + . + + a ; + 5205; + "Actor"; + . + + a ; + 5210; + "Director"; + . + + a ; + 5215; + "Manager"; + . + + a ; + 5220; + "Trader"; + . + + a ; + 5225; + "Actor"; + . + + a ; + 5230; + "Manager"; + . + + a ; + 5235; + "Rancher"; + . + + a ; + 5240; + "Impresario"; + . + + a ; + 5245; + "Manager"; + . + + a ; + 5250; + "Director"; + . + + a ; + 5255; + "Agent"; + . + + a ; + 5260; + "Actor"; + . + + a ; + 5265; + "Actor"; + . + + a ; + 5270; + "Director"; + . + + a ; + 5280; + "Actor"; + . + + a ; + 5285; + "Author"; + . + + a ; + 5295; + "Actor"; + . + + a ; + 5300; + "Actor"; + . + + a ; + 5305; + "Customier"; + . + + a ; + 5310; + "French Teacher"; + . + + a ; + 5315; + "Painter"; + . + + a ; + 5320; + "Author"; + . + + a ; + 5325; + "Hotel Founder"; + . + + a ; + 5330; + "Founder"; + . + + a ; + 5335; + "Manager"; + . + + a ; + 5340; + "Agent"; + . + + a ; + 5345; + "Actor"; + . + + a ; + 5350; + "Author"; + . + + a ; + 5355; + "Director"; + . + + a ; + 5360; + "Author"; + . + + a ; + 5365; + "Actor"; + . + + a ; + 5370; + "Singer"; + . + + a ; + 5375; + "Singer"; + . + + a ; + 5380; + "Teacher (Theatre related)"; + . + + a ; + 5385; + "Musician"; + . + + a ; + 5390; + "Music Director"; + . + + a ; + 5395; + "Author"; + . + + a ; + 5405; + "Director"; + . + + a ; + 5410; + "Journalist"; + . + + a ; + 5415; + "Actor"; + . + + a ; + 5420; + "Emcee"; + . + + a ; + 5425; + "Actor"; + . + + a ; + 5430; + "Actor"; + . + + a ; + 5435; + "Actor"; + . + + a ; + 5440; + "Kleinkuenstler"; + . + + a ; + 5445; + "Actor"; + . + + a ; + 5455; + "Cartoonist"; + . + + a ; + 5460; + "Journalist"; + . + + a ; + 5465; + "Journalist"; + . + + a ; + 5470; + "Ceramist"; + . + + a ; + 5475; + "Customier"; + . + + a ; + 5480; + "Stage Designer"; + . + + a ; + 5485; + "Actor"; + . + + a ; + 5490; + "Singer"; + . + + a ; + 5495; + "Dancer"; + . + + a ; + 5500; + "Singer"; + . + + a ; + 5505; + "Singer"; + . + + a ; + 5510; + "Singer"; + . + + a ; + 5515; + "Singer"; + . + + a ; + 5520; + "Singer"; + . + + a ; + 5525; + "Circus Performer"; + . + + a ; + 5530; + "Director"; + . + + a ; + 5535; + "Founder"; + . + + a ; + 5540; + "Impresario"; + . + + a ; + 5545; + "Singer"; + . + + a ; + 5550; + "Singer"; + . + + a ; + 5555; + "Teacher (Theatre related)"; + . + + a ; + 5560; + "Actor"; + . + + a ; + 5565; + "Singer"; + . + + a ; + 5570; + "Teacher (Theatre related)"; + . + + a ; + 5575; + "Actor"; + . + + a ; + 5580; + "Singer"; + . + + a ; + 5585; + "Teacher (Theatre related)"; + . + + a ; + 5590; + "Singer"; + . + + a ; + 5595; + "Stage Designer"; + . + + a ; + 5600; + "Actor"; + . + + a ; + 5605; + "Director"; + . + + a ; + 5610; + "Author"; + . + + a ; + 5615; + "Cutter"; + . + + a ; + 5620; + "Composer"; + . + + a ; + 5625; + "Comedian"; + . + + a ; + 5630; + "Film producer"; + . + + a ; + 5635; + "Actor"; + . + + a ; + 5640; + "Director"; + . + + a ; + 5645; + "Actor"; + . + + a ; + 5655; + "Singer"; + . + + a ; + 5665; + "Author"; + . + + a ; + 5670; + "Actor"; + . + + a ; + 5675; + "Director"; + . + + a ; + 5680; + "Composer"; + . + + a ; + 5685; + "Music Director"; + . + + a ; + 5690; + "Musician"; + . + + a ; + 5695; + "Teacher (Theatre related)"; + . + + a ; + 5700; + "Assistant"; + . + + a ; + 5705; + "Music Director"; + . + + a ; + 5710; + "Singer"; + . + + a ; + 5715; + "Singer"; + . + + a ; + 5720; + "Actor"; + . + + a ; + 5725; + "Director"; + . + + a ; + 5730; + "Impresario"; + . + + a ; + 5735; + "Teacher (Theatre related)"; + . + + a ; + 5740; + "Actor"; + . + + a ; + 5745; + "Manager"; + . + + a ; + 5750; + "Businesswoman"; + . + + a ; + 5755; + "Singer"; + . + + a ; + 5760; + "Actor"; + . + + a ; + 5765; + "Opera"; + . + + a ; + 5770; + "Singer"; + . + + a ; + 5775; + "Actor"; + . + + a ; + 5780; + "Singer"; + . + + a ; + 5785; + "Singer"; + . + + a ; + 5790; + "Singer"; + . + + a ; + 5795; + "Singer"; + . + + a ; + 5800; + "Singer"; + . + + a ; + 5805; + "Manager"; + . + + a ; + 5810; + "Music Director"; + . + + a ; + 5815; + "Opera Correpetitor"; + . + + a ; + 5820; + "Singer"; + . + + a ; + 5825; + "Singer"; + . + + a ; + 5830; + "Singer"; + . + + a ; + 5835; + "Singer"; + . + + a ; + 5840; + "Director"; + . + + a ; + 5845; + "Director"; + . + + a ; + 5850; + "Teacher (Theatre related)"; + . + + a ; + 5855; + "Actor"; + . + + a ; + 5860; + "Dancer"; + . + + a ; + 5865; + "Musician"; + . + + a ; + 5870; + "Music Director"; + . + + a ; + 5875; + "Dancer"; + . + + a ; + 5880; + "Actor"; + . + + a ; + 5885; + "Singer"; + . + + a ; + 5890; + "Director"; + . + + a ; + 5895; + "Manager"; + . + + a ; + 5900; + "Actor"; + . + + a ; + 5910; + "Teacher (Theatre related)"; + . + + a ; + 5915; + "Elocution teacher"; + . + + a ; + 5920; + "Singer"; + . + + a ; + 5925; + "Singer"; + . + + a ; + 5930; + "Actor"; + . + + a ; + 5935; + "Impresario"; + . + + a ; + 5940; + "Founder"; + . + + a ; + 5945; + "Author"; + . + + a ; + 5950; + "Composer"; + . + + a ; + 5955; + "Actor"; + . + + a ; + 5960; + "Actor"; + . + + a ; + 5965; + "Actor"; + . + + a ; + 5970; + "Singer"; + . + + a ; + 5975; + "Music Educator"; + . + + a ; + 5980; + "Teacher (Theatre related)"; + . + + a ; + 5990; + "Singer"; + . + + a ; + 6005; + "Singer"; + . + + a ; + 6015; + "Manager"; + . + + a ; + 6020; + "Teacher (Theatre related)"; + . + + a ; + 6025; + "Teacher (Theatre related)"; + . + + a ; + 6030; + "Actor"; + . + + a ; + 6035; + "Actor"; + . + + a ; + 6040; + "Dancer"; + . + + a ; + 6045; + "Actor"; + . + + a ; + 6050; + "Singer"; + . + + a ; + 6055; + "Musician"; + . + + a ; + 6060; + "Composer"; + . + + a ; + 6065; + "Teacher (Theatre related)"; + . + + a ; + 6070; + "Author"; + . + + a ; + 6075; + "Author"; + . + + a ; + 6080; + "Director"; + . + + a ; + 6085; + "Teacher (Theatre related)"; + . + + a ; + 6090; + "Author"; + . + + a ; + 6095; + "Composer"; + . + + a ; + 6100; + "Stage Designer"; + . + + a ; + 6105; + "Actor"; + . + + a ; + 6110; + "Impresario"; + . + + a ; + 6115; + "Teacher (Theatre related)"; + . + + a ; + 6120; + "Dancer"; + . + + a ; + 6125; + "Dancer"; + . + + a ; + 6130; + "Singer"; + . + + a ; + 6135; + "Singer"; + . + + a ; + 6140; + "Dancer"; + . + + a ; + 6145; + "Singer"; + . + + a ; + 6150; + "Director"; + . + + a ; + 6155; + "Singer"; + . + + a ; + 6170; + "Actor"; + . + + a ; + 6175; + "Kleinkuenstler"; + . + + a ; + 6185; + "Author"; + . + + a ; + 6190; + "Director"; + . + + a ; + 6195; + "Actor"; + . + + a ; + 6200; + "Emcee"; + . + + a ; + 6205; + "Singer"; + . + + a ; + 6210; + "Teacher (Theatre related)"; + . + + a ; + 6215; + "Director"; + . + + a ; + 6220; + "Composer"; + . + + a ; + 6225; + "Actor"; + . + + a ; + 6230; + "Director"; + . + + a ; + 6235; + "Actor"; + . + + a ; + 6240; + "Impresario"; + . + + a ; + 6245; + "Composer"; + . + + a ; + 6250; + "Actor"; + . + + a ; + 6255; + "Author"; + . + + a ; + 6260; + "Author"; + . + + a ; + 6265; + "Singer"; + . + + a ; + 6275; + "Kleinkuenstler"; + . + + a ; + 6285; + "Actor"; + . + + a ; + 6290; + "Actor"; + . + + a ; + 6295; + "Director"; + . + + a ; + 6300; + "Singer"; + . + + a ; + 6305; + "Teacher (Theatre related)"; + . + + a ; + 6310; + "Magician"; + . + + a ; + 6315; + "Actor"; + . + + a ; + 6320; + "Author"; + . + + a ; + 6325; + "Performer"; + . + + a ; + 6330; + "Magician"; + . + + a ; + 6335; + "Magician"; + . + + a ; + 6340; + "Composer"; + . + + a ; + 6345; + "Musician"; + . + + a ; + 6350; + "Music Director"; + . + + a ; + 6355; + "Director"; + . + + a ; + 6360; + "Producer"; + . + + a ; + 6365; + "Author"; + . + + a ; + 6370; + "Actor"; + . + + a ; + 6375; + "Actor"; + . + + a ; + 6380; + "Singer"; + . + + a ; + 6385; + "Musician"; + . + + a ; + 6390; + "Composer"; + . + + a ; + 6395; + "Music Director"; + . + + a ; + 6400; + "Dancer"; + . + + a ; + 6405; + "Actor"; + . + + a ; + 6410; + "Magician"; + . + + a ; + 6415; + "Circus Performer"; + . + + a ; + 6420; + "Musician"; + . + + a ; + 6425; + "Actor"; + . + + a ; + 6430; + "Singer"; + . + + a ; + 6435; + "Singer"; + . + + a ; + 6440; + "Teacher (Theatre related)"; + . + + a ; + 6445; + "Actor"; + . + + a ; + 6450; + "Actor"; + . + + a ; + 6455; + "Singer"; + . + + a ; + 6460; + "Teacher (Theatre related)"; + . + + a ; + 6465; + "Author"; + . + + a ; + 6470; + "Dramaturg"; + . + + a ; + 6475; + "Singer"; + . + + a ; + 6485; + "Singer"; + . + + a ; + 6495; + "Director"; + . + + a ; + 6500; + "Actor"; + . + + a ; + 6505; + "Actor"; + . + + a ; + 6510; + "Director"; + . + + a ; + 6515; + "Singer"; + . + + a ; + 6525; + "Actor"; + . + + a ; + 6530; + "Actor"; + . + + a ; + 6535; + "Manager"; + . + + a ; + 6540; + "Musician"; + . + + a ; + 6545; + "Music Director"; + . + + a ; + 6555; + "Manager"; + . + + a ; + 6560; + "Actor"; + . + + a ; + 6570; + "Actor"; + . + + a ; + 6575; + "Actor"; + . + + a ; + 6580; + "Singer"; + . + + a ; + 6585; + "Teacher (Theatre related)"; + . + + a ; + 6590; + "Actor"; + . + + a ; + 6595; + "Director"; + . + + a ; + 6605; + "Singer"; + . + + a ; + 6615; + "Singer"; + . + + a ; + 6620; + "Director"; + . + + a ; + 6625; + "Singer"; + . + + a ; + 6630; + "Singer"; + . + + a ; + 6635; + "Singer"; + . + + a ; + 6640; + "Feminist"; + . + + a ; + 6645; + "Actor"; + . + + a ; + 6650; + "Author"; + . + + a ; + 6655; + "Actor"; + . + + a ; + 6660; + "Author"; + . + + a ; + 6665; + "Author"; + . + + a ; + 6670; + "Director"; + . + + a ; + 6675; + "Actor"; + . + + a ; + 6680; + "Actor"; + . + + a ; + 6685; + "Author"; + . + + a ; + 6690; + "Director"; + . + + a ; + 6695; + "Cartoonist"; + . + + a ; + 6700; + "Advertiser"; + . + + a ; + 6705; + "Singer"; + . + + a ; + 6715; + "Singer"; + . + + a ; + 6725; + "Teacher (Theatre related)"; + . + + a ; + 6730; + "Circus Performer"; + . + + a ; + 6735; + """Composer +"""; + . + + a ; + 6740; + "Music Director"; + . + + a ; + 6745; + "Composer"; + . + + a ; + 6750; + "Actor"; + . + + a ; + 6755; + "Director"; + . + + a ; + 6760; + "Manager"; + . + + a ; + 6765; + "Singer"; + . + + a ; + 6770; + "Actor"; + . + + a ; + 6775; + "Teacher (Theatre related)"; + . + + a ; + 6780; + "Music Director"; + . + + a ; + 6785; + "Composer"; + . + + a ; + 6790; + "Singer"; + . + + a ; + 6795; + "Teacher (Theatre related)"; + . + + a ; + 6800; + "Journalist"; + . + + a ; + 6805; + "Founder"; + . + + a ; + 6810; + "Singer"; + . + + a ; + 6815; + "Singer"; + . + + a ; + 6820; + "Teacher (Theatre related)"; + . + + a ; + 6825; + "Musician"; + . + + a ; + 6830; + "Kleinkuenstler"; + . + + a ; + 6835; + "Actor"; + . + + a ; + 6840; + "Director"; + . + + a ; + 6845; + "Producer"; + . + + a ; + 6850; + "Author"; + . + + a ; + 6855; + "Actor"; + . + + a ; + 6860; + "Actor"; + . + + a ; + 6865; + "Singer"; + . + + a ; + 6870; + "Impresario"; + . + + a ; + 6875; + "Actor"; + . + + a ; + 6880; + "Director"; + . + + a ; + 6885; + "Music Director"; + . + + a ; + 6890; + "Teacher (Theatre related)"; + . + + a ; + 6895; + "Director"; + . + + a ; + 6900; + "Composer"; + . + + a ; + 6905; + "Music Director"; + . + + a ; + 6910; + "Director"; + . + + a ; + 6915; + "Singer"; + . + + a ; + 6925; + "Singer"; + . + + a ; + 6935; + "Teacher (Theatre related)"; + . + + a ; + 6940; + "Actor"; + . + + a ; + 6945; + "Singer"; + . + + a ; + 6950; + "Teacher (Theatre related)"; + . + + a ; + 6955; + "Composer"; + . + + a ; + 6960; + "Music Director"; + . + + a ; + 6965; + "Impresario"; + . + + a ; + 6970; + "Founder"; + . + + a ; + 6975; + "Manager"; + . + + a ; + 6980; + "Teacher (Theatre related)"; + . + + a ; + 6985; + "Singer"; + . + + a ; + 6990; + "Teacher (Theatre related)"; + . + + a ; + 6995; + "Singer"; + . + + a ; + 7000; + "Founder"; + . + + a ; + 7005; + "Manager"; + . + + a ; + 7010; + "Dancer"; + . + + a ; + 7015; + "Pantomime Artist"; + . + + a ; + 7020; + "Actor"; + . + + a ; + 7025; + "Director"; + . + + a ; + 7030; + "Dancer"; + . + + a ; + 7035; + "Actor"; + . + + a ; + 7045; + "Actor"; + . + + a ; + 7050; + "Dancer"; + . + + a ; + 7055; + "Actor"; + . + + a ; + 7060; + "Dancer"; + . + + a ; + 7065; + "Teacher (Theatre related)"; + . + + a ; + 7070; + "Music Director"; + . + + a ; + 7075; + "Composer"; + . + + a ; + 7080; + "Singer"; + . + + a ; + 7085; + "Teacher (Theatre related)"; + . + + a ; + 7090; + "Singer"; + . + + a ; + 7095; + "Actor"; + . + + a ; + 7100; + "Movie Producer"; + . + + a ; + 7105; + "Merchant"; + . + + a ; + 7110; + "Movie Producer"; + . + + a ; + 7120; + "Actor"; + . + + a ; + 7125; + "Singer"; + . + + a ; + 7130; + "Singer"; + . + + a ; + 7135; + "Actor"; + . + + a ; + 7140; + "Manager"; + . + + a ; + 7145; + "Singer"; + . + + a ; + 7150; + "Actor"; + . + + a ; + 7155; + "Actor"; + . + + a ; + 7160; + "Magician"; + . + + a ; + 7165; + "Circus Performer"; + . + + a ; + 7170; + "Photographer"; + . + + a ; + 7175; + "Circus Performer"; + . + + a ; + 7180; + "Impresario"; + . + + a ; + 7185; + "Singer"; + . + + a ; + 7190; + "Composer"; + . + + a ; + 7195; + "Journalist"; + . + + a ; + 7200; + "Singer"; + . + + a ; + 7205; + "President"; + . + + a ; + 7210; + "Composer"; + . + + a ; + 7215; + "Author"; + . + + a ; + 7220; + "Manager"; + . + + a ; + 7225; + "Actor"; + . + + a ; + 7230; + "Actor"; + . + + a ; + 7235; + "Director"; + . + + a ; + 7240; + "Teacher (Theatre related)"; + . + + a ; + 7245; + "Technician"; + . + + a ; + 7250; + "Impresario"; + . + + a ; + 7255; + "Singer"; + . + + a ; + 7260; + "Director"; + . + + a ; + 7265; + "Author"; + . + + a ; + 7270; + "Author"; + . + + a ; + 7275; + "Priest"; + . + + a ; + 7280; + "Musician"; + . + + a ; + 7285; + "Singer"; + . + + a ; + 7290; + "Teacher (Theatre related)"; + . + + a ; + 7295; + "Manager"; + . + + a ; + 7300; + "Circus Performer"; + . + + a ; + 7305; + "Director"; + . + + a ; + 7310; + "Impresario"; + . + + a ; + 7315; + "Founder"; + . + + a ; + 7320; + "Actor"; + . + + a ; + 7325; + "Actor"; + . + + a ; + 7330; + "Director"; + . + + a ; + 7335; + "Director"; + . + + a ; + 7340; + "Intendant"; + . + + a ; + 7345; + "Impresario"; + . + + a ; + 7350; + "Founder"; + . + + a ; + 7355; + "Musician"; + . + + a ; + 7360; + "Composer"; + . + + a ; + 7365; + "Music Director"; + . + + a ; + 7370; + "Singer"; + . + + a ; + 7375; + "Singer"; + . + + a ; + 7380; + "Music Director"; + . + + a ; + 7385; + "Actor"; + . + + a ; + 7390; + "Manager"; + . + + a ; + 7395; + "Director"; + . + + a ; + 7400; + "Dancer"; + . + + a ; + 7405; + "Actor"; + . + + a ; + 7410; + "Teacher (Theatre related)"; + . + + a ; + 7415; + "Singer"; + . + + a ; + 7420; + "Author"; + . + + a ; + 7425; + "Author"; + . + + a ; + 7430; + "Journalist"; + . + + a ; + 7435; + "Director"; + . + + a ; + 7440; + "Teacher (Theatre related)"; + . + + a ; + 7445; + "Singer"; + . + + a ; + 7450; + "Singer"; + . + + a ; + 7455; + "Singer"; + . + + a ; + 7465; + "Singer"; + . + + a ; + 7470; + "Singer"; + . + + a ; + 7475; + "Singer"; + . + + a ; + 7480; + "Teacher (Theatre related)"; + . + + a ; + 7485; + "Singer"; + . + + a ; + 7490; + "Singer"; + . + + a ; + 7495; + "Singer"; + . + + a ; + 7500; + "Singer"; + . + + a ; + 7505; + "Actor"; + . + + a ; + 7515; + "Music Director"; + . + + a ; + 7520; + "Singer"; + . + + a ; + 7525; + "Musician"; + . + + a ; + 7530; + "Teacher (Theatre related)"; + . + + a ; + 7535; + "Actor"; + . + + a ; + 7540; + "Director"; + . + + a ; + 7545; + "Impresario"; + . + + a ; + 7550; + "Teacher (Theatre related)"; + . + + a ; + 7555; + "Actor"; + . + + a ; + 7560; + "Singer"; + . + + a ; + 7565; + "Actor"; + . + + a ; + 7570; + "Impresario"; + . + + a ; + 7575; + "Director"; + . + + a ; + 7580; + "Impresario"; + . + + a ; + 7585; + "Actor"; + . + + a ; + 7590; + "Impresario"; + . + + a ; + 7595; + "Director"; + . + + a ; + 7600; + "Reciter"; + . + + a ; + 7605; + "Farmer"; + . + + a ; + 7610; + "Teacher (Theatre related)"; + . + + a ; + 7615; + "Singer"; + . + + a ; + 7620; + "Teacher (Theatre related)"; + . + + a ; + 7625; + "Author"; + . + + a ; + 7630; + "Singer"; + . + + a ; + 7635; + "Composer"; + . + + a ; + 7640; + "Musician"; + . + + a ; + 7645; + "Impresario"; + . + + a ; + 7650; + "Musician"; + . + + a ; + 7655; + "Teacher (Theatre related)"; + . + + a ; + 7660; + "Impresario"; + . + + a ; + 7665; + "Director"; + . + + a ; + 7670; + "Choreographer"; + . + + a ; + 7675; + "Ballet master"; + . + + a ; + 7680; + "Dancer"; + . + + a ; + 7685; + "Dancer"; + . + + a ; + 7690; + "Dancer"; + . + + a ; + 7695; + "Dancer"; + . + + a ; + 7700; + "Director"; + . + + a ; + 7705; + "Actor"; + . + + a ; + 7710; + "Singer"; + . + + a ; + 7715; + "Singer"; + . + + a ; + 7720; + "Singer"; + . + + a ; + 7725; + "Actor"; + . + + a ; + 7730; + "Actor"; + . + + a ; + 7735; + "Actor"; + . + + a ; + 7740; + "Actor"; + . + + a ; + 7745; + "Dancer"; + . + + a ; + 7750; + "Author"; + . + + a ; + 7755; + "English Teacher"; + . + + a ; + 7760; + "Translator"; + . + + a ; + 7765; + "Musician"; + . + + a ; + 7770; + "Music Director"; + . + + a ; + 7775; + "Singer"; + . + + a ; + 7785; + "Composer"; + . + + a ; + 7790; + "Musician"; + . + + a ; + "Teacher (Theatre related)"; + 7795; + "Teacher (Theatre related)"; + . + + a ; + 7800; + "Author"; + . + + a ; + 7805; + "Actor"; + . + + a ; + 7810; + "Singer"; + . + + a ; + 7815; + "Composer"; + . + + a ; + 7820; + "Music Director"; + . + + a ; + 7825; + "Director"; + . + + a ; + 7830; + "Teacher (Theatre related)"; + . + + a ; + 7835; + "Rabbi"; + . + + a ; + 7840; + "Actor"; + . + + a ; + 7845; + "Director"; + . + + a ; + 7850; + "Actor"; + . + + a ; + 7855; + "Actor"; + . + + a ; + 7860; + "Singer"; + . + + a ; + 7865; + "Teacher (Theatre related)"; + . + + a ; + 7870; + "Composer"; + . + + a ; + 7889; + "Actor"; + . + + a ; + 7894; + "Director"; + . + + a ; + 7899; + "Founder"; + . + + a ; + 7904; + "Singer"; + . + + a ; + 7909; + "Actor"; + . + + a ; + 7914; + "Actor"; + . + + a ; + 7919; + "Author"; + . + + a ; + 7939; + "Actor"; + . + + a ; + 7944; + "Founder"; + . + + a ; + 7949; + "Manager"; + . + + a ; + 7954; + "Agent"; + . + + a ; + 7959; + "Impresario"; + . + + a ; + 7964; + "Director"; + . + + a ; + 7969; + "Singer"; + . + + a ; + 7974; + "Actor"; + . + + a ; + 7979; + "Journalist"; + . + + a ; + 7984; + "Director"; + . + + a ; + 7989; + "Actor"; + . + + a ; + 7994; + "Actor"; + . + + a ; + 7999; + "Author"; + . + + a ; + 8004; + "Journalist"; + . + + a ; + 8019; + "Author"; + . + + a ; + 8034; + "Actor"; + . + + a ; + 8039; + "Impresario"; + . + + a ; + 8044; + "Author"; + . + + a ; + 8049; + "Director"; + . + + a ; + 8054; + "Actor"; + . + + a ; + 8069; + "Singer"; + . + + a ; + 8074; + "Actor"; + . + + a ; + 8089; + "Singer"; + . + + a ; + 8094; + "Singer"; + . + + a ; + 8099; + "Teacher (Theatre related)"; + . + + a ; + 8103; + "Singer"; + . + + a ; + 8104; + "Teacher (Theatre related)"; + . + + a ; + 8109; + "Impresario"; + . + + a ; + 8114; + "Author"; + . + + a ; + 8119; + "Journalist"; + . + + a ; + 8124; + "Impresario"; + . + + a ; + 8134; + "Founder"; + . + + a ; + 8139; + "Author"; + . + + a ; + 8144; + "Director"; + . + + a ; + 8154; + "Stage Designer"; + . + + a ; + 8169; + "Impresario"; + . + + a ; + 8174; + "Founder"; + . + + a ; + 8184; + "Author"; + . + + a ; + 8189; + "Director"; + . + + a ; + 8194; + "Impresario"; + . + + a ; + 8199; + "Teacher (Theatre related)"; + . + + a ; + 8204; + "Journalist"; + . + + a ; + 8209; + "Director"; + . + + a ; + 1; + "Tsipoyre"; + "Abelman"; + . + + a ; + 10; + ""; + "first time used in Egypt"; + "Ada"; + "Nelson"; + . + + a ; + 100; + "Birth name"; + "Ellen"; + "Nordgren"; + . + + a ; + 1009; + . + + a ; + 101; + "Other"; + "Natalie"; + "Hänisch"; + . + + a ; + 1014; + . + + a ; + 1019; + "Pseudonym/Stage name"; + "Y. Akvila"; + . + + a ; + 102; + "Birth name"; + """Uta Thyra +"""; + "Hagen"; + . + + a ; + 1024; + "Pseudonym/Stage name"; + "Y. Nshr"; + . + + a ; + "1894-09-05"^^xsd:date; + 1029; + "Birth name"; + "Joan"; + "Comorera i Soler"; + . + + a ; + 103; + "Birth name"; + "Helene Anna "; + "Held"; + . + + a ; + "1894-09-05"^^xsd:date; + 1034; + "Birth name"; + "Joan"; + "Comorera"; + . + + a ; + 1039; + "Migration-related"; + "Juan"; + "Comorera"; + . + + a ; + 104; + "Birth name"; + "Frida Elisabeth"; + "Hempel"; + . + + a ; + "1951-01-01"^^xsd:date; + 1044; + "Other"; + "Josep"; + "Planas"; + . + + a ; + "1905-06-05"^^xsd:date; + "1905-06-05"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 1049; + "Birth name"; + "Enrique"; + "Frexas de Sabater"; + . + + a ; + 105; + ""; + "des Kaisers Lerche"; + ""; + . + + a ; + 1054; + "Birth name"; + "Michele"; + "Gea"; + . + + a ; + 1059; + "Other"; + "Miguelito"; + . + + a ; + 1064; + "Pseudonym/Stage name"; + "El hombre de la calle"; + . + + a ; + 1069; + "Nahuinca"; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 107; + "Pseudonym/Stage name"; + "Mr. Alexander"; + . + + a ; + 1074; + "Roberto Eynhardt"; + . + + a ; + "1961-09-17"^^xsd:date; + "1961-09-17"^^xsd:date; + 1079; + "Other"; + "Miguel"; + "Gómez"; + . + + a ; + "Probably 1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 108; + "Addie"; + "Herrmann"; + . + + a ; + "1848-02-15"^^xsd:date; + "1848-02-15"^^xsd:date; + 1084; + "Birth name"; + "François"; + "Groussac"; + . + + a ; + "1929-06-27"^^xsd:date; + "1929-06-27"^^xsd:date; + 1089; + "Other"; + "Paul"; + "Groussac"; + . + + a ; + "1875-03-27"^^xsd:date; + "1853-08-11"^^xsd:date; + 109; + "Birth name"; + "Adele Celine"; + "Scarsez"; + . + + a ; + "1979"; + "1979-12-31"^^xsd:date; + "1979-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 1090; + "Birth name"; + "Manuel"; + "Domínguez Santamaría"; + . + + a ; + 1095; + "Pseudonym/Stage name"; + "Andzshei"; + "Mareḳ"; + . + + a ; + 1098; + "Abraham"; + "Axelrad"; + . + + a ; + 11; + "Marriage"; + "Ida"; + "Liebhardt"; + . + + a ; + 110; + "Other"; + "Adele Celine \"Adelaide\""; + "Scarsez"; + . + + a ; + 1103; + "Birth name"; + "Rukhl"; + "Margules"; + . + + a ; + 1108; + "Pseudonym/Stage name"; + "During his time by Gradner"; + "B."; + "Berkovich"; + . + + a ; + 111; + "Marriage"; + "after married the musicial Robert Stoepel"; + "Matilda"; + "Agnes Heron Stoepel"; + . + + a ; + 1110; + "Birth name"; + "Isidor"; + "Bodanskie"; + . + + a ; + 1115; + . + + a ; + 112; + ""; + "Herrmann the Great"; + . + + a ; + 1120; + "Birth name"; + "Maria Teresa Rebecca"; + "Brambilla"; + . + + a ; + 1125; + "Marriage"; + "Maria Teresa Rebecca"; + "Furga-Gorini"; + . + + a ; + 113; + ""; + "Arricha"; + "de Tolvens"; + . + + a ; + 1130; + . + + a ; + 1135; + . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 114; + "Birth name"; + "Erich"; + "Weisz"; + . + + a ; + 1140; + . + + a ; + "1980-05-14"; + "1980-05-14"^^xsd:date; + "1980-05-14"^^xsd:date; + "1887-02-20"; + "1887-02-20"^^xsd:date; + "1887-02-20"^^xsd:date; + 1145; + "Birth name"; + "Carl Anton Charles"; + "Ebert"; + . + + a ; + "1926-10-31"^^xsd:date; + 115; + "Other"; + "Erik"; + "Weiss"; + . + + a ; + 1150; + "Pseudonym/Stage name"; + "Carl"; + "Ebert"; + . + + a ; + "1943-10-23"; + "1943-10-31"^^xsd:date; + "1943-10-23"^^xsd:date; + "1858-01-31"; + "1858-01-31"^^xsd:date; + "1858-01-31"^^xsd:date; + 1155; + "Birth name"; + "Leonard Andre"; + "Antoine"; + . + + a ; + "1926-10-31"^^xsd:date; + 116; + "Other"; + "Giovanni"; + "Deadota"; + . + + a ; + 1160; + "Pseudonym/Stage name"; + "Andre"; + "Antoine"; + . + + a ; + 117; + "Birth name"; + "Marie Sophie Rosa Caroline Elsa "; + "Jäger "; + . + + a ; + 118; + "Birth name"; + "Theodor Friedrich Emil"; + "Janenz"; + . + + a ; + 119; + "Birth name"; + "Francesca Romana Magdalena"; + "Janauschek"; + . + + a ; + 12; + "Marriage"; + "Ida"; + "Liebhardt-Baier"; + . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1820-10-06"^^xsd:date; + "1820-10-06"^^xsd:date; + 120; + "Birth name"; + "Johanna Maria"; + "Lind"; + . + + a ; + "1968-01-31"^^xsd:date; + "1968-01-31"^^xsd:date; + "1900-05-29"^^xsd:date; + "1900-05-29"^^xsd:date; + 121; + "Marriage"; + "Olga"; + "Jespersen de Adeler"; + . + + a ; + 122; + ""; + "Amalie"; + "Weiss"; + . + + a ; + 123; + "Birth name"; + "Amalie"; + "Schneeweiss"; + . + + a ; + 124; + "Birth name"; + "changed her name by the time she played the title role in Avrom Goldfaden’s Shulamis"; + "Beylke"; + "Kalakh"; + . + + a ; + 125; + ""; + ""; + "Bertha"; + "Kalish"; + . + + a ; + 126; + ""; + "Paolo"; + "Alberti"; + . + + a ; + 127; + "Birth name"; + "Ester-Rokhl"; + "Halpern"; + . + + a ; + 128; + "Other"; + "Esther Rachel"; + "Kamińska"; + . + + a ; + 129; + ""; + "Fanny"; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13; + "Marriage"; + "Helena"; + "Balsemão Rodrigues"; + . + + a ; + 130; + "Birth name"; + "believed to have been born Mary Frances Moss"; + "Mary Frances"; + "Moss"; + . + + a ; + 131; + ""; + "change of her name from Mary Taylor to Laura Keene for stage purposes, making herself independent"; + "Mary"; + "Taylor"; + . + + a ; + 132; + "Other"; + "Fidèle-Ernest-Joseph"; + "Koenig"; + . + + a ; + 133; + "Fidèle-Joseph"; + "König"; + . + + a ; + 134; + "Birth name"; + "Fritz Nathan"; + "Kohn"; + . + + a ; + 135; + "Marriage"; + "(after marriage with Paul von Turn und Taxis and the name change forced on him by his family because of this marriage)"; + "Elisabeth"; + "von Fels"; + . + + a ; + 136; + "Marriage"; + "second marriage"; + "Elisabeth"; + "von Fels-Cabisius"; + . + + a ; + 137; + "Other"; + "Selma"; + "Koert-Kronold"; + . + + a ; + 138; + "Other"; + "Selma"; + "Krongold"; + . + + a ; + 139; + "Stella"; + "Oristorio die Frama"; + . + + a ; + 14; + "Birth name"; + "Herbert Arthur"; + "Chamberlayne Blythe"; + . + + a ; + 140; + "Wilhelmina Jacoba Pauline Rudolphine"; + "Krusemann"; + . + + a ; + 141; + ""; + "Stella"; + "Oristorio di Frama"; + . + + a ; + 142; + "Other"; + "Cesarine"; + "Kupfer"; + . + + a ; + 143; + "Birth name"; + "Cesarine"; + "Heigel"; + . + + a ; + 144; + "Other"; + "Heinrich Rudolf Constanz "; + "Laube"; + . + + a ; + 145; + ""; + "Pepi"; + "Lavitz"; + . + + a ; + 146; + ""; + "Elisabeth Maria"; + "Lehmann"; + . + + a ; + 147; + "Marriage"; + "Elisabeth Maria"; + "Lehmann-Kalisch"; + . + + a ; + 148; + "Birth name"; + "Leopoldina Alitza"; + "Pelikan"; + . + + a ; + 149; + ""; + "Hans"; + "Kindermann"; + . + + a ; + 15; + "Victor"; + "Barnowski"; + . + + a ; + 150; + ""; + "Tobias"; + "Sonnabend"; + . + + a ; + 151; + ""; + "Kurt"; + "Waller"; + . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1852-02-05"^^xsd:date; + "1852-02-05"^^xsd:date; + 152; + "Marriage"; + "Jenny"; + "Goldschmidt"; + . + + a ; + 153; + "Madame"; + "Goldschmidt"; + . + + a ; + 154; + ""; + "Mary"; + "Cecilia"; + . + + a ; + "-"; + "-"; + 155; + "Birth name"; + "Manuella"; + "Caetana Lucci"; + . + + a ; + "-"; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 156; + "Marriage"; + "Manuella"; + "Caetana Lucci de Oliveira"; + . + + a ; + 157; + "Birth name"; + "Maria"; + "García"; + . + + a ; + 158; + "Maria"; + "de la Felicidad Malibran"; + . + + a ; + 159; + "Other"; + "Blanche"; + "Marchesi de Castrone"; + . + + a ; + 16; + "Birth name"; + "Isidor"; + "Abrahamowsky"; + . + + a ; + "1950-11-12"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 160; + "Pseudonym/Stage name"; + "in 1887 she took her stage name Julia Marlowe"; + "Julia"; + "Marlowe"; + . + + a ; + "1870 till 1872"; + "1872-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1865 or 1866"; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 161; + "Birth name"; + "while attending school she was called Fanny Brough; "; + "Sarah Frances"; + "Frost"; + . + + a ; + "1950-11-12"^^xsd:date; + "1870 till 1872"; + "1872-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 162; + "Other"; + "before going to the U.S. the family changed their name into Brough"; + "Sarah Frances"; + "Brough"; + . + + a ; + "1950-11-12"^^xsd:date; + "1870 till 1872"; + "1872-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 163; + "Other"; + "Fanny"; + "Brough"; + . + + a ; + "1950-11-12"^^xsd:date; + "1870 till 1872"; + "1872-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 164; + "Other"; + "Frances"; + "Brough"; + . + + a ; + "1950-11-12"^^xsd:date; + 165; + "Other"; + "Sadie"; + "Brough"; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 166; + "Marriage"; + "Julia"; + "Marlowe Taber"; + . + + a ; + "1950-11-12"^^xsd:date; + "1911-08-17"^^xsd:date; + 167; + "Marriage"; + "Julia"; + "Marlowe Sothern"; + . + + a ; + "1913-11-17"^^xsd:date; + "1913-11-17"^^xsd:date; + "1852-04-19"^^xsd:date; + "1852-04-19"^^xsd:date; + 168; + "Marriage"; + "Mathilde"; + "Marchesi de Castrone"; + . + + a ; + "1852-04-19"^^xsd:date; + "1852-04-19"^^xsd:date; + "1821-03-24"^^xsd:date; + "1821-03-24"^^xsd:date; + 169; + "Birth name"; + "Mathilde Lisette Sophie Jeanette"; + "Graumann"; + . + + a ; + 17; + "Birth name"; + "Elisabeth"; + "Sara Schiff"; + . + + a ; + 170; + "Other"; + "Cavaliere"; + "di Castrone"; + . + + a ; + 171; + "Other"; + "Marchese"; + "della Rajata"; + . + + a ; + "1935-06-20"^^xsd:date; + "1855-11-17"^^xsd:date; + 172; + "Other"; + "Morris"; + "Meyerfeld Jr."; + . + + a ; + 173; + "in Romanian"; + "Meema"; + "Mischu"; + . + + a ; + 174; + """ in Passenger Record"""; + "Misu "; + "Rosescu"; + . + + a ; + "1953-07-28"^^xsd:date; + 175; + "Other"; + "Meema"; + "Mischu"; + . + + a ; + "1953-07-28"^^xsd:date; + 176; + "Other"; + "Misu"; + "Rosescu"; + . + + a ; + "1888-01-21"^^xsd:date; + 177; + "Birth name"; + "Mişu"; + "Rosescu"; + . + + a ; + 178; + "Birth name"; + "Jadwiga"; + "Benda"; + . + + a ; + "Approx.1846-1847"; + 179; + "Other"; + ""; + "Helena"; + "Opid"; + . + + a ; + 18; + "Pseudonym/Stage name"; + "artistic name in Brazil"; + "Rose"; + "Méryss"; + . + + a ; + "1861 July"; + 180; + "Pseudonym/Stage name"; + ""; + "Helena"; + "Modrzejewska"; + . + + a ; + "1861-01-17"^^xsd:date; + "Probably 17.02.1821"; + "1821-02-17"^^xsd:date; + 181; + "Birth name"; + "Elisabeth Rozanna"; + "Gilbert"; + . + + a ; + "1961-12-08"^^xsd:date; + "1961-12-08"^^xsd:date; + "1866-03-17"^^xsd:date; + "1866-03-17"^^xsd:date; + 182; + "Other"; + ""; + "Wilhelmine Friederike"; + "Moscherosch-Schmidt"; + . + + a ; + "1961-12-08"^^xsd:date; + "1961-12-08"^^xsd:date; + 183; + "Other"; + "Wilhelmine"; + "Moscherosch-Schmidt"; + . + + a ; + "1961-12-08"^^xsd:date; + "1961-12-08"^^xsd:date; + "1866-03-17"^^xsd:date; + "1866-03-17"^^xsd:date; + 184; + "Other"; + "Minna"; + "Schmidt"; + . + + a ; + 185; + "Other"; + "Henriette Johanna Wilhelmine Maria"; + "Mottl"; + . + + a ; + 186; + ""; + "Henriette Johanna Wilhelmine Maria"; + "Standhartner"; + . + + a ; + 187; + "Other"; + "Franz"; + "Innozenz Nachbaur"; + . + + a ; + 188; + "Other"; + ""; + "Franz Ignaz"; + "Nachbaur"; + . + + a ; + 189; + "Birth name"; + "Mariam Ides Adelaida"; + "Leventon"; + . + + a ; + "probably 1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 19; + "Pseudonym/Stage name"; + "artistic name of her first years in France"; + "Adéle"; + . + + a ; + 190; + "Birth name"; + "Chaskel Moses "; + "Nebenzahl"; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 191; + "Pseudonym/Stage name"; + "el 77"; + "Padín"; + . + + a ; + "1936-02-17"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 192; + "Birth name"; + "Pericles"; + "Pantages"; + . + + a ; + "1936-02-17"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 193; + "Birth name"; + "Περικλῆς Ἀλέξανδρος"; + "Πανταζής"; + . + + a ; + "1936-02-17"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 194; + "Birth name"; + "Periklis Alexandros"; + "Padazis"; + . + + a ; + 195; + "Birth name"; + "Adela Juana Maria"; + "Patti"; + . + + a ; + 196; + ""; + "Adolf Philipp"; + """Adolph +"""; + "Philipp"; + . + + a ; + 197; + ""; + "Jean"; + "Briquet"; + . + + a ; + 198; + ""; + "(pseudonyme as composer and librettist)"; + "Paul"; + "Hervé "; + . + + a ; + 2; + ""; + "Leonore"; + "de Ahna"; + . + + a ; + 20; + "Birth name"; + ""; + "Rose Marie"; + "Baudon"; + . + + a ; + 200; + ""; + "Jean"; + "Briquet"; + . + + a ; + 201; + ""; + "Paul"; + "Hervé"; + . + + a ; + 202; + ""; + "his original jewish name"; + "Baruch"; + "Pohl"; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "Approx. 1853"; + "1853-01-07"^^xsd:date; + 203; + "Pseudonym/Stage name"; + "Miss Marian"; + "Pyne"; + . + + a ; + 204; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1840-10-31"^^xsd:date; + "1840-10-01"^^xsd:date; + 205; + "Marriage"; + "Mrs Pyne"; + "Galton"; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1857-12-31"^^xsd:date; + "1857-02-01"^^xsd:date; + 206; + "Pseudonym/Stage name"; + "Miss Marian"; + "Prescott"; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1856-04-30"^^xsd:date; + "1856-04-01"^^xsd:date; + 207; + "Pseudonym/Stage name"; + "Miss Galton"; + "Pyne"; + . + + a ; + "1869-12-19"^^xsd:date; + "1842-04-23"^^xsd:date; + 208; + "Birth name"; + "Paolo"; + "Raffetto"; + . + + a ; + 209; + "Pseudonym/Stage name"; + "Cuarenta onzas"; + . + + a ; + 21; + ""; + "Albert"; + "Kaufmann"; + . + + a ; + 210; + "Birth name"; + ""; + "Bidelia"; + "Crehan"; + . + + a ; + 211; + "Other"; + "Mrs. Erving Winslow, from 1899 she was called Mrs. Reignolds-Winslow"; + "Kate"; + "Reignolds"; + . + + a ; + 212; + "Birth name"; + "Maximilian"; + "Goldmann"; + . + + a ; + 213; + "Other"; + "János"; + "Richter"; + . + + a ; + 214; + "Other"; + "Curt"; + "Robitschek"; + . + + a ; + 215; + ""; + "Ken"; + "Robey"; + . + + a ; + 216; + "Birth name"; + "Carolina"; + "Galletti"; + . + + a ; + "1936-01-16"^^xsd:date; + "1936-01-16"^^xsd:date; + 217; + "Birth name"; + "Annie Ellen"; + "Russel"; + . + + a ; + "1936-01-16"^^xsd:date; + "1936-01-16"^^xsd:date; + 218; + "Other"; + "Annie"; + "Russell Marble"; + . + + a ; + 219; + "Justo"; + "S. López de Gomara"; + . + + a ; + 22; + ""; + "Gordon"; + "Mitchell"; + . + + a ; + 220; + "Justo"; + "S. López de Gomara"; + . + + a ; + 221; + "Marriage"; + "Clementine"; + "Schuch-Proska"; + . + + a ; + 222; + "Birth name"; + "Clementine"; + "Procháska"; + . + + a ; + 223; + "Birth name"; + "Clementine"; + "Procháska"; + . + + a ; + 224; + "Marriage"; + "Clementine"; + "von Schuch-Proska"; + . + + a ; + 225; + "Birth name"; + "Ernestine Amalie Pauline"; + "Rössler"; + . + + a ; + 226; + ""; + "Frank"; + "Schwartz"; + . + + a ; + 227; + ""; + "Marcella Sembrich"; + . + + a ; + 228; + ""; + "Prakseda Marcelina"; + "Kochanska"; + . + + a ; + 229; + ""; + "When in Athens, she first appeared under the name “Marcella Bosio”, because she felt that her last name was too hard for audiences to pronounce. Not long after she opted to adopt her mother's maiden name, Sembrich, instead."; + "Marcella"; + "Bosio"; + . + + a ; + 23; + "Marriage"; + "Kate Alice"; + "Loehr"; + . + + a ; + 230; + ""; + "When in Athens, she first appeared under the name “Marcella Bosio”, because she felt that her last name was too hard for audiences to pronounce. Not long after she opted to adopt her mother's maiden name, Sembrich, instead."; + "Marcella"; + "Sembrich"; + . + + a ; + "1891-06-09"^^xsd:date; + "1891-06-09"^^xsd:date; + 231; + "Marriage"; + "Mrs. Edwin Forrest"; + "Catharine"; + "Norton Sinclair Forrest"; + . + + a ; + 232; + ""; + "Agnes"; + "Sorma"; + . + + a ; + 233; + "Birth name"; + "Saremba"; + "Agnes Martha Caroline"; + "Zaremba"; + . + + a ; + 234; + ""; + "her mother´s second marriage"; + "Agnes Martha Caroline"; + "Pallatschek"; + . + + a ; + 235; + "Marriage"; + ""; + "Agnes"; + "Minotto"; + . + + a ; + 236; + "Birth name"; + "Agnes"; + "Martha Caroline Zaremba"; + . + + a ; + 237; + "Other"; + "Mother's second marriage"; + "Agnes"; + "Caroline Pallatscheck"; + . + + a ; + 238; + "Marriage"; + "Agnes"; + "Minotto"; + . + + a ; + 239; + "Birth name"; + "Agnes Caroline Elise Franzisca"; + . + + a ; + 24; + "Birth name"; + "Elsa"; + "Blatt"; + . + + a ; + 240; + ""; + "Agnes"; + "Denis"; + . + + a ; + 241; + "Birth name"; + "Irma Maria Ludmilla"; + "Czerwinská"; + . + + a ; + 242; + "Other"; + "Moritz"; + "Strakosch"; + . + + a ; + 243; + "Birth name"; + "Friedrich Ernst Wolfgang"; + "Strampfer"; + . + + a ; + 244; + "Marriage"; + "Marie Gräfin (married)"; + "Marie"; + "Gilbert de Voisins"; + . + + a ; + 245; + "Birth name"; + "Mariana Sophie"; + "Taglioni"; + . + + a ; + 246; + "Other"; + "Marie-Paul"; + "Taglioni"; + . + + a ; + 247; + "Marriage"; + "Marie"; + "Windischgrätz"; + . + + a ; + 248; + "Other"; + "Joseph Aloys"; + "Tichatschek"; + . + + a ; + 249; + "Other"; + "tschechisch"; + "Josef"; + "Ticháček"; + . + + a ; + 25; + "Birth name"; + "Kurt"; + "Boas"; + . + + a ; + 250; + "Marriage"; + "Marie"; + "Mosel"; + . + + a ; + 251; + ""; + ""; + "Sophie"; + "Tucker"; + . + + a ; + 252; + "Birth name"; + "Sophia"; + "Kalish"; + . + + a ; + 253; + "Birth name"; + "the family changed their name to Abuza before immigrating (her father fearing repercussions for having deserted the Russian military)"; + "Sophia"; + "Abuza"; + . + + a ; + 254; + ""; + "Isaac"; + "Turkow-Grudberg"; + . + + a ; + 255; + "Yitskhok-Ber"; + "Grudberg-Turkov"; + . + + a ; + 256; + "Yitskhok"; + "Turkow-Grudberg"; + . + + a ; + "-"; + "-"; + 257; + "Birth name"; + "Maria"; + "da Conceição Singer Velluti"; + . + + a ; + "-"; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 258; + "Marriage"; + "Maria"; + "Velluti Ribeiro de Souza"; + . + + a ; + 259; + "Birth name"; + "Michelle Ferdinande Pauline"; + "Garcia"; + . + + a ; + 26; + "Other"; + "Artur"; + "Bodansky"; + . + + a ; + 260; + "Michelle "; + "Viadot-Garcia"; + . + + a ; + 261; + "Pseudonym/Stage name"; + "Pauline"; + "Viardot-Garcia"; + . + + a ; + "1840-04-18"^^xsd:date; + 262; + "Marriage"; + "Wedding 18th april 1840 with Parisian theater director and art writer Louis Viardot"; + "Michelle Ferdinande Pauline"; + "Viardot-García"; + . + + a ; + 263; + "Other"; + "Portuguese version"; + "Rosa"; + "Villiot"; + . + + a ; + 264; + ""; + "Johanna"; + "Jachmann-Wagner"; + . + + a ; + 265; + ""; + "Minna"; + "Walter"; + . + + a ; + 266; + "Birth name"; + "Wilhelmine Maria"; + "Walter"; + . + + a ; + 267; + "Marriage"; + "Wilhelmine Maria"; + "Pfeiffer v. Weissenegg"; + . + + a ; + 268; + "Marriage"; + "Aurelie"; + "Jäger"; + . + + a ; + 269; + "Marriage"; + "Wilhelmine Henriette Friederike Marie "; + "Schröder-Devrient"; + . + + a ; + 27; + "Other"; + "Artur"; + "Bodanszky"; + . + + a ; + 270; + "Birth name"; + "Wilhelmine Henriette Friederike Marie "; + "Schröder"; + . + + a ; + 271; + "Wilhelmine"; + "Schroeder-Devrient"; + . + + a ; + 272; + "Birth name"; + "Wilhelmine"; + "Schroeder"; + . + + a ; + 273; + ""; + ""; + "Al"; + "Roberts"; + . + + a ; + 28; + "Other"; + "Artur"; + "Bodzansky"; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1884-05-10"^^xsd:date; + "1884-05-10"^^xsd:date; + 284; + "Birth name"; + "María Alejandra"; + "Barrientos Llopis"; + . + + a ; + "1946-08-08"^^xsd:date; + "1946-08-08"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 289; + "Pseudonym/Stage name"; + "María"; + "Barrientos"; + . + + a ; + 29; + "Other"; + "Arthur"; + "Bodanzky"; + . + + a ; + "1946-08-08"^^xsd:date; + "1946-08-08"^^xsd:date; + "1907-06-20"^^xsd:date; + "1907-06-20"^^xsd:date; + 294; + "Marriage"; + "María"; + "Barrientos de Keen"; + . + + a ; + 299; + "Kochanski"; + "Marcelline"; + . + + a ; + 3; + "Marriage"; + "first marriage"; + "Hermine"; + "Gräfin Nyary"; + . + + a ; + 30; + "Pseudonym/Stage name"; + "Danton"; + "-"; + . + + a ; + 304; + "Prakseda Marcelina"; + "Kochańska"; + . + + a ; + "1872-05-31"^^xsd:date; + "1872-05-31"^^xsd:date; + 308; + "Else"; + "Breuer"; + . + + a ; + 31; + "Birth name"; + "Else Ilse"; + "Boas"; + . + + a ; + 313; + "Ludwig von dem"; + "Bruch"; + . + + a ; + "1869-05-30"^^xsd:date; + 314; + "Birth name"; + "Ludwig"; + "Peterzilka"; + . + + a ; + "1878-10-13"^^xsd:date; + "1878-10-13"^^xsd:date; + 316; + "Pseudonym/Stage name"; + "Tini"; + "Rössler"; + . + + a ; + 319; + "Birth name"; + "Ernestine"; + "Rössler"; + . + + a ; + 32; + ""; + "Raphael Augusto"; + "Prostes Bordallo Pinheiro"; + . + + a ; + 324; + "Ernestine"; + "Rossler"; + . + + a ; + 329; + "Ernestine"; + "Roessler"; + . + + a ; + 33; + ""; + "Herman"; + "Brag"; + . + + a ; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 334; + "Marriage"; + "Ernestine"; + "Rapp"; + . + + a ; + 339; + "Ernestine"; + "S.-Heink"; + . + + a ; + 34; + ""; + "Fuoco = the mother's family name, given because there was more than one \"Maria Brambilla\" at the dance school, it means fire"; + "Sofia"; + "Fuoco"; + . + + a ; + "1904-11-28"^^xsd:date; + "1904-11-28"^^xsd:date; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 344; + "Marriage"; + "Ernestine"; + "Schumann"; + . + + a ; + 349; + "Sophie"; + "Tuck"; + . + + a ; + 35; + "Birth name"; + "Marie"; + "Bischof"; + . + + a ; + 354; + "Manuel Patricio"; + "Rodríguez Sitches"; + . + + a ; + 359; + "Birth name"; + "Erneste"; + "Grisi"; + . + + a ; + 36; + "Teresa"; + "Brambilla"; + . + + a ; + 364; + "Birth name"; + "Ernestina"; + "Grisi"; + . + + a ; + 369; + . + + a ; + 37; + "Max Christian Friedrich"; + "Bruch"; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1860-04-04"^^xsd:date; + "1860-04-04"^^xsd:date; + 374; + "Birth name"; + "Vicenzo"; + "Di Napoli Vita"; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 379; + "Other"; + "Vicente"; + "Di Napoli Vita"; + . + + a ; + 38; + "Max Karl August"; + "Bruch"; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 384; + "Other"; + "Vicente"; + "De Napoli Vita"; + . + + a ; + "1948-12-17"^^xsd:date; + "1881-03-23"^^xsd:date; + "1881-03-23"^^xsd:date; + 389; + "Birth name"; + "Eusebio"; + "de Gorbea Lemmi"; + . + + a ; + 39; + ""; + "Christine"; + "von Bukovics"; + . + + a ; + "1948-12-17"^^xsd:date; + 394; + "Pseudonym/Stage name"; + "Eusebio"; + "de Gorbea"; + . + + a ; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + "1888-02-06"^^xsd:date; + "1850-02-06"^^xsd:date; + 396; + "Birth name"; + "Nicolás"; + "de las Llanderas Fraga"; + . + + a ; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + 399; + "Pseudonym/Stage name"; + "Nicolás"; + "de las Llanderas"; + . + + a ; + 4; + "Marriage"; + "second marriage"; + "Hermine"; + "Gräfin Normann-Ehrenfels"; + . + + a ; + 40; + "Other"; + "Christine"; + "von Bukovics von Kiss-Alacska"; + . + + a ; + "1941-11-01"^^xsd:date; + "1941-11-01"^^xsd:date; + 404; + "Birth name"; + "Francisco"; + "Delgado"; + . + + a ; + "1941-11-01"^^xsd:date; + "1941-11-01"^^xsd:date; + 409; + "Other"; + "Francisco \"Paco\""; + "Delgado"; + . + + a ; + 41; + "Other"; + "Christine"; + "von Bukovics von Kis-Alaska"; + . + + a ; + 414; + . + + a ; + 419; + "Marriage"; + "Aurelie"; + "Jäger-Wilczek"; + . + + a ; + 42; + "Other"; + "Christine"; + "Geiringer"; + . + + a ; + 424; + "Other"; + "Aurelia"; + "Jaeger-Wilczek"; + . + + a ; + 429; + "Birth name"; + "Aurelie"; + "Wilczek"; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1870-01-08"; + "1870-01-08"^^xsd:date; + "1870-01-08"^^xsd:date; + 43; + "Birth name"; + "Sara Jane "; + "Layton Walker"; + . + + a ; + 434; + "Pseudonym/Stage name"; + "Carmen"; + "Miranda"; + . + + a ; + 439; + "Birth name"; + "Maria do Carmo"; + "Miranda da Cunha"; + . + + a ; + "1951-04-15"; + "1951-04-15"^^xsd:date; + "1951-04-15"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 44; + "Marriage"; + "Sara"; + "Charles-Cahier"; + . + + a ; + "Approx.1846-1847"; + 449; + "Other"; + "Helena"; + "Bendowa"; + . + + a ; + "1951-04-15"; + "1951-04-15"^^xsd:date; + "1951-04-15"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 45; + "Pseudonym/Stage name"; + ""; + "Mdm. Charles"; + "Cahier"; + . + + a ; + 454; + "Birth name"; + "Helena"; + "Jadwiga Misel"; + . + + a ; + 459; + "Birth name"; + "Helena"; + "Jadwiga Mizel"; + . + + a ; + 46; + "Other"; + """Eugénia Malvina +"""; + "Garrigues"; + . + + a ; + 464; + "Birth name"; + "Jadwiga Helena"; + "Misel"; + . + + a ; + 469; + "Marriage"; + "Jadwiga Helena"; + "Chłapowska"; + . + + a ; + 47; + "Birth name"; + "Malvina"; + "Garrigues"; + . + + a ; + 474; + "Marriage"; + "Helena"; + "Modrzejewska-Chłapowska"; + . + + a ; + 48; + "Eugénia Malvina"; + "Schnorr v. Carolsfeld"; + . + + a ; + 484; + "Marriage"; + "Helena"; + "Chłapowska"; + . + + a ; + 49; + ""; + "Charlie"; + "Chaplin"; + . + + a ; + 5; + "Other"; + ""; + "Hermine"; + "Normann-Ehrenfels"; + . + + a ; + 50; + "Birth name"; + "Rosamond Maria"; + "Coghlan"; + . + + a ; + 51; + "Isabella"; + "Collbran"; + . + + a ; + 514; + "Salvatore"; + "Marchesi de Castrone"; + . + + a ; + 519; + "Birth name"; + "Friederike"; + "Ress"; + . + + a ; + 52; + "Marriage"; + "Isabella"; + "Rossini"; + . + + a ; + 524; + "Birth name"; + "Augusta"; + "Candiani"; + . + + a ; + 529; + "Birth name"; + "Carlotta Augusta Angeolina"; + "Candiani"; + . + + a ; + 53; + "Isabella"; + "Colbrand"; + . + + a ; + 54; + "Birth name"; + "Maria Dorothea"; + "Herrmann"; + . + + a ; + 55; + "Birth name"; + "Rosa"; + "Goldstein"; + . + + a ; + 56; + """Hariclea Hartulari + +"""; + "Darclée"; + . + + a ; + 57; + "Hariclea"; + "Haricli"; + . + + a ; + 58; + "Emilie Věnceslava Pavlína"; + "Kittlová"; + . + + a ; + 589; + "Other"; + "name adaptation into portuguese"; + "Caetano"; + "Carrancini"; + . + + a ; + 59; + "Marriage"; + "Emilie"; + "Halsbach"; + . + + a ; + 594; + "Birth name"; + "Luís Cândido"; + "Pinheiro Furtado Coelho"; + . + + a ; + 599; + "Birth name"; + "Carlos"; + "de Mello Leal"; + . + + a ; + 6; + "Birth name"; + "Maria Anna Marzia"; + "Alboni"; + . + + a ; + 60; + ""; + """Emmy +"""; + "Destinn"; + . + + a ; + "-"; + "1st August 1856"; + "1856-08-01"^^xsd:date; + "1856-08-01"^^xsd:date; + 604; + "Pseudonym/Stage name"; + "Pauline"; + "Lyon"; + . + + a ; + "-"; + "-"; + 609; + "Birth name"; + "Anna"; + "José"; + . + + a ; + 61; + "Ema"; + "Destinnová"; + . + + a ; + "1898-12-31"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1886-04-02"^^xsd:date; + "1886-04-02"^^xsd:date; + 614; + "Birth name"; + "Enzo Luis Humberto Victor Manuel"; + "Aloisi"; + . + + a ; + "1875-05-02"^^xsd:date; + "1975-05-02"^^xsd:date; + "1898-01-01"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 619; + "Other"; + "Migration related"; + "Enzo Carlos"; + "Aloisi"; + . + + a ; + 62; + "Other"; + "Portuguese version"; + "Emílio"; + "Doux"; + . + + a ; + 624; + "Birth name"; + "Lucinda Augusta"; + "da Silva Borges"; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1889-09-23"^^xsd:date; + "1889-09-23"^^xsd:date; + 629; + "Birth name"; + "Luis"; + "Bayón Herrera"; + . + + a ; + 63; + "Birth name"; + ""; + "Louisa "; + "Lane"; + . + + a ; + 634; + "Pseudonym/Stage name"; + "Juan"; + "Pueblo"; + . + + a ; + "1933-11-20"^^xsd:date; + "1933-11-20"^^xsd:date; + "1860-12-19"^^xsd:date; + 639; + "Birth name"; + "Arturo Nemesio"; + "Eusevi de Valladares"; + . + + a ; + 64; + ""; + ""; + "Mrs. John Drew"; + ""; + . + + a ; + "1933-11-20"^^xsd:date; + "1933-11-20"^^xsd:date; + "1860-12-19"^^xsd:date; + 644; + "Birth name"; + "Arturo Nemesio"; + "Eusevi"; + . + + a ; + "1933-11-20"^^xsd:date; + "1933-11-20"^^xsd:date; + "1860-12-19"^^xsd:date; + 649; + "Pseudonym/Stage name"; + "Arturo"; + "Eusevi"; + . + + a ; + 65; + "Birth name"; + "Edward Mieczisław"; + "Reszke"; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1837-06-16"^^xsd:date; + "1837-06-16"^^xsd:date; + 654; + "Birth name"; + "Jean Émile"; + "Bieckert"; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 659; + "Other"; + "Emilio"; + "Bieckert"; + . + + a ; + 66; + ""; + "Édouard"; + "de Reske"; + . + + a ; + 664; + "Other"; + "Barón Juan Emilio"; + "Bieckert Lugensland"; + . + + a ; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "1902-05-28"^^xsd:date; + "1902-05-28"^^xsd:date; + 669; + "Birth name"; + "Luis César"; + "Amadori"; + . + + a ; + 67; + "Birth name"; + "Marian Eberhard Franz Emil"; + "von Kleydorff"; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1899-12-08"^^xsd:date; + "1899-12-08"^^xsd:date; + 674; + "Birth name"; + "Alfredo"; + "de la Guardia"; + . + + a ; + 679; + "Birth name"; + "Heinrich"; + "Cohn"; + . + + a ; + 68; + "Marriage"; + "Toni"; + "Claar-Eibenschütz"; + . + + a ; + 684; + "Birth name"; + "Arthur"; + "Napoleão dos Santos"; + . + + a ; + 689; + "Galton"; + "Susie"; + . + + a ; + 69; + "Other"; + "Riza"; + "Malata-Eibenschütz"; + . + + a ; + 693; + "Galton Kelleher"; + "Susan"; + . + + a ; + 694; + "C. Miln"; + "Geo."; + . + + a ; + 7; + "Birth name"; + "Fanny Jane"; + "Davis"; + . + + a ; + "1914-09-05"^^xsd:date; + "1843-06-30"^^xsd:date; + "1843-06-01"^^xsd:date; + 70; + "G. B."; + "Fentum"; + . + + a ; + 71; + "Marriage"; + "temporary"; + "Clara"; + "Fisher Maeder"; + . + + a ; + 719; + "Міша"; + "Левицький"; + . + + a ; + 72; + ""; + "Oskar"; + "Fiedler"; + . + + a ; + 724; + "Mischa"; + "Levitzky"; + . + + a ; + 729; + "Misha"; + "Levitski"; + . + + a ; + 73; + "Josephine"; + "Fodor"; + . + + a ; + 734; + "Mischa"; + "Levitski"; + . + + a ; + 739; + "Misha"; + "Levitsky"; + . + + a ; + 74; + "Josephine"; + "Fodor-Mainvielle"; + . + + a ; + 744; + "Mischa"; + "Levitsky"; + . + + a ; + 749; + "Misha"; + "Levitzki"; + . + + a ; + 75; + "Josephine"; + "Mainvielle-Fodor"; + . + + a ; + 759; + "Marriage"; + "Catherine"; + "Mary Reignolds-Winslow"; + . + + a ; + 76; + "Birth name"; + "Johanna Emilia Agnes"; + "Gadski"; + . + + a ; + "December 1857"; + "1857-12-31"^^xsd:date; + "1857-12-01"^^xsd:date; + 764; + "Marriage"; + "Kate"; + "Farren"; + . + + a ; + 769; + "Marriage"; + "Catherine"; + "Winslow"; + . + + a ; + 77; + "Marius Friedrich Caesar Karl Theodor"; + "Galster"; + . + + a ; + 774; + "Other"; + "Catherine"; + "Reignolds"; + . + + a ; + 778; + "Birth name"; + "Ida"; + "Baier"; + . + + a ; + 78; + "Marriage"; + "Georgine"; + "Meysel"; + . + + a ; + 782; + "Tsipa"; + "Abelman"; + . + + a ; + 786; + "Pseudonym/Stage name"; + "Vadeco"; + . + + a ; + 79; + "Manuel"; + "Garcia"; + . + + a ; + 790; + "Pseudonym/Stage name"; + "Garoto"; + . + + a ; + 794; + "Birth name"; + "Salvatore Antonio"; + "Guaragno"; + . + + a ; + 798; + "Pseudonym/Stage name"; + "Zezinho"; + . + + a ; + 8; + "Birth name"; + "Claire Augustine Mélanie Francoise"; + "Lardinois"; + . + + a ; + 80; + "Manuel"; + "Rodriguez Garcia"; + . + + a ; + 802; + "Pseudonym/Stage name"; + "Zé Carioca"; + . + + a ; + 806; + "Pseudonym/Stage name"; + "Lulu"; + . + + a ; + 81; + "Manuel Patricio"; + "Rodriguez García"; + . + + a ; + 810; + "Pseudonym/Stage name"; + "Russinho"; + . + + a ; + 814; + "Birth name"; + "José Rubem"; + "Fonseca"; + . + + a ; + 818; + "Henry"; + "Boernstein"; + . + + a ; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 82; + "Pseudonym/Stage name"; + "Blanche"; + "Galton"; + . + + a ; + 822; + "Daniel E."; + "Bandmann"; + . + + a ; + 826; + "Birth name"; + "Yisroel"; + "Adler"; + . + + a ; + 83; + ""; + "Mrs. Thomas Whiffen"; + "Thomas Whiffen"; + . + + a ; + 830; + "Jacob Pavlovich"; + "Adler"; + . + + a ; + 834; + "Avraham"; + "Bielotserkovski"; + . + + a ; + 838; + "Isaac"; + "Dov Berkowitz"; + . + + a ; + "1936-11-26"^^xsd:date; + "1936-11-25"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 84; + "Birth name"; + "Maria Fanny"; + "Blanche Galton"; + . + + a ; + 842; + "Birth name"; + "Dawid"; + "Dawidow"; + . + + a ; + 846; + "Rakhel"; + "Feygenberg"; + . + + a ; + "1936-11-26"^^xsd:date; + "1936-11-25"^^xsd:date; + "1868-07-11"^^xsd:date; + "1868-07-11"^^xsd:date; + 85; + "Marriage"; + "Blanche"; + "Whiffen"; + . + + a ; + 850; + "Rachel"; + "Feigenberg-Eamri"; + . + + a ; + 854; + "Mordechai"; + "Kompaneyets"; + . + + a ; + 858; + "Motek"; + "Kompaneyets"; + . + + a ; + 86; + "Berta"; + "Gerstenmann"; + . + + a ; + 862; + "Other"; + "Gitele"; + "Finkelshteyn"; + . + + a ; + 866; + "Birth name"; + "Sarah"; + "Katz"; + . + + a ; + 87; + ""; + "professionally billed"; + "Mrs. G. H. Gilbert"; + . + + a ; + 873; + "Bina"; + "Fuks"; + . + + a ; + 878; + "Bina"; + "Fuchs"; + . + + a ; + 88; + "Marriage"; + "Reba"; + "Fiersohn"; + . + + a ; + 883; + "Bina"; + "Abramowitz"; + . + + a ; + 888; + "Elsa"; + "Bassermann"; + . + + a ; + 889; + "Other"; + "Boaz"; + "Young"; + . + + a ; + 89; + "Marriage"; + "unclear if Feinsohn or Fiersohn "; + "Reba"; + "Feinsohn"; + . + + a ; + 893; + "Birth name"; + "Boaz"; + "Yungvits"; + . + + a ; + 898; + "Birth name"; + "Moysheh"; + "Zeyfert"; + . + + a ; + 9; + "Marriage"; + "after second marriage"; + "Clara"; + "L. Wheeler"; + . + + a ; + "1922-04-06"^^xsd:date; + "1859-05-12"^^xsd:date; + 90; + "Marriage"; + "Arabella"; + "Goddard Davison"; + . + + a ; + "1817"; + "1817-12-31"^^xsd:date; + "1817-01-01"^^xsd:date; + 903; + "during his school time"; + "Wilhelm Richard"; + "Geyer"; + . + + a ; + 908; + . + + a ; + 909; + "Marriage"; + "Frieda"; + "Zibel-Goldstein"; + . + + a ; + 91; + "Other"; + ""; + "Avrum"; + "Goldnfoden"; + . + + a ; + 914; + "Birth name"; + "Frieda"; + "Gespass"; + . + + a ; + 919; + "Marriage"; + "Frieda"; + "Zwiebel"; + . + + a ; + 92; + ""; + "Avram"; + "Goldfaden"; + . + + a ; + 924; + "Marriage"; + "Frieda"; + "Goldstein"; + . + + a ; + 929; + "Other"; + "Carl"; + "Silverman"; + . + + a ; + 93; + ""; + "Abraham"; + "ben Chajim Lippe Goldfaden"; + . + + a ; + 934; + "Yakov ben"; + "Pinchas"; + . + + a ; + 939; + "Birth name"; + "Asher-Zelig"; + "Feinman"; + . + + a ; + 94; + "Birth name"; + "Avrom"; + "Goldfaden"; + . + + a ; + 944; + "Birth name"; + "Cesare"; + "Ciacchi"; + . + + a ; + "1861-01-17"^^xsd:date; + "Probably 17.02.1821"; + "1821-02-17"^^xsd:date; + 947; + "Birth name"; + "Eliza Rosanna"; + "Gilbert"; + . + + a ; + 95; + "Birth name"; + "Lucina Alexia"; + "Grahn"; + . + + a ; + "1837-07-23"^^xsd:date; + 952; + "Marriage"; + "Eliza"; + "James"; + . + + a ; + "1837-07-23"^^xsd:date; + 957; + "Marriage"; + "Eliza Rosanna"; + "James"; + . + + a ; + 96; + "Birth name"; + "Caronna Adela Giuseppina Maria"; + . + + a ; + "1861-01-17"^^xsd:date; + "Probably 1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 962; + "Pseudonym/Stage name"; + "Maria"; + "de los Dolores Porrys y Montez"; + . + + a ; + "1861-01-17"^^xsd:date; + "Probably 1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 967; + "Pseudonym/Stage name"; + "Lola"; + "Montez"; + . + + a ; + 97; + "Marriage"; + "Adele"; + "Jonas"; + . + + a ; + "Probably 7.10.1846"; + 972; + "Other"; + "Lollita"; + . + + a ; + "August 1847"; + "1847-08-31"^^xsd:date; + "1847-08-01"^^xsd:date; + "Probably January 1847"; + "1847-01-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 977; + "Other"; + "Gräfin Lola"; + "Montez"; + . + + a ; + 98; + "Other"; + "Franz Friedrich"; + "Grünbaum"; + . + + a ; + "August 1847"; + "1847-08-31"^^xsd:date; + "1847-08-01"^^xsd:date; + 982; + "Other"; + "Marie"; + "Gräfin von Landsfeld"; + . + + a ; + "February 1848"; + "1848-02-29"^^xsd:date; + "1848-02-01"^^xsd:date; + 987; + "Other"; + "Mrs Bolton"; + . + + a ; + 99; + ""; + "Ellen Maria Elizabeth"; + "Gulbranson"; + . + + a ; + "Probably July 1849"; + "1849-07-31"^^xsd:date; + "1849-07-01"^^xsd:date; + "Probably July 1849"; + "1849-07-31"^^xsd:date; + "1849-07-01"^^xsd:date; + 992; + "Other"; + "Maria"; + "de los Dolores de Landsfeld"; + . + + a ; + "1861-01-17"^^xsd:date; + "July 1849"; + "1849-07-31"^^xsd:date; + "1849-07-01"^^xsd:date; + 997; + "Marriage"; + "Mrs Heald"; + . + + a ; + 998; + "Marriage"; + "Marie"; + "de Landsfeld-Heald"; + . + + a ; + 1; + ""; + ""; + ""; + ; + ; + . + + a ; + 10; + ""; + "1835"; + "ballet master"; + ; + . + + a ; + 10000; + "work"; + "Boston"; + ; + . + + a ; + 10010; + "teacher"; + "London"; + ; + . + + a ; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10016; + ""; + "London"; + ; + ; + "Fiancee" . + + a ; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10021; + ""; + "London"; + ; + ; + "Fiancee" . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10026; + ""; + "San Francisco"; + ; + ; + "Wife" . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10031; + ""; + "San Francisco"; + ; + ; + "Wife" . + + a ; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10036; + "work"; + "U.S.A."; + ; + . + + a ; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10041; + "work"; + "U.S.A."; + ; + . + + a ; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10046; + ""; + "U.S.A."; + ; + ; + "Other" . + + a ; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10051; + ""; + "U.S.A."; + ; + ; + "Other" . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10056; + "work"; + "U.S.A."; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10061; + "work"; + "U.S.A."; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10066; + ""; + "U.S.A."; + ; + ; + "Other" . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10071; + ""; + "U.S.A."; + ; + ; + "Other" . + + a ; + "-"; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10076; + ""; + "London, U.S.A."; + ; + ; + "Other" . + + a ; + "May 1869 till end of 1871"; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + 10081; + ""; + "London, U.S.A."; + ; + ; + "Other" . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 10085; + "work"; + "Rio de Janeiro"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 10095; + "work"; + "Rio de Janeiro"; + ; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 10105; + "work"; + "Rio de Janeiro"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 10115; + "work"; + "Rio de Janeiro"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 10125; + "work"; + "Rio de Janeiro"; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10135; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10140; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10145; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10150; + "teacher"; + "Paris"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10155; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10160; + "teacher"; + "London"; + ; + . + + a ; + 10165; + "teacher"; + "London"; + ; + . + + a ; + 10170; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10175; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10180; + "teacher"; + "London"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 10185; + "teacher"; + "London"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 10190; + "teacher"; + "London"; + ; + . + + a ; + 10195; + "work"; + "-"; + ; + . + + a ; + 102; + ""; + "He engaged Gustav Mahler for conducting in Hamburg."; + ; + ; + . + + a ; + 10200; + "work"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 10205; + "work"; + "London"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 10210; + "work"; + "London"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-03-24"^^xsd:date; + "1859-05-12"^^xsd:date; + "1859-05-12"^^xsd:date; + 10215; + ""; + "London"; + ; + ; + "Husband" . + + a ; + "1885-03-24"^^xsd:date; + "1885-03-24"^^xsd:date; + "1859-05-12"^^xsd:date; + "1859-05-12"^^xsd:date; + 10220; + ""; + "London"; + ; + ; + "Husband" . + + a ; + 10225; + "work"; + "-"; + ; + . + + a ; + 10230; + "work"; + ; + . + + a ; + 10235; + "work"; + "-"; + ; + . + + a ; + 10240; + "work"; + ; + . + + a ; + 10245; + "work"; + "-"; + ; + . + + a ; + 10250; + "work"; + ; + . + + a ; + 10255; + "-"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10260; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10265; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10270; + "teacher"; + "Paris"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 10275; + "teacher"; + "Paris"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10280; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10285; + "teacher"; + "London"; + ; + . + + a ; + 10290; + "teacher"; + "London"; + ; + . + + a ; + 10295; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10300; + "teacher"; + "London"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 10305; + "teacher"; + "London"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 10310; + "teacher"; + "London"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 10315; + "teacher"; + "London"; + ; + . + + a ; + 10320; + "work"; + "-"; + ; + . + + a ; + 10325; + "work"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 10330; + "work"; + "London"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 10335; + "work"; + "London"; + ; + . + + a ; + "1885-03-24"^^xsd:date; + "1885-03-24"^^xsd:date; + "1859-05-12"^^xsd:date; + "1859-05-12"^^xsd:date; + 10340; + ""; + "London"; + ; + ; + "Husband" . + + a ; + "1885-03-24"^^xsd:date; + "1885-03-24"^^xsd:date; + "1859-05-12"^^xsd:date; + "1859-05-12"^^xsd:date; + 10345; + ""; + "London"; + ; + ; + "Husband" . + + a ; + 10350; + "work"; + "-"; + ; + . + + a ; + 10355; + "work"; + ; + . + + a ; + 10360; + "work"; + "-"; + ; + . + + a ; + 10365; + "work"; + ; + . + + a ; + 10370; + "work"; + "-"; + ; + . + + a ; + 10375; + "work"; + ; + . + + a ; + 10380; + "-"; + ; + . + + a ; + 10385; + ; + . + + a ; + 10390; + "-"; + ; + . + + a ; + 10395; + ; + . + + a ; + 10400; + "-"; + ; + . + + a ; + 10405; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 10410; + "work"; + "London"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 10415; + "work"; + "London"; + ; + ; + . + + a ; + 10420; + "work"; + "-"; + ; + . + + a ; + 10425; + "work"; + ; + . + + a ; + 10430; + "work"; + "-"; + ; + . + + a ; + 10435; + "work"; + ; + . + + a ; + 10440; + "work"; + "-"; + ; + . + + a ; + 10445; + "work"; + ; + . + + a ; + 10450; + "work"; + "USA"; + ; + . + + a ; + 10455; + "work"; + "USA"; + ; + . + + a ; + 10480; + ""; + "Beverungen"; + ; + ; + "Father" . + + a ; + 10485; + ""; + "Beverungen"; + ; + ; + "Father" . + + a ; + 10490; + ""; + "Beverungen"; + ; + ; + "Mother" . + + a ; + 10495; + ""; + "Beverungen"; + ; + ; + "Mother" . + + a ; + 105; + ; + ; + . + + a ; + 10500; + ""; + "USA"; + ; + ; + "Wife" . + + a ; + 10505; + ""; + "USA"; + ; + ; + "Wife" . + + a ; + 10510; + "NULL"; + ; + . + + a ; + 10515; + ; + . + + a ; + 10520; + ""; + "USA"; + ; + ; + "Brother" . + + a ; + 10525; + ""; + "USA"; + ; + ; + "Brother" . + + a ; + 10530; + ""; + "USA"; + ; + ; + "Brother" . + + a ; + 10535; + ""; + "USA"; + ; + ; + "Brother" . + + a ; + 10540; + ""; + "USA"; + ; + ; + "Daughter" . + + a ; + 10545; + ""; + "USA"; + ; + ; + "Daughter" . + + a ; + 10550; + ""; + "USA"; + ; + ; + "Uncle" . + + a ; + 10555; + ""; + "USA"; + ; + ; + "Uncle" . + + a ; + 10560; + ""; + "USA"; + ; + ; + "Uncle" . + + a ; + 10565; + ""; + "USA"; + ; + ; + "Uncle" . + + a ; + 10570; + ""; + "USA"; + ; + ; + "Niece" . + + a ; + 10575; + ""; + "USA"; + ; + ; + "Niece" . + + a ; + "1953-01-01"^^xsd:date; + "1953-01-01"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916-01-01"^^xsd:date; + 10580; + ""; + "NULL"; + ; + ; + "Wife" . + + a ; + "1953-01-01"^^xsd:date; + "1953-01-01"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916-01-01"^^xsd:date; + 10585; + ""; + ; + ; + "Wife" . + + a ; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10595; + "work"; + "Vienna"; + ; + ; + . + + a ; + 106; + "1909 - 1915"; + ; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 10605; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 10615; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10625; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10635; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 10645; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 10655; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 10665; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 10675; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 10685; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 10695; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10705; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10715; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 10725; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 10735; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 10745; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 10755; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 10765; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 10775; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 10785; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10795; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10805; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 10815; + "work"; + "Timisioara"; + ; + ; + . + + a ; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 10825; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 10835; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 10845; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 10855; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 10865; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 10875; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + 10885; + "work"; + "Pest"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 10895; + "work"; + "Vienna"; + ; + ; + . + + a ; + 109; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 10905; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10915; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10925; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 10935; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 10945; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 10955; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 10965; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 10975; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 10985; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 10995; + "work"; + "Vienna"; + ; + ; + . + + a ; + 11; + ""; + "1880"; + "Together with Ada Rehan, John Drew, Jr , and James Lewis, became known as “The Big Four”, 1880, highly acclaimed team unrivaled in ensemble technique"; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + 11005; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 11015; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 11025; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 11035; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 11045; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-01-01"^^xsd:date; + 11065; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 11085; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 11095; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + 11105; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 11115; + "work"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 11125; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 11135; + "work"; + "Pest"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + 11145; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 11155; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1882-12-31"^^xsd:date; + "1882-09-02"^^xsd:date; + "1882-12-31"^^xsd:date; + "1882-09-01"^^xsd:date; + 11165; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1861-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1861-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 11175; + "work"; + "Vienna"; + ; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 11180; + "work"; + "NULL"; + ; + . + + a ; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 11190; + "friendship"; + "NULL"; + ; + . + + a ; + 112; + ""; + "1908"; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 11200; + "work"; + "NULL"; + ; + . + + a ; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 11210; + "work"; + "NULL"; + ; + . + + a ; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 11220; + "family"; + "NULL"; + ; + ; + "Wife" . + + a ; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 11255; + "work"; + "NULL"; + ; + . + + a ; + 11290; + "other"; + ; + . + + a ; + 11300; + "other"; + ; + . + + a ; + 11310; + ""; + ; + ; + "Father" . + + a ; + 11320; + ""; + ; + ; + "Mother" . + + a ; + 11330; + ""; + ; + ; + "Brother" . + + a ; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 11335; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 11345; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + 11360; + "other"; + ; + . + + a ; + 11370; + "other"; + ; + . + + a ; + 11380; + "other"; + ; + . + + a ; + 11390; + "other"; + ; + . + + a ; + 11400; + "other"; + ; + . + + a ; + 11410; + ""; + ; + ; + "Father" . + + a ; + 11420; + ""; + ; + ; + "Mother" . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 11430; + ""; + ; + . + + a ; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 11440; + ""; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 11450; + ""; + ; + ; + "Husband" . + + a ; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 11460; + "teacher"; + ; + ; + . + + a ; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 11470; + "teacher"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 11480; + "work"; + "Weimar"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 11490; + "teacher"; + "Vienna"; + ; + ; + . + + a ; + 115; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 11500; + "teacher"; + "Vienna"; + ; + ; + . + + a ; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 11510; + "teacher"; + "Milan"; + ; + . + + a ; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 11520; + "teacher"; + "Milan"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 11530; + "Vienna"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 11540; + "Vienna"; + ; + . + + a ; + 11550; + "U.S.A."; + ; + . + + a ; + 11560; + "U.S.A."; + ; + . + + a ; + 11570; + "U.S.A."; + ; + . + + a ; + 11580; + "work"; + ; + . + + a ; + 11590; + "work"; + ; + . + + a ; + 116; + ; + . + + a ; + 11600; + "work"; + ; + . + + a ; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 11610; + ""; + ; + ; + "Husband" . + + a ; + 11620; + ""; + ; + ; + "Father" . + + a ; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 11625; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 11635; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 11645; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 11655; + "work"; + "NULL"; + ; + . + + a ; + 11665; + "friendship"; + "NULL"; + ; + . + + a ; + 11675; + "friendship"; + "NULL"; + ; + . + + a ; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 11685; + "work"; + "NULL"; + ; + . + + a ; + "-"; + "-"; + 11776; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11786; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11796; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11806; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11816; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11826; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11836; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 11846; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11856; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 11866; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1880"; + "1889-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 11876; + ""; + ; + ; + . + + a ; + 119; + ; + . + + a ; + 12; + ""; + "1912-1913"; + ""; + ; + . + + a ; + "-"; + "1880s"; + "1889-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 12041; + ""; + ; + ; + . + + a ; + "-"; + "-"; + 12051; + ""; + ; + ; + ; + "Wife" . + + a ; + "-"; + "-"; + 12111; + "work"; + ; + ; + ; + . + + a ; + "Spring 1858"; + "1858-06-03"^^xsd:date; + "1858-01-01"^^xsd:date; + "24th March 1856"; + "1856-03-24"^^xsd:date; + "1856-03-24"^^xsd:date; + 12121; + "work"; + ; + ; + ; + . + + a ; + "Spring 1858"; + "1858-06-03"^^xsd:date; + "1858-01-01"^^xsd:date; + "24th March 1856"; + "1856-03-24"^^xsd:date; + "1856-03-24"^^xsd:date; + 12126; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 12131; + "work"; + "and later in Teatro São Januário"; + ; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 12136; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 12141; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 12146; + ""; + ; + ; + "Father" . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 12151; + "work"; + ; + ; + ; + . + + a ; + "-"; + "12th May 1886"; + "1886-05-12"^^xsd:date; + 12156; + "work"; + ; + ; + . + + a ; + "-"; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 12161; + "work"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "-"; + 12166; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 12171; + "work"; + ; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 12181; + "work"; + "New York"; + ; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 12191; + "work"; + "New York"; + ; + ; + ; + . + + a ; + 122; + ""; + ; + . + + a ; + "1876"; + "1878-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 12201; + "work"; + "New York"; + ; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "18th June 1864"; + "1864-06-18"^^xsd:date; + "1864-06-18"^^xsd:date; + 12211; + "work"; + "Rio de Janeiro"; + ; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 12226; + "work"; + ; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 12231; + "work"; + ; + ; + ; + . + + a ; + 125; + ""; + ; + . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12675; + ""; + "England, U.S.A."; + ; + ; + "Father" . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12680; + ""; + "England, U.S.A."; + ; + ; + "Father" . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12685; + ""; + "England, U.S.A."; + ; + ; + "Mother" . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12690; + ""; + "England, U.S.A."; + ; + ; + "Mother" . + + a ; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 12695; + ""; + "U.S.A."; + ; + ; + "Husband" . + + a ; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 12700; + ""; + "U.S.A."; + ; + ; + "Husband" . + + a ; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 12705; + "work"; + "U.S.A."; + ; + . + + a ; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 12710; + "work"; + "U.S.A."; + ; + . + + a ; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1911-08-17"^^xsd:date; + "1911-08-17"^^xsd:date; + 12715; + ""; + "England, U.S.A."; + ; + ; + "Husband" . + + a ; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1911-08-17"^^xsd:date; + "1911-08-17"^^xsd:date; + 12720; + ""; + "England, U.S.A."; + ; + ; + "Husband" . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12725; + ""; + "NULL"; + ; + ; + "Sister" . + + a ; + "1866-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + 12730; + ""; + ; + ; + "Sister" . + + a ; + 12735; + ""; + "NULL"; + ; + ; + "Brother" . + + a ; + 12740; + ""; + ; + ; + "Brother" . + + a ; + 12745; + ""; + "England, U.S.A."; + ; + ; + "Sister" . + + a ; + 12750; + ""; + "England, U.S.A."; + ; + ; + "Sister" . + + a ; + "1882-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12755; + "work"; + "Cincinnati"; + ; + ; + . + + a ; + "1882-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12760; + "work"; + "Cincinnati"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-04-01"^^xsd:date; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12765; + "work"; + "Cincinnati, New London"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-04-01"^^xsd:date; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12770; + "work"; + "Cincinnati, New London"; + ; + ; + . + + a ; + 12775; + "work"; + "U.S.A."; + ; + . + + a ; + 12780; + "work"; + "U.S.A."; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12785; + "work"; + "Cincinnati"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + 12790; + "work"; + "Cincinnati"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 12795; + "teacher"; + "Cincinnati, New York"; + ; + . + + a ; + 128; + ""; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 12800; + "teacher"; + "Cincinnati, New York"; + ; + . + + a ; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 12805; + ""; + "Cincinnati, New York"; + ; + ; + "Other" . + + a ; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 12810; + ""; + "Cincinnati, New York"; + ; + ; + "Other" . + + a ; + 12815; + "other"; + "-"; + ; + . + + a ; + 12820; + "other"; + ; + . + + a ; + 12825; + ""; + "U.S.A."; + ; + . + + a ; + 12830; + ""; + "U.S.A."; + ; + . + + a ; + 12835; + "teacher"; + "Cincinnati"; + ; + . + + a ; + 12840; + "teacher"; + "Cincinnati"; + ; + . + + a ; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 12845; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 12850; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 12855; + "work"; + "New London"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 12860; + "work"; + "New London"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12865; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12870; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12875; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12880; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12885; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12890; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12895; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12900; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12905; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12910; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12915; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12920; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12925; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12930; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12935; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12940; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12945; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12950; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12955; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12960; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12965; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12970; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12975; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12980; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12985; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12990; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 12995; + "work"; + "New York"; + ; + ; + . + + a ; + 130; + ""; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 13000; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 13005; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + 13010; + "work"; + "New York"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13015; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13020; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13025; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13030; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13035; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13040; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13045; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13050; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13055; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13060; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13065; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13070; + "work"; + "New York"; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13075; + "work"; + "New York"; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13080; + "work"; + "New York"; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13085; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13090; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13095; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13100; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13105; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13110; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13115; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13120; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13125; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13130; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13135; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 13140; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 13145; + "work"; + "U.S.A."; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 13150; + "work"; + "U.S.A."; + ; + . + + a ; + 13155; + "other"; + "U.S.A."; + ; + . + + a ; + 13160; + "other"; + "U.S.A."; + ; + . + + a ; + "1892-09-22"^^xsd:date; + "1892-06-21"^^xsd:date; + "1892-09-22"^^xsd:date; + "1892-06-21"^^xsd:date; + 13165; + "work"; + "U.S.A."; + ; + . + + a ; + "1892-09-22"^^xsd:date; + "1892-06-21"^^xsd:date; + "1892-09-22"^^xsd:date; + "1892-06-21"^^xsd:date; + 13170; + "work"; + "U.S.A."; + ; + . + + a ; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 13175; + "work"; + "U.S.A."; + ; + . + + a ; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 13180; + "work"; + "U.S.A."; + ; + . + + a ; + 13185; + "work"; + "U.S.A."; + ; + . + + a ; + 13190; + "work"; + "U.S.A."; + ; + . + + a ; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 13195; + "work"; + "U.S.A."; + ; + . + + a ; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 13200; + "work"; + "U.S.A."; + ; + . + + a ; + "1896-12-31"^^xsd:date; + "1896-09-01"^^xsd:date; + 13205; + "work"; + "U.S.A."; + ; + . + + a ; + "1896-12-31"^^xsd:date; + "1896-09-01"^^xsd:date; + 13210; + "work"; + "U.S.A."; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "September 1904"; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13215; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "September 1904"; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13220; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13225; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13230; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13235; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + "1904-09-30"^^xsd:date; + "1904-09-01"^^xsd:date; + 13240; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1906-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905 - 1906"; + "1906-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 13245; + "work"; + "U.S.A."; + ; + ; + . + + a ; + "1906-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905 - 1906"; + "1906-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 13250; + "work"; + "U.S.A."; + ; + ; + . + + a ; + 13255; + "friendship"; + "Boston"; + ; + . + + a ; + 13260; + "friendship"; + "Boston"; + ; + . + + a ; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906 - 1907"; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 13265; + "work"; + "U.S.A."; + ; + . + + a ; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906 - 1907"; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 13270; + "work"; + "U.S.A."; + ; + . + + a ; + 13275; + "work"; + "U.S.A."; + ; + . + + a ; + 13280; + "work"; + "U.S.A."; + ; + . + + a ; + "1909-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1909-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 13285; + "work"; + "NULL"; + ; + . + + a ; + "1909-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1909-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 13290; + "work"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13295; + "Chicago"; + ; + . + + a ; + 133; + ""; + "Connection with the„Nibelungen-Kanzlei“ "; + ; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13300; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13305; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13310; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13315; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13320; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13325; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13330; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13335; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13340; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13345; + "Chicago"; + ; + . + + a ; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + "1912-05-31"^^xsd:date; + "1912-05-01"^^xsd:date; + 13350; + "Chicago"; + ; + . + + a ; + 13355; + "work"; + "-"; + ; + . + + a ; + 13365; + "work"; + "-"; + ; + . + + a ; + 13375; + "other"; + "-"; + ; + . + + a ; + 13385; + "other"; + "-"; + ; + . + + a ; + 13395; + "work"; + "-"; + ; + . + + a ; + 13405; + "work"; + "-"; + ; + . + + a ; + 13415; + ""; + "-"; + ; + ; + "Mother" . + + a ; + 13425; + "work"; + "-"; + ; + . + + a ; + 13435; + "work"; + "-"; + ; + . + + a ; + 13445; + ""; + "-"; + ; + ; + "Wife" . + + a ; + 13455; + "work"; + "-"; + ; + . + + a ; + 13470; + "other"; + "New York, Havana"; + ; + . + + a ; + 13480; + "work"; + ; + . + + a ; + 13485; + "Vienna"; + ; + ; + . + + a ; + 13500; + "work"; + ; + . + + a ; + 13510; + "work"; + ; + . + + a ; + 13520; + "work"; + ; + . + + a ; + 13530; + "work"; + ; + . + + a ; + 13535; + "work"; + "-"; + ; + . + + a ; + 13545; + "work"; + "New York"; + ; + . + + a ; + 13555; + "work"; + "-"; + ; + . + + a ; + 13565; + "other"; + "-"; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 13575; + "work"; + "NULL"; + ; + . + + a ; + 13585; + "other"; + "Vienna"; + ; + . + + a ; + 13595; + "work"; + "-"; + ; + . + + a ; + 136; + ""; + "Connection with the„Nibelungen-Kanzlei“. Strong relationship with the Wagner family. Got colder in his time in USA because of modernizing conducting Wagner."; + ; + ; + . + + a ; + 13610; + "work"; + "Havana, Cuba"; + ; + . + + a ; + 13615; + "work"; + "-"; + ; + . + + a ; + 13625; + "other"; + "-"; + ; + . + + a ; + 13630; + "other"; + ; + . + + a ; + 13645; + "work"; + "London"; + ; + . + + a ; + 13650; + "friendship"; + "London"; + ; + . + + a ; + 13655; + "other"; + "Paris"; + ; + . + + a ; + 13665; + "work"; + "-"; + ; + . + + a ; + 13675; + "work"; + "Paris"; + ; + . + + a ; + 13685; + "work"; + "-"; + ; + . + + a ; + 13695; + "work"; + "-"; + ; + . + + a ; + 13705; + "work"; + "-"; + ; + . + + a ; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + 13715; + "work"; + "-"; + ; + ; + . + + a ; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + 13725; + "work"; + "-"; + ; + ; + . + + a ; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + 13730; + "work"; + ; + ; + . + + a ; + 13735; + "work"; + "-"; + ; + . + + a ; + 13745; + "other"; + "Vienna"; + ; + . + + a ; + 13755; + "work"; + "Paris"; + ; + . + + a ; + 13765; + "other"; + "Paris"; + ; + . + + a ; + 13775; + "New York New York"; + ; + . + + a ; + 13785; + "work"; + "NULL"; + ; + . + + a ; + 13795; + "other"; + "New York"; + ; + . + + a ; + 13805; + "work"; + "NULL"; + ; + . + + a ; + 13815; + "teacher"; + "Vienna"; + ; + . + + a ; + 13825; + "work"; + "-"; + ; + . + + a ; + 13830; + "work"; + ; + . + + a ; + 13835; + "work"; + "-"; + ; + . + + a ; + 13845; + "work"; + "New York"; + ; + . + + a ; + 13855; + "other"; + "Vienna"; + ; + . + + a ; + 13860; + "other"; + "Vienna"; + ; + . + + a ; + 13865; + "work"; + "-"; + ; + . + + a ; + 13870; + "work"; + ; + . + + a ; + 13875; + "work"; + "-"; + ; + . + + a ; + 13880; + "work"; + ; + . + + a ; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + 13885; + "work"; + "New York"; + ; + ; + . + + a ; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + 13890; + "work"; + "New York"; + ; + ; + . + + a ; + 13895; + "New York"; + ; + . + + a ; + 139; + ; + ; + . + + a ; + 13900; + "New York"; + ; + . + + a ; + 13905; + "other"; + "Vienna"; + ; + . + + a ; + 13910; + "other"; + "Vienna"; + ; + . + + a ; + 13915; + "Vienna"; + ; + . + + a ; + 13920; + "Vienna"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 13925; + "London"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 13930; + "London"; + ; + . + + a ; + 13935; + "other"; + "-"; + ; + . + + a ; + 13940; + "other"; + ; + . + + a ; + 13945; + ""; + "-"; + ; + ; + "Sister" . + + a ; + 13950; + ""; + ; + ; + "Sister" . + + a ; + 13955; + "work"; + "-"; + ; + . + + a ; + 13960; + "work"; + ; + . + + a ; + 13965; + "work"; + "-"; + ; + . + + a ; + 13970; + "work"; + ; + . + + a ; + 13975; + "work"; + "-"; + ; + . + + a ; + 13980; + "work"; + ; + . + + a ; + 13985; + "-"; + ; + . + + a ; + 13990; + ; + . + + a ; + 13995; + "work"; + "-"; + ; + . + + a ; + 14; + ""; + "sister"; + ; + ; + "Brother" . + + a ; + 14000; + "work"; + ; + . + + a ; + 14005; + "French"; + ; + . + + a ; + 14010; + "French"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14015; + "other"; + "London"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14020; + "other"; + "London"; + ; + . + + a ; + 14025; + "New York"; + ; + . + + a ; + 14030; + "New York"; + ; + . + + a ; + 14035; + "work"; + "-"; + ; + . + + a ; + 14040; + "work"; + ; + . + + a ; + 14045; + "other"; + "New York"; + ; + . + + a ; + 14050; + "other"; + "New York"; + ; + . + + a ; + 14055; + "New York"; + ; + . + + a ; + 14060; + "New York"; + ; + . + + a ; + 14065; + "work"; + "-"; + ; + . + + a ; + 14070; + "work"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14075; + "work"; + "London"; + ; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14080; + "work"; + "London"; + ; + ; + . + + a ; + 14085; + "work"; + "-"; + ; + . + + a ; + 14090; + "work"; + ; + . + + a ; + 14095; + "work"; + "-"; + ; + . + + a ; + 14105; + "work"; + "New York"; + ; + . + + a ; + 14115; + "work"; + "-"; + ; + . + + a ; + 14125; + "work"; + "-"; + ; + . + + a ; + 14135; + "work"; + "-"; + ; + . + + a ; + 14145; + "-"; + ; + . + + a ; + 14155; + "work"; + "New York"; + ; + . + + a ; + 14165; + ""; + "-"; + ; + ; + "Father" . + + a ; + 14175; + "other"; + "Vienna"; + ; + . + + a ; + 14185; + "work"; + "-"; + ; + . + + a ; + 14195; + ""; + "-"; + ; + ; + "Sister" . + + a ; + 142; + ; + ; + . + + a ; + 14205; + "other"; + "-"; + ; + . + + a ; + 14215; + "work"; + "-"; + ; + . + + a ; + 14225; + "work"; + "-"; + ; + . + + a ; + 14235; + "work"; + "-"; + ; + . + + a ; + 14245; + "other"; + "-"; + ; + . + + a ; + 14255; + "work"; + "-"; + ; + . + + a ; + 14265; + "work"; + "-"; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14275; + "work"; + "London, Italy"; + ; + ; + . + + a ; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1848-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + 14280; + "work"; + "London, Italy"; + ; + ; + . + + a ; + 14295; + "other"; + "-"; + ; + . + + a ; + 14305; + "work"; + "-"; + ; + . + + a ; + 14315; + "work"; + "-"; + ; + . + + a ; + 14325; + "work"; + "-"; + ; + . + + a ; + 14335; + "other"; + "-"; + ; + . + + a ; + 14345; + ""; + "NULL"; + ; + ; + "Wife" . + + a ; + 14350; + ""; + ; + ; + "Wife" . + + a ; + 14355; + ""; + "NULL"; + ; + ; + "Son" . + + a ; + 14360; + ""; + ; + ; + "Son" . + + a ; + "1943-12-21"^^xsd:date; + "1943-12-21"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 14365; + "work"; + "Barcelona"; + ; + . + + a ; + "1943-12-21"^^xsd:date; + "1943-12-21"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 14370; + "work"; + "Barcelona"; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 14375; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 14380; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14385; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14390; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14395; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14400; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14405; + "work"; + "Buenos Aires"; + ; + . + + a ; + 14410; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14415; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14420; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14425; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14430; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14435; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14440; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14445; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14450; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14455; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14460; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14465; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14470; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14475; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14480; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14485; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14490; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14495; + "work"; + "Buenos Aires"; + ; + . + + a ; + 145; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14500; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14505; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14510; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14515; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14520; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14525; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14530; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14535; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14540; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14545; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14550; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14555; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14560; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14565; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14570; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14575; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14580; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14585; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14590; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14595; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14600; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14605; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1936-04-24"^^xsd:date; + "1936-04-24"^^xsd:date; + 14610; + "work"; + "Buenos Aires"; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 14615; + "friendship"; + "Buenos Aires"; + ; + ; + . + + a ; + "1936-12-31"^^xsd:date; + "1871-01-06"^^xsd:date; + "1871-01-06"^^xsd:date; + 14625; + ""; + "Lisbon"; + ; + ; + "Mother" . + + a ; + "1871-01-05"^^xsd:date; + 14635; + ""; + "Lisbon"; + ; + ; + ; + "Father" . + + a ; + "1942-03-23"^^xsd:date; + "1907-04-29"^^xsd:date; + "1907-04-29"^^xsd:date; + 14645; + ""; + "Buenos Aires"; + ; + ; + "Husband" . + + a ; + 14655; + ""; + "Lisbon"; + ; + ; + "Sister" . + + a ; + "1890-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 14665; + "teacher"; + "Paris"; + ; + . + + a ; + "1893-01-01"^^xsd:date; + 14675; + "work"; + "Lisbon"; + ; + ; + . + + a ; + "1893-01-01"^^xsd:date; + 14685; + "work"; + "Madrid"; + ; + ; + . + + a ; + "1902-06-04"^^xsd:date; + "1902-06-04"^^xsd:date; + 14695; + "work"; + "London"; + ; + ; + . + + a ; + "1933-01-01"^^xsd:date; + 14705; + "friendship"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14715; + "work"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14725; + "work"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14735; + "work"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14745; + "friendship"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14755; + "friendship"; + "Buenos Aires"; + ; + ; + . + + a ; + "1938-01-01"^^xsd:date; + 14765; + "friendship"; + "Buenos Aires"; + ; + ; + . + + a ; + 14775; + ""; + "Buenos Aires"; + ; + ; + "Wife" . + + a ; + 14785; + ""; + "Buenos Aires"; + ; + ; + "Daughter" . + + a ; + 14790; + ""; + "Buenos Aires"; + ; + ; + "Daughter" . + + a ; + 148; + ; + . + + a ; + "1922-05-05"^^xsd:date; + 14805; + ""; + "Montevideo"; + ; + ; + "Wife" . + + a ; + "1922-05-05"^^xsd:date; + 14815; + ""; + "Buenos Aires y Montevideo"; + ; + ; + "Daughter" . + + a ; + "1922-05-05"^^xsd:date; + 14825; + ""; + "Buenos Aires y Montevideo"; + ; + ; + "Son" . + + a ; + "1922-05-05"^^xsd:date; + 14835; + ""; + "Buenos Aires"; + ; + ; + "Son" . + + a ; + "1922-05-05"^^xsd:date; + 14855; + ""; + "Buenos Aires"; + ; + ; + "Son" . + + a ; + "1891-10-27"^^xsd:date; + 14875; + "work"; + "Buenos Aires y Montevideo"; + ; + . + + a ; + "1922-05-05"^^xsd:date; + 14885; + ""; + ; + ; + "Daughter" . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1900-05-29"^^xsd:date; + "1900-05-29"^^xsd:date; + 14895; + ""; + "Denmark, Buenos Aires, Argentina"; + ; + ; + "Husband" . + + a ; + "1944-06-28"^^xsd:date; + "1944-06-28"^^xsd:date; + "1901-03-02"^^xsd:date; + "1901-03-02"^^xsd:date; + 14900; + ""; + "Buenos Aires, Argentina"; + ; + ; + "Son" . + + a ; + "1902-06-28"^^xsd:date; + "1902-06-28"^^xsd:date; + 14905; + ""; + "Buenos Aires"; + ; + ; + "Daughter" . + + a ; + "1905-03-13"^^xsd:date; + "1905-03-13"^^xsd:date; + 14910; + ""; + "Buenos Aires"; + ; + ; + "Daughter" . + + a ; + "1908-06-14"^^xsd:date; + "1908-06-14"^^xsd:date; + 14915; + ""; + "Buenos Aires"; + ; + ; + "Son" . + + a ; + "1968-01-31"^^xsd:date; + "1968-01-31"^^xsd:date; + 14925; + ""; + "Bahía Blanca, Carhué, Argentina"; + ; + ; + "Other" . + + a ; + 14935; + "friendship"; + "Buenos Aires"; + ; + . + + a ; + 14945; + "friendship"; + "Buenos Aires"; + ; + . + + a ; + 14955; + "friendship"; + "Buenos Aires"; + ; + . + + a ; + 14965; + "friendship"; + "Buenos Aires"; + ; + . + + a ; + 14985; + "friendship"; + "Buenos Aires"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 14990; + "work"; + ; + ; + . + + a ; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 14995; + "work"; + ; + ; + ; + . + + a ; + "1869-07-25"; + 15; + ""; + ""; + "daughter"; + ; + ; + "Father" . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 15000; + ""; + ; + ; + ; + "Husband" . + + a ; + 15005; + ""; + ; + . + + a ; + 15010; + "work"; + ; + . + + a ; + "-"; + "-"; + 15055; + "family"; + ; + ; + "Uncle" . + + a ; + "-"; + "-"; + 15060; + "teacher"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 15065; + "teacher"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 15075; + "teacher"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 15080; + "teacher"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 15085; + "teacher"; + ; + ; + ; + . + + a ; + 15090; + "family"; + ; + ; + "Brother" . + + a ; + 15095; + ""; + ; + ; + "Sister" . + + a ; + 151; + ; + . + + a ; + 15100; + ""; + ; + ; + "Daughter" . + + a ; + 15105; + "family"; + ; + ; + "Sister" . + + a ; + 15110; + "family"; + ; + ; + "Sister" . + + a ; + 15115; + "family"; + ; + ; + "Aunt" . + + a ; + "Probably between 1821-1827"; + "Probably between 1821-1827"; + 15120; + "teacher"; + ; + ; + ; + . + + a ; + 15125; + "family"; + ; + ; + "Niece" . + + a ; + 15130; + ""; + ; + ; + "Sister" . + + a ; + 15135; + ""; + "Also student"; + ; + ; + "Niece" . + + a ; + 15140; + ""; + "Also student"; + ; + ; + "Niece" . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 15145; + ""; + "Wedding in 1847"; + ; + ; + "Wife" . + + a ; + 15150; + "teacher"; + ; + . + + a ; + 15155; + "teacher"; + ; + . + + a ; + 15165; + ""; + ; + . + + a ; + 154; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15616; + "work"; + ; + . + + a ; + 15681; + ""; + ; + ; + "Mother" . + + a ; + "Probably 1874-03-20"; + "1874-03-20"^^xsd:date; + "1874-03-20"^^xsd:date; + "Probably 1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 15686; + "teacher"; + "Academy, Soho Square and U.S.-Tour"; + ; + ; + . + + a ; + 157; + "siblings"; + ; + . + + a ; + "Probably 1874-03-20"; + "1874-03-20"^^xsd:date; + "1874-03-20"^^xsd:date; + "Probably 1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 15706; + "work"; + "U.S.-Tour"; + ; + ; + . + + a ; + "Probably 1874-03-20"; + "1874-03-20"^^xsd:date; + "1874-03-20"^^xsd:date; + "Probably 1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 15716; + "work"; + "Boston"; + ; + ; + . + + a ; + "Probably between 1868 and 1874"; + "1874-03-20"^^xsd:date; + "1874-03-20"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 15726; + ""; + "U.S.-Tour"; + ; + ; + "Fiance" . + + a ; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1874-03-20"^^xsd:date; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + 15736; + "work"; + "Paris"; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874-03-21"; + "1874-03-21"^^xsd:date; + "1874-03-21"^^xsd:date; + 15746; + "work"; + "New York"; + ; + ; + . + + a ; + "1896-12-17"; + "1896-12-17"^^xsd:date; + "1896-12-17"^^xsd:date; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + 15756; + ""; + "NULL"; + ; + ; + "Husband" . + + a ; + 15771; + "friendship"; + ; + . + + a ; + 15781; + ""; + ; + ; + "Other" . + + a ; + 15791; + ""; + ; + ; + "Other" . + + a ; + 15801; + ""; + ; + ; + "Nephew" . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15811; + "work"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15821; + "work"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15831; + "work"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15841; + "work"; + ; + . + + a ; + "until his death; unknown"; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15851; + "work"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 15861; + "work"; + ; + . + + a ; + "August 1888"; + "1888-08-31"^^xsd:date; + "1888-08-01"^^xsd:date; + 15881; + "work"; + ; + . + + a ; + 15891; + "friendship"; + ; + . + + a ; + 15901; + ""; + ; + ; + "Other" . + + a ; + 15911; + "work"; + ; + . + + a ; + 15921; + "friendship"; + ; + . + + a ; + 15931; + "work"; + ; + . + + a ; + 15941; + ""; + ; + ; + "Nephew" . + + a ; + 15951; + ; + . + + a ; + 15961; + ""; + ; + ; + "Nephew" . + + a ; + 15971; + ""; + ; + ; + "Nephew" . + + a ; + 15981; + ""; + ; + ; + "Niece" . + + a ; + "Probably October 1908"; + "1908-10-31"^^xsd:date; + "1908-10-01"^^xsd:date; + "Probably Summer 1908"; + "1908-09-22"^^xsd:date; + "1908-06-21"^^xsd:date; + 15986; + "work"; + "Central and South America-Tour"; + ; + . + + a ; + 16; + ""; + ""; + "daughter"; + ; + ; + "Mother" . + + a ; + 160; + "married couple"; + ; + . + + a ; + 16001; + "friendship"; + ; + . + + a ; + "Probably 1932-02-19"; + "1932-02-19"^^xsd:date; + "Probably 1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 16011; + "friendship"; + ; + . + + a ; + 16021; + "friendship"; + ; + . + + a ; + 16031; + "friendship"; + ; + . + + a ; + 16041; + "friendship"; + ; + . + + a ; + 16051; + "friendship"; + ; + . + + a ; + 16071; + "friendship"; + ; + . + + a ; + 16081; + "friendship"; + ; + . + + a ; + 16091; + "friendship"; + ; + . + + a ; + 16101; + "friendship"; + ; + . + + a ; + 16111; + "friendship"; + ; + . + + a ; + "Probably 1868"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + 16141; + "teacher"; + "London and U.S.-Tour"; + ; + ; + . + + a ; + 16641; + "friendship"; + ; + . + + a ; + 16651; + "friendship"; + ; + . + + a ; + 167; + ; + ; + . + + a ; + 16774; + "friendship"; + ; + . + + a ; + 16779; + ""; + ; + ; + "Daughter" . + + a ; + "1884"; + "1863"; + 16784; + ""; + ; + ; + "Husband" . + + a ; + "1886"; + "1885"; + 16789; + "work"; + ; + . + + a ; + 16794; + "friendship"; + ; + . + + a ; + 16799; + "friendship"; + ; + . + + a ; + "1863"; + 16804; + "work"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 16809; + "teacher"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 16814; + "teacher"; + ; + ; + . + + a ; + 16819; + "teacher"; + ; + . + + a ; + 16824; + ""; + ; + ; + "Wife" . + + a ; + 16829; + . + + a ; + 16834; + ""; + ; + ; + . + + a ; + 16839; + ""; + ; + ; + "Sister" . + + a ; + 16844; + ""; + ; + ; + . + + a ; + 16848; + "work"; + ; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 16851; + "teacher"; + ; + ; + . + + a ; + 16854; + ""; + ; + ; + "Husband" . + + a ; + 16859; + ""; + ; + ; + ; + "Father" . + + a ; + 16864; + ""; + ; + ; + ; + "Mother" . + + a ; + 16869; + ""; + ; + ; + ; + "Sister" . + + a ; + 16874; + "work"; + ; + ; + . + + a ; + 16879; + "work"; + ; + ; + . + + a ; + 16884; + "work"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 16889; + "work"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 16894; + "work"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 16899; + "work"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 16904; + "work"; + ; + ; + . + + a ; + "1919-12-31"; + "1918-01-01"; + 16909; + "work"; + ; + ; + . + + a ; + "1918-12-31"; + "1918-01-01"; + 16914; + "work"; + ; + ; + . + + a ; + "1919-12-31"; + "1919-01-01"; + 16919; + "work"; + ; + ; + . + + a ; + "1924-12-31"; + "1923-01-01"; + 16924; + "work"; + ; + ; + . + + a ; + "1927-12-31"; + "1927-01-01"; + 16929; + "work"; + ; + ; + ; + . + + a ; + "1932-12-31"; + "1932-01-01"; + 16934; + "work"; + ; + ; + . + + a ; + "1936-01-01"; + 16939; + "work"; + ; + ; + . + + a ; + "1936-01-01"; + 16944; + "work"; + ; + ; + . + + a ; + 16949; + "work"; + ; + ; + . + + a ; + 16954; + "work"; + ; + ; + . + + a ; + 16959; + "work"; + ; + ; + . + + a ; + "1908-12-31"; + "1906-01-01"; + 16964; + ""; + ; + ; + . + + a ; + 16969; + ""; + ; + ; + ; + "Mother" . + + a ; + 16974; + ""; + ; + ; + ; + "Father" . + + a ; + 16979; + "teacher"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 16984; + "work"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1907-06-20"^^xsd:date; + "1907-06-20"^^xsd:date; + 16989; + ""; + ; + ; + ; + "Husband" . + + a ; + "1946-08-08"^^xsd:date; + "1946-08-08"^^xsd:date; + "1909-08-13"^^xsd:date; + "1909-08-13"^^xsd:date; + 16994; + ""; + ; + ; + ; + "Son" . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 16999; + "work"; + ; + ; + . + + a ; + 17; + ""; + "brother"; + ; + . + + a ; + 170; + ; + . + + a ; + 17004; + "work"; + ; + ; + ; + . + + a ; + 17009; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Winter of 1882"; + "1883-03-24"^^xsd:date; + "1882-12-24"^^xsd:date; + 17014; + "teacher"; + ; + ; + . + + a ; + "-"; + "between 1877 and 1880"; + "1880-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 17019; + "work"; + ; + ; + . + + a ; + "October 1894"; + "1894-10-31"^^xsd:date; + "1894-10-01"^^xsd:date; + "9th May 1892"; + "1892-05-09"^^xsd:date; + "1892-05-09"^^xsd:date; + 17024; + ""; + ; + ; + ; + "Husband" . + + a ; + "-"; + "-"; + 17029; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 17034; + ""; + ; + ; + "Father" . + + a ; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 17039; + "teacher"; + ; + ; + ; + . + + a ; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 17044; + "teacher"; + ; + ; + ; + . + + a ; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 17049; + "teacher"; + ; + ; + ; + . + + a ; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-31"^^xsd:date; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 17054; + "teacher"; + ; + ; + ; + . + + a ; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898/1904"; + "1904-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 17059; + "teacher"; + ; + ; + ; + . + + a ; + 17064; + "teacher"; + ; + ; + ; + . + + a ; + 17069; + ""; + ; + ; + "Sister" . + + a ; + 17074; + "teacher"; + ; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 17079; + "teacher"; + ; + ; + . + + a ; + 17084; + "teacher"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 17089; + "teacher"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 17094; + "work"; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 17099; + "work"; + ; + . + + a ; + 17124; + ""; + ; + ; + ; + ; + "Husband" . + + a ; + 17129; + ""; + "son or daughter"; + ; + ; + "Son" . + + a ; + 17134; + ""; + "son or daughter"; + ; + ; + "Son" . + + a ; + 17139; + ""; + "son or daughter"; + ; + ; + "Son" . + + a ; + 17144; + ""; + "son or daughter"; + ; + ; + "Daughter" . + + a ; + 17149; + ""; + "son or daughter"; + ; + ; + "Daughter" . + + a ; + 17154; + ""; + "son or daughter"; + ; + ; + "Daughter" . + + a ; + 17159; + ""; + ; + ; + ; + "Other" . + + a ; + 17164; + "work"; + ; + ; + . + + a ; + 17169; + "work"; + ; + ; + . + + a ; + 17174; + "work"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 17179; + "work"; + ; + ; + ; + . + + a ; + 17184; + "work"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 17193; + ; + ; + ; + . + + a ; + 17194; + "teacher"; + ; + ; + . + + a ; + 17198; + "teacher"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 17203; + "teacher"; + ; + ; + . + + a ; + 17204; + "teacher"; + ; + ; + . + + a ; + 17209; + ""; + ; + ; + "Father" . + + a ; + 17214; + ""; + ; + . + + a ; + 17219; + ""; + ; + ; + "Sister" . + + a ; + 17224; + ""; + ; + ; + "Sister" . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 17229; + "work"; + ; + ; + . + + a ; + 17234; + ""; + ; + . + + a ; + 17239; + ""; + ; + . + + a ; + 17243; + ""; + ; + . + + a ; + 17245; + ""; + ; + . + + a ; + 17250; + ""; + ; + ; + "Son" . + + a ; + 17255; + ""; + ; + ; + "Wife" . + + a ; + 17260; + "teacher"; + ; + . + + a ; + 17265; + "teacher"; + ; + . + + a ; + 17269; + ""; + ; + ; + "Sister" . + + a ; + 17274; + ""; + ; + ; + "Cousin" . + + a ; + 17279; + ""; + ; + ; + "Cousin" . + + a ; + "March 1866"; + "1866-03-31"^^xsd:date; + "1866-03-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 17284; + ""; + ; + ; + "Other" . + + a ; + 17289; + ""; + ; + ; + "Daughter" . + + a ; + 17294; + ""; + ; + ; + "Daughter" . + + a ; + 173; + ""; + "1923-01-00"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 17319; + "teacher"; + ; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 17324; + ; + ; + . + + a ; + 17329; + "work"; + ; + ; + ; + . + + a ; + 17334; + "work"; + ; + ; + ; + . + + a ; + 17339; + "work"; + ; + ; + . + + a ; + 17344; + "work"; + ; + ; + . + + a ; + 17349; + "work"; + ; + ; + . + + a ; + 17354; + "work"; + ; + ; + . + + a ; + 17359; + "work"; + ; + ; + . + + a ; + 17364; + "work"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 17369; + "work"; + ; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 17374; + "work"; + ; + ; + ; + . + + a ; + "1947-12-31"; + "1936-01-01"; + 17379; + "work"; + ; + ; + ; + . + + a ; + "1948-01-20"^^xsd:date; + "1936-01-01"; + 17384; + "work"; + ; + ; + ; + . + + a ; + "1948-01-20"^^xsd:date; + "1936-01-01"; + 17389; + "work"; + ; + ; + ; + . + + a ; + "1956-12-25"^^xsd:date; + 17394; + "work"; + ; + ; + ; + . + + a ; + "1957-04-07"^^xsd:date; + 17399; + "work"; + ; + ; + ; + . + + a ; + "1940-01-01"; + 17404; + "work"; + ; + ; + ; + . + + a ; + 17409; + "work"; + ; + ; + ; + . + + a ; + "1956-12-31"; + "1943-01-01"; + 17410; + "work"; + ; + ; + ; + . + + a ; + "1943-12-31"; + "1943-01-01"; + 17413; + "work"; + ; + ; + ; + . + + a ; + "1936-01-01"; + 17415; + "work"; + ; + ; + ; + . + + a ; + 17418; + "work"; + ; + ; + ; + . + + a ; + 17420; + "work"; + ; + ; + ; + . + + a ; + 17425; + "work"; + ; + ; + ; + . + + a ; + 17430; + "work"; + ; + ; + ; + . + + a ; + "1952-12-31"; + "1952-01-01"; + 17433; + "work"; + ; + ; + ; + . + + a ; + 17438; + "work"; + ; + ; + ; + . + + a ; + 17440; + "work"; + ; + ; + ; + . + + a ; + 17443; + "work"; + ; + ; + ; + . + + a ; + 17448; + "work"; + ; + ; + ; + . + + a ; + "1956-12-31"; + "1956-01-01"; + 17449; + "work"; + ; + ; + ; + . + + a ; + "1956-12-31"; + "1941-01-01"; + 17454; + "work"; + ; + ; + ; + . + + a ; + "1956-12-31"; + "1956-01-01"; + 17459; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 17469; + ""; + ; + ; + "Mother" . + + a ; + "1910-01-01/1910-12-31"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1909-01-01/1909-12-31"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 17474; + "work"; + ; + ; + ; + . + + a ; + 17479; + ; + . + + a ; + 17489; + . + + a ; + 17494; + . + + a ; + 17498; + . + + a ; + 17503; + . + + a ; + 17508; + . + + a ; + 17509; + . + + a ; + 17514; + . + + a ; + "1919-01-24"^^xsd:date; + "1919-01-24"^^xsd:date; + 17524; + "family"; + ; + "Wife" . + + a ; + 17529; + "work"; + ; + . + + a ; + 17534; + "friendship"; + ; + . + + a ; + 17540; + "teacher"; + ; + ; + . + + a ; + 17541; + "teacher"; + ; + ; + . + + a ; + "1829"; + 17544; + "teacher"; + ; + ; + . + + a ; + 17549; + ""; + ; + . + + a ; + 17550; + ""; + ; + . + + a ; + 17554; + ""; + ; + . + + a ; + 17559; + ""; + ; + . + + a ; + 17564; + ""; + ; + . + + a ; + 17574; + "teacher"; + ; + ; + . + + a ; + 17579; + "teacher"; + ; + ; + . + + a ; + 17584; + "teacher"; + ; + ; + . + + a ; + 17589; + "teacher"; + ; + . + + a ; + 17594; + "work"; + ; + ; + . + + a ; + 176; + ""; + ; + ; + . + + a ; + 17604; + ""; + ; + ; + "Mother" . + + a ; + 17609; + ""; + ; + ; + "Father" . + + a ; + 17614; + ""; + ; + . + + a ; + 17619; + ""; + ; + . + + a ; + 17624; + ""; + ; + . + + a ; + 17629; + ""; + ; + . + + a ; + 17634; + ""; + ; + . + + a ; + 17639; + "teacher"; + ; + ; + . + + a ; + 17644; + ""; + ; + . + + a ; + 17649; + ""; + ; + . + + a ; + 17654; + ""; + ; + . + + a ; + 17659; + ""; + ; + . + + a ; + 17664; + ""; + ; + . + + a ; + 17669; + "teacher"; + ; + ; + . + + a ; + 17674; + "teacher"; + ; + ; + . + + a ; + 17684; + ""; + ; + . + + a ; + 17689; + "work"; + ; + . + + a ; + "1878"; + 17694; + "work"; + ; + . + + a ; + 17699; + ""; + ; + . + + a ; + 17719; + ""; + ; + . + + a ; + 17724; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + 17729; + "teacher"; + ; + ; + . + + a ; + 17734; + "friendship"; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + 17739; + "friendship"; + ; + ; + . + + a ; + 17740; + "work"; + ; + . + + a ; + 17744; + "work"; + ; + . + + a ; + 17749; + "work"; + ; + . + + a ; + 17754; + "work"; + ; + . + + a ; + 17759; + ""; + ; + . + + a ; + 17764; + ""; + ; + ; + "Daughter" . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "18th April 1840"; + "1840-04-18"^^xsd:date; + "1840-04-18"^^xsd:date; + 17769; + ""; + ; + ; + "Husband" . + + a ; + 17774; + ""; + ; + ; + "Nephew" . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + 17779; + "teacher"; + ; + ; + . + + a ; + 17784; + "teacher"; + ; + ; + . + + a ; + "1843"; + 17789; + "friendship"; + ; + ; + . + + a ; + 17794; + "friendship"; + ; + ; + . + + a ; + "1842"; + 17799; + "work"; + ; + . + + a ; + 17804; + "work"; + ; + . + + a ; + 17809; + "work"; + ; + . + + a ; + 17814; + ""; + ; + . + + a ; + 17819; + "work"; + ; + . + + a ; + 17824; + "work"; + ; + . + + a ; + 17829; + "work"; + ; + . + + a ; + 17834; + "work"; + ; + . + + a ; + 17839; + "work"; + ; + . + + a ; + 17844; + ""; + ; + . + + a ; + 17849; + "work"; + ; + ; + . + + a ; + 17854; + "work"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 17859; + "work"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 17864; + "work"; + ; + ; + ; + . + + a ; + 17869; + "work"; + ; + ; + . + + a ; + 17874; + "work"; + ; + ; + . + + a ; + 17879; + "work"; + ; + ; + . + + a ; + 17884; + "work"; + ; + ; + . + + a ; + 17889; + "work"; + ; + ; + . + + a ; + 17894; + "work"; + ; + ; + . + + a ; + 17899; + "work"; + ; + ; + . + + a ; + 179; + ""; + ; + ; + . + + a ; + 17904; + "work"; + ; + ; + . + + a ; + 17909; + "other"; + ; + ; + . + + a ; + 17914; + "other"; + ; + ; + . + + a ; + 17919; + "other"; + ; + ; + . + + a ; + 17924; + "other"; + ; + ; + . + + a ; + 17929; + "other"; + ; + ; + . + + a ; + 17934; + "other"; + ; + ; + . + + a ; + 17939; + "other"; + ; + ; + . + + a ; + 17944; + "work"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 17949; + "Place: Naples and Buenos Aires"; + ; + ; + . + + a ; + 17950; + ; + ; + ; + . + + a ; + 17955; + ; + ; + . + + a ; + 17958; + ; + ; + . + + a ; + 17959; + ; + ; + . + + a ; + 17964; + ; + ; + . + + a ; + "1948-12-17"^^xsd:date; + "1948-12-17"^^xsd:date; + "1906-05-08"^^xsd:date; + "1906-05-08"^^xsd:date; + 17968; + ""; + "Madrid and Buenos Aires"; + ; + ; + ; + "Wife" . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 17969; + ""; + ; + ; + ; + "Son" . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 17974; + ""; + ; + ; + ; + "Son" . + + a ; + 17979; + "work"; + ; + ; + . + + a ; + 17984; + ""; + ; + ; + ; + ; + "Other" . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 17989; + "work"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 17994; + "friendship"; + ; + ; + . + + a ; + 17999; + "work"; + ; + ; + ; + . + + a ; + "1871-01-19"; + 18; + ""; + "son"; + ; + ; + "Son" . + + a ; + 18004; + "friendship"; + ; + ; + . + + a ; + 18009; + "friendship"; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 18013; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 18014; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 18018; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 18019; + "work"; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 18024; + "work"; + ; + ; + ; + . + + a ; + 18029; + "work"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1888-02-06"^^xsd:date; + "1888-02-06"^^xsd:date; + 18034; + ""; + ; + ; + ; + "Father" . + + a ; + "1888-02-06"^^xsd:date; + "1888-02-06"^^xsd:date; + 18039; + ""; + ; + ; + ; + "Mother" . + + a ; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + "1888-02-06"^^xsd:date; + "1888-02-06"^^xsd:date; + 18044; + ""; + ; + ; + ; + "Brother" . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888-02-06"^^xsd:date; + "1888-02-06"^^xsd:date; + 18049; + ""; + ; + ; + ; + "Sister" . + + a ; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 18054; + ""; + ; + ; + ; + "Brother" . + + a ; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 18059; + "work"; + ; + ; + . + + a ; + "1918-12-31"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 18064; + "work"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 18069; + "work"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 18074; + "work"; + ; + ; + . + + a ; + "1894-12-25"^^xsd:date; + "1894-12-25"^^xsd:date; + 18079; + ""; + ; + ; + ; + "Mother" . + + a ; + "1948-07-26"^^xsd:date; + "1948-07-26"^^xsd:date; + 18084; + "work"; + ; + ; + ; + . + + a ; + "1923-04-26"^^xsd:date; + "1923-04-26"^^xsd:date; + 18089; + "work"; + ; + ; + . + + a ; + "1929-05-30"^^xsd:date; + "1929-05-30"^^xsd:date; + 18094; + "teacher"; + ; + ; + . + + a ; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + 18099; + "work"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 18104; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 18109; + "other"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 18114; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 18128; + "work"; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 18131; + "work"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 18136; + "work"; + ; + ; + ; + . + + a ; + "1979-10-03"^^xsd:date; + "1979-10-03"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 18139; + "work"; + ; + ; + ; + . + + a ; + "1965-12-20"^^xsd:date; + "1965-12-20"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 18144; + "work"; + ; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18149; + "work"; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18154; + "work"; + ; + ; + . + + a ; + "1980-07-05"^^xsd:date; + "1980-07-05"^^xsd:date; + 18159; + "work"; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18164; + "work"; + ; + . + + a ; + "1977-02-08"^^xsd:date; + "1977-02-08"^^xsd:date; + 18169; + "work"; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18174; + "work"; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + "1978"; + "1978-12-31"^^xsd:date; + "1978-01-01"^^xsd:date; + 18179; + "work"; + ; + ; + . + + a ; + "1952-07-26"^^xsd:date; + "1952-07-26"^^xsd:date; + 18184; + "friendship"; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18189; + "work"; + ; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18194; + "work"; + ; + ; + ; + . + + a ; + "1971-03-18"^^xsd:date; + "1971-03-18"^^xsd:date; + 18199; + "work"; + ; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18204; + "work"; + ; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18209; + "work"; + ; + ; + ; + . + + a ; + "1962"; + "1962-12-31"^^xsd:date; + "1962-01-01"^^xsd:date; + 18214; + "work"; + ; + ; + ; + . + + a ; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + 18219; + "work"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 18223; + "work"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1918"; + "1918-11-30"^^xsd:date; + "1918-01-01"^^xsd:date; + 18228; + "work"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 18233; + "work"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 18238; + "work"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 18243; + "work"; + "Madrid and Barcelona: Apolo and Tívoli"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 18253; + "work"; + ; + ; + ; + . + + a ; + 18258; + "work"; + ; + . + + a ; + 18263; + "work"; + ; + . + + a ; + 18268; + "work"; + ; + . + + a ; + 18278; + ; + ; + . + + a ; + 18279; + "work"; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 18284; + "work"; + "Buenos Aires and Madrid; Teatro Florida and Teatro Apolo"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 18289; + "work"; + "Buenos Aires and Madrid; Teatro Florida and Teatro Apolo"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 18294; + "work"; + ; + ; + ; + . + + a ; + "1881-02-09"^^xsd:date; + "1881-02-09"^^xsd:date; + 18299; + ""; + ; + ; + ; + "Mother" . + + a ; + 183; + ""; + ; + ; + . + + a ; + 18304; + "work"; + ; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 18309; + "work"; + ; + ; + . + + a ; + 18314; + ""; + ; + ; + ; + "Cousin" . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 18319; + "work"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 18324; + "work"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 18329; + "work"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 18334; + "work"; + ; + ; + ; + . + + a ; + "1937-11-25"^^xsd:date; + "1937-11-25"^^xsd:date; + 18339; + "other"; + ; + ; + . + + a ; + "1937-11-25"^^xsd:date; + "1937-11-25"^^xsd:date; + 18344; + "work"; + ; + ; + ; + . + + a ; + 18349; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913-03-01"^^xsd:date; + "1913-03-01"^^xsd:date; + 18354; + "work"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 18359; + "work"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905-06-03"^^xsd:date; + "1905-06-03"^^xsd:date; + 18364; + "work"; + ; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 18369; + ; + ; + . + + a ; + 18374; + ""; + ; + ; + "Sister" . + + a ; + 18379; + ""; + ; + ; + "Sister" . + + a ; + 18384; + ""; + ; + ; + "Brother" . + + a ; + 18389; + ""; + ; + ; + "Father" . + + a ; + 18394; + ""; + ; + ; + "Mother" . + + a ; + "December 1928"; + "1928-12-31"^^xsd:date; + "1928-12-01"^^xsd:date; + 18399; + "work"; + ; + ; + . + + a ; + "between 23rd January and 1st March 1930"; + "1930-03-01"^^xsd:date; + "1930-01-23"^^xsd:date; + 18404; + "work"; + ; + ; + . + + a ; + "between 1st July and 8th August 1932"; + "1932-08-08"^^xsd:date; + "1932-07-01"^^xsd:date; + 18409; + "work"; + ; + ; + . + + a ; + "between 1st July 1932 and 8th August 1932"; + "1932-08-08"^^xsd:date; + "1932-07-01"^^xsd:date; + 18414; + "work"; + ; + ; + . + + a ; + "between 1st July 1932 and 8th August 1932"; + "1932-08-08"^^xsd:date; + "1932-07-01"^^xsd:date; + 18419; + "work"; + ; + ; + . + + a ; + "between 1st July and 8th August 1932"; + "1932-08-08"^^xsd:date; + "1932-07-01"^^xsd:date; + 18424; + "work"; + ; + ; + ; + . + + a ; + "August 1933"; + "1933-08-31"^^xsd:date; + "1933-08-01"^^xsd:date; + 18429; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 18434; + "friendship"; + ; + ; + . + + a ; + "March 1934"; + "1934-03-31"^^xsd:date; + "1934-03-01"^^xsd:date; + 18439; + "work"; + ; + ; + . + + a ; + "March 1934"; + "1934-03-31"^^xsd:date; + "1934-03-01"^^xsd:date; + 18444; + "work"; + ; + ; + . + + a ; + "March 1935"; + "1935-03-31"^^xsd:date; + "1935-03-01"^^xsd:date; + 18449; + "work"; + ; + ; + . + + a ; + "May 1935"; + "1935-05-31"^^xsd:date; + "1935-05-01"^^xsd:date; + 18454; + "work"; + ; + ; + . + + a ; + "September 1935"; + "1935-09-30"^^xsd:date; + "1935-09-01"^^xsd:date; + 18459; + "work"; + ; + ; + . + + a ; + 18464; + "friendship"; + ; + ; + . + + a ; + "15th December 1937"; + "1937-12-17"^^xsd:date; + "1937-12-15"^^xsd:date; + 18469; + ""; + ; + ; + ; + . + + a ; + "December 1936"; + "1936-12-31"^^xsd:date; + "1936-12-01"^^xsd:date; + 18474; + "work"; + ; + ; + ; + . + + a ; + "23rd May 1935"; + "1935-05-23"^^xsd:date; + "1935-05-23"^^xsd:date; + 18479; + "work"; + ; + ; + ; + . + + a ; + 18484; + "work"; + "They worked together in Rio de Janeiro and New York"; + ; + ; + . + + a ; + "6th August 1942"; + "1942-08-06"^^xsd:date; + "1942-08-06"^^xsd:date; + "February 1939"; + "1939-02-28"^^xsd:date; + "1939-02-01"^^xsd:date; + 18489; + "work"; + "They met in Rio de Janeiro, he was the responsible for bring Carmen Miranda to US"; + ; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18494; + "work"; + "They worked together in Rio de Janeiro and New York"; + ; + ; + . + + a ; + "30th August 1939"; + "1939-08-30"^^xsd:date; + "1939-08-30"^^xsd:date; + 18499; + "work"; + "They worked together in Rio de Janeiro and New York"; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18504; + "work"; + "They worked together in Rio de Janeiro and New York"; + ; + ; + . + + a ; + 18509; + "work"; + "They worked together in Rio de Janeiro and New York"; + ; + ; + . + + a ; + "February 1939"; + "1939-02-28"^^xsd:date; + "1939-02-01"^^xsd:date; + 18514; + "work"; + ; + ; + . + + a ; + "-"; + "17th May 1939"; + "1939-05-17"^^xsd:date; + "1939-05-17"^^xsd:date; + 18519; + "work"; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "between May and December 1939"; + "1939-12-31"^^xsd:date; + "1939-05-01"^^xsd:date; + 18524; + "work"; + ; + ; + . + + a ; + "between May and December 1939"; + "1939-12-31"^^xsd:date; + "1939-05-01"^^xsd:date; + 18529; + "work"; + ; + ; + . + + a ; + "End of July 1940"; + "1940-07-31"^^xsd:date; + "1940-07-15"^^xsd:date; + 18534; + "work"; + ; + ; + ; + . + + a ; + "End of July 1940"; + "1940-07-31"^^xsd:date; + "1940-07-15"^^xsd:date; + 18539; + "work"; + ; + ; + ; + . + + a ; + "August 1940"; + "1940-08-31"^^xsd:date; + "1940-08-01"^^xsd:date; + 18544; + "work"; + ; + ; + ; + . + + a ; + "August 1940"; + "1940-08-31"^^xsd:date; + "1940-08-01"^^xsd:date; + 18549; + "work"; + "They worked together in Rio de Janeiro and New Yor"; + ; + ; + . + + a ; + "between 17th and 25th  October 1940"; + "1940-10-25"^^xsd:date; + "1940-10-17"^^xsd:date; + 18554; + "work"; + ; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 18559; + "work"; + ; + ; + . + + a ; + "end of October 1940"; + "1940-10-31"^^xsd:date; + "1940-10-15"^^xsd:date; + 18564; + "work"; + ; + . + + a ; + "end of October 1940"; + "1940-10-31"^^xsd:date; + "1940-10-15"^^xsd:date; + 18569; + "work"; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 18574; + "work"; + ; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18579; + "work"; + ; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18584; + "work"; + ; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18589; + "work"; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18594; + "work"; + ; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18599; + "work"; + ; + ; + ; + . + + a ; + 186; + ""; + "Studies with Lilly Lehmann in Berlin"; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18604; + "work"; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18609; + "work"; + ; + ; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18614; + "work"; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18619; + "work"; + ; + . + + a ; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + 18624; + "work"; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18629; + "work"; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18639; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18644; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18649; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18654; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18658; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18659; + "friendship"; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18664; + "friendship"; + ; + ; + . + + a ; + 18669; + "friendship"; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18674; + "work"; + "They also worked together in 20th Century Fox in Hollywood"; + ; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 18679; + "work"; + "They also worked together in 20th Century Fox in Hollywood"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 18684; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 18689; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 18694; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 18699; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 18703; + "friendship"; + ; + ; + ; + . + + a ; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 18704; + "friendship"; + ; + ; + ; + . + + a ; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 18709; + "friendship"; + ; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + 18714; + "friendship"; + ; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + 18719; + "work"; + ; + ; + ; + . + + a ; + 18724; + "friendship"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 18729; + "friendship"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 18734; + "work"; + ; + ; + . + + a ; + "1946"; + "1946-12-31"^^xsd:date; + "1946-01-01"^^xsd:date; + 18739; + "work"; + ; + ; + . + + a ; + "17th March 1947"; + "1947-03-17"^^xsd:date; + "1947-03-17"^^xsd:date; + 18744; + ""; + "They also worked together in 1946"; + ; + ; + ; + "Husband" . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 18749; + "friendship"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18754; + "work"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18759; + "work"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18764; + "friendship"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18769; + "friendship"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18774; + "work"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18779; + "friendship"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18784; + "work"; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18789; + "work"; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18794; + "work"; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18799; + "work"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 188; + ""; + ; + ; + . + + a ; + "1949"; + "1949-12-31"^^xsd:date; + "1949-01-01"^^xsd:date; + 18804; + "friendship"; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 18809; + "work"; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 18814; + "work"; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + 18819; + "work"; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + 18824; + "friendship"; + ; + . + + a ; + 18829; + "friendship"; + ; + . + + a ; + 18834; + "friendship"; + ; + . + + a ; + 18839; + "friendship"; + ; + . + + a ; + "1953"; + "1953-12-31"^^xsd:date; + "1953-01-01"^^xsd:date; + 18844; + "friendship"; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + 18849; + "friendship"; + ; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + 18854; + "friendship"; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + 18859; + "friendship"; + ; + ; + . + + a ; + 18864; + ""; + ; + . + + a ; + 18869; + ""; + ; + . + + a ; + 18874; + ""; + ; + . + + a ; + 18879; + ""; + ; + . + + a ; + 18884; + ""; + ; + . + + a ; + 18889; + ""; + ; + . + + a ; + 18894; + ""; + ; + . + + a ; + 18899; + ""; + ; + . + + a ; + 18904; + ""; + ; + . + + a ; + 18909; + ""; + ; + . + + a ; + 18914; + ""; + ; + . + + a ; + 18918; + ""; + ; + . + + a ; + 18919; + ""; + ; + . + + a ; + 18924; + ""; + ; + . + + a ; + 18929; + ""; + ; + . + + a ; + 18934; + ""; + ; + . + + a ; + 18939; + ""; + ; + . + + a ; + 18944; + ""; + ; + . + + a ; + 18949; + ""; + ; + . + + a ; + 18954; + ""; + ; + . + + a ; + 18959; + ""; + ; + . + + a ; + 18964; + . + + a ; + 18969; + . + + a ; + 18974; + . + + a ; + 18979; + . + + a ; + 18984; + ""; + ; + . + + a ; + 18989; + ""; + ; + . + + a ; + 18994; + ""; + ; + . + + a ; + 18999; + ""; + ; + . + + a ; + 19; + ""; + "son"; + ; + . + + a ; + 19004; + ""; + ; + . + + a ; + 19009; + ""; + ; + . + + a ; + 19014; + ""; + ; + . + + a ; + 19019; + ""; + ; + . + + a ; + 19024; + ""; + ; + . + + a ; + 19025; + ""; + ; + . + + a ; + 19029; + ""; + ; + . + + a ; + 19034; + ""; + ; + . + + a ; + 19039; + ""; + ; + . + + a ; + 19044; + ""; + ; + . + + a ; + 19049; + ""; + ; + . + + a ; + 19054; + ""; + ; + . + + a ; + 19059; + ""; + ; + . + + a ; + 19064; + ""; + ; + . + + a ; + 19069; + ""; + ; + . + + a ; + 19074; + ""; + ; + . + + a ; + 19079; + ""; + ; + . + + a ; + 19084; + ""; + ; + . + + a ; + 19089; + ""; + ; + . + + a ; + 19094; + ""; + ; + . + + a ; + 19099; + ""; + ; + . + + a ; + 19104; + ""; + ; + . + + a ; + 19109; + ""; + ; + . + + a ; + 19114; + ""; + ; + . + + a ; + 19119; + ""; + ; + . + + a ; + 19124; + ""; + ; + . + + a ; + 19129; + ""; + ; + . + + a ; + 19134; + ""; + ; + . + + a ; + 19139; + ""; + ; + . + + a ; + 19144; + ""; + ; + . + + a ; + 19149; + ""; + ; + . + + a ; + 19154; + ""; + ; + ; + "Other" . + + a ; + 19159; + ""; + ; + . + + a ; + 19164; + ""; + ; + . + + a ; + 19169; + ""; + ; + . + + a ; + 19174; + ""; + ; + . + + a ; + 19179; + "work"; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 19184; + "work"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-08-01"^^xsd:date; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + 19189; + ""; + ; + ; + ; + "Husband" . + + a ; + 19194; + ""; + ; + . + + a ; + 19204; + ""; + ; + ; + "Wife" . + + a ; + 19209; + "teacher"; + ; + ; + . + + a ; + 19214; + "teacher"; + ; + ; + . + + a ; + 19219; + "teacher"; + ; + ; + . + + a ; + 19224; + ; + . + + a ; + 19229; + ; + . + + a ; + 19234; + ; + . + + a ; + 19239; + . + + a ; + 19244; + . + + a ; + 19249; + . + + a ; + 19254; + ""; + ; + ; + "Sister" . + + a ; + 19259; + ""; + ; + ; + "Brother" . + + a ; + 19264; + ""; + ; + ; + "Sister" . + + a ; + 19269; + ""; + ; + ; + "Brother" . + + a ; + 19274; + ""; + ; + ; + "Sister" . + + a ; + 19279; + ""; + ; + ; + "Sister" . + + a ; + 19284; + ""; + ; + . + + a ; + 19289; + ""; + ; + . + + a ; + 19299; + ""; + ; + . + + a ; + 19304; + ""; + ; + . + + a ; + 19309; + ""; + ; + . + + a ; + 19314; + ""; + ; + . + + a ; + 19319; + ""; + ; + . + + a ; + 19324; + ""; + ; + . + + a ; + 19329; + "teacher"; + ; + . + + a ; + 19334; + ""; + ; + . + + a ; + 19339; + ""; + ; + . + + a ; + 19344; + . + + a ; + 19349; + . + + a ; + 19354; + . + + a ; + 19359; + . + + a ; + 19364; + . + + a ; + 19369; + . + + a ; + 19374; + . + + a ; + 19379; + . + + a ; + 19384; + ""; + ; + . + + a ; + 19388; + ""; + ; + . + + a ; + 19389; + ""; + ; + . + + a ; + 19394; + ""; + ; + . + + a ; + 19399; + ""; + ; + . + + a ; + 194; + ""; + ; + ; + . + + a ; + 19404; + ""; + ; + . + + a ; + 19409; + ""; + ; + . + + a ; + 19414; + ""; + ; + . + + a ; + 19419; + ""; + ; + . + + a ; + 19424; + ""; + ; + . + + a ; + 19428; + ""; + ; + . + + a ; + 19429; + ""; + ; + . + + a ; + 19434; + ""; + ; + . + + a ; + "-"; + "-"; + 19484; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 19489; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 19494; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 19499; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 19504; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 19509; + "work"; + ; + . + + a ; + "-"; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 19514; + "work"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "-"; + 19519; + ""; + ; + ; + "Husband" . + + a ; + "-"; + "-"; + 19529; + ""; + ; + ; + "Daughter" . + + a ; + "-"; + "-"; + 19534; + ""; + ; + ; + "Other" . + + a ; + "-"; + "-"; + 19539; + "work"; + ; + . + + a ; + "-"; + "-"; + 19544; + ""; + ; + ; + "Husband" . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "26th September 1872"; + "1872-09-26"^^xsd:date; + "1872-09-26"^^xsd:date; + 19558; + ""; + ; + ; + ; + "Wife" . + + a ; + 19563; + "work"; + ; + ; + . + + a ; + 19568; + ""; + ; + ; + "Daughter" . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 19570; + ""; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 19575; + "work"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 19580; + "work"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 19581; + "friendship"; + ; + ; + . + + a ; + "-"; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 19584; + "work"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 19619; + "work"; + ; + ; + ; + . + + a ; + 19625; + ""; + ; + ; + "Father" . + + a ; + 19629; + ""; + "Toscana and Buenos Aires"; + ; + ; + ; + "Father" . + + a ; + 19634; + ""; + "Toscana and Buenos Aires"; + ; + ; + ; + "Mother" . + + a ; + "1975-05-02"^^xsd:date; + "1975-05-02"^^xsd:date; + "1922-05-24"^^xsd:date; + "1922-05-24"^^xsd:date; + 19639; + ""; + ; + ; + ; + "Wife" . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 19649; + ""; + ; + ; + ; + "Son" . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 19654; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 19659; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 19664; + ""; + ; + ; + ; + "Son" . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 19669; + "work"; + ; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 19674; + "work"; + ; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 19679; + "work"; + ; + ; + ; + . + + a ; + "June 1906"; + "1906-06-30"^^xsd:date; + "1906-06-01"^^xsd:date; + 19684; + ""; + ; + ; + "Husband" . + + a ; + "1923-04-26"^^xsd:date; + "1923-04-26"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 19689; + "work"; + ; + ; + ; + . + + a ; + "1923-08-05"^^xsd:date; + "1923-08-05"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 19694; + "work"; + ; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 19699; + "work"; + ; + ; + ; + . + + a ; + 197; + ""; + ; + ; + "Husband" . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 19704; + "work"; + "Buenos Aires and Paris"; + ; + ; + ; + . + + a ; + "1937-10-22"^^xsd:date; + "1937-10-22"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + 19709; + "work"; + ; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + 19714; + "work"; + ; + ; + . + + a ; + "1937-11-25"^^xsd:date; + "1937-11-25"^^xsd:date; + 19719; + "work"; + ; + ; + . + + a ; + "1935-06-24"^^xsd:date; + "1935-06-24"^^xsd:date; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 19724; + "work"; + "Buenos Aires and Paris"; + ; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19729; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19734; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + 19739; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + 19744; + "work"; + ; + ; + . + + a ; + "1942-05-03"^^xsd:date; + "1942-05-03"^^xsd:date; + 19749; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 19754; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 19758; + "work"; + ; + ; + . + + a ; + "1952-07-26"^^xsd:date; + "1952-07-26"^^xsd:date; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 19761; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + 19764; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 19769; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 19774; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + 19779; + "work"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19784; + "work"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19789; + "work"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19794; + "work"; + ; + ; + . + + a ; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 19799; + "work"; + ; + ; + . + + a ; + 19804; + ""; + ; + ; + "Father" . + + a ; + 19809; + "work"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "26th September 1872"; + "1872-09-26"^^xsd:date; + "1872-09-26"^^xsd:date; + 19814; + ""; + ; + ; + "Husband" . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "-"; + 19819; + "work"; + ; + . + + a ; + "-"; + "-"; + 19824; + ""; + ; + ; + "Daughter" . + + a ; + 19829; + "work"; + ; + . + + a ; + "-"; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 19834; + "work"; + ; + . + + a ; + 19839; + "work"; + ; + . + + a ; + "-"; + "31st May 1862"; + "1862-05-31"^^xsd:date; + "1862-05-31"^^xsd:date; + 19844; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 19849; + ; + ; + ; + . + + a ; + 19854; + "work"; + ; + ; + . + + a ; + 19859; + "work"; + ; + ; + . + + a ; + "1896-01-01"; + 19864; + "work"; + ; + ; + . + + a ; + 19869; + ; + ; + . + + a ; + "1860-12-19"^^xsd:date; + "1860-12-19"^^xsd:date; + 19874; + ""; + ; + ; + ; + . + + a ; + "1887-01-01"; + 19879; + "work"; + ; + ; + . + + a ; + "1887-01-01"; + 19884; + "work"; + ; + ; + . + + a ; + "1889-01-01"; + 19889; + "work"; + ; + ; + . + + a ; + 19894; + ""; + ; + ; + ; + "Wife" . + + a ; + "1889-08-01"; + 19899; + "work"; + ; + ; + ; + . + + a ; + "1895-01-01"; + 19904; + "work"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 19924; + "work"; + ; + ; + ; + . + + a ; + "1865-03-18"^^xsd:date; + "1865-03-18"^^xsd:date; + "1837-06-16"^^xsd:date; + "1837-06-16"^^xsd:date; + 19929; + ""; + ; + ; + ; + "Father" . + + a ; + "1848-07-01"^^xsd:date; + "1848-07-01"^^xsd:date; + "1837-06-16"^^xsd:date; + "1837-06-16"^^xsd:date; + 19934; + ""; + ; + ; + ; + "Mother" . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 19939; + ""; + ; + ; + ; + "Wife" . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + 19943; + ""; + ; + ; + ; + "Brother" . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 19944; + ""; + ; + ; + ; + "Brother" . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + 19949; + ""; + ; + ; + ; + "Sister" . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 19954; + ""; + ; + ; + ; + "Sister" . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + 19959; + ""; + ; + ; + ; + "Sister" . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + 19964; + ""; + "Barr and Buenos Aires"; + ; + ; + ; + "Sister" . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + 19969; + ""; + ; + ; + ; + "Other" . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + 19974; + ""; + ; + ; + ; + "Niece" . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + 19979; + "work"; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 19984; + "work"; + ; + ; + . + + a ; + 19989; + "work"; + ; + ; + . + + a ; + 19994; + "other"; + ; + ; + . + + a ; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 19998; + ""; + "Theatre and Cinema Industry"; + ; + ; + ; + "Wife" . + + a ; + 2; + ""; + ""; + ""; + ; + ; + . + + a ; + 20; + ""; + "husband"; + ; + ; + "Wife" . + + a ; + 20001; + ""; + ; + ; + ; + "Son" . + + a ; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "1947"; + "1941-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 20004; + ""; + ; + ; + ; + ; + "Other" . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1927-10-26"^^xsd:date; + "1927-10-26"^^xsd:date; + 20009; + "work"; + ; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 20014; + "teacher"; + ; + ; + . + + a ; + "1959-08-28"^^xsd:date; + "1959-08-28"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 20019; + "work"; + ; + ; + . + + a ; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + 20024; + "work"; + ; + ; + . + + a ; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 20029; + "work"; + ; + ; + . + + a ; + 20034; + "work"; + ; + ; + ; + . + + a ; + 20039; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20044; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20049; + "work"; + ; + ; + ; + . + + a ; + 20054; + "work"; + "Hollywood and Buenos Aires"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20059; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20064; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20069; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20074; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20079; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20084; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 20089; + "work"; + ; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 20094; + "work"; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20099; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20104; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20109; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20114; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20119; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20124; + "work"; + ; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + 20129; + "work"; + ; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 20134; + "work"; + ; + ; + . + + a ; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 20139; + "work"; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + 20144; + "work"; + ; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + 20149; + "work"; + ; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + 20154; + "work"; + ; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + 20159; + "work"; + ; + ; + . + + a ; + "1903"; + 20164; + ; + ; + . + + a ; + "1903"; + 20169; + ; + ; + . + + a ; + 20174; + ; + ; + . + + a ; + "1903"; + 20179; + ; + ; + . + + a ; + "1878"; + 20184; + ; + ; + . + + a ; + 20189; + ; + . + + a ; + 20194; + . + + a ; + 20199; + . + + a ; + 20204; + . + + a ; + 20209; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 20214; + "work"; + ; + ; + . + + a ; + 20219; + "work"; + ; + ; + ; + . + + a ; + 20224; + "work"; + ; + ; + ; + . + + a ; + 20229; + "work"; + ; + ; + ; + . + + a ; + "1929-05-30"^^xsd:date; + "1929-05-30"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + 20234; + "work"; + ; + ; + ; + . + + a ; + "1958-05-23"^^xsd:date; + "1958-05-23"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + 20239; + ; + ; + . + + a ; + "1958-05-23"^^xsd:date; + "1958-05-23"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + 20243; + ; + ; + . + + a ; + 20244; + ""; + ; + ; + "Aunt" . + + a ; + 20249; + ""; + ; + ; + "Aunt" . + + a ; + 20254; + ""; + ; + ; + "Aunt" . + + a ; + 20259; + ""; + ; + ; + "Father" . + + a ; + 20264; + ""; + ; + ; + "Grandmother" . + + a ; + 20269; + "work"; + ; + . + + a ; + 20274; + "work"; + ; + . + + a ; + 20279; + "work"; + ; + . + + a ; + 20284; + "work"; + ; + . + + a ; + 20294; + . + + a ; + 20299; + . + + a ; + 203; + ""; + "Blanche Marchesi is the daugther of Mathilde and Salvatore Marchesi"; + ; + ; + "Daughter" . + + a ; + 20304; + . + + a ; + 20309; + "work"; + ; + . + + a ; + 20314; + . + + a ; + 20319; + . + + a ; + 20324; + . + + a ; + 20329; + . + + a ; + 20334; + . + + a ; + 20339; + . + + a ; + 20344; + . + + a ; + 20349; + . + + a ; + 20354; + . + + a ; + 20359; + . + + a ; + 20364; + . + + a ; + 20369; + . + + a ; + 20374; + . + + a ; + 20378; + . + + a ; + 20379; + . + + a ; + 20384; + . + + a ; + 20389; + . + + a ; + 20393; + . + + a ; + 20398; + . + + a ; + 20403; + . + + a ; + 20404; + "work"; + ; + . + + a ; + 20406; + "other"; + ; + . + + a ; + 20409; + "other"; + ; + . + + a ; + 20414; + "other"; + ; + . + + a ; + 20419; + . + + a ; + 20424; + . + + a ; + 20429; + . + + a ; + 20434; + . + + a ; + 20439; + . + + a ; + 20444; + . + + a ; + "-"; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 20449; + "teacher"; + ; + ; + . + + a ; + "-"; + "-"; + 20454; + "teacher"; + ; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 20464; + "work"; + ; + ; + . + + a ; + "-"; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 20469; + "friendship"; + ; + ; + . + + a ; + "-"; + "between May und October 1866"; + "1866-10-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 20474; + "work"; + ; + ; + ; + . + + a ; + "-"; + "between May und October 1866"; + "1866-10-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 20479; + "work"; + ; + ; + . + + a ; + "-"; + "between May und October 1866"; + "1866-10-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 20484; + "friendship"; + ; + ; + . + + a ; + "-"; + "between May und October 1866"; + "1866-10-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 20489; + "work"; + ; + ; + . + + a ; + "-"; + "between May und October 1866"; + "1866-10-31"^^xsd:date; + "1866-05-01"^^xsd:date; + 20490; + "friendship"; + ; + ; + . + + a ; + 20494; + ""; + ; + ; + "Father" . + + a ; + 20499; + "work"; + "Founded together the „Sociedade de Concertos Clássicos“"; + ; + ; + . + + a ; + 20504; + ""; + ; + ; + "Brother" . + + a ; + 20509; + ""; + ; + ; + . + + a ; + 20514; + ""; + ; + ; + "Brother" . + + a ; + "1869"; + 20519; + "work"; + "Founded together the publisher"; + ; + ; + ; + . + + a ; + 20524; + "work"; + ; + ; + ; + . + + a ; + 20529; + ""; + ; + ; + . + + a ; + "1851"; + 20534; + "friendship"; + ; + ; + . + + a ; + "1853"; + 20539; + ""; + ; + ; + ; + "Other" . + + a ; + "1853"; + 20544; + "teacher"; + ; + ; + . + + a ; + "1854"; + 20549; + "friendship"; + ; + ; + . + + a ; + 20554; + "friendship"; + ; + . + + a ; + "1856"; + 20559; + "teacher"; + ; + ; + . + + a ; + 20564; + "friendship"; + ; + ; + . + + a ; + 20569; + "friendship"; + ; + ; + . + + a ; + "1865"; + 20574; + "friendship"; + ; + ; + . + + a ; + "between May and October 1866"; + 20579; + "work"; + ; + ; + . + + a ; + 20584; + "friendship"; + ; + ; + . + + a ; + "1900"; + "25th February 1876"; + 20589; + ""; + ; + ; + ; + "Wife" . + + a ; + "25th February 1879"; + 20594; + "work"; + ; + ; + ; + . + + a ; + "25th February 1879"; + 20599; + "work"; + ; + ; + ; + . + + a ; + 206; + ""; + "Blanche Marchesi is the daugther of Mathilde and Salvatore Marchesi"; + ; + ; + "Daughter" . + + a ; + "25th February 1879"; + 20603; + "work"; + ; + ; + ; + . + + a ; + "1885"; + 20604; + "work"; + ; + ; + ; + . + + a ; + "1890"; + 20609; + "work"; + "Partner at the Music Store"; + ; + ; + . + + a ; + "1896"; + 20614; + "friendship"; + ; + ; + ; + . + + a ; + "1896"; + 20619; + "friendship"; + ; + ; + ; + . + + a ; + "1903"; + 20624; + ""; + ; + ; + "Wife" . + + a ; + 20629; + . + + a ; + 20634; + . + + a ; + "-"; + "-"; + 20644; + ""; + ; + ; + ; + . + + a ; + "-"; + "between 1874 and 1875"; + "1875-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + 20649; + "friendship"; + ; + ; + . + + a ; + "-"; + "1882 (probably)"; + "1982-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 20654; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 20659; + "friendship"; + ; + ; + ; + . + + a ; + "-"; + "1884 (probably)"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 20664; + "work"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 20669; + "teacher"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 20674; + "teacher"; + ; + ; + ; + . + + a ; + "-"; + "Early 1904"; + "1904-05-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 20679; + "friendship"; + ; + ; + . + + a ; + "-"; + "May 1908"; + "1908-05-31"^^xsd:date; + "1908-05-01"^^xsd:date; + 20680; + "friendship"; + ; + ; + . + + a ; + "-"; + "May 1908"; + "1908-05-31"^^xsd:date; + "1908-05-01"^^xsd:date; + 20683; + "friendship"; + ; + ; + . + + a ; + "25th January 1913"; + "1913-01-25"^^xsd:date; + "1913-01-25"^^xsd:date; + "4th November 1912"; + "1912-11-04"^^xsd:date; + "1912-11-04"^^xsd:date; + 20684; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 20689; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 20694; + ""; + ; + ; + ; + . + + a ; + "-"; + "Sommer 1885"; + "1885-09-23"^^xsd:date; + "1885-06-24"^^xsd:date; + 20699; + "work"; + ; + ; + . + + a ; + 207; + ""; + "1883"; + ; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20704; + "Théâtre Arcadia"; + ; + ; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 20709; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Between 1903 and 1904"; + "1904-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 20714; + ""; + ; + ; + . + + a ; + "-"; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 20719; + ""; + ; + ; + ; + "Other" . + + a ; + "-"; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 20724; + "friendship"; + ; + ; + . + + a ; + "-"; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 20729; + ; + . + + a ; + "-"; + "-"; + 20734; + ; + . + + a ; + "-"; + "-"; + 20739; + ; + . + + a ; + "-"; + "-"; + 20742; + ; + . + + a ; + "-"; + "-"; + 20746; + ; + . + + a ; + "-"; + "-"; + 20750; + ; + . + + a ; + "-"; + "-"; + 20754; + ; + . + + a ; + "-"; + "-"; + 20758; + ; + . + + a ; + "-"; + "-"; + 20762; + ; + . + + a ; + "-"; + "-"; + 20766; + ; + . + + a ; + "-"; + "-"; + 20770; + ; + . + + a ; + "-"; + "-"; + 20774; + ; + . + + a ; + "-"; + "-"; + 20778; + ; + . + + a ; + "-"; + "Between 1883 and 1890"; + "1890-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 20782; + ""; + ; + . + + a ; + "-"; + "-"; + 20786; + ; + . + + a ; + "-"; + "-"; + 20787; + ; + . + + a ; + "-"; + "-"; + 20788; + ; + . + + a ; + "-"; + "-"; + 20790; + ; + . + + a ; + "-"; + "-"; + 20794; + ; + . + + a ; + "-"; + "-"; + 20798; + ; + . + + a ; + "-"; + "-"; + 20802; + ; + . + + a ; + "-"; + "-"; + 20806; + ; + . + + a ; + "-"; + "Sommer 1885"; + "1885-09-23"^^xsd:date; + "1885-06-24"^^xsd:date; + 20810; + "work"; + ; + ; + . + + a ; + "-"; + "Sommer 1885"; + "1885-09-23"^^xsd:date; + "1885-06-24"^^xsd:date; + 20812; + "work"; + ; + ; + . + + a ; + "-"; + "Sommer 1885"; + "1885-09-23"^^xsd:date; + "1885-06-24"^^xsd:date; + 20814; + "work"; + ; + ; + . + + a ; + "-"; + "Sommer 1885"; + "1885-09-23"^^xsd:date; + "1885-06-24"^^xsd:date; + 20818; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 20822; + ; + . + + a ; + "-"; + "-"; + 20826; + ; + . + + a ; + "-"; + "-"; + 20830; + ; + . + + a ; + "-"; + "-"; + 20834; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 20838; + "work"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 20842; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 20846; + "friendship"; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20850; + ; + ; + . + + a ; + "-"; + "-"; + 20854; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20858; + ; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20862; + ; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20866; + ; + ; + . + + a ; + "-"; + "Summer 1891"; + "1891-09-23"^^xsd:date; + "1891-06-24"^^xsd:date; + 20870; + ""; + ; + ; + . + + a ; + "-"; + "-"; + 20874; + "work"; + "(Mikhailovsky Theatre)"; + ; + ; + . + + a ; + "-"; + "-"; + 20878; + "work"; + "(Mikhailovsky Theatre)"; + ; + ; + . + + a ; + "-"; + "-"; + 20882; + ""; + ; + ; + ; + "Other" . + + a ; + "-"; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 20884; + "friendship"; + ; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 20888; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 20890; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 20894; + "work"; + ; + ; + . + + a ; + "-"; + "Between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 20896; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 20900; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 20902; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 20904; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 20906; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 20910; + ; + . + + a ; + "-"; + "between 1904 and 1906"; + "1906-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + 20914; + "work"; + ; + ; + . + + a ; + "-"; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 20918; + "work"; + "(London’s Steinway Hall)"; + ; + ; + . + + a ; + "-"; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 20922; + "work"; + "Tour"; + ; + ; + . + + a ; + 20926; + "Louis Marie Paulin Benoist Alphonse Révial"; + . + + a ; + "-"; + "-"; + 20930; + "work"; + "-"; + ; + . + + a ; + "-"; + "-"; + 20934; + "work"; + "-"; + ; + . + + a ; + "-"; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 20938; + "work"; + "-"; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 20942; + "work"; + "-"; + ; + ; + ; + . + + a ; + "1897"; + "1887-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 20950; + "work"; + "editor and probably co-writer of her autobiography"; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + 20954; + ""; + "-"; + ; + ; + "Husband" . + + a ; + "-"; + "-"; + 20958; + ""; + "-"; + ; + ; + "Sister" . + + a ; + "-"; + "-"; + 20962; + ""; + "-"; + ; + ; + "Son" . + + a ; + "-"; + "-"; + 20966; + ""; + "-"; + ; + ; + "Son" . + + a ; + "-"; + "-"; + 20970; + ""; + "-"; + ; + ; + "Son" . + + a ; + "-"; + "October 1827"; + "1827-10-31"^^xsd:date; + "1827-10-01"^^xsd:date; + 20974; + "work"; + "-"; + ; + ; + . + + a ; + "-"; + "October 1827"; + "1827-10-31"^^xsd:date; + "1827-10-01"^^xsd:date; + 20978; + "work"; + "-"; + ; + ; + . + + a ; + "-"; + "1822"; + "1822-12-31"^^xsd:date; + "1822-01-01"^^xsd:date; + 20982; + "friendship"; + "-"; + ; + ; + . + + a ; + "-"; + "-"; + 20986; + ""; + "-"; + ; + ; + "Other" . + + a ; + "-"; + "-"; + 20990; + "friendship"; + "-"; + ; + . + + a ; + "-"; + "-"; + 20994; + "friendship"; + "-"; + ; + . + + a ; + "-"; + "-"; + 20998; + "friendship"; + "-"; + ; + . + + a ; + 21; + ""; + "father"; + ; + ; + "Father" . + + a ; + 210; + ""; + "1883"; + ; + ; + . + + a ; + "-"; + "-"; + 21002; + "friendship"; + "-"; + ; + . + + a ; + "-"; + "-"; + 21006; + "friendship"; + "-"; + ; + . + + a ; + "-"; + "-"; + 21010; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21014; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21018; + "friendship"; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 21022; + "work"; + ; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 21026; + "work"; + ; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 21030; + "work"; + ; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 21034; + "work"; + ; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 21038; + "work"; + ; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 21042; + "friendship"; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 21046; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21050; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21054; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21058; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21062; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21066; + ""; + ; + . + + a ; + "-"; + "-"; + 21070; + ""; + ; + . + + a ; + "-"; + "Early 1830s"; + "1835-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + 21074; + "work"; + "Ludlow’s Cincinnati Theatre"; + ; + ; + . + + a ; + "-"; + "-"; + 21078; + "work"; + ; + . + + a ; + "-"; + "-"; + 21082; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21086; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21090; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21094; + "work"; + ; + ; + . + + a ; + "-"; + "-"; + 21098; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21102; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21106; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21110; + "work"; + ; + ; + ; + . + + a ; + "-"; + "Winter 1839"; + "1840-03-23"^^xsd:date; + "1839-12-24"^^xsd:date; + 21114; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 21118; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 21122; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21126; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + 21130; + "friendship"; + ; + ; + . + + a ; + "-"; + "-"; + 21134; + "friendship"; + ; + . + + a ; + "-"; + "Late 1849"; + "1849-12-31"^^xsd:date; + "1849-09-01"^^xsd:date; + 21138; + "work"; + ; + . + + a ; + "-"; + "May 1849"; + "1849-05-31"^^xsd:date; + "1849-05-01"^^xsd:date; + 21142; + "work"; + ; + ; + ; + . + + a ; + "-"; + "May 1849"; + "1849-05-31"^^xsd:date; + "1849-05-01"^^xsd:date; + 21146; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21150; + "work"; + ; + . + + a ; + "-"; + "-"; + 21154; + "work"; + ; + . + + a ; + "-"; + "-"; + 21158; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21162; + "friendship"; + ; + . + + a ; + "-"; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + 21166; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21170; + "friendship"; + ; + . + + a ; + "-"; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + 21174; + "work"; + ; + ; + ; + . + + a ; + "-"; + "-"; + 21178; + "work"; + ; + ; + . + + a ; + "-"; + "Late 1849"; + "1849-12-31"^^xsd:date; + "1849-09-01"^^xsd:date; + 21182; + "work"; + ; + ; + . + + a ; + "-"; + "Late 1849"; + "1849-12-31"^^xsd:date; + "1849-09-01"^^xsd:date; + 21186; + "work"; + ; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 21190; + "work"; + ; + . + + a ; + "-"; + "-"; + 21194; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21198; + "friendship"; + ; + . + + a ; + 212; + ""; + "1881"; + ; + ; + . + + a ; + "-"; + "-"; + 21202; + "work"; + ; + . + + a ; + "-"; + "-"; + 21206; + "work"; + ; + . + + a ; + "-"; + "-"; + 21210; + "work"; + ; + . + + a ; + "-"; + "-"; + 21214; + "work"; + ; + . + + a ; + "-"; + "-"; + 21218; + "work"; + ; + . + + a ; + "-"; + "-"; + 21222; + "work"; + ; + . + + a ; + "-"; + "-"; + 21226; + "work"; + ; + . + + a ; + "-"; + "June 1833"; + "1833-06-30"^^xsd:date; + "1833-06-01"^^xsd:date; + 21230; + "work"; + ; + . + + a ; + "-"; + "June 1833"; + "1833-06-30"^^xsd:date; + "1833-06-01"^^xsd:date; + 21234; + "work"; + ; + . + + a ; + "-"; + "-"; + 21238; + "work"; + ; + . + + a ; + "-"; + "-"; + 21242; + "work"; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + 21246; + "work"; + ; + . + + a ; + "1837"; + "1837-01-01"^^xsd:date; + "1837-01-01"^^xsd:date; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + 21250; + "work"; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + 21254; + "work"; + ; + . + + a ; + "-"; + "-"; + 21258; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21262; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21266; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21270; + "friendship"; + ; + . + + a ; + "-"; + "-"; + 21274; + "friendship"; + ; + . + + a ; + 21290; + ""; + ; + . + + a ; + 21294; + "teacher"; + ; + . + + a ; + 21298; + "teacher"; + ; + ; + . + + a ; + 213; + ""; + ; + . + + a ; + 21302; + "teacher"; + ; + . + + a ; + 21306; + . + + a ; + 21310; + . + + a ; + 21314; + . + + a ; + 21318; + . + + a ; + 21322; + . + + a ; + 21326; + . + + a ; + 21330; + . + + a ; + 21334; + . + + a ; + 21338; + "work"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 21342; + "work"; + ; + ; + ; + . + + a ; + 21346; + "friendship"; + ; + . + + a ; + "28th February 1928"; + "1928-02-28"^^xsd:date; + "1928-02-28"^^xsd:date; + 21354; + "work"; + ; + ; + . + + a ; + 21358; + "work"; + ; + . + + a ; + 21362; + "work"; + ; + . + + a ; + 21366; + "work"; + ; + . + + a ; + 21368; + "work"; + ; + . + + a ; + 21369; + "work"; + ; + . + + a ; + 21370; + "teacher"; + ; + . + + a ; + 21374; + . + + a ; + 21378; + . + + a ; + 21382; + . + + a ; + 21386; + . + + a ; + 21390; + . + + a ; + 21394; + . + + a ; + 21398; + . + + a ; + 21402; + . + + a ; + 21406; + . + + a ; + 21410; + . + + a ; + 21414; + ""; + ; + ; + ; + "Father" . + + a ; + 21418; + ""; + ; + ; + "Mother" . + + a ; + 21422; + ""; + ; + ; + "Father" . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 21426; + "work"; + ; + ; + ; + . + + a ; + "April 1927"; + "1927-04-30"^^xsd:date; + "1927-04-01"^^xsd:date; + 21430; + "work"; + ; + ; + ; + . + + a ; + "September 1929"; + "1929-09-30"^^xsd:date; + "1929-09-01"^^xsd:date; + 21438; + "work"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 21442; + "work"; + ; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 21446; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 21450; + "work"; + ; + . + + a ; + 21454; + "work"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 21458; + "work"; + ; + ; + . + + a ; + 21462; + "work"; + ; + ; + ; + . + + a ; + "August 1914"; + "1914-08-31"^^xsd:date; + "1914-08-01"^^xsd:date; + 21466; + "work"; + ; + ; + ; + . + + a ; + "April 1927"; + "1927-04-30"^^xsd:date; + "1927-04-01"^^xsd:date; + 21470; + "work"; + ; + ; + ; + . + + a ; + "April 1927"; + "1927-04-30"^^xsd:date; + "1927-04-01"^^xsd:date; + 21474; + "work"; + ; + ; + ; + . + + a ; + "April 1927"; + "1927-04-30"^^xsd:date; + "1927-04-01"^^xsd:date; + 21478; + "work"; + ; + ; + ; + . + + a ; + "Late 1923"; + "1923-12-31"^^xsd:date; + "1923-09-01"^^xsd:date; + 21482; + "friendship"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 21486; + "friendship"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 21490; + "friendship"; + ; + ; + . + + a ; + "1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 21494; + ""; + ; + ; + ; + . + + a ; + 21498; + . + + a ; + 215; + ""; + ; + . + + a ; + 21501; + . + + a ; + 21502; + ""; + ; + ; + ; + "Mother" . + + a ; + "1865-1869"; + "1869-02-01"^^xsd:date; + "1865-06-22"^^xsd:date; + "1865"; + "1865-06-22"^^xsd:date; + "1865-06-22"^^xsd:date; + 21506; + ""; + ; + ; + ; + "Wife" . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 21510; + ""; + ; + ; + ; + "Wife" . + + a ; + "1858-1861"; + "1861-11-11"^^xsd:date; + "1858-01-01"^^xsd:date; + "1858-1861"; + "1861-11-11"^^xsd:date; + "1858-01-01"^^xsd:date; + 21514; + "work"; + "Germany, Prussia and Austria"; + ; + ; + . + + a ; + "1863-1867"; + "1867-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1863-1867"; + "1867-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 21515; + "work"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 21517; + "work"; + ; + . + + a ; + 21518; + "friendship"; + ; + ; + . + + a ; + "Sept.-Dec. 1863"; + "1863-12-31"^^xsd:date; + "1863-09-01"^^xsd:date; + "Sept.-Dec. 1863"; + "1863-12-31"^^xsd:date; + "1863-09-01"^^xsd:date; + 21520; + "work"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 21524; + "work"; + ; + ; + . + + a ; + 21525; + "other"; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + 21526; + "other"; + ; + ; + . + + a ; + 21534; + "other"; + ; + . + + a ; + 21538; + "other"; + ; + . + + a ; + 21542; + "other"; + ; + . + + a ; + 21546; + "other"; + ; + . + + a ; + 21550; + "teacher"; + ; + ; + . + + a ; + 21554; + ""; + ; + ; + ; + "Son" . + + a ; + 21558; + "work"; + ; + ; + . + + a ; + 21562; + "friendship"; + "San Francisco, Sydney"; + ; + ; + . + + a ; + 21565; + "work"; + ; + ; + . + + a ; + 21566; + "work"; + ; + ; + . + + a ; + 21570; + "work"; + ; + ; + . + + a ; + 21574; + "work"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + 21578; + "work"; + "San Francisco, Cleveland"; + ; + ; + . + + a ; + 21582; + "work"; + ; + ; + . + + a ; + 21586; + "work"; + ; + ; + . + + a ; + 21590; + "work"; + ; + ; + . + + a ; + 21594; + "work"; + ; + ; + . + + a ; + "1870s"; + "1879-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21598; + "friendship"; + ; + ; + . + + a ; + 21602; + "friendship"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 21606; + "other"; + ; + ; + . + + a ; + 21610; + "friendship"; + ; + ; + . + + a ; + 21614; + "work"; + ; + ; + . + + a ; + 21618; + "work"; + ; + ; + . + + a ; + 21622; + "work"; + ; + ; + . + + a ; + 21626; + "work"; + ; + ; + . + + a ; + 21630; + "work"; + ; + ; + . + + a ; + "Mar.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-03-01"^^xsd:date; + "Mar.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-03-01"^^xsd:date; + 21634; + "work"; + ; + ; + . + + a ; + "Mar.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-03-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21638; + ""; + ; + ; + . + + a ; + "Mar.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-03-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21642; + ""; + ; + ; + . + + a ; + "Mar.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-03-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21646; + ""; + ; + ; + . + + a ; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21650; + "work"; + ; + ; + . + + a ; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21654; + "work"; + ; + ; + . + + a ; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr.-Sept. 1881"; + "1881-09-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21658; + "friendship"; + ; + ; + . + + a ; + 21662; + "work"; + ; + ; + . + + a ; + 21665; + "friendship"; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21669; + "friendship"; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21671; + "friendship"; + ; + ; + . + + a ; + 21674; + "work"; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 21678; + "work"; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + 21682; + ; + ; + . + + a ; + 21686; + ""; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21690; + "friendship"; + "Auckland, Melbourne"; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21694; + "friendship"; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21698; + "friendship"; + ; + ; + . + + a ; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "Apr-Jun.1881"; + "1881-06-30"^^xsd:date; + "1881-04-01"^^xsd:date; + 21702; + "friendship"; + ; + ; + . + + a ; + "1870-Nov. 1883"; + "1883-11-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21706; + "friendship"; + ; + ; + . + + a ; + "1870-Nov. 1883"; + "1883-11-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21710; + "other"; + ; + ; + . + + a ; + "1870-Nov. 1883"; + "1883-11-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 21714; + "friendship"; + ; + ; + . + + a ; + "1870-1883"; + "1883-11-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "1881"; + "1881-10-05"^^xsd:date; + "1881-10-05"^^xsd:date; + 21718; + "other"; + ; + ; + . + + a ; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Dec. 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 21722; + "friendship"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-11-05"^^xsd:date; + "Dec. 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 21726; + "other"; + "Adelaide, Bombay"; + ; + ; + . + + a ; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Dec.1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 21730; + "other"; + ; + ; + . + + a ; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Dec.1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 21734; + "other"; + ; + ; + . + + a ; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + 21738; + "friendship"; + ; + ; + . + + a ; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + 21742; + "friendship"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-11-05"^^xsd:date; + "Nov. 1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + 21746; + "other"; + "Adelaide, Ceylon, Madras"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21750; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21754; + "other"; + "London, Calcutta"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21758; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21762; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21766; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21770; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21774; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21778; + "other"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21782; + "work"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21786; + "work"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21790; + "friendship"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-12-01"^^xsd:date; + 21794; + "friendship"; + ; + ; + . + + a ; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-11-01"^^xsd:date; + "1881-1883"; + "1883-02-28"^^xsd:date; + "1881-11-01"^^xsd:date; + 21798; + "friendship"; + ; + ; + . + + a ; + 218; + ""; + "sisters"; + ; + ; + "Sister" . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1884"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21802; + "friendship"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21806; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21810; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21814; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21818; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21822; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21826; + "other"; + ; + ; + . + + a ; + "May 1882"; + "1882-05-31"^^xsd:date; + "1882-05-01"^^xsd:date; + "Apr.1882"; + "1882-04-30"^^xsd:date; + "1882-04-01"^^xsd:date; + 21830; + "other"; + ; + ; + . + + a ; + 21834; + "friendship"; + ; + . + + a ; + 21838; + "friendship"; + ; + . + + a ; + 21842; + "other"; + ; + ; + . + + a ; + 21846; + "other"; + ; + ; + . + + a ; + 21850; + "other"; + ; + ; + . + + a ; + 21854; + "friendship"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 21858; + "work"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 21862; + "work"; + ; + ; + . + + a ; + 21866; + "work"; + ; + . + + a ; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + 21870; + "other"; + ; + ; + . + + a ; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + 21874; + "other"; + ; + ; + . + + a ; + "Jun.-Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-06-01"^^xsd:date; + "Jun.-Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-06-01"^^xsd:date; + 21878; + "other"; + ; + ; + . + + a ; + 21882; + "friendship"; + ; + ; + . + + a ; + 21886; + "other"; + ; + ; + . + + a ; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + 21890; + "other"; + ; + ; + . + + a ; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + 21894; + "other"; + ; + ; + . + + a ; + "1882-1883"; + "1883-03-15"^^xsd:date; + "1882-07-01"^^xsd:date; + "Jul.1882"; + "1882-07-31"^^xsd:date; + "1882-07-01"^^xsd:date; + 21898; + "other"; + ; + ; + . + + a ; + 219; + ""; + ; + ; + "Husband" . + + a ; + "1882-1883"; + "1883-03-15"^^xsd:date; + "1882-07-01"^^xsd:date; + "1882"; + "1882-08-07"^^xsd:date; + "1882-08-07"^^xsd:date; + 21902; + "work"; + ; + ; + . + + a ; + "1881-1882"; + "1882-12-31"^^xsd:date; + "1881-11-05"^^xsd:date; + "1881-1882"; + "1882-12-31"^^xsd:date; + "1881-11-05"^^xsd:date; + 21906; + "friendship"; + ; + ; + . + + a ; + "1881-1882"; + "1882-12-31"^^xsd:date; + "1881-11-05"^^xsd:date; + "Aug.1882"; + "1882-08-31"^^xsd:date; + "1882-08-01"^^xsd:date; + 21910; + "other"; + ; + ; + . + + a ; + "1870-1883"; + "1883-11-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + 21914; + "friendship"; + ; + ; + . + + a ; + "1870-1881"; + "1881-11-30"^^xsd:date; + "1870-12-01"^^xsd:date; + "Dec. 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + 21918; + "friendship"; + ; + ; + . + + a ; + "Mar.1883"; + "1883-03-31"^^xsd:date; + "1883-03-01"^^xsd:date; + "Mar.1883"; + "1883-03-31"^^xsd:date; + "1883-03-01"^^xsd:date; + 21922; + "friendship"; + ; + ; + . + + a ; + "Jul.-Oct. 1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + "Jul.-Oct. 1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + 21926; + "other"; + ; + ; + . + + a ; + "Jul.-Oct. 1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + "Jul.-Oct. 1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + 21930; + "other"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 21934; + "other"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 21938; + "other"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 21942; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21946; + "friendship"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21950; + "friendship"; + ; + ; + . + + a ; + "Dec.1883-Jan.1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 21954; + "friendship"; + ; + ; + . + + a ; + "Dec.1883-Jan.1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 21958; + "other"; + ; + ; + . + + a ; + "Dec.1883-Jan.1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 21962; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21966; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21970; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21974; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21978; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21982; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21986; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21990; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21994; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 21998; + "other"; + ; + ; + . + + a ; + "1869-07-25"; + 22; + ""; + "father"; + ; + ; + "Father" . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22002; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22006; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22010; + "other"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22014; + "other"; + ; + ; + . + + a ; + "Dec.1883-Jan.1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + 22018; + "friendship"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1882-1883"; + "1883-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 22022; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22026; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22030; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22034; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22038; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22042; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22046; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22050; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22054; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22058; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22062; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22066; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22070; + "work"; + ; + ; + . + + a ; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-1884"; + "1884-01-28"^^xsd:date; + "1883-12-23"^^xsd:date; + 22074; + "work"; + ; + ; + . + + a ; + "approx.1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1869"; + "1869-02-09"^^xsd:date; + "1869-02-09"^^xsd:date; + 22082; + ""; + ; + ; + ; + "Wife" . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1869"; + "1869-02-28"^^xsd:date; + "1869-02-01"^^xsd:date; + 22086; + "work"; + "London, other cities in United Kingdom; Australia; New Zealand and other places in the southern hemisphere, America"; + ; + ; + . + + a ; + 22094; + "other"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 22098; + "work"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 22102; + "work"; + ; + ; + ; + . + + a ; + "28th February 1928"; + "1928-02-28"^^xsd:date; + "1928-02-28"^^xsd:date; + 22103; + "work"; + ; + ; + ; + . + + a ; + "June 1928"; + "1928-06-30"^^xsd:date; + "1928-06-01"^^xsd:date; + 22105; + "work"; + "Regent Theatre (King’s Cross)"; + ; + ; + ; + . + + a ; + "26th December 1928"; + "1928-12-26"^^xsd:date; + "1928-12-26"^^xsd:date; + 22107; + "work"; + ; + ; + ; + . + + a ; + "Early 1930s"; + "1935-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 22110; + "work"; + "They worked together also at Gaumont British"; + ; + ; + ; + . + + a ; + 22114; + ""; + ; + ; + "Brother" . + + a ; + "February 1932"; + "1932-02-29"^^xsd:date; + "1932-02-01"^^xsd:date; + 22118; + "work"; + ; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 22122; + "work"; + ; + . + + a ; + "January 1936"; + "1936-01-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 22126; + "work"; + ; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 22130; + "work"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 22138; + "work"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 22142; + "work"; + ; + . + + a ; + "15th April 1929"; + "1929-04-15"^^xsd:date; + "1929-04-15"^^xsd:date; + 22146; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 22150; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 22154; + "work"; + ; + ; + ; + . + + a ; + "September 1931"; + "1931-09-30"^^xsd:date; + "1931-09-01"^^xsd:date; + 22155; + "work"; + ; + ; + ; + . + + a ; + "September 1931"; + "1931-09-30"^^xsd:date; + "1931-09-01"^^xsd:date; + 22158; + "work"; + ; + ; + ; + . + + a ; + "September 1931"; + "1931-09-30"^^xsd:date; + "1931-09-01"^^xsd:date; + 22162; + "work"; + ; + ; + ; + . + + a ; + "Early 1930s"; + "1935-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 22166; + "work"; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 22170; + "work"; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 22174; + "work"; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + 22178; + "work"; + ; + . + + a ; + 22182; + "work"; + ; + . + + a ; + 22186; + "friendship"; + ; + . + + a ; + 22190; + "friendship"; + ; + . + + a ; + 22198; + "work"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 222; + "work"; + "1901-1903"; + "Artur Bodanzky was the assistant of Gustav Mahler"; + ; + ; + ; + . + + a ; + 22202; + "work"; + ; + . + + a ; + 22206; + "work"; + ; + . + + a ; + 22210; + "friendship"; + ; + ; + . + + a ; + 22214; + "friendship"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 22218; + "work"; + ; + ; + . + + a ; + 22222; + "work"; + ; + ; + ; + . + + a ; + 22226; + "work"; + ; + ; + ; + . + + a ; + 22230; + "other"; + ; + . + + a ; + "Spring 1890"; + "1890-06-20"^^xsd:date; + "1890-03-21"^^xsd:date; + "1889"; + "1889-12-29"^^xsd:date; + "1889-09-23"^^xsd:date; + 22234; + "work"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 22238; + "work"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Approx.1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 22242; + ""; + ; + ; + ; + "Husband" . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Approx.1850-1852"; + "1852-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 22246; + "friendship"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 22250; + "work"; + ; + ; + . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "1868"; + "1868-09-12"^^xsd:date; + "1868-09-12"^^xsd:date; + 22254; + ""; + "Poland, U.S.A."; + ; + ; + ; + "Husband" . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "1861"; + "1861-01-27"^^xsd:date; + "1861-01-27"^^xsd:date; + 22258; + ""; + "Poland, U.S.A."; + ; + ; + ; + "Son" . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "1885"; + "1885-12-29"^^xsd:date; + "1885-12-29"^^xsd:date; + 22262; + ""; + ; + ; + ; + "Other" . + + a ; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22266; + ""; + ; + ; + ; + "Mother" . + + a ; + 22270; + ""; + ; + ; + ; + "Other" . + + a ; + "1870"; + "1870-06-15"^^xsd:date; + "1870-06-15"^^xsd:date; + "1803"; + "1803-09-20"^^xsd:date; + "1803-09-20"^^xsd:date; + 22271; + "other"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22273; + ""; + ; + ; + ; + "Father" . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22274; + "teacher"; + ; + ; + . + + a ; + "Spring 1865"; + "1865-06-20"^^xsd:date; + "1865-03-21"^^xsd:date; + "1862"; + "1862-04-10"^^xsd:date; + "1862-04-10"^^xsd:date; + 22275; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22278; + ""; + ; + ; + ; + "Brother" . + + a ; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22282; + ""; + ; + ; + ; + "Brother" . + + a ; + "1840"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + 22286; + ""; + ; + ; + ; + "Brother" . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 22290; + "friendship"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 22294; + "friendship"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 22297; + "friendship"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 22300; + "friendship"; + ; + ; + . + + a ; + 22302; + "friendship"; + ; + ; + . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + 22303; + ""; + ; + ; + "Nephew" . + + a ; + 22306; + "other"; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 22310; + "work"; + ; + ; + . + + a ; + "Oct. 1869"; + "1869-10-31"^^xsd:date; + "1869-10-01"^^xsd:date; + "Oct. 1865"; + "1865-10-31"^^xsd:date; + "1865-10-01"^^xsd:date; + 22313; + "work"; + ; + ; + ; + . + + a ; + "Oct. 1869"; + "1869-10-31"^^xsd:date; + "1869-10-01"^^xsd:date; + "Oct. 1865"; + "1865-10-31"^^xsd:date; + "1865-10-01"^^xsd:date; + 22315; + "work"; + ; + ; + ; + . + + a ; + "Oct. 1869"; + "1869-10-31"^^xsd:date; + "1869-10-01"^^xsd:date; + "Oct. 1865"; + "1865-10-31"^^xsd:date; + "1865-10-01"^^xsd:date; + 22319; + ""; + ; + ; + ; + . + + a ; + "1868-1876"; + "1876-07-31"^^xsd:date; + "1868-10-04"^^xsd:date; + "1868"; + "1868-10-04"^^xsd:date; + "1868-10-04"^^xsd:date; + 22322; + "other"; + ; + ; + ; + . + + a ; + "1868-1876"; + "1876-07-31"^^xsd:date; + "1868-10-04"^^xsd:date; + "1868"; + "1868-10-04"^^xsd:date; + "1868-10-04"^^xsd:date; + 22326; + "work"; + ; + ; + ; + . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 22330; + "other"; + ; + . + + a ; + 22334; + "other"; + ; + . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 22338; + "other"; + ; + . + + a ; + 22342; + "friendship"; + ; + . + + a ; + 22346; + "friendship"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 22350; + "work"; + ; + . + + a ; + 22354; + ""; + ; + . + + a ; + 22358; + "work"; + ; + . + + a ; + "1909"; + "1909-04-08"^^xsd:date; + 22362; + ""; + ; + . + + a ; + 22386; + "friendship"; + ; + . + + a ; + 22390; + "work"; + ; + ; + ; + . + + a ; + 22394; + "work"; + ; + . + + a ; + 22398; + "work"; + ; + . + + a ; + 22402; + "work"; + ; + ; + ; + . + + a ; + 22406; + "work"; + ; + ; + ; + . + + a ; + 22410; + "work"; + ; + ; + ; + . + + a ; + 22414; + ""; + "Bennett suspects he may be his real father"; + ; + ; + "Other" . + + a ; + 22418; + "work"; + ; + . + + a ; + 22422; + "work"; + ; + . + + a ; + 22426; + "work"; + ; + . + + a ; + 22430; + "work"; + ; + . + + a ; + 22434; + "work"; + ; + . + + a ; + 22438; + "work"; + ; + ; + ; + . + + a ; + 22442; + "work"; + ; + ; + . + + a ; + 22450; + "work"; + ; + . + + a ; + 22454; + "work"; + ; + ; + . + + a ; + 22458; + "work"; + ; + ; + . + + a ; + 22462; + "work"; + ; + ; + . + + a ; + 22466; + "work"; + ; + ; + . + + a ; + 22470; + "work"; + ; + ; + . + + a ; + 22474; + ""; + ; + ; + "Brother" . + + a ; + 22478; + ""; + ; + ; + "Mother" . + + a ; + 22482; + . + + a ; + 22483; + ""; + ; + ; + "Mother" . + + a ; + 22487; + ""; + ; + ; + "Brother" . + + a ; + 22490; + ""; + "Joseph Latayner"; + ; + "Husband" . + + a ; + 22494; + "work"; + ; + ; + ; + . + + a ; + 22498; + "work"; + ; + ; + . + + a ; + 225; + "family"; + ; + ; + "Brother" . + + a ; + 22502; + "work"; + ; + ; + . + + a ; + 22506; + "work"; + ; + ; + . + + a ; + 22510; + "work"; + ; + ; + . + + a ; + 22514; + "work"; + ; + ; + . + + a ; + 22518; + "work"; + ; + ; + . + + a ; + 22522; + "work"; + ; + ; + . + + a ; + 22526; + "work"; + ; + ; + . + + a ; + 22530; + "friendship"; + ; + ; + . + + a ; + 22534; + "work"; + ; + ; + ; + . + + a ; + 22538; + "work"; + ; + ; + ; + . + + a ; + 22542; + "friendship"; + ; + ; + . + + a ; + 22545; + "work"; + ; + ; + ; + . + + a ; + 22546; + "friendship"; + ; + ; + . + + a ; + 22550; + "friendship"; + ; + ; + . + + a ; + 22554; + "friendship"; + ; + ; + . + + a ; + 22558; + "friendship"; + ; + ; + . + + a ; + 22562; + "friendship"; + ; + ; + . + + a ; + 22566; + "friendship"; + ; + ; + . + + a ; + 22570; + "friendship"; + ; + ; + . + + a ; + 22574; + "friendship"; + ; + ; + . + + a ; + 22578; + "friendship"; + ; + ; + . + + a ; + 22582; + "friendship"; + ; + ; + . + + a ; + 22584; + "friendship"; + ; + ; + . + + a ; + 22587; + "friendship"; + ; + ; + . + + a ; + 22590; + "friendship"; + ; + ; + . + + a ; + 22594; + "friendship"; + ; + ; + . + + a ; + 22598; + "friendship"; + ; + ; + . + + a ; + 22602; + "friendship"; + ; + ; + . + + a ; + 22606; + "friendship"; + ; + . + + a ; + 22610; + "work"; + ; + . + + a ; + 22614; + "work"; + ; + . + + a ; + 22618; + "work"; + ; + . + + a ; + 22622; + "work"; + ; + . + + a ; + 22626; + "work"; + ; + . + + a ; + 22630; + "friendship"; + ; + . + + a ; + 22634; + "friendship"; + ; + . + + a ; + 22638; + "friendship"; + ; + . + + a ; + 22642; + ""; + ; + . + + a ; + 22646; + ""; + ; + . + + a ; + 22650; + ""; + ; + . + + a ; + 22654; + ""; + ; + . + + a ; + 22658; + ""; + ; + . + + a ; + 22662; + "friendship"; + ; + . + + a ; + 22666; + "friendship"; + ; + ; + . + + a ; + 22670; + "friendship"; + ; + ; + . + + a ; + 22674; + "work"; + ; + ; + . + + a ; + 22678; + "work"; + ; + . + + a ; + 22682; + "friendship"; + ; + . + + a ; + 22686; + "work"; + ; + ; + ; + . + + a ; + 22690; + "friendship"; + ; + . + + a ; + 22694; + "friendship"; + ; + . + + a ; + 22698; + "friendship"; + ; + . + + a ; + 22702; + "work"; + ; + ; + . + + a ; + 22706; + "work"; + ; + ; + . + + a ; + 22710; + "work"; + ; + ; + . + + a ; + 22714; + "work"; + ; + ; + . + + a ; + "between 1941 and 1942"; + "1942-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 22718; + "work"; + ; + ; + ; + . + + a ; + 22722; + "friendship"; + ; + ; + . + + a ; + 22726; + "work"; + ; + ; + . + + a ; + "between 1941 and 1942"; + "1942-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 22730; + "work"; + ; + ; + ; + . + + a ; + "between 1941 and 1942"; + "1942-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 22734; + "work"; + ; + ; + ; + . + + a ; + "between 1941 and 1942"; + "1942-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 22738; + "work"; + ; + ; + ; + . + + a ; + "between 1941 and 1942"; + "1942-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + 22742; + "work"; + ; + ; + ; + . + + a ; + "between 1942 and 1943"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 22743; + "work"; + ; + ; + . + + a ; + "between 1942 and 1943"; + "1943-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 22746; + "work"; + ; + ; + . + + a ; + "between 1942 and 1943"; + "1943-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 22750; + "work"; + ; + ; + . + + a ; + "between 1942 and 1943"; + "1943-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 22754; + "work"; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 22758; + "friendship"; + ; + . + + a ; + 22762; + "work"; + ; + . + + a ; + 22766; + "friendship"; + ; + . + + a ; + "1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 22770; + ""; + ; + ; + ; + . + + a ; + "1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 22771; + ""; + ; + ; + ; + . + + a ; + "June 1944"; + 22774; + "friendship"; + ; + ; + . + + a ; + "June 1944"; + 22778; + "work"; + ; + ; + ; + . + + a ; + "June 1944"; + 22782; + ""; + "Margareth divorced from Bennet to married Newmark"; + ; + ; + . + + a ; + "1944"; + "June 1944"; + 22786; + "friendship"; + ; + ; + . + + a ; + "1935"; + 22790; + "friendship"; + ; + ; + . + + a ; + "June 1937"; + 22794; + "friendship"; + ; + ; + . + + a ; + "1944"; + 22798; + "friendship"; + ; + ; + . + + a ; + 228; + ""; + "Gustav Mahler brought her to the Vienna Court Opera."; + ; + . + + a ; + "1808-04-07"^^xsd:date; + "1808-04-07"^^xsd:date; + 22802; + ""; + ; + ; + "Brother" . + + a ; + "1829-09-05"^^xsd:date; + "1829-09-05"^^xsd:date; + "1805-11-04"^^xsd:date; + "1805-11-04"^^xsd:date; + 22814; + ""; + ; + ; + "Father" . + + a ; + "1829-11-12"^^xsd:date; + "1829-11-12"^^xsd:date; + 22818; + ""; + ; + ; + "Wife" . + + a ; + 22822; + "work"; + ; + . + + a ; + "1944"; + 22826; + "friendship"; + ; + ; + . + + a ; + "1944"; + 22828; + "friendship"; + ; + ; + . + + a ; + "1944"; + 22830; + "friendship"; + ; + ; + . + + a ; + "1932"; + 22834; + "friendship"; + ; + ; + . + + a ; + "1944"; + 22838; + "friendship"; + ; + ; + . + + a ; + "1944"; + 22842; + "friendship"; + ; + ; + . + + a ; + 22846; + "work"; + ; + ; + . + + a ; + "February 1947"; + "1947-02-28"^^xsd:date; + "1947-02-01"^^xsd:date; + 22850; + ""; + ; + ; + ; + "Wife" . + + a ; + "Between 1944 and 1945"; + "1945-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 22854; + "work"; + ; + ; + ; + . + + a ; + "Between 1944 and 1945"; + "1945-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + 22858; + "work"; + ; + ; + ; + . + + a ; + "1904"; + 22859; + "work"; + ; + ; + ; + . + + a ; + "1904"; + 22862; + "work"; + ; + ; + ; + . + + a ; + "1906"; + "1904"; + 22866; + ""; + ; + ; + . + + a ; + "1904"; + "1902"; + 22870; + "work"; + ; + ; + . + + a ; + 22874; + "work"; + ; + ; + . + + a ; + 22878; + "work"; + ; + . + + a ; + 22882; + "work"; + ; + . + + a ; + "1905"; + "1902"; + 22886; + "work"; + ; + ; + . + + a ; + 22890; + "work"; + ; + . + + a ; + 22894; + ""; + ; + ; + "Wife" . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 22898; + "work"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 22902; + "work"; + ; + ; + . + + a ; + "2nd September 1954"; + "1954-09-02"^^xsd:date; + "1954-09-02"^^xsd:date; + 22906; + "work"; + ; + ; + . + + a ; + "2nd September 1954"; + "1954-09-02"^^xsd:date; + "1954-09-02"^^xsd:date; + 22910; + "work"; + ; + ; + . + + a ; + 22914; + . + + a ; + 22918; + . + + a ; + 22922; + . + + a ; + 22926; + . + + a ; + 22930; + . + + a ; + 22934; + . + + a ; + 22938; + ""; + ; + ; + "Husband" . + + a ; + 22943; + "work"; + ; + ; + . + + a ; + 22948; + "work"; + ; + ; + . + + a ; + 22953; + "work"; + ; + ; + . + + a ; + 22958; + ""; + "After the dead of Max Abramovich"; + ; + ; + "Husband" . + + a ; + 22963; + "work"; + ; + . + + a ; + 22968; + ""; + ; + ; + "Nephew" . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 22973; + "work"; + ; + . + + a ; + "1805-11-04"^^xsd:date; + "1805-11-04"^^xsd:date; + 22978; + ""; + ; + ; + "Mother" . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 22983; + "friendship"; + ; + ; + . + + a ; + 22988; + "work"; + ; + ; + ; + . + + a ; + 22993; + . + + a ; + 22998; + . + + a ; + "Between January and 13th of August 1876"; + "1876-08-13"^^xsd:date; + "1876-01-01"^^xsd:date; + 23; + ""; + "1876"; + "rehearses all the great tenor roles of his operas with him"; + ; + . + + a ; + "17th September 1909"; + 23003; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23008; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23013; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23018; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23023; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23028; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23030; + "work"; + ; + ; + ; + . + + a ; + "17th September 1909"; + 23031; + "work"; + ; + ; + ; + . + + a ; + "1903"; + 23034; + "work"; + ; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + 23043; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23048; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23053; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23058; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23063; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23068; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23073; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23078; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23080; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23085; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23090; + "work"; + ; + ; + ; + . + + a ; + 23093; + . + + a ; + 23098; + . + + a ; + 231; + "teacher"; + "Singing teacher "; + ; + . + + a ; + 23103; + . + + a ; + 23108; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23113; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23118; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23123; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23128; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23133; + "work"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23138; + "work"; + ; + ; + ; + . + + a ; + 23143; + . + + a ; + 23148; + . + + a ; + 23153; + . + + a ; + 23158; + . + + a ; + 23163; + . + + a ; + 23168; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 23173; + "work"; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 23178; + "work"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 23183; + "work"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 23188; + "work"; + ; + ; + . + + a ; + "between 1910 and 1913"; + "1913-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 23193; + "work"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 23198; + "work"; + ; + ; + . + + a ; + "probably around 1907-1909"; + "1909-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 23201; + "work"; + ; + ; + ; + . + + a ; + "after 1906"; + "1908-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 23205; + "work"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 23210; + "work"; + ; + ; + ; + . + + a ; + "1931-1932"; + "1932-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 23218; + "work"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 23223; + "work"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 23228; + "work"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + 23233; + "work"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 23238; + "work"; + ; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 23243; + "work"; + ; + ; + ; + . + + a ; + "before 1899"; + "1899-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23248; + "work"; + ; + ; + . + + a ; + "before 1899"; + "1899-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 23253; + "work"; + ; + ; + . + + a ; + 23258; + ""; + ; + ; + "Wife" . + + a ; + 23263; + . + + a ; + 23268; + . + + a ; + 23273; + . + + a ; + 23278; + . + + a ; + 23283; + . + + a ; + 23288; + . + + a ; + 23293; + ""; + "Khane Lerner"; + ; + "Wife" . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 23298; + "work"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 23303; + "work"; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 23308; + "work"; + ; + . + + a ; + 23313; + . + + a ; + 23318; + . + + a ; + 23319; + . + + a ; + 23323; + . + + a ; + 23328; + . + + a ; + 23329; + . + + a ; + 23330; + . + + a ; + 23333; + . + + a ; + 23338; + . + + a ; + 23343; + . + + a ; + 23348; + "work"; + ; + ; + . + + a ; + 23353; + "work"; + ; + ; + . + + a ; + 23358; + "work"; + ; + ; + . + + a ; + 23366; + "work"; + ; + ; + . + + a ; + 23368; + "work"; + ; + ; + . + + a ; + 23373; + "work"; + ; + ; + . + + a ; + 23378; + "work"; + ; + ; + . + + a ; + 23383; + "work"; + ; + . + + a ; + 23388; + "work"; + ; + ; + . + + a ; + 23393; + "work"; + ; + . + + a ; + 23398; + "friendship"; + ; + ; + . + + a ; + 23403; + "friendship"; + ; + . + + a ; + 23408; + "friendship"; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 23413; + "work"; + ; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 23418; + "friendship"; + ; + . + + a ; + "13th August 1876"; + "1876-08-13"^^xsd:date; + "1876-08-13"^^xsd:date; + 23423; + "work"; + ; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 23428; + "work"; + ; + ; + . + + a ; + 23433; + ""; + ; + ; + . + + a ; + 23438; + "friendship"; + ; + . + + a ; + 23443; + "family"; + ; + ; + "Other" . + + a ; + 23448; + "friendship"; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + 23453; + ""; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + 23458; + "friendship"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 23463; + "friendship"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 23468; + "friendship"; + ; + ; + . + + a ; + 23473; + "friendship"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 23478; + "friendship"; + ; + ; + . + + a ; + "Between 1842 and 1849"; + "1849-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + 23483; + "friendship"; + ; + ; + . + + a ; + "24th November 1836"; + "1836-12-31"^^xsd:date; + "1836-11-24"^^xsd:date; + 23488; + ""; + ; + ; + "Wife" . + + a ; + 23493; + ""; + ; + ; + "Brother" . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 23498; + "teacher"; + ; + ; + ; + . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 23503; + "teacher"; + ; + ; + . + + a ; + 23508; + ""; + ; + ; + "Mother" . + + a ; + 23518; + ""; + ; + ; + "Father" . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 23523; + "friendship"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + 23528; + "friendship"; + ; + ; + . + + a ; + 23533; + "work"; + ; + ; + . + + a ; + "10th October 1853"; + "1853-10-10"^^xsd:date; + "1853-10-10"^^xsd:date; + 23538; + "family"; + ; + ; + "Wife" . + + a ; + 23543; + ; + . + + a ; + 23548; + "work"; + ; + ; + ; + . + + a ; + 23549; + ""; + ; + . + + a ; + 23554; + "friendship"; + ; + ; + . + + a ; + 23559; + "friendship"; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + 23564; + ""; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "September 1839"; + "1839-09-30"^^xsd:date; + "1839-09-01"^^xsd:date; + 23569; + "teacher"; + ; + ; + ; + . + + a ; + 23574; + "friendship"; + ; + . + + a ; + 23599; + . + + a ; + 236; + ""; + ; + . + + a ; + 23604; + . + + a ; + 23609; + . + + a ; + 23614; + . + + a ; + 23619; + . + + a ; + 23624; + . + + a ; + "probably 1893 or 1894"; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 23629; + "work"; + ; + ; + ; + . + + a ; + 23634; + ""; + ; + ; + "Daughter" . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + 23639; + ""; + ; + ; + ; + "Husband" . + + a ; + "probably between 1906 and 1907"; + "1907-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 23644; + ""; + ; + ; + "Husband" . + + a ; + 23649; + . + + a ; + 23654; + . + + a ; + 23659; + . + + a ; + 23664; + . + + a ; + 23669; + . + + a ; + 23674; + . + + a ; + 23679; + ""; + ; + ; + "Husband" . + + a ; + 23684; + "work"; + ; + . + + a ; + 23689; + "work"; + ; + . + + a ; + 23694; + ""; + "Samuel Rosenstein"; + ; + "Brother" . + + a ; + 23699; + . + + a ; + 23704; + . + + a ; + 23709; + . + + a ; + 23714; + . + + a ; + 23719; + . + + a ; + 23724; + . + + a ; + 23729; + . + + a ; + 23734; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 23739; + "work"; + "Rosa Rubin"; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + 23744; + "work"; + ; + ; + ; + . + + a ; + 23749; + "work"; + ; + ; + . + + a ; + 23754; + "work"; + ; + ; + . + + a ; + 23759; + "work"; + ; + ; + . + + a ; + 23764; + "work"; + ; + ; + . + + a ; + 23769; + "work"; + "Markus Gazovski"; + ; + . + + a ; + 23774; + "work"; + "Harry Feinberg"; + ; + . + + a ; + 23779; + "work"; + ; + ; + . + + a ; + 23784; + "work"; + ; + ; + ; + . + + a ; + 23789; + "work"; + "Esther Vaksman"; + ; + ; + . + + a ; + "1890"; + 23794; + "work"; + ; + . + + a ; + 23799; + . + + a ; + 23804; + . + + a ; + 23809; + . + + a ; + 23814; + . + + a ; + 23819; + . + + a ; + 23824; + . + + a ; + 23829; + . + + a ; + 23834; + . + + a ; + 23839; + . + + a ; + 23844; + "work"; + ; + ; + . + + a ; + 23845; + . + + a ; + 23849; + . + + a ; + 23851; + . + + a ; + 23855; + . + + a ; + 23857; + . + + a ; + 23860; + . + + a ; + 23864; + . + + a ; + 23866; + "work"; + ; + ; + . + + a ; + 23867; + "work"; + ; + ; + ; + . + + a ; + 23870; + "work"; + "John Thomashefsky"; + ; + ; + . + + a ; + 23875; + "friendship"; + ; + . + + a ; + 23876; + "work"; + ; + ; + . + + a ; + 23877; + "work"; + ; + ; + . + + a ; + 23879; + "work"; + ; + ; + . + + a ; + 23884; + "work"; + "Mendele Abramovitsh"; + ; + . + + a ; + 23889; + "work"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 23894; + ""; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 23899; + ""; + ; + ; + . + + a ; + 239; + ; + . + + a ; + 23904; + ""; + ; + ; + . + + a ; + 23909; + ""; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 23914; + "work"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 23919; + "work"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 23920; + "work"; + ; + ; + ; + . + + a ; + "probably 1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 23924; + "work"; + ; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 23929; + "work"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 23934; + "work"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 23939; + "work"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 23944; + "work"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 23949; + "work"; + ; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1882-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 23954; + "work"; + ; + ; + ; + . + + a ; + "1840"; + "1840"; + 23955; + "friendship"; + ; + ; + . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1857"; + 23959; + "family"; + ; + ; + . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1852"; + 23964; + "family"; + ; + ; + "Husband" . + + a ; + "between 1850 and 1852"; + "between 1850 and 1852"; + 23969; + "work"; + ; + ; + . + + a ; + "1849-08-06"^^xsd:date; + "1849-08-06"^^xsd:date; + "1849-08-06"^^xsd:date; + "1849-08-06"^^xsd:date; + 23974; + "work"; + ; + ; + . + + a ; + 23979; + ""; + "Jay Adler"; + ; + "Son" . + + a ; + 23984; + ""; + ; + ; + "Daughter" . + + a ; + 23985; + ""; + "Luther Adler"; + ; + "Son" . + + a ; + 23990; + ""; + "Charles Adler"; + ; + "Son" . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 23992; + ""; + "Dinah Shtettin"; + ; + "Wife" . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 23995; + ""; + "Sara Adler"; + ; + "Wife" . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 23999; + ""; + "Sonya Adler"; + ; + "Wife" . + + a ; + 24; + ""; + "Acting lessons"; + ; + . + + a ; + "between 1895 and 1897"; + "1897-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 24004; + "work"; + ; + ; + ; + . + + a ; + 24009; + "work"; + ; + ; + . + + a ; + 24014; + "work"; + ; + ; + . + + a ; + 24019; + . + + a ; + 24024; + . + + a ; + 24029; + . + + a ; + 24034; + ""; + ; + ; + "Daughter" . + + a ; + 24039; + ""; + ; + ; + "Daughter" . + + a ; + 24044; + "work"; + ; + . + + a ; + 24049; + "work"; + ; + . + + a ; + 24054; + "work"; + ; + ; + . + + a ; + 24059; + ""; + "Nahum Rakow"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 24064; + "work"; + ; + ; + ; + . + + a ; + "5th September 1898"; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + 24069; + "work"; + ; + ; + ; + . + + a ; + "5th September 1898"; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + 24074; + "work"; + ; + ; + ; + . + + a ; + 24079; + "work"; + ; + . + + a ; + 24084; + "work"; + ; + . + + a ; + 24089; + "work"; + ; + ; + . + + a ; + 24090; + ""; + ; + ; + "Daughter" . + + a ; + "June 1909"; + "1909-06-30"^^xsd:date; + "1909-06-01"^^xsd:date; + 24094; + "work"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "between 1907 and 1908"; + "1908-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 24099; + "work"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "between 1907 and 1908"; + "1908-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 24104; + "work"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 24109; + "work"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + 24114; + "work"; + ; + ; + . + + a ; + "between 1906 and 1909"; + "1909-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 24119; + "work"; + ; + ; + . + + a ; + 24124; + ""; + ; + ; + "Wife" . + + a ; + 24129; + "work"; + ; + ; + . + + a ; + 24134; + "work"; + "Boris Thomashefsky"; + ; + . + + a ; + 24149; + ""; + "adopted daughter"; + ; + ; + "Daughter" . + + a ; + 24154; + "teacher"; + ; + . + + a ; + 24159; + . + + a ; + 24164; + . + + a ; + 24169; + . + + a ; + 24174; + . + + a ; + 24179; + "work"; + ; + ; + . + + a ; + 24184; + "work"; + ; + ; + ; + . + + a ; + 24189; + "family"; + ; + ; + ; + "Brother" . + + a ; + 24194; + "work"; + ; + ; + ; + . + + a ; + 24199; + "work"; + ; + ; + ; + . + + a ; + 242; + "friendship"; + "1875"; + "First close connection to Johannes Brahms, close friendship, break 1875 when Levi worked together with Richard Wagner and became friend of him."; + ; + . + + a ; + 24204; + "work"; + ; + ; + ; + . + + a ; + 24209; + "work"; + ; + ; + ; + . + + a ; + 24214; + ; + ; + ; + . + + a ; + 24219; + "work"; + ; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 24224; + "work"; + ; + ; + ; + . + + a ; + 24229; + . + + a ; + 24230; + . + + a ; + 24234; + "other"; + ; + ; + . + + a ; + "1847"; + "1847"; + 24239; + "work"; + ; + ; + . + + a ; + "1847"; + "1847"; + 24244; + "work"; + ; + ; + . + + a ; + 24249; + "other"; + ; + ; + . + + a ; + "between 1847 and 1848"; + "between 1847 and 1848"; + 24254; + "other"; + ; + ; + . + + a ; + "1848-08-24"^^xsd:date; + "1848-08-24"^^xsd:date; + "1847-05-04"^^xsd:date; + "1847-05-04"^^xsd:date; + 24259; + "work"; + ; + ; + ; + . + + a ; + "October 1844"; + "October 1844"; + 24264; + "friendship"; + ; + ; + . + + a ; + "April 1873"; + "1873-04-30"^^xsd:date; + "1873-04-01"^^xsd:date; + "April 1873"; + "1873-04-30"^^xsd:date; + "1873-04-01"^^xsd:date; + 24269; + "work"; + ; + ; + . + + a ; + "October 1844"; + "1844-10-31"^^xsd:date; + "1844-10-01"^^xsd:date; + "October 1844"; + "1844-10-31"^^xsd:date; + "1844-10-01"^^xsd:date; + 24274; + "work"; + "Felix Mendelssohn Bartholdy"; + ; + ; + . + + a ; + "November 1874"; + "1866"; + 24284; + "work"; + ; + ; + ; + . + + a ; + "1865"; + "1861"; + 24289; + "work"; + "The two also toured."; + ; + ; + ; + . + + a ; + "1861"; + "1860"; + 24291; + "work"; + ; + ; + ; + . + + a ; + "Summer 1860"; + "1860-09-21"^^xsd:date; + "1860-06-22"^^xsd:date; + "1857"; + "1857-08-15"^^xsd:date; + 24292; + "work"; + "another manager was William Wheatley"; + ; + ; + ; + . + + a ; + "1884"; + "1884-01-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1878-05-22"^^xsd:date; + 24294; + "work"; + ; + ; + ; + . + + a ; + 24319; + ; + . + + a ; + 24324; + ; + . + + a ; + 24329; + "friendship"; + ; + . + + a ; + 24334; + "friendship"; + "McCullough also helped many younger actors to develop their careers one such as Mary Anderson"; + ; + . + + a ; + "1878-01-17"^^xsd:date; + "1878-01-17"^^xsd:date; + "1878"; + "1878-01-17"^^xsd:date; + "1878-01-17"^^xsd:date; + 24339; + "other"; + "He gave a benefit for John Brougham"; + ; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 24344; + "work"; + ; + ; + . + + a ; + "Summer 1823"; + "1823-09-22"^^xsd:date; + "1823-06-21"^^xsd:date; + "Probably 17.02.1821"; + "1821-02-17"^^xsd:date; + 24347; + "family"; + ; + ; + "Father" . + + a ; + "1861-01-17"^^xsd:date; + "Probably 17.02.1821"; + "1821-02-17"^^xsd:date; + 24352; + "family"; + ; + ; + "Mother" . + + a ; + "1824"; + "1824-12-31"^^xsd:date; + "1824-01-01"^^xsd:date; + 24357; + "family"; + ; + ; + "Other" . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 24362; + "family"; + ; + ; + "Other" . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 24367; + "family"; + ; + ; + "Other" . + + a ; + "1832-09-14"^^xsd:date; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 24372; + "family"; + ; + ; + "Other" . + + a ; + "1832-09-14"^^xsd:date; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 24377; + "teacher"; + "School in Durham"; + ; + . + + a ; + "1832-09-14"^^xsd:date; + 24382; + "other"; + ; + . + + a ; + "Probably 14.09.1832"; + "1832-09-14"^^xsd:date; + 24387; + "friendship"; + ; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "1837-07-23"^^xsd:date; + 24392; + "family"; + ; + ; + "Husband" . + + a ; + "July 1841"; + "1841-07-31"^^xsd:date; + "1841-07-01"^^xsd:date; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + 24397; + "other"; + ; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841"; + "1841-01-01"^^xsd:date; + 24402; + "other"; + ; + . + + a ; + "1843-04-14"^^xsd:date; + 24407; + "other"; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843"; + "1843-01-01"^^xsd:date; + 24412; + "other"; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843"; + "1843-01-01"^^xsd:date; + 24417; + "other"; + ; + . + + a ; + "October 1843"; + "1843-10-31"^^xsd:date; + "October 1843"; + "1843-10-01"^^xsd:date; + 24422; + "other"; + ; + . + + a ; + "August 1845"; + "1845-08-31"^^xsd:date; + "1845-08-01"^^xsd:date; + "February 1844"; + "1844-02-29"^^xsd:date; + "1844-02-01"^^xsd:date; + 24427; + "other"; + ; + . + + a ; + "1844-03-11"^^xsd:date; + "February 1844"; + "1844-02-29"^^xsd:date; + "1844-02-01"^^xsd:date; + 24432; + "other"; + ; + . + + a ; + "1846-10-05"^^xsd:date; + "July 1846"; + "1846-07-31"^^xsd:date; + "1846-07-01"^^xsd:date; + 24437; + "other"; + ; + . + + a ; + "June 1850"; + "1850-06-30"^^xsd:date; + "1850-06-01"^^xsd:date; + "1846-10-07"^^xsd:date; + 24442; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24447; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24452; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24457; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24462; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24467; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "November 1846"; + "1846-11-30"^^xsd:date; + "1846-11-01"^^xsd:date; + 24472; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24477; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24482; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24487; + "other"; + ; + . + + a ; + 24492; + "other"; + ; + . + + a ; + 24497; + "friendship"; + ; + . + + a ; + 245; + ""; + "1892-1910"; + "divorced"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 24502; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 24507; + "friendship"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24512; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24517; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "1846-10-05"^^xsd:date; + 24522; + "other"; + ; + . + + a ; + "June 1847"; + "1847-06-30"^^xsd:date; + "1847-06-01"^^xsd:date; + 24527; + "friendship"; + ; + . + + a ; + "June 1847"; + "1847-06-30"^^xsd:date; + "1847-06-01"^^xsd:date; + 24532; + "friendship"; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 24537; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "Probably 5.10.1846"; + "1846-10-05"^^xsd:date; + "1846-10-05"^^xsd:date; + 24542; + "work"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "November 1847"; + "1847-11-30"^^xsd:date; + "1847-11-01"^^xsd:date; + 24547; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "February 1848"; + "1848-02-29"^^xsd:date; + "1848-02-01"^^xsd:date; + 24552; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "Probably 5.10.1846"; + "1846-10-05"^^xsd:date; + "1846-10-05"^^xsd:date; + 24557; + "other"; + ; + . + + a ; + 24562; + "friendship"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "Probably 5.10.1846"; + "1846-10-05"^^xsd:date; + "1846-10-05"^^xsd:date; + 24567; + "other"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "Probably 5.10.1846"; + "1846-10-05"^^xsd:date; + "1846-10-05"^^xsd:date; + 24572; + "friendship"; + ; + . + + a ; + "1848-02-11"^^xsd:date; + "Probably 5.10.1846"; + "1846-10-05"^^xsd:date; + "1846-10-05"^^xsd:date; + 24577; + "other"; + ; + . + + a ; + 24582; + "other"; + ; + . + + a ; + "September 1849"; + "1849-09-30"^^xsd:date; + "1849-09-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 24587; + "other"; + ; + . + + a ; + "September 1849"; + "1849-09-30"^^xsd:date; + "1849-09-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 24592; + "other"; + ; + . + + a ; + "September 1849"; + "1849-09-30"^^xsd:date; + "1849-09-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 24597; + "other"; + ; + . + + a ; + 24602; + "other"; + ; + . + + a ; + "September 1849"; + "1849-09-30"^^xsd:date; + "1849-09-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 24607; + "other"; + ; + . + + a ; + "September 1849"; + "1849-09-30"^^xsd:date; + "1849-09-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 24612; + "other"; + ; + . + + a ; + "1856-06-28"^^xsd:date; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 24617; + "family"; + ; + ; + "Husband" . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-12-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24622; + "other"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-12-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24627; + "other"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-12-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24632; + "other"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-12-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24637; + "other"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-12-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24642; + "other"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + 24647; + "other"; + ; + . + + a ; + "Probably 1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Summer 1851"; + "1851-09-22"^^xsd:date; + "1851-06-21"^^xsd:date; + 24652; + "work"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "November 1851"; + "1851-12-31"^^xsd:date; + "1851-11-01"^^xsd:date; + 24657; + "work"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "November 1851"; + "1851-12-31"^^xsd:date; + "1851-11-01"^^xsd:date; + 24662; + "teacher"; + ; + . + + a ; + "1852-12-31"^^xsd:date; + "Probably 1852"; + "1852-01-01"^^xsd:date; + 24667; + "work"; + ; + . + + a ; + "1852-12-31"^^xsd:date; + "Probably 1852"; + "1852-01-01"^^xsd:date; + 24672; + "work"; + ; + . + + a ; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + 24677; + "work"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "1852-12-21"^^xsd:date; + 24682; + "work"; + ; + . + + a ; + "June 1853"; + "1853-06-30"^^xsd:date; + "1853-06-01"^^xsd:date; + "May 1853"; + "1853-05-31"^^xsd:date; + "1853-05-01"^^xsd:date; + 24687; + "work"; + ; + . + + a ; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + 24692; + "family"; + ; + ; + "Husband" . + + a ; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + 24697; + "work"; + ; + . + + a ; + "Probably between 1855 and 1856"; + "1856-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 24702; + "work"; + ; + . + + a ; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + 24707; + "other"; + ; + . + + a ; + "Probably 1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Probably 1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 24712; + "other"; + ; + . + + a ; + "Probably 1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Probably 1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 24717; + "other"; + ; + . + + a ; + "Probably 1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Probably 1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 24722; + "other"; + ; + . + + a ; + "Probably 1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Probably 1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + 24727; + "other"; + ; + . + + a ; + "1856-07-08"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24732; + "work"; + ; + . + + a ; + "Probably 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24737; + "work"; + ; + . + + a ; + "Probably 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24742; + "work"; + ; + . + + a ; + "Probably 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24747; + "work"; + ; + . + + a ; + "Probably 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24752; + "work"; + ; + . + + a ; + "Probably 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 24757; + "work"; + ; + . + + a ; + "Probably May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + 24762; + "work"; + ; + . + + a ; + "1857-12-31"^^xsd:date; + "1857"; + "1857-01-01"^^xsd:date; + 24767; + "work"; + ; + . + + a ; + 24772; + "other"; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + 24777; + "other"; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Probably 1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + 24782; + "friendship"; + ; + . + + a ; + "1861-01-17"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 24787; + "other"; + ; + . + + a ; + 248; + ""; + ; + . + + a ; + "1845"; + "1845"; + 24830; + "work"; + ; + ; + . + + a ; + "1847"; + "1847"; + 24834; + "work"; + ; + ; + . + + a ; + 24839; + "family"; + ; + ; + "Grandmother" . + + a ; + "between 1817 and 1821"; + "1821-01-31"^^xsd:date; + "1817-01-01"^^xsd:date; + "between 1817 and 1821"; + "1821-01-31"^^xsd:date; + "1817-01-01"^^xsd:date; + 24844; + "work"; + ; + ; + . + + a ; + "1852-11-30"^^xsd:date; + "1852-11-30"^^xsd:date; + "1851-10-05"^^xsd:date; + "1851-10-05"^^xsd:date; + 24849; + "family"; + ; + ; + "Wife" . + + a ; + "1816-07-07"^^xsd:date; + "1816-07-07"^^xsd:date; + "1815-10-05"^^xsd:date; + "1815-10-05"^^xsd:date; + 24854; + "family"; + ; + ; + "Son" . + + a ; + "February 1851"; + "1851-02-28"^^xsd:date; + "1851-02-01"^^xsd:date; + "1815-05-17"^^xsd:date; + "1815-05-17"^^xsd:date; + 24859; + "family"; + ; + ; + "Wife" . + + a ; + "1800"; + "1800-12-31"^^xsd:date; + "1800-01-01"^^xsd:date; + "1796-05-01"^^xsd:date; + "1796-05-01"^^xsd:date; + 24864; + "family"; + ; + ; + "Mother" . + + a ; + "1839-12-29"^^xsd:date; + "1839-12-29"^^xsd:date; + "1796-05-01"^^xsd:date; + "1796-05-01"^^xsd:date; + 24869; + "family"; + ; + ; + "Father" . + + a ; + "1893-06-07"^^xsd:date; + "1893-06-07"^^xsd:date; + "1883-11-13"^^xsd:date; + "1883-11-13"^^xsd:date; + 24870; + "family"; + ; + ; + "Son" . + + a ; + 24876; + "work"; + ; + . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1820-10-06"^^xsd:date; + "1820-10-06"^^xsd:date; + 24879; + "family"; + ; + ; + "Sister" . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1820-10-06"^^xsd:date; + "1820-10-06"^^xsd:date; + 24884; + "family"; + ; + ; + "Mother" . + + a ; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "1820-10-06"^^xsd:date; + "1820-10-06"^^xsd:date; + 24889; + "family"; + ; + ; + "Father" . + + a ; + "1852"; + "1850"; + 24894; + "work"; + ; + ; + . + + a ; + "1836"; + "September 1830"; + 24899; + "trained_together"; + ; + ; + ; + . + + a ; + 24924; + "family"; + . + + a ; + "1821-09-30"^^xsd:date; + "1821-09-30"^^xsd:date; + "1814"; + "1814-12-31"^^xsd:date; + "1814-01-01"^^xsd:date; + 24929; + "family"; + "adoptive father"; + ; + ; + ; + "Father" . + + a ; + "1888-05-16"^^xsd:date; + "1888-05-16"^^xsd:date; + "1835-11-19"^^xsd:date; + "1835-11-19"^^xsd:date; + 24934; + "family"; + ; + ; + "Daughter" . + + a ; + "1819-01-21"^^xsd:date; + "1819-01-21"^^xsd:date; + 24939; + "family"; + ; + ; + "Son" . + + a ; + "1803"; + "1803-12-31"^^xsd:date; + "1803-01-01"^^xsd:date; + "1798"; + "1798-12-31"^^xsd:date; + "1798-01-01"^^xsd:date; + 24944; + "family"; + ; + ; + "Brother" . + + a ; + 24949; + "friendship"; + ; + . + + a ; + 24954; + "work"; + "Theatrical manager"; + ; + ; + . + + a ; + "1851-10-05"^^xsd:date; + "1851-10-05"^^xsd:date; + "1821-01-30"^^xsd:date; + "1821-01-01"^^xsd:date; + 24959; + "family"; + "She went to the USA with Booth and lived with him as his partner, they married in 1851"; + ; + ; + "Other" . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + 24964; + "family"; + ; + ; + "Daughter" . + + a ; + "1865-04-26"^^xsd:date; + "1865-04-26"^^xsd:date; + "1838-05-10"^^xsd:date; + "1838-05-10"^^xsd:date; + 24969; + "family"; + ; + ; + "Son" . + + a ; + "1889-01-15"^^xsd:date; + "1889-01-15"^^xsd:date; + "1823-07-05"^^xsd:date; + "1823-07-05"^^xsd:date; + 24974; + "family"; + ; + ; + "Daughter" . + + a ; + "1836-12-28"^^xsd:date; + "1836-12-28"^^xsd:date; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + 24979; + "family"; + ; + ; + "Son" . + + a ; + "1883-09-16"^^xsd:date; + "1883-09-16"^^xsd:date; + "1821-12-22"^^xsd:date; + "1821-12-22"^^xsd:date; + 24984; + "family"; + ; + ; + "Son" . + + a ; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1840-02-08"^^xsd:date; + "1840-02-08"^^xsd:date; + 24989; + "family"; + ; + ; + "Son" . + + a ; + 24994; + "work"; + ; + . + + a ; + 24999; + "friendship"; + ; + ; + . + + a ; + 25; + ""; + "Closer personal relationship"; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 25009; + "work"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 25014; + "work"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 25019; + "work"; + ; + ; + ; + . + + a ; + 25024; + "family"; + ; + ; + "Daughter" . + + a ; + "1954-06-30"^^xsd:date; + "1954-06-30"^^xsd:date; + 25029; + "other"; + ; + . + + a ; + "1916-11-01"^^xsd:date; + "1916-11-01"^^xsd:date; + 25034; + "family"; + ; + ; + ; + "Wife" . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + 25044; + "work"; + ; + ; + ; + . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + 25049; + "work"; + ; + ; + ; + . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + 25054; + "work"; + ; + ; + ; + . + + a ; + 25059; + "work"; + ; + ; + . + + a ; + 25064; + "teacher"; + ; + ; + ; + . + + a ; + 25069; + "teacher"; + ; + ; + ; + . + + a ; + 25074; + "teacher"; + ; + ; + ; + . + + a ; + 25079; + "friendship"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 25084; + "work"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 25089; + "work"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 25094; + "work"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 25099; + "work"; + ; + ; + ; + . + + a ; + 251; + ""; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 25104; + "work"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 25114; + "work"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 25119; + "work"; + ; + ; + ; + . + + a ; + 25120; + "family"; + ; + ; + "Daughter" . + + a ; + 25122; + "work"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 25124; + "work"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 25129; + "work"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + 25134; + "friendship"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 25139; + "work"; + ; + ; + . + + a ; + "24th Dezember 1920"; + "1920-12-24"^^xsd:date; + "1920-12-24"^^xsd:date; + 25144; + "work"; + ; + ; + ; + . + + a ; + 25151; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 25154; + "work"; + ; + ; + ; + . + + a ; + 25159; + . + + a ; + 25164; + . + + a ; + 25165; + . + + a ; + 25167; + . + + a ; + 25172; + . + + a ; + 25177; + . + + a ; + 25179; + . + + a ; + 25184; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25187; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25189; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25194; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25199; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25204; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25209; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25210; + "work"; + "Carlos Alonso"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25214; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25219; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25224; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25229; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25232; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25234; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25239; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25244; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25249; + "work"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + 25254; + "work"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 25259; + "work"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + 25264; + "friendship"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25269; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25274; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25279; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25284; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25289; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25294; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25299; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25304; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25309; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25314; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25319; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25324; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25329; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25334; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25339; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25344; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25349; + "work"; + ; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 25354; + "work"; + "Madrid and Buenos Aires"; + ; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 25355; + "work"; + "Madrid and Buenos Aires"; + ; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 25359; + "teacher"; + ; + ; + ; + . + + a ; + 25364; + "teacher"; + ; + ; + . + + a ; + 25369; + "teacher"; + ; + ; + . + + a ; + 25374; + "family"; + ; + ; + ; + "Sister" . + + a ; + 25379; + "family"; + ; + ; + ; + "Brother" . + + a ; + 25384; + "family"; + ; + ; + ; + "Mother" . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 25389; + "family"; + ; + ; + ; + "Father" . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 25394; + "work"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25399; + "family"; + ; + ; + ; + ; + "Wife" . + + a ; + 254; + "friendship"; + "1897"; + "Friendship with Gustav Mahler, supported him 1897 to became Hofoperndirektor."; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 25404; + "work"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + 25409; + "work"; + "Murcia and Buenos Aires"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + 25414; + "work"; + "Buenos Aires y Madrid"; + ; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + 25419; + "family"; + ; + ; + ; + ; + "Aunt" . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 25424; + "friendship"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 25429; + "work"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 25434; + "work"; + ; + ; + ; + . + + a ; + "1907"; + 25439; + "work"; + ; + ; + ; + . + + a ; + "1902"; + "1901"; + 25440; + "work"; + ; + ; + ; + . + + a ; + "1909"; + 25444; + "work"; + ; + ; + ; + . + + a ; + "1898"; + 25449; + "work"; + ; + . + + a ; + "1898"; + 25454; + "work"; + ; + . + + a ; + "1898"; + 25459; + "work"; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 25469; + "work"; + ; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 25474; + "work"; + ; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 25479; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 25484; + "work"; + ; + ; + ; + . + + a ; + 25489; + "work"; + ; + ; + . + + a ; + "1922"; + "1920"; + 25494; + "work"; + "After 1921 together in New York Philharmony"; + ; + ; + ; + . + + a ; + "1938"; + "1915"; + 25499; + "work"; + ; + ; + ; + . + + a ; + 255; + "1875"; + "First close connection to Johannes Brahms, close friendship, break 1875 when Levi worked together with Richard Wagner and became friend of him"; + ; + . + + a ; + "1915"; + 25504; + "work"; + ; + ; + ; + . + + a ; + "1939"; + 25509; + "work"; + ; + ; + ; + . + + a ; + "1935"; + 25514; + "work"; + ; + ; + ; + . + + a ; + "January 1935"; + 25519; + "work"; + ; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 25524; + "work"; + ; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + 25529; + "work"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 25534; + "work"; + ; + ; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 25539; + "work"; + ; + ; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 25544; + "work"; + ; + ; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 25549; + "work"; + ; + ; + ; + . + + a ; + 25554; + "family"; + ; + ; + "Son" . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + 25559; + "work"; + ; + ; + . + + a ; + "5th January 1939"; + "1939-01-05"^^xsd:date; + "1939-01-05"^^xsd:date; + 25564; + "other"; + ; + ; + . + + a ; + 25569; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 25574; + "work"; + ; + ; + ; + . + + a ; + 25579; + . + + a ; + 25584; + "family"; + ; + ; + ; + "Daughter" . + + a ; + 25589; + "family"; + ; + ; + ; + "Son" . + + a ; + 25594; + "family"; + ; + ; + ; + "Daughter" . + + a ; + 25599; + "family"; + ; + ; + ; + "Daughter" . + + a ; + 25604; + "family"; + ; + ; + ; + "Daughter" . + + a ; + 25609; + "family"; + ; + ; + ; + "Daughter" . + + a ; + 25614; + "family"; + ; + ; + ; + "Wife" . + + a ; + "1955-12-19"^^xsd:date; + "1955-12-19"^^xsd:date; + 25619; + "friendship"; + ; + ; + ; + . + + a ; + "1955-12-19"^^xsd:date; + "1955-12-19"^^xsd:date; + 25624; + "friendship"; + ; + ; + ; + . + + a ; + "1955-12-19"^^xsd:date; + "1955-12-19"^^xsd:date; + 25629; + "friendship"; + ; + ; + ; + . + + a ; + "1955-12-19"^^xsd:date; + "1955-12-19"^^xsd:date; + 25634; + "friendship"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25639; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25644; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25649; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25654; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 25659; + "work"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + 25664; + "work"; + ; + ; + ; + . + + a ; + 25669; + "family"; + "Lucca and Buenos Aires"; + ; + ; + ; + "Mother" . + + a ; + 25674; + "family"; + ; + ; + ; + "Father" . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + 25679; + "friendship"; + ; + ; + ; + . + + a ; + 25684; + "work"; + "SADE"; + ; + ; + ; + . + + a ; + "January 1924"; + "1924-01-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "January 1924"; + "1924-01-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 25687; + "work"; + ; + ; + ; + . + + a ; + "February 1923"; + "1923-02-28"^^xsd:date; + "1923-02-01"^^xsd:date; + "February 1923"; + "1923-02-28"^^xsd:date; + "1923-02-01"^^xsd:date; + 25689; + "work"; + ; + ; + ; + . + + a ; + "February 1922"; + "1922-02-28"^^xsd:date; + "1922-02-01"^^xsd:date; + "February 1922"; + "1922-02-28"^^xsd:date; + "1922-02-01"^^xsd:date; + 25690; + "work"; + ; + ; + ; + . + + a ; + "January 1917"; + "1917-01-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "January 1917"; + "1917-01-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 25694; + "work"; + ; + ; + ; + . + + a ; + "January 1917"; + "1917-01-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "January 1917"; + "1917-01-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 25699; + "work"; + ; + ; + ; + . + + a ; + 257; + "Brothers. They worked together in the 1880s in Paris and went together for tours to London at the end of the 1880s"; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 25704; + "work"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 25709; + "work"; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25714; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25719; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25720; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25724; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25729; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25734; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25739; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25744; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25749; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25754; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25759; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25760; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25764; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25769; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 25774; + "work"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + 25779; + "work"; + ; + ; + ; + . + + a ; + 25784; + "work"; + ; + ; + . + + a ; + 25789; + "work"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 25794; + "family"; + "Tucumán and Buenos Aires"; + ; + ; + ; + "Wife" . + + a ; + 25799; + "other"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1848-02-15"^^xsd:date; + "1848-02-15"^^xsd:date; + 25804; + "family"; + ; + ; + ; + "Mother" . + + a ; + "1848-02-15"^^xsd:date; + "1848-02-15"^^xsd:date; + 25809; + "family"; + ; + ; + ; + "Father" . + + a ; + 25814; + "work"; + ; + ; + . + + a ; + 25819; + "work"; + ; + ; + . + + a ; + 25824; + "work"; + ; + ; + . + + a ; + 25829; + "work"; + ; + ; + . + + a ; + 25834; + "work"; + ; + ; + . + + a ; + 25839; + "work"; + ; + ; + . + + a ; + 25844; + "work"; + ; + ; + ; + . + + a ; + 25849; + "work"; + ; + ; + ; + . + + a ; + 25854; + "work"; + ; + ; + . + + a ; + 25859; + "work"; + ; + ; + . + + a ; + 25864; + "work"; + ; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 25868; + "work"; + ; + ; + ; + . + + a ; + "1957"; + "1957-12-31"^^xsd:date; + "1957-01-01"^^xsd:date; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 25873; + "work"; + ; + ; + ; + . + + a ; + 25878; + "family"; + ; + ; + ; + "Wife" . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 25883; + "work"; + ; + ; + ; + . + + a ; + 25888; + "work"; + ; + ; + ; + . + + a ; + 25893; + "work"; + ; + ; + ; + . + + a ; + 25898; + "work"; + ; + ; + ; + . + + a ; + 25903; + "work"; + ; + ; + ; + . + + a ; + 25908; + "work"; + ; + ; + ; + . + + a ; + 25913; + "work"; + ; + ; + ; + . + + a ; + 25918; + "work"; + ; + ; + ; + . + + a ; + 25923; + "work"; + ; + ; + ; + . + + a ; + 25928; + "work"; + ; + ; + ; + . + + a ; + 25933; + "work"; + ; + ; + ; + . + + a ; + 25938; + "work"; + ; + ; + ; + . + + a ; + 25943; + "work"; + ; + ; + ; + . + + a ; + "Autumn 1909"; + "1909-12-21"^^xsd:date; + "1909-09-21"^^xsd:date; + 25948; + "work"; + ; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 25953; + "work"; + ; + ; + ; + . + + a ; + 25958; + "work"; + "Bühnenverleger"; + ; + ; + . + + a ; + 25963; + "family"; + ; + ; + "Father" . + + a ; + 25968; + "family"; + ; + ; + "Grandfather" . + + a ; + 25973; + "family"; + ; + ; + "Grandmother" . + + a ; + 25978; + "family"; + "Great grandfather"; + ; + ; + "Other" . + + a ; + 25983; + "family"; + "Great uncle"; + ; + ; + "Other" . + + a ; + 25987; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 25988; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 25993; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 25998; + "work"; + ; + ; + ; + . + + a ; + 26; + ""; + "(playwright, director, actor)"; + ; + . + + a ; + 260; + "brother and sister"; + ; + . + + a ; + 26003; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 26008; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26013; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 26018; + "work"; + ; + ; + ; + . + + a ; + 26023; + "family"; + ; + ; + "Brother" . + + a ; + 26028; + "family"; + ; + ; + "Mother" . + + a ; + "1909"; + "1906-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 26033; + "work"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 26038; + "work"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 26043; + "work"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 26048; + "work"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + 26053; + "work"; + ; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 26058; + "work"; + "They worked as Playwriter at the same theatre, but Berstl wrote that they just met sporadically unfortunately"; + ; + ; + ; + . + + a ; + 26063; + "work"; + ; + ; + ; + . + + a ; + 26068; + "work"; + ; + ; + ; + . + + a ; + 26073; + "work"; + ; + ; + ; + . + + a ; + 26078; + "work"; + ; + ; + ; + . + + a ; + 26083; + "family"; + ; + ; + "Grandfather" . + + a ; + 26093; + "family"; + ; + ; + "Husband" . + + a ; + 26098; + "family"; + ; + ; + "Husband" . + + a ; + 26103; + "family"; + ; + ; + "Wife" . + + a ; + 26108; + "other"; + ; + . + + a ; + 26113; + "family"; + ; + ; + "Mother" . + + a ; + 26118; + "work"; + ; + . + + a ; + 26123; + "work"; + ; + . + + a ; + 26128; + "work"; + ; + . + + a ; + 26133; + "work"; + ; + . + + a ; + 26138; + "family"; + ; + ; + "Husband" . + + a ; + 26148; + "work"; + ; + . + + a ; + 26153; + "work"; + ; + . + + a ; + 26158; + "student"; + ; + . + + a ; + 26163; + "student"; + ; + . + + a ; + 26168; + "student"; + ; + . + + a ; + 26193; + "work"; + ; + . + + a ; + 26208; + "work"; + ; + . + + a ; + 26213; + "work"; + ; + . + + a ; + 26218; + "work"; + ; + . + + a ; + 26228; + "work"; + ; + . + + a ; + 26233; + "work"; + ; + . + + a ; + 26238; + "work"; + ; + . + + a ; + 26243; + "work"; + ; + . + + a ; + 26248; + "work"; + ; + . + + a ; + 26258; + "work"; + ; + . + + a ; + 26263; + "work"; + ; + . + + a ; + 26268; + "work"; + ; + . + + a ; + 26273; + "work"; + ; + . + + a ; + 26283; + "teacher"; + ; + ; + . + + a ; + 26288; + "work"; + ; + ; + ; + . + + a ; + 26293; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 26298; + "work"; + ; + ; + ; + . + + a ; + 263; + "brother and sister"; + ; + . + + a ; + "1920er"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + 26302; + "work"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 26303; + "work"; + ; + ; + . + + a ; + "23rd Februar 1922"; + "1922-02-23"^^xsd:date; + "1922-02-23"^^xsd:date; + 26307; + "work"; + ; + ; + ; + . + + a ; + 26308; + "work"; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + 26313; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26318; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26323; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26328; + "work"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 26333; + "work"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 26338; + "work"; + ; + ; + ; + . + + a ; + "1915"; + "2015-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 26343; + "work"; + ; + ; + ; + . + + a ; + 26348; + "teacher"; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 26354; + "work"; + "Deutschen Künstlertheaters"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 26358; + "work"; + "Deutschen Künstlertheaters"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 26363; + "work"; + "Deutschen Künstlertheaters"; + ; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 26367; + "work"; + ; + ; + ; + . + + a ; + 26370; + "work"; + ; + ; + ; + . + + a ; + 26373; + "work"; + ; + . + + a ; + 26378; + "work"; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 26383; + ; + ; + . + + a ; + 26388; + "family"; + ; + ; + ; + "Nephew" . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 26393; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 26398; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 26403; + "work"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 26408; + "work"; + ; + ; + ; + . + + a ; + 26413; + "work"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + 26418; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 26423; + "work"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 26428; + "work"; + ; + ; + ; + . + + a ; + 26433; + "work"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26438; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26443; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26448; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 26453; + "work"; + ; + ; + ; + . + + a ; + 26458; + "work"; + ; + ; + ; + . + + a ; + 26463; + "family"; + ; + ; + "Cousin" . + + a ; + 26468; + "work"; + ; + . + + a ; + 26473; + "work"; + ; + . + + a ; + 26478; + "work"; + ; + . + + a ; + 26483; + "work"; + ; + . + + a ; + 26488; + "student"; + ; + . + + a ; + 26493; + "student"; + ; + . + + a ; + 26498; + "student"; + ; + . + + a ; + 26503; + "work"; + ; + . + + a ; + 26508; + "work"; + ; + . + + a ; + 26510; + "work"; + ; + . + + a ; + 26514; + "family"; + ; + ; + "Wife" . + + a ; + 26517; + "work"; + ; + . + + a ; + 26518; + "work"; + ; + . + + a ; + 26523; + "other"; + "Partner"; + ; + . + + a ; + 26528; + "friendship"; + ; + . + + a ; + 26533; + "work"; + ; + . + + a ; + 26538; + "work"; + ; + . + + a ; + 26543; + "work"; + ; + . + + a ; + 26548; + "work"; + ; + . + + a ; + 26553; + "work"; + ; + . + + a ; + 26557; + "work"; + ; + . + + a ; + 26558; + "work"; + ; + . + + a ; + 26573; + "other"; + ; + . + + a ; + 26578; + "student"; + ; + . + + a ; + 26585; + . + + a ; + 26590; + . + + a ; + 26595; + "family"; + ; + ; + "Cousin" . + + a ; + 266; + "teacher"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 26600; + "work"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26605; + "work"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + 26610; + "friendship"; + ; + . + + a ; + "between 1909 and 1914"; + "1914-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 26615; + "family"; + ; + ; + "Wife" . + + a ; + 26620; + "family"; + ; + ; + "Mother" . + + a ; + 26625; + "family"; + ; + ; + "Father" . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26630; + "work"; + ; + . + + a ; + 26635; + . + + a ; + 26640; + . + + a ; + 26645; + . + + a ; + 26650; + . + + a ; + 26655; + . + + a ; + 26660; + . + + a ; + 26665; + . + + a ; + 26670; + . + + a ; + 26675; + ; + . + + a ; + 26680; + "family"; + ; + ; + "Father" . + + a ; + 26685; + . + + a ; + 26690; + . + + a ; + 26695; + . + + a ; + 26700; + . + + a ; + 26705; + . + + a ; + 26710; + . + + a ; + 26715; + . + + a ; + 26720; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26725; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26730; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26735; + "work"; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26740; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 26745; + "work"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + 26750; + "work"; + ; + ; + ; + . + + a ; + 26755; + "other"; + ; + ; + . + + a ; + 26760; + "work"; + ; + . + + a ; + 26765; + "student"; + "Reinhardt’s Student"; + ; + . + + a ; + 26770; + . + + a ; + 26775; + . + + a ; + 26780; + . + + a ; + 26785; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26790; + "work"; + ; + ; + . + + a ; + 26795; + "work"; + ; + . + + a ; + 26800; + "work"; + ; + ; + . + + a ; + 26805; + "work"; + ; + ; + . + + a ; + "1905"; + 26810; + "work"; + ; + ; + ; + . + + a ; + 26815; + "work"; + ; + . + + a ; + 26820; + "work"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 26825; + "work"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 26830; + "work"; + ; + ; + ; + . + + a ; + 26835; + "friendship"; + ; + . + + a ; + 26840; + "work"; + ; + . + + a ; + 26845; + "work"; + ; + ; + ; + . + + a ; + 26850; + . + + a ; + 26855; + . + + a ; + 26860; + . + + a ; + 26865; + "family"; + ; + ; + "Son" . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + 26870; + "work"; + ; + ; + ; + . + + a ; + 26875; + "work"; + ; + ; + ; + . + + a ; + 26880; + "work"; + ; + . + + a ; + 26885; + "work"; + ; + ; + ; + . + + a ; + 26890; + "work"; + ; + . + + a ; + 26895; + "work"; + ; + ; + ; + . + + a ; + 269; + ""; + "1884-1886"; + ; + ; + . + + a ; + 26900; + "friendship"; + ; + . + + a ; + 26905; + "work"; + ; + . + + a ; + 26910; + "work"; + ; + ; + ; + . + + a ; + 26915; + "work"; + ; + ; + ; + . + + a ; + 26920; + "work"; + ; + . + + a ; + 26925; + "work"; + ; + . + + a ; + 26930; + . + + a ; + 26935; + . + + a ; + 26940; + . + + a ; + 26945; + "work"; + ; + ; + ; + . + + a ; + 26950; + "work"; + ; + ; + ; + . + + a ; + 26955; + "work"; + ; + ; + ; + . + + a ; + 26960; + . + + a ; + 26965; + . + + a ; + 26970; + "family"; + ; + ; + "Daughter" . + + a ; + 26975; + "family"; + ; + ; + "Son" . + + a ; + "Probably between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26980; + "work"; + ; + . + + a ; + "Probably between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26985; + "work"; + ; + . + + a ; + "Probably between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26990; + "work"; + ; + . + + a ; + "Probably between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 26995; + "work"; + ; + . + + a ; + 27; + "sister"; + ; + . + + a ; + 270; + ""; + ; + ; + "Niece" . + + a ; + "Probably between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 27000; + "work"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 27005; + "work"; + ; + . + + a ; + 27010; + "family"; + ; + ; + "Sister" . + + a ; + 27015; + "friendship"; + ; + . + + a ; + 27020; + "friendship"; + ; + . + + a ; + 27025; + "friendship"; + ; + . + + a ; + 27030; + "friendship"; + ; + . + + a ; + 27035; + "family"; + ; + ; + "Nephew" . + + a ; + 27040; + "family"; + ; + ; + "Niece" . + + a ; + "1966"; + "1966-12-31"^^xsd:date; + "1966-01-01"^^xsd:date; + 27045; + "family"; + ; + ; + "Wife" . + + a ; + "1899-11-18"; + "1899-11-18"^^xsd:date; + "1899-11-18"^^xsd:date; + 27050; + "family"; + ; + ; + "Daughter" . + + a ; + "1980-05-21"; + "1980-05-21"^^xsd:date; + "1980-05-21"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + 27060; + "family"; + ; + ; + "Daughter" . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + 27065; + "family"; + ; + ; + "Other" . + + a ; + 273; + ""; + ; + . + + a ; + 276; + ""; + "nemesis with Wilhelmine Schröder-Devrient"; + ; + . + + a ; + 278; + "work"; + ; + ; + ; + . + + a ; + 28; + "sister"; + ; + . + + a ; + 281; + ""; + ; + ; + "Father" . + + a ; + 284; + ""; + ; + . + + a ; + 287; + ""; + ; + ; + "Brother" . + + a ; + 29; + ""; + "Daughter"; + ; + . + + a ; + 290; + ""; + ; + ; + "Son" . + + a ; + 291; + "teacher"; + "Student friendship"; + ; + . + + a ; + 294; + ""; + ; + . + + a ; + 297; + "Tichatschek sang in Bayreuth in his Wagners operas together with Wilhelmine Schröder-devrient"; + ; + . + + a ; + 3; + ""; + ""; + ; + ; + . + + a ; + 30; + ""; + ""; + "Caesar is acting teacher of Joseph Kainz"; + ; + . + + a ; + 300; + "He met Richard Wagner at Oper Dresden. They worked together very well."; + ; + ; + ; + . + + a ; + 309; + "Alexander Herrmann is Leon's uncle."; + ; + . + + a ; + 31; + "Sister of Marie Lehmann, On stage together with Marie(first Rheintochter) at Bayreuther Festspiele 1876 "; + ; + . + + a ; + 315; + ""; + ; + . + + a ; + 318; + "Blanche Corelli is the daugther of Rosa Csilleg"; + ; + . + + a ; + 32; + """Sister of Lilli Lehmann +On stage together with Lilli Lehmann (second Rheintochter) at Bayreuther Festspiele 1876 """; + ; + . + + a ; + 321; + "family"; + "1893"; + ; + ; + "Husband" . + + a ; + "1899-11-18"; + "1899-11-18"^^xsd:date; + "1899-11-18"^^xsd:date; + 324; + "family"; + "Ida is the daughter of Esther Kaminska."; + ; + ; + "Mother" . + + a ; + "1899-11-18"; + "1899-11-18"^^xsd:date; + "1899-11-18"^^xsd:date; + 327; + "family"; + "Ida is the daughter of Avrom Kaminski."; + ; + ; + "Father" . + + a ; + "Mai 1842"; + "1842-05-31"^^xsd:date; + "1842-05-01"^^xsd:date; + "August 1841"; + "1841-08-31"^^xsd:date; + "1841-08-01"^^xsd:date; + 33; + "teacher"; + "1841"; + ; + ; + . + + a ; + 330; + ""; + "1918-1928"; + ; + . + + a ; + 333; + "Jonas Turkow is Ida Kaminski's brother."; + ; + . + + a ; + 336; + "1918-1928"; + ; + . + + a ; + 339; + "Brothers"; + ; + . + + a ; + 34; + ""; + "1894"; + "Oscar Hammerstein, her patron when she went to the U.S., in 1894"; + ; + . + + a ; + 342; + "Brothers"; + ; + . + + a ; + 345; + "Brothers"; + ; + . + + a ; + 348; + ""; + "1888"; + "marriage, they separated after their return to Europe, but got not divorced"; + ; + . + + a ; + 35; + "Mother of Marie and Lilli Lehmann (opera singer)"; + ; + . + + a ; + 351; + ""; + "asked him for his own singing career"; + ; + . + + a ; + 354; + ""; + "asked him for his own singing career"; + ; + . + + a ; + 357; + ""; + "Bernhard Pollini arranged the contact between Paul Kalisch and Giovanni Battista Lamperti "; + ; + . + + a ; + 36; + "Mother of Marie and Lilli Lehmann (opera singer)"; + ; + . + + a ; + 360; + ""; + "Teresa is the aunt and teacher of Teresina Brambilla."; + ; + ; + "Aunt" . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 362; + "work"; + "Rio de Janeiro, Belém, Manaus"; + ; + ; + . + + a ; + "-"; + "-"; + 365; + ""; + ; + ; + "Father" . + + a ; + "-"; + "-"; + 368; + ""; + ; + ; + "Sister" . + + a ; + 37; + ""; + "Youth friend of Richard Wagner, worked together with him in Magdeburg, where he was a conductor (also on guest appearances in Königsberg and Dresden), 1863 she plays harp under conduction of Richard Wagner in Leipzig"; + ; + ; + . + + a ; + "-"; + "-"; + 371; + ""; + ; + ; + "Brother" . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + 374; + ""; + ; + ; + "Husband" . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + 377; + "work"; + "and Belém"; + ; + ; + ; + . + + a ; + 38; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + 380; + "work"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + 383; + "work"; + "She worked as director in Associação Lírica Dramática"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 386; + ""; + ; + ; + ; + "Wife" . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1890-03-12"^^xsd:date; + 389; + ""; + ; + ; + ; + "Wife" . + + a ; + 39; + ""; + "1876"; + "Assistant of Hans Richter at the Bayreuther Festspiele"; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 392; + ""; + ; + ; + ; + "Wife" . + + a ; + 395; + ""; + ; + ; + ; + "Father" . + + a ; + 398; + ""; + ; + ; + ; + "Brother" . + + a ; + 4; + "work"; + "singing"; + ; + ; + ; + . + + a ; + 40; + ""; + """Closer personal relationship with König Ludwig II, together with Josef Kainz and Emil Rhode +"""; + ; + . + + a ; + 401; + ""; + ; + ; + ; + "Brother" . + + a ; + 404; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1882"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + 407; + ""; + ; + ; + ; + "Daughter" . + + a ; + 41; + "Maurice Strakosch (musician and impresario), her brother-in-law and singing teacher at a young age"; + ; + . + + a ; + 410; + ""; + ; + ; + ; + "Son" . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1887"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 413; + ; + ; + . + + a ; + 42; + ""; + "John Drew, Mrs. Ann Hartley Gilbert, and James Lewis, together they were outstanding stars of the Daly company, called \"Big Four\""; + ; + . + + a ; + 43; + ""; + "Laura Keene was playing together in New York"; + ; + ; + . + + a ; + 434; + ; + ; + . + + a ; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + 437; + ; + ; + . + + a ; + 44; + ""; + ""; + ; + . + + a ; + 440; + "friendship"; + ; + ; + . + + a ; + 443; + "friendship"; + ; + ; + . + + a ; + 446; + "friendship"; + ; + ; + . + + a ; + 449; + "friendship"; + ; + ; + . + + a ; + 45; + "Mentor of Felix Mottl"; + ; + . + + a ; + 452; + "friendship"; + ; + ; + . + + a ; + 455; + "friendship"; + ; + ; + . + + a ; + 458; + "friendship"; + ; + ; + . + + a ; + 46; + ""; + """Paul Taglioni created for her leading roles in ballets such as Fiorita (1848) and La prima ballerina (1849), Coralia and la Reine des Elfrides +"""; + ; + . + + a ; + 461; + "friendship"; + ; + ; + . + + a ; + 464; + "friendship"; + ; + ; + . + + a ; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 467; + ; + ; + . + + a ; + 47; + ""; + "Last years in Paris rivalries with Amalia Ferraris, she canceld her contract and followed an invitation to St.Petersburg 1859"; + ; + . + + a ; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + 470; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + 473; + "work"; + ; + ; + ; + . + + a ; + 476; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 479; + "work"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + 485; + "work"; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 488; + "work"; + ; + ; + . + + a ; + 49; + ""; + ""; + ""; + ; + . + + a ; + "1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + 491; + "work"; + ; + ; + . + + a ; + "-"; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + 494; + "work"; + ; + ; + ; + . + + a ; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 497; + "work"; + ; + ; + ; + . + + a ; + 5; + ""; + ""; + ; + . + + a ; + 50; + ""; + "Juli 1862 she and her husband stayed with Richard Wagner in Biebrich for two weeks. There they studied together the rolls for Tristan, together with Hans von Bülow on the piano."; + ; + . + + a ; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 500; + "work"; + ; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + 506; + "work"; + ; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 509; + "work"; + ; + ; + ; + . + + a ; + 51; + ""; + "She composed songs which she dedicated to Jenny Lind."; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 512; + "work"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + 515; + "work"; + ; + ; + . + + a ; + "-"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + 518; + "work"; + ; + ; + . + + a ; + 52; + "friendship"; + "Friendship with Richard Wagner (he was inspiried by her interpretation of Leonore)"; + ; + . + + a ; + "-"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 521; + "work"; + ; + ; + . + + a ; + "1913-05-06"^^xsd:date; + "1913-05-06"^^xsd:date; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + 524; + ""; + "Teatro Alcázar, Teatro Politeama Argentino, Teatro Politeama Humberto Primo"; + ; + ; + ; + ; + "Wife" . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + 527; + ""; + ; + ; + ; + ; + "Son" . + + a ; + 53; + ""; + ; + ; + . + + a ; + "1872-06-06"^^xsd:date; + "1872-06-06"^^xsd:date; + 530; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1874-02-04"^^xsd:date; + "1874-02-04"^^xsd:date; + 533; + ""; + "Teatro Politeama Argentino and diverse tours"; + ; + ; + ; + ; + "Daughter" . + + a ; + "1879-07-04"^^xsd:date; + "1879-07-04"^^xsd:date; + 536; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1880-12-19"^^xsd:date; + "1880-12-19"^^xsd:date; + 539; + ""; + ; + ; + ; + "Daughter" . + + a ; + 54; + "cousin"; + ; + . + + a ; + "1882-02-06"^^xsd:date; + "1882-02-06"^^xsd:date; + 542; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + 545; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1884-09-17"^^xsd:date; + "1884-09-17"^^xsd:date; + 548; + ""; + ; + ; + ; + "Daughter" . + + a ; + 55; + "cousin."; + ; + . + + a ; + 551; + "friendship"; + ; + ; + . + + a ; + 554; + "work"; + ; + ; + . + + a ; + 557; + "work"; + "Teatro Colón and Teatro Politeama"; + ; + ; + ; + . + + a ; + 56; + "cousin"; + ; + . + + a ; + "1913-05-06"^^xsd:date; + "1913-05-06"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 560; + "work"; + "Politeama Argentino, Brothers Lo Carlo Circus"; + ; + ; + ; + . + + a ; + 563; + "work"; + ; + ; + ; + . + + a ; + 566; + ""; + ; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + 569; + "work"; + ; + ; + . + + a ; + 57; + """brother +"""; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + 572; + "work"; + ; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + 575; + "work"; + ; + ; + ; + . + + a ; + "-"; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + 578; + ""; + ; + ; + "Husband" . + + a ; + 58; + "brother"; + ; + . + + a ; + "-"; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 581; + "work"; + ; + ; + . + + a ; + "-"; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + 584; + "work"; + ; + ; + . + + a ; + "-"; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 587; + "work"; + ; + ; + . + + a ; + 59; + "cousin"; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 590; + "work"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 593; + "work"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + 596; + "work"; + ; + ; + . + + a ; + 597; + ""; + ; + ; + "Father" . + + a ; + 6; + ""; + "1869-1870"; + ""; + ; + ; + . + + a ; + 60; + ""; + "nephew"; + ; + ; + "Nephew" . + + a ; + 600; + ""; + ; + ; + "Brother" . + + a ; + 603; + ""; + ; + ; + "Other" . + + a ; + 606; + ""; + ; + ; + "Wife" . + + a ; + 61; + "1884"; + "wife"; + ; + . + + a ; + 612; + ""; + ; + ; + "Wife" . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 615; + ""; + ; + ; + "Brother" . + + a ; + "1926-10-31"^^xsd:date; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 618; + ""; + ; + ; + "Sister" . + + a ; + 62; + "1852"; + "wife, Adelina Patti: sister in law"; + ; + . + + a ; + "1926-10-31"^^xsd:date; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 621; + ""; + ; + ; + "Brother" . + + a ; + "1926-10-31"^^xsd:date; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + 624; + ""; + ; + ; + "Brother" . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 627; + ""; + ; + ; + "Brother" . + + a ; + 63; + "brother"; + ; + . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 630; + ""; + ; + ; + "Brother" . + + a ; + "1926-10-31"^^xsd:date; + 633; + ""; + ; + ; + "Sister" . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 636; + ""; + ; + ; + "Brother" . + + a ; + "1926-10-31"^^xsd:date; + 639; + ""; + ; + ; + "Wife" . + + a ; + 64; + "brother"; + ; + . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 642; + ""; + ; + ; + "Mother" . + + a ; + "1926-10-31"^^xsd:date; + "1874-03-24"^^xsd:date; + 645; + ""; + ; + ; + "Father" . + + a ; + 648; + ""; + ; + ; + "Father" . + + a ; + 65; + "cousin"; + ; + . + + a ; + 651; + ""; + ; + ; + "Mother" . + + a ; + 654; + "work"; + ; + ; + . + + a ; + 657; + "work"; + ; + ; + . + + a ; + 66; + ""; + "nephew"; + ; + . + + a ; + 660; + "work"; + ; + ; + . + + a ; + 663; + "work"; + ; + ; + . + + a ; + 666; + "work"; + ; + ; + . + + a ; + 669; + "work"; + ; + ; + . + + a ; + 67; + "brother"; + ; + . + + a ; + 672; + "work"; + ; + ; + . + + a ; + 675; + "work"; + ; + ; + . + + a ; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + 678; + "teacher"; + ; + ; + . + + a ; + 68; + "brother"; + ; + . + + a ; + 681; + "other"; + ; + . + + a ; + 684; + "other"; + ; + . + + a ; + 687; + "other"; + ; + . + + a ; + 69; + "cousin"; + ; + . + + a ; + 690; + "other"; + ; + . + + a ; + 693; + "other"; + ; + . + + a ; + 696; + "other"; + ; + . + + a ; + 699; + "other"; + ; + . + + a ; + 7; + ""; + ""; + ; + . + + a ; + 70; + "nephew"; + ; + . + + a ; + 702; + "other"; + ; + . + + a ; + 71; + "Aunt of Marie Taglioni (the younger) "; + ; + . + + a ; + 72; + """Sister of Paul Taglioni +"""; + ; + . + + a ; + 73; + ""; + ""; + ; + ; + . + + a ; + "1923-08-12"^^xsd:date; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 738; + ""; + ; + ; + ; + "Wife" . + + a ; + 74; + "Niece"; + ; + . + + a ; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + 741; + ""; + "Buenos Aires/ Mendoza"; + ; + ; + ; + "Daughter" . + + a ; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "1886-12-30"^^xsd:date; + "1886-01-01"^^xsd:date; + 744; + ""; + "Buenos Aires/ Mendoza"; + ; + ; + ; + "Son" . + + a ; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + 747; + ""; + ; + ; + "Son" . + + a ; + 75; + """Daughter +"""; + ; + . + + a ; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + 750; + ""; + ; + ; + ; + "Son" . + + a ; + "1890-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + 753; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + 756; + ""; + "Guaymallén, Mendoza"; + ; + ; + ; + "Daughter" . + + a ; + 759; + ""; + ; + ; + "Son" . + + a ; + 76; + "Cousin"; + ; + . + + a ; + 762; + ""; + ; + ; + ; + "Other" . + + a ; + 765; + "friendship"; + ; + ; + . + + a ; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1840-10-31"^^xsd:date; + "1840-10-01"^^xsd:date; + 768; + ""; + ; + ; + ; + "Husband" . + + a ; + 77; + "Cousin"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 771; + ""; + "London, U.S.A."; + ; + ; + ; + "Father" . + + a ; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 774; + ""; + "London, U.S.A."; + ; + ; + ; + "Uncle" . + + a ; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + 777; + ""; + ; + ; + ; + "Mother" . + + a ; + 78; + "Cousin"; + ; + . + + a ; + "1853-01-07"^^xsd:date; + "1853-01-07"^^xsd:date; + 780; + "work"; + ; + ; + . + + a ; + "1872-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1872-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + 783; + "work"; + ; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1868-08-18"^^xsd:date; + "1868-07-20"^^xsd:date; + 786; + "work"; + ; + ; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + 789; + ""; + ; + ; + ; + "Sister" . + + a ; + 79; + """Brother +"""; + ; + . + + a ; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + 792; + ""; + ; + ; + ; + "Sister" . + + a ; + "1886-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 795; + "work"; + ; + ; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 798; + ""; + "London, U.S.A."; + ; + ; + ; + "Daughter" . + + a ; + "1868/1895"; + "1895-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 8; + "teacher"; + ""; + ; + ; + . + + a ; + 80; + "Father"; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 801; + "work"; + "London, U.S.A."; + ; + ; + . + + a ; + 804; + ""; + ; + ; + ; + "Son" . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1869-04-01"^^xsd:date; + 807; + ""; + """London, +U.S.A. +"""; + ; + ; + ; + "Other" . + + a ; + 81; + "Uncle"; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1869-04-01"^^xsd:date; + 810; + "work"; + ; + ; + . + + a ; + "1871-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1868-08-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 813; + "work"; + "London, U.S.A."; + ; + ; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1844-03-12"^^xsd:date; + 816; + ""; + ; + ; + ; + "Daughter" . + + a ; + "1892-03-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1844-03-12"^^xsd:date; + 819; + "work"; + "London, U.S.A."; + ; + ; + . + + a ; + 82; + "Uncle"; + ; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1868-07-11"^^xsd:date; + 822; + ""; + "London, U.S.A."; + ; + ; + ; + "Other" . + + a ; + "1872-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + 825; + "work"; + ; + ; + . + + a ; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "1869-04-01"^^xsd:date; + 828; + "work"; + ; + ; + . + + a ; + 83; + "Uncle"; + ; + . + + a ; + 84; + ""; + """ +"""; + ; + . + + a ; + 85; + "In concerts in London and Bruessel she works successfull together with Felix Mottl"; + ; + . + + a ; + 86; + ""; + ; + ; + "Brother" . + + a ; + 87; + ""; + ; + ; + "Father" . + + a ; + 88; + ""; + ; + ; + "Sister" . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 8930; + ""; + "London, U.S.A."; + ; + ; + "Mother" . + + a ; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 8940; + ""; + "London"; + ; + ; + "Father" . + + a ; + "1897-10-12"^^xsd:date; + "1897-10-10"^^xsd:date; + "1868-07-11"^^xsd:date; + "1868-07-11"^^xsd:date; + 8950; + ""; + "London, U.S.A."; + ; + ; + "Husband" . + + a ; + "1904-03-20"^^xsd:date; + "1904-03-20"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 8960; + ""; + "London, Paris"; + ; + ; + "Aunt" . + + a ; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 8970; + ""; + "London"; + ; + ; + "Aunt" . + + a ; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 8980; + ""; + "London, Paris, U.S.A."; + ; + ; + "Sister" . + + a ; + "1864-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1864-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 8995; + "London, Paris"; + ; + . + + a ; + 9; + ""; + "1907"; + "to perform premiere of Thais "; + ; + ; + . + + a ; + 90; + ""; + """wife +"""; + ; + ; + "Husband" . + + a ; + "1871-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + 9000; + "work"; + "London, U.S.A."; + ; + . + + a ; + 9010; + ""; + "London"; + ; + ; + "Brother" . + + a ; + "1936-11-26"^^xsd:date; + "1936-11-25"^^xsd:date; + "1890-11-09"^^xsd:date; + "1890-11-09"^^xsd:date; + 9025; + ""; + "U.S.A."; + ; + ; + "Daughter" . + + a ; + "1876-12-20"^^xsd:date; + "1876-09-23"^^xsd:date; + 9030; + ""; + "-"; + ; + ; + "Son" . + + a ; + "1876-12-20"^^xsd:date; + "1876-09-23"^^xsd:date; + 9035; + ""; + ; + ; + "Son" . + + a ; + 9040; + ""; + "-"; + ; + ; + "Niece" . + + a ; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1844-03-12"^^xsd:date; + "1844-03-12"^^xsd:date; + 9050; + ""; + "-"; + ; + ; + "Grandfather" . + + a ; + 9060; + ""; + "NULL"; + ; + ; + "Grandmother" . + + a ; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + 9070; + "work"; + "-"; + ; + ; + . + + a ; + 9080; + "work"; + "-"; + ; + . + + a ; + 9095; + "work"; + ; + . + + a ; + 91; + ""; + ""; + ; + ; + "Son" . + + a ; + 9105; + "work"; + ; + . + + a ; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 9110; + "work"; + "-"; + ; + . + + a ; + 9125; + "work"; + ; + . + + a ; + 9140; + "work"; + "-"; + ; + . + + a ; + 9155; + "work"; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + 9165; + "work"; + "New York"; + ; + . + + a ; + 9170; + "work"; + "-"; + ; + . + + a ; + 9185; + "work"; + ; + . + + a ; + 9195; + "work"; + ; + . + + a ; + 92; + ""; + "Mother"; + ; + ; + "Daughter" . + + a ; + 9205; + "work"; + "New York"; + ; + . + + a ; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + 9215; + "work"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9220; + "work"; + "New York"; + ; + . + + a ; + 9230; + "work"; + "-"; + ; + . + + a ; + 9240; + "work"; + "-"; + ; + . + + a ; + 9250; + "work"; + "-"; + ; + . + + a ; + 9260; + "work"; + "-"; + ; + . + + a ; + 9270; + "work"; + "Boston"; + ; + . + + a ; + 9280; + "work"; + "New York"; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + 9290; + "work"; + "New York"; + ; + . + + a ; + 93; + ""; + ; + . + + a ; + 9300; + "work"; + "-"; + ; + . + + a ; + 9310; + "work"; + "-"; + ; + . + + a ; + 9320; + "work"; + "-"; + ; + . + + a ; + 9330; + "work"; + "NULL"; + ; + . + + a ; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 9340; + "work"; + "-"; + ; + . + + a ; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + 9350; + "work"; + "New York"; + ; + ; + . + + a ; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + 9360; + "work"; + "New York"; + ; + . + + a ; + 9370; + "work"; + "-"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9380; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9385; + "work"; + "New York"; + ; + . + + a ; + 9390; + "work"; + "New York"; + ; + . + + a ; + 94; + ""; + ; + . + + a ; + 9400; + "work"; + "-"; + ; + . + + a ; + 9410; + "work"; + "-"; + ; + . + + a ; + 9420; + "work"; + "NULL"; + ; + . + + a ; + 9430; + "work"; + "-"; + ; + . + + a ; + 9445; + "work"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9450; + "work"; + "New York"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9465; + "work"; + "New York"; + ; + . + + a ; + 9470; + "work"; + "-"; + ; + . + + a ; + 9480; + "work"; + "New York, Philadelphia"; + ; + ; + . + + a ; + 9490; + "work"; + "-"; + ; + . + + a ; + 95; + "cousin"; + ; + . + + a ; + 9500; + "friendship"; + "-"; + ; + . + + a ; + 9520; + "work"; + "NULL"; + ; + . + + a ; + 9530; + "work"; + "New York"; + ; + . + + a ; + 9540; + "work"; + "-"; + ; + . + + a ; + 9550; + "work"; + "-"; + ; + . + + a ; + 9560; + "work"; + "-"; + ; + . + + a ; + 9570; + "work"; + "New York"; + ; + . + + a ; + 9580; + "work"; + "-"; + ; + . + + a ; + 9590; + "work"; + "NULL"; + ; + . + + a ; + 96; + "cousin"; + ; + . + + a ; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + 9600; + "work"; + "New York"; + ; + . + + a ; + 9610; + "work"; + "-"; + ; + . + + a ; + 9620; + "work"; + "-"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + 9635; + "work"; + "New York"; + ; + . + + a ; + 9640; + "work"; + "-"; + ; + . + + a ; + 9650; + "work"; + "-"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9665; + "work"; + "New York"; + ; + . + + a ; + 9670; + "work"; + "New York"; + ; + . + + a ; + 9680; + "work"; + "New York"; + ; + . + + a ; + 9690; + "work"; + "-"; + ; + . + + a ; + 97; + "sister"; + ; + . + + a ; + 9700; + "work"; + "-"; + ; + . + + a ; + 9710; + "work"; + "-"; + ; + . + + a ; + 9725; + "work"; + ; + . + + a ; + 9730; + "work"; + "-"; + ; + . + + a ; + 9740; + "work"; + "-"; + ; + . + + a ; + 9750; + "work"; + "-"; + ; + . + + a ; + 9765; + "work"; + "New York"; + ; + . + + a ; + 9770; + "work"; + "-"; + ; + . + + a ; + 9780; + "work"; + "-"; + ; + . + + a ; + 98; + ""; + "advised Grisi to study opera singing"; + ; + . + + a ; + "1868-12-31"^^xsd:date; + "1868-08-18"^^xsd:date; + "1868-12-31"^^xsd:date; + "1868-08-18"^^xsd:date; + 9800; + "work"; + "New York"; + ; + . + + a ; + 9810; + "work"; + "-"; + ; + . + + a ; + 9820; + "work"; + "New York"; + ; + . + + a ; + 9830; + "work"; + "-"; + ; + . + + a ; + 9845; + "work"; + ; + . + + a ; + 9850; + "work"; + "-"; + ; + . + + a ; + 9865; + "work"; + "London"; + ; + . + + a ; + 9870; + "work"; + "-"; + ; + . + + a ; + 9880; + "work"; + "-"; + ; + . + + a ; + 9885; + "work"; + ; + . + + a ; + 9895; + "work"; + "New York"; + ; + . + + a ; + 99; + ""; + "In London Giulia Grisi sang together with Maria Malibran (good relationship)."; + ; + . + + a ; + 9900; + "work"; + "-"; + ; + . + + a ; + 9910; + "work"; + "London"; + ; + . + + a ; + 9925; + "work"; + "London"; + ; + . + + a ; + "1871-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1868-08-31"^^xsd:date; + "1868-01-01"^^xsd:date; + 9930; + "work"; + "London,"; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 9940; + "work"; + "New York"; + ; + . + + a ; + 9950; + "work"; + "New York"; + ; + . + + a ; + 9965; + "work"; + "New York"; + ; + . + + a ; + 9970; + "work"; + "-"; + ; + . + + a ; + 9980; + "work"; + "Albany"; + ; + . + + a ; + 9995; + "work"; + ; + . + + a ; + 196; + "Was born to a Jewish family"; + ; + "Jewish" . + + a ; + 199; + "Jewish, her mother was an Orthodox Jew"; + ; + "Jewish" . + + a ; + 205; + "Jewish, showing attraction to Anglican Christianity (attended the Episcopal Church in New Hartford), in addition, all three of her children were baptized"; + ; + "Jewish" . + + a ; + 208; + "Yew"; + ; + "Jewish" . + + a ; + "1883"; + 211; + "Bar Kochba (1883) steht im Zeichen des beginnenden Zionismus"; + ; + "Other" . + + a ; + 217; + "May have converted from Judaism to Roman Catholicism as she married Carrera."; + ; + "Jewish" . + + a ; + 218; + ; + "Christian" . + + a ; + 220; + """Jewish; Fifteen hundred people attended her funeral, considered a disappointing turnout, considering her status in the Jewish community. She had come to be seen as \"a relic of the theatrical past, with a manner too romantic and grand even for the Yiddish stage\" +"""; + ; + "Jewish" . + + a ; + 223; + "baptised evangelical Christian (as a baby), comes from a Jewish family (negative thematised in the wedding to Paul von Thurn und Taxis)"; + ; + "Jewish" . + + a ; + 224; + ; + "Christian" . + + a ; + 226; + "Family with jewish roots"; + ; + "Jewish" . + + a ; + 229; + "Israelitisch"; + ; + "Jewish" . + + a ; + "1812"; + 232; + "evangelical"; + "1812-01-01"^^xsd:date; + ; + "Christian" . + + a ; + "1852"; + 235; + "catholic"; + "1852-01-01"^^xsd:date; + ; + "Christian" . + + a ; + 238; + "Ultramontanismus"; + ; + "Other" . + + a ; + 244; + """converted to Catholicism and was baptized +“My Judaism, as things are now in the world, prevents me from entering any court theater. - Not Vienna, not Berlin, not Dresden, not Munich is open to me. The same wind blows everywhere. \"(Letter to Friedrich Löhr 1804)"""; + "1897-02-23"^^xsd:date; + ; + "Jewish" . + + a ; + 245; + ; + "Christian" . + + a ; + 247; + "Nazimova was born into a jewish family but raised a Catholic. Later she declared, her only faith was in her art."; + ; + "Jewish" . + + a ; + 248; + ; + "Christian" . + + a ; + 250; + "He came from fervent jewish family"; + ; + "Jewish" . + + a ; + 253; + "baptised in St Michael's Roman Catholic Church"; + "1857-06-12"^^xsd:date; + ; + "Christian" . + + a ; + 259; + "Baptized catholic but her maternal grandmother, Leah Kohn, was of Hungarian Jewish descent. Affirmed her Jewish ancestry proudly, fervently opposing the Hitler regime"; + ; + "Jewish" . + + a ; + 260; + ; + "Christian" . + + a ; + 262; + "Jewish"; + ; + "Jewish" . + + a ; + 265; + "was destined to become a preacher"; + ; + "Christian" . + + a ; + 268; + "Her parents were Russian Jews"; + ; + "Jewish" . + + a ; + 272; + "Jewish"; + ; + "Jewish" . + + a ; + 338; + "jewish"; + ; + "Jewish" . + + a ; + 347; + "Ashkenazi Jewish"; + ; + "Jewish" . + + a ; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "1871"; + "1873"; + 355; + "He converted to the Catholic faith at the age of 54 as part of the assimilation of wider Jewish circles after the \"Interconfessional Laws\" of 1868 in Austria allowed a change of religion. He had all his children baptised Protestants in the places where they were born and where he had a stage engagement in each case."; + "1871-01-01"^^xsd:date; + ; + "Jewish" . + + a ; + 356; + ; + "Christian" . + + a ; + 358; + "jewish"; + ; + "Jewish" . + + a ; + 387; + "Jewish"; + ; + "Jewish" . + + a ; + 416; + "Born in a Jewish family he was no active jude, but did not baptize"; + ; + "Jewish" . + + a ; + "1899"; + 423; + "In 1899 he resigned from the Israelite religious community because the climate for Jews in Vienna was deteriorating."; + "1899-01-01"^^xsd:date; + ; + "Jewish" . + + a ; + "1906"; + 429; + "converting to Protestantism."; + "1906-01-01"^^xsd:date; + ; + "Christian" . + + a ; + 431; + ; + "Christian" . + + a ; + 445; + "Protestant"; + ; + "Christian" . + + a ; + 446; + ; + "Christian" . + + a ; + "-"; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 1; + "Singer"; + ""; + ; + . + + a ; + "-"; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 10; + "Singer"; + ""; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 100; + "Guestengagements until his retirement 1897, especially in Bukarest, sang there together with Gemma Bellincioni"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Salonhumorist, Actor"; + "Tour"; + 1000; + "Actor"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Salonhumorist, Actor"; + "Tour"; + 1003; + "Actor"; + ; + . + + a ; + "Summer 1908"; + "1908-09-30"^^xsd:date; + "1908-06-01"^^xsd:date; + "Summer 1908"; + "1908-09-30"^^xsd:date; + "1908-06-01"^^xsd:date; + "Guest"; + 10039; + "Singer"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1860-12-31"^^xsd:date; + "1860-10-20"^^xsd:date; + "Permanent"; + 10044; + "Actor"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + 10049; + "Actor"; + ; + . + + a ; + "1861-11-28"^^xsd:date; + "1861-11-28"^^xsd:date; + "Permanent"; + 10054; + "Actor"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Permanent"; + 10059; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Salonhumorist, Actor"; + "Tour"; + 1006; + "Actor"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 10064; + "Actor"; + ; + ; + . + + a ; + "1878-06-15"^^xsd:date; + "1878-06-15"^^xsd:date; + "Permanent"; + 10069; + "Actor"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-12-31"^^xsd:date; + "1898-03-10"^^xsd:date; + "1898-03-10"^^xsd:date; + "Permanent"; + 10074; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Permanent"; + 10079; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Permanent"; + 10084; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "Other"; + 10089; + "Singer"; + "Actor"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 1009; + "Actor"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Guest"; + 10094; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1903-01-17"^^xsd:date; + "1903-01-17"^^xsd:date; + "Guest"; + 10099; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 101; + "Teacher (Theatre related)"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Guest"; + 10104; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911-05-25"^^xsd:date; + "1911-05-25"^^xsd:date; + "Permanent"; + 10109; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 10114; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + 10119; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 1012; + "Actor"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1916-01-31"^^xsd:date; + "1916-01-31"^^xsd:date; + "Guest"; + 10124; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Permanent"; + 10129; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Permanent"; + 10134; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Permanent"; + 10139; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Permanent"; + 10144; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Guest"; + 10149; + "Singer"; + "Actor"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Guest"; + 10154; + "Teacher (Theatre related)"; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 10159; + "Journalist"; + "Other"; + ; + . + + a ; + "Permanent"; + 10164; + "Journalist"; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 10169; + "Other"; + ; + ; + . + + a ; + "Other"; + 10174; + "Other"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Permanent"; + 10179; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Tour"; + 1018; + "Actor"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 10184; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Permanent"; + 10189; + ; + . + + a ; + "Permanent"; + 10194; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 10198; + "Actor"; + "Agent"; + "Other"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Permanent"; + 10199; + "Actor"; + ; + . + + a ; + "singer, singing teacher, writer"; + "Tour"; + 102; + ""; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Permanent"; + 10200; + "Actor"; + ; + . + + a ; + "Permanent"; + 10204; + "Agent"; + ; + ; + ; + . + + a ; + "Permanent"; + 10209; + "Agent"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Job in an operette"; + "Tour"; + 1021; + ; + . + + a ; + "Permanent"; + 10214; + "Agent"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Permanent"; + 10219; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Permanent"; + 10224; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 10229; + "Impresario"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Other"; + 10239; + "Actor"; + ; + . + + a ; + "Autumn 1934"; + "Kabarett"; + "Tour"; + 1024; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Other"; + 10240; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Other"; + 10245; + "Actor"; + ; + ; + . + + a ; + "1884 May-1889"; + "1889-12-31"^^xsd:date; + "1884-05-01"^^xsd:date; + "1884 May-1889"; + "1889-12-31"^^xsd:date; + "1884-05-01"^^xsd:date; + "Tour"; + 10254; + "Actor"; + ; + . + + a ; + "between 1890 and 1899"; + "1899-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Early 1890s"; + "1899-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 10259; + "Other"; + ; + ; + . + + a ; + "between 1876 and 1877"; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "between 1876 and 1877"; + "1877-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Other"; + 10269; + "Singer"; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "Tour"; + 1027; + "Actor"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Other"; + 10274; + "Singer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Permanent"; + 10279; + "Singer"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 10284; + "Singer"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 10289; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Permanent"; + 10294; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 10299; + "Singer"; + ; + ; + . + + a ; + "singer, singing teacher, writer"; + "Tour"; + 103; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1900"; + "1900-01-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Permanent"; + 10304; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Permanent"; + 10309; + "Singer"; + ; + ; + . + + a ; + "1896-1897"; + "1887-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 10314; + "Singer"; + "Regensburg"; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 10319; + "Singer"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 10324; + "Singer"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 10329; + "Singer"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Permanent"; + 10334; + "Singer"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 10339; + "Singer"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + 10344; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Guest"; + 10349; + "Singer"; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + 10354; + "Singer"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Guest"; + 10359; + "Musician"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Permanent"; + 10364; + "Musician"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Permanent"; + 10369; + "Musician"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Permanent"; + 10374; + "Singer"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Permanent"; + 10379; + "Singer"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Permanent"; + 10384; + "Singer"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Permanent"; + 10389; + "Singer"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Permanent"; + 10394; + "Singer"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + 10399; + "Singer"; + ; + ; + . + + a ; + "singer, singing teacher, writer"; + "Tour"; + 104; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Guest"; + 10404; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 10409; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 10414; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 10419; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Tour"; + 1042; + "Actor"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 10424; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 10429; + "Singer"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 10434; + "Singer"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 10439; + "Singer"; + "Staatstheater Wiesbaden"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 10444; + "Singer"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 10449; + "Singer"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 1045; + "Actor"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 10454; + "Singer"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 10459; + "Singer"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 10464; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 10469; + "Singer"; + ; + ; + . + + a ; + "Permanent"; + 10474; + "Director"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Guest"; + 10479; + "Singer"; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "Kabarettist"; + "Tour"; + 1048; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Guest"; + 10483; + "Singer"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Guest"; + 10484; + "Singer"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Guest"; + 10499; + "Singer"; + ; + ; + . + + a ; + "singer, singing teacher, writer"; + "Tour"; + 105; + ; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10504; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10509; + "Singer"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Broadcaster"; + "Tour"; + 1051; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10514; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10519; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10524; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10529; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10534; + "Singer"; + ; + . + + a ; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1840/1843"; + "1843-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 10539; + "Singer"; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Guest"; + 10544; + "Singer"; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Guest"; + 10549; + "Singer"; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "Permanent"; + 1055; + "Author"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Permanent"; + 10554; + "Singer"; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Guest"; + 10559; + "Singer"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 10564; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Guest"; + 10569; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Guest"; + 10574; + "Singer"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 10579; + "Other"; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + "Tour"; + 10583; + "Singer"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Other"; + 10589; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 10594; + "Director"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 10599; + "Actor"; + ; + ; + . + + a ; + "singer, singing teacher, writer"; + "Tour"; + 106; + "she was on tour through Europe in Straßburg, Danzig, Hamburg, Berlin (Kroll-Oper)"; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 10604; + "Actor"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 10609; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 10614; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10619; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10624; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10629; + "Founder"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 10634; + "Other"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 10639; + "Other"; + ; + ; + . + + a ; + "Guest"; + 10644; + ; + ; + . + + a ; + "Permanent"; + 10649; + "Other"; + "Journalist"; + ""; + ; + ; + . + + a ; + "Permanent"; + 10654; + "Founder"; + "Journalist"; + ""; + ; + ; + . + + a ; + "Permanent"; + 10658; + "Director"; + "Other"; + "Other"; + ; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + "Permanent"; + 1066; + "Author"; + "Translator"; + "for which he wrote around 60 radio plays, some under the pseudonym Gordon Mitchell"; + ; + ; + . + + a ; + "Permanent"; + 10661; + "Director"; + ; + ; + . + + a ; + "Permanent"; + 10666; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Other"; + 10669; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Other"; + 10674; + "Other"; + ; + ; + ; + . + + a ; + "1931-07-09"^^xsd:date; + "1931-07-09"^^xsd:date; + "Permanent"; + 10679; + "Other"; + ; + ; + . + + a ; + "Other"; + 10684; + "Journalist"; + ; + . + + a ; + "Permanent"; + 10689; + "Actor"; + ; + ; + . + + a ; + "1964"; + "1964-12-31"^^xsd:date; + "1964-01-01"^^xsd:date; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "Writer"; + "Other"; + 1069; + "Author"; + "worked as independent author"; + ; + . + + a ; + "Permanent"; + 10694; + "Actor"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928-12-19"^^xsd:date; + "1928-12-19"^^xsd:date; + "Permanent"; + 10699; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 107; + "Director"; + ""; + ; + ; + . + + a ; + "Permanent"; + 10704; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1928-09-29"^^xsd:date; + "1928-09-29"^^xsd:date; + "Permanent"; + 10709; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Permanent"; + 10714; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Permanent"; + 10719; + "Actor"; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "Permanent"; + 10724; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Permanent"; + 10729; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "Permanent"; + 10734; + ; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "1941-05-30"^^xsd:date; + "1941-05-30"^^xsd:date; + "Permanent"; + 10739; + ; + ; + ; + . + + a ; + "1943"; + "1943-12-31"^^xsd:date; + "1943-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Permanent"; + 10744; + ; + . + + a ; + "1958"; + "1958-12-31"^^xsd:date; + "1958-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "Other"; + 10749; + "Other"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 10754; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 10759; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Permanent"; + 10764; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 10766; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Permanent"; + 10769; + "Actor"; + ; + ; + ; + . + + a ; + "1978"; + "1978-12-31"^^xsd:date; + "1978-01-01"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 10774; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 10779; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 10784; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 10789; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 1079; + "Actor"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Permanent"; + 10793; + "Actor"; + ; + ; + ; + . + + a ; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "Permanent"; + 10794; + "Actor"; + ; + ; + ; + . + + a ; + "Permanent"; + 10799; + "Actor"; + ; + . + + a ; + "Tour"; + 108; + "Impresario"; + "In the 1880s he was impresario in Europe together with his brother Maurice and his nephew Robert (Maurice´s son)."; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 10804; + "Impresario"; + ; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Permanent"; + 10809; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10814; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10819; + "Impresario"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + "Tour"; + 1082; + "Actor"; + ; + . + + a ; + "Permanent"; + 10824; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10829; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10834; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 10839; + "Impresario"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Permanent"; + 10844; + "Impresario"; + ; + ; + ; + . + + a ; + "Permanent"; + 10849; + "Impresario"; + ; + ; + . + + a ; + "Ocotber 1914"; + "1914-10-31"^^xsd:date; + "1914-10-01"^^xsd:date; + "Tour"; + 1085; + "Actor"; + ; + ; + . + + a ; + "1941-12-31"; + "Permanent"; + 10854; + "Other"; + ; + ; + . + + a ; + "1897-01-01"; + "Guest"; + 10859; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 10864; + "Other"; + ; + . + + a ; + "1904-12-31"; + "1904-01-01"; + "Permanent"; + 10869; + ; + ; + ; + . + + a ; + "1904-01-01"; + "Permanent"; + 10874; + ; + . + + a ; + "1905-12-31"; + "1905-06-03"^^xsd:date; + "1905-06-03"^^xsd:date; + "Permanent"; + 10879; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 1088; + "Actor"; + ; + ; + . + + a ; + "1906-12-31"; + "1906-01-01"; + "Permanent"; + 10884; + ; + ; + ; + . + + a ; + "1910-01-01"; + "Permanent"; + 10889; + "Founder"; + "Other"; + ; + ; + . + + a ; + "1913-01-01"; + "Permanent"; + 10894; + "Other"; + ; + ; + . + + a ; + "1913-12-31"; + "1913-03-01"^^xsd:date; + "1913-03-01"^^xsd:date; + "Permanent"; + 10899; + ; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 109; + "organized a concert tour in Rome."; + ; + . + + a ; + "1922-12-31"; + "1914-01-01"; + "Permanent"; + 10904; + ; + . + + a ; + "1913-10-29"^^xsd:date; + "1913-10-29"^^xsd:date; + "Guest"; + 10909; + ; + ; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "Tour"; + 1091; + "Actor"; + "Composer"; + "Director"; + ; + ; + . + + a ; + "1913-11-07"^^xsd:date; + "1913-11-07"^^xsd:date; + "Guest"; + 10914; + ; + ; + ; + . + + a ; + "1914-03-20"^^xsd:date; + "1914-03-20"^^xsd:date; + "Permanent"; + 10919; + "Director"; + ; + ; + ; + . + + a ; + "1914-11-27"^^xsd:date; + "1914-11-27"^^xsd:date; + "Permanent"; + 10924; + "Director"; + ; + ; + ; + . + + a ; + "1915-01-15"^^xsd:date; + "1915-01-15"^^xsd:date; + "Permanent"; + 10929; + "Director"; + ; + ; + ; + . + + a ; + "Permanent"; + 10933; + "Director"; + ; + ; + ; + . + + a ; + "1916-02-10"^^xsd:date; + "1916-02-10"^^xsd:date; + "Permanent"; + 10934; + "Director"; + ; + ; + ; + . + + a ; + "1916-07-28"^^xsd:date; + "1916-07-28"^^xsd:date; + "Permanent"; + 10939; + "Director"; + ; + ; + ; + . + + a ; + "1916-10-07"^^xsd:date; + "1916-10-07"^^xsd:date; + "Permanent"; + 10944; + "Director"; + ; + ; + ; + . + + a ; + "1916-11-17"^^xsd:date; + "1916-11-17"^^xsd:date; + "Other"; + 10949; + "Director"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 1095; + "Singer"; + "North-America Tour"; + ; + . + + a ; + "1916-11-27"^^xsd:date; + "1916-11-27"^^xsd:date; + "Other"; + 10954; + "Director"; + ; + ; + ; + . + + a ; + "1917-01-12"^^xsd:date; + "1917-01-12"^^xsd:date; + "Guest"; + 10959; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "1917-01-31"^^xsd:date; + "1917-01-31"^^xsd:date; + "Tour"; + 10964; + ; + ; + ; + . + + a ; + "1917-01-01"; + "Permanent"; + 10969; + "Other"; + ; + ; + . + + a ; + "1920-12-31"; + "1920-01-01"; + "Other"; + 10974; + ; + ; + ; + . + + a ; + "1933-12-31"; + "1923-01-01"; + "Permanent"; + 10979; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 1098; + "Singer"; + ; + . + + a ; + "1933-04-20"^^xsd:date; + "1933-04-20"^^xsd:date; + "Permanent"; + 10984; + ; + ; + ; + . + + a ; + "1934-12-31"; + "1934-01-01"; + "Permanent"; + 10989; + "Other"; + ; + ; + . + + a ; + "1936-03-28"^^xsd:date; + "1936-03-28"^^xsd:date; + "Permanent"; + 10994; + ; + ; + . + + a ; + "1938-01-01"; + "Permanent"; + 10999; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 11; + "Singer"; + "Deutsches Theater Prag"; + ; + ; + . + + a ; + "Tour"; + 110; + "Musician"; + "Director"; + "Impresario"; + ""; + . + + a ; + "1914-06-12"^^xsd:date; + "1914-06-12"^^xsd:date; + "Permanent"; + 11004; + "Director"; + ; + ; + ; + . + + a ; + "-"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Permanent"; + 11009; + "Other"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 1101; + "Singer"; + ; + . + + a ; + "1st March 1935"; + "1935-03-01"^^xsd:date; + "1935-03-01"^^xsd:date; + "4th December 1929"; + "1929-12-04"^^xsd:date; + "1929-12-04"^^xsd:date; + "Permanent"; + 11014; + "Singer"; + ; + ; + . + + a ; + "1st November 1931"; + "1931-11-01"^^xsd:date; + "1931-11-01"^^xsd:date; + "30th September 1931"; + "1931-09-30"^^xsd:date; + "1931-09-30"^^xsd:date; + "Tour"; + 11019; + "Singer"; + ; + ; + . + + a ; + "-"; + "21st August 1932"; + "1932-08-21"^^xsd:date; + "1932-08-21"^^xsd:date; + "Guest"; + 11024; + "Singer"; + "Cine Atlântico"; + ; + . + + a ; + "18th October 1932"; + "1932-10-18"^^xsd:date; + "1932-10-18"^^xsd:date; + "17th October 1932"; + "1932-10-17"^^xsd:date; + "1932-10-17"^^xsd:date; + "Tour"; + 11029; + "Singer"; + ; + ; + . + + a ; + "20th - 29th October 1932"; + "1932-10-29"^^xsd:date; + "1932-10-20"^^xsd:date; + "Tour"; + 11034; + "Singer"; + "Alagoinhas"; + ; + ; + . + + a ; + "December 1936"; + "1936-12-31"^^xsd:date; + "1936-12-01"^^xsd:date; + "August 1933"; + "1933-08-31"^^xsd:date; + "1933-08-01"^^xsd:date; + "Permanent"; + 11039; + "Singer"; + "Radio Mayrink Veiga"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 1104; + "Singer"; + ; + . + + a ; + "-"; + "26th October 1934"; + "1934-10-26"^^xsd:date; + "1934-10-26"^^xsd:date; + "Tour"; + 11044; + "Singer"; + ; + ; + . + + a ; + "May 1935"; + "1935-05-23"^^xsd:date; + "1935-05-01"^^xsd:date; + "Guest"; + 11049; + "Actor"; + "Singer"; + "acted in the film \"Estudantes\" directed by Wallace Downey"; + ; + . + + a ; + "between June and July 1935"; + "1935-07-31"^^xsd:date; + "1935-06-01"^^xsd:date; + "23rd May 1935"; + "1935-05-23"^^xsd:date; + "1935-05-23"^^xsd:date; + "Tour"; + 11053; + "Singer"; + "Radio Belgrano"; + ; + ; + . + + a ; + "End of August 1935"; + "1935-08-31"^^xsd:date; + "1935-08-20"^^xsd:date; + "Tour"; + 11059; + "Singer"; + . + + a ; + "15th January 1936"; + "1936-01-15"^^xsd:date; + "1936-01-15"^^xsd:date; + "December 1935"; + "1935-12-31"^^xsd:date; + "1935-12-01"^^xsd:date; + "Guest"; + 11064; + "Actor"; + "Singer"; + "acted in the film \"Alô, alô, Carnaval\" directed by Wallace Downey"; + ; + . + + a ; + "August 1936"; + "1936-08-31"^^xsd:date; + "1936-08-01"^^xsd:date; + "July 1936"; + "1936-07-31"^^xsd:date; + "1936-07-01"^^xsd:date; + "Tour"; + 11069; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1107; + "Singer"; + ; + . + + a ; + "3rd May 1939"; + "1939-05-03"^^xsd:date; + "1939-05-03"^^xsd:date; + "December 1936"; + "1936-12-31"^^xsd:date; + "1936-12-01"^^xsd:date; + "Permanent"; + 11074; + "Singer"; + ; + ; + . + + a ; + "July 1937"; + "1937-07-31"^^xsd:date; + "1937-07-01"^^xsd:date; + "June 1937"; + "1937-06-30"^^xsd:date; + "1937-06-01"^^xsd:date; + "Tour"; + 11079; + "Singer"; + ; + . + + a ; + "November 1937"; + "1937-11-30"^^xsd:date; + "1937-11-01"^^xsd:date; + "Permanent"; + 11084; + "Singer"; + ; + ; + . + + a ; + "December 1937"; + "1937-12-31"^^xsd:date; + "1937-12-01"^^xsd:date; + "Guest"; + 11089; + "Singer"; + ; + ; + . + + a ; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "Tour"; + 11094; + "Singer"; + ; + ; + . + + a ; + "March 1938"; + "1938-03-31"^^xsd:date; + "1938-03-01"^^xsd:date; + "Tour"; + 11099; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 111; + "Manager"; + ""; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Tour"; + 1110; + "Singer"; + "North-America Tour. After the first world war he played in films especiallly in silent movies."; + ; + . + + a ; + "End of 1938"; + "1938-12-31"^^xsd:date; + "1938-09-01"^^xsd:date; + "Guest"; + 11104; + "Actor"; + "Singer"; + "acted in the film \"Banana da terra\" directed by Wallace Downey"; + ; + . + + a ; + "January 1939"; + "1939-01-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Tour"; + 11108; + "Singer"; + "São Paulo, Santos,  Campinas, Franca, Ribeirão Preto, Poços de Caldas"; + ; + . + + a ; + "11th June 1939"; + "1939-06-11"^^xsd:date; + "1939-06-11"^^xsd:date; + "29th May 1939"; + "1939-05-29"^^xsd:date; + "1939-05-29"^^xsd:date; + "Tour"; + 11109; + "Singer"; + ; + ; + . + + a ; + "January 1940"; + "1940-01-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "13rd September 1939"; + "1939-09-13"^^xsd:date; + "1939-09-13"^^xsd:date; + "Permanent"; + 11114; + "Singer"; + "12 Weeks Contract"; + ; + ; + . + + a ; + "15th January 1940"; + "1940-01-15"^^xsd:date; + "1940-01-15"^^xsd:date; + "Guest"; + 11119; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1112; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "End of February 1940"; + "1940-02-29"^^xsd:date; + "1940-02-19"^^xsd:date; + "Tour"; + 11124; + "Singer"; + "Tour with expectacle „Streets of Paris“ in Philadelphia, Toronto, Pittsburgh, Saint Louis"; + ; + . + + a ; + "Between 1st and 16th May 1940"; + "1940-05-16"^^xsd:date; + "1940-05-01"^^xsd:date; + "April 1940"; + "1940-04-30"^^xsd:date; + "1940-04-01"^^xsd:date; + "Tour"; + 11129; + "Singer"; + "Tour with expectacle „Streets of Paris“"; + ; + ; + . + + a ; + "16th May 1940"; + "1940-05-16"^^xsd:date; + "1940-05-16"^^xsd:date; + "Guest"; + 11134; + "Singer"; + "3 weeks contrct"; + ; + ; + . + + a ; + "24th September 1940"; + "1940-09-24"^^xsd:date; + "1940-09-24"^^xsd:date; + "15th July 1940"; + "1940-07-15"^^xsd:date; + "1940-07-15"^^xsd:date; + "Guest"; + 11139; + "Singer"; + ; + ; + . + + a ; + "27th September 1940"; + "1940-09-27"^^xsd:date; + "1940-09-27"^^xsd:date; + "26th September 1940"; + "1940-09-26"^^xsd:date; + "1940-09-26"^^xsd:date; + "Guest"; + 11144; + "Singer"; + ; + ; + . + + a ; + "Between 20th and 31th October 1940"; + "1940-10-31"^^xsd:date; + "1940-10-20"^^xsd:date; + "Between 17th and 25th October 1940"; + "1940-10-25"^^xsd:date; + "1940-10-17"^^xsd:date; + "Guest"; + 11149; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1115; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "5th January 1941"; + "1941-01-05"^^xsd:date; + "1941-01-05"^^xsd:date; + "5th January 1941"; + "1941-01-05"^^xsd:date; + "1941-01-05"^^xsd:date; + "Guest"; + 11154; + "Singer"; + ; + ; + . + + a ; + "May 1942"; + "1942-05-31"^^xsd:date; + "1942-05-01"^^xsd:date; + "9th October 1941"; + "1941-10-09"^^xsd:date; + "1941-10-09"^^xsd:date; + "Permanent"; + 11159; + "Singer"; + ; + ; + . + + a ; + "Second half of November 1941"; + "1941-11-30"^^xsd:date; + "1941-11-15"^^xsd:date; + "Tour"; + 11164; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "January 1946"; + "1946-01-31"^^xsd:date; + "1946-01-01"^^xsd:date; + "May 1942"; + "1942-05-30"^^xsd:date; + "1942-05-01"^^xsd:date; + "Permanent"; + 11169; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Between 10th and 19th April 1946"; + "1946-04-19"^^xsd:date; + "1946-04-10"^^xsd:date; + "ing of February 1946"; + "1946-02-10"^^xsd:date; + "1946-02-01"^^xsd:date; + "Tour"; + 11174; + "Singer"; + ; + ; + . + + a ; + "June 1947"; + "1947-06-30"^^xsd:date; + "1947-06-01"^^xsd:date; + "April 1947"; + "1947-04-30"^^xsd:date; + "1947-04-01"^^xsd:date; + "Guest"; + 11179; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1118; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "Tour"; + 112; + "Dancer"; + "Actor"; + "Singer"; + "He played lover roles there, was a character actor and sang in the choir. At times he even danced ballet, repeatedly partnering the famous dancer Katharina Lanner (daughter of Joseph Lanner)."; + . + + a ; + "Tour"; + 1121; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "Tour"; + 1124; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "-"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Permanent"; + 11264; + "Other"; + ; + . + + a ; + "-"; + "January 1929"; + "1929-01-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Guest"; + 11269; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1127; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "-"; + "13rd September 1930"; + "1930-09-13"^^xsd:date; + "1930-09-13"^^xsd:date; + "Guest"; + 11274; + "Singer"; + "Musical Revue \"Vai dar o que falar\""; + ; + ; + . + + a ; + "15th August 1932"; + "1932-08-15"^^xsd:date; + "1932-08-15"^^xsd:date; + "8th August 1932"; + "1932-08-08"^^xsd:date; + "1932-08-08"^^xsd:date; + "Guest"; + 11279; + "Singer"; + ; + ; + . + + a ; + "16th October 1932"; + "1932-10-16"^^xsd:date; + "1932-10-16"^^xsd:date; + "26th September 1932"; + "1932-09-26"^^xsd:date; + "1932-09-26"^^xsd:date; + "Tour"; + 11284; + "Singer"; + ; + ; + . + + a ; + "20th October 1932"; + "1932-10-20"^^xsd:date; + "1932-10-20"^^xsd:date; + "Tour"; + 11289; + "Singer"; + "Cachoeiro and São Félix"; + ; + . + + a ; + "5th November 1932"; + "1932-11-05"^^xsd:date; + "1932-11-05"^^xsd:date; + "29th October 1932"; + "1932-10-29"^^xsd:date; + "1932-10-29"^^xsd:date; + "Tour"; + 11293; + "Singer"; + ; + ; + . + + a ; + "January 1933"; + "1933-01-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "December 1932"; + "1932-12-31"^^xsd:date; + "1932-12-01"^^xsd:date; + "Other"; + 11294; + "Singer"; + "Actor"; + "shot the film „Voz do Carnaval“"; + ; + . + + a ; + "4th December 1933"; + "1933-12-04"^^xsd:date; + "1933-12-04"^^xsd:date; + "30th October 1933"; + "1933-10-30"^^xsd:date; + "1933-10-30"^^xsd:date; + "Tour"; + 11299; + "Singer"; + "Radio Excelsior"; + ; + ; + . + + a ; + "Tour"; + 113; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1130; + "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + ; + . + + a ; + "4th May 1939"; + "1939-05-04"^^xsd:date; + "1939-05-04"^^xsd:date; + "March 1935"; + "1935-03-31"^^xsd:date; + "1935-03-01"^^xsd:date; + "Permanent"; + 11304; + "Singer"; + "Odeon Records"; + ; + ; + . + + a ; + "End of July 1935"; + "1935-07-31"^^xsd:date; + "1935-07-20"^^xsd:date; + "Tour"; + 11309; + "Singer"; + ; + ; + . + + a ; + "Itinerant"; + 1131; + "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + ; + . + + a ; + "End of August 1935"; + "1935-08-31"^^xsd:date; + "1935-08-20"^^xsd:date; + "Tour"; + 11314; + "Singer"; + . + + a ; + "20th October 1935"; + "1935-10-20"^^xsd:date; + "1935-10-20"^^xsd:date; + "Tour"; + 11319; + "Singer"; + "She stayed for 46 days contract"; + ; + ; + . + + a ; + "January 1936"; + "1936-01-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Guest"; + 11324; + "Singer"; + ; + ; + . + + a ; + "November 1937"; + "1937-11-30"^^xsd:date; + "1937-11-01"^^xsd:date; + "December 1936"; + "1936-12-31"^^xsd:date; + "1936-12-01"^^xsd:date; + "Permanent"; + 11329; + "Singer"; + ; + ; + . + + a ; + "July 1937"; + "1937-07-31"^^xsd:date; + "1937-07-01"^^xsd:date; + "June 1937"; + "1937-06-30"^^xsd:date; + "1937-06-01"^^xsd:date; + "Tour"; + 11334; + "Singer"; + ; + ; + . + + a ; + "July 1937"; + "1937-07-31"^^xsd:date; + "1937-07-01"^^xsd:date; + "Tour"; + 11339; + "Singer"; + ; + ; + . + + a ; + "Itinerant"; + 1134; + "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + ; + . + + a ; + "November 1937"; + "1937-10-31"^^xsd:date; + "1937-10-01"^^xsd:date; + "October 1937"; + "1937-10-31"^^xsd:date; + "1937-10-01"^^xsd:date; + "Tour"; + 11344; + "Singer"; + ; + ; + . + + a ; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "Tour"; + 11349; + "Singer"; + ; + ; + . + + a ; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "February 1938"; + "1938-02-28"^^xsd:date; + "1938-02-01"^^xsd:date; + "Tour"; + 11354; + "Singer"; + "Cassinos  tour in São Paulo State : Franca, Ribeirão Preto, Campinas, Santos, Poços de Caldas"; + ; + ; + . + + a ; + "Meadle of April 1938"; + "1938-04-22"^^xsd:date; + "1938-04-10"^^xsd:date; + "Tour"; + 11359; + "Singer"; + ; + ; + . + + a ; + "Between mid January and Mid February 1940"; + "1940-02-16"^^xsd:date; + "1940-01-15"^^xsd:date; + "17th May 1939"; + "1939-05-17"^^xsd:date; + "1939-05-17"^^xsd:date; + "Permanent"; + 11364; + "Singer"; + "Premiere in 1939-06-19"; + ; + ; + . + + a ; + "September 1939"; + "1939-09-30"^^xsd:date; + "1939-09-01"^^xsd:date; + "29th June 1939"; + "1939-06-29"^^xsd:date; + "1939-06-29"^^xsd:date; + "Permanent"; + 11369; + "Singer"; + "Actor"; + "Programm „The Fleischmann Hour“. Premiere 1939-07-03"; + ; + ; + . + + a ; + "Itinerant"; + 1137; + "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + ; + . + + a ; + "26th December 1939"; + "1939-12-26"^^xsd:date; + "1939-12-26"^^xsd:date; + "Other"; + 11374; + "Singer"; + ; + ; + . + + a ; + "19th January 1940"; + "1940-01-19"^^xsd:date; + "1940-01-19"^^xsd:date; + "Guest"; + 11379; + "Singer"; + ; + ; + . + + a ; + "between 1st and 5th March 1940"; + "1940-03-05"^^xsd:date; + "1940-03-01"^^xsd:date; + "Tour"; + 11384; + "Singer"; + ; + ; + . + + a ; + "Between 1st and 16th May 1940"; + "1940-05-16"^^xsd:date; + "1940-05-01"^^xsd:date; + "April 1940"; + "1940-04-30"^^xsd:date; + "1940-04-01"^^xsd:date; + "Guest"; + 11389; + "Singer"; + ; + ; + . + + a ; + "Second half of May 1940"; + "1940-05-31"^^xsd:date; + "1940-05-16"^^xsd:date; + "Guest"; + 11394; + "Singer"; + ; + ; + . + + a ; + "1st October 1940"; + "1940-10-01"^^xsd:date; + "1940-10-01"^^xsd:date; + "22nd August 1940"; + "1940-08-22"^^xsd:date; + "1940-08-22"^^xsd:date; + "Guest"; + 11399; + "Singer"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 114; + "Actor"; + ; + ; + . + + a ; + "28th September 1940"; + "1940-09-28"^^xsd:date; + "1940-09-28"^^xsd:date; + "28th September 1940"; + "1940-09-28"^^xsd:date; + "1940-09-28"^^xsd:date; + "Guest"; + 11404; + "Singer"; + ; + ; + . + + a ; + "25th August 1941"; + "1941-08-25"^^xsd:date; + "1941-08-25"^^xsd:date; + "15th November 1940"; + "1940-11-15"^^xsd:date; + "1940-11-15"^^xsd:date; + "Permanent"; + 11409; + "Actor"; + "Singer"; + "Accted in film “That night in Rio”"; + ; + ; + . + + a ; + "7th October 1941"; + "1941-10-07"^^xsd:date; + "1941-10-07"^^xsd:date; + "Permanent"; + 11414; + "Singer"; + "Actor"; + "Shubert Musical Revue “Sons of fun”. Premiere in 1941-12-01"; + ; + ; + . + + a ; + "December 1941"; + "1941-12-31"^^xsd:date; + "1941-12-01"^^xsd:date; + "between September and October 1941"; + "1941-10-31"^^xsd:date; + "1941-09-01"^^xsd:date; + "Guest"; + 11419; + "Singer"; + ; + ; + . + + a ; + "February 1942"; + "1942-02-28"^^xsd:date; + "1942-02-01"^^xsd:date; + "January 1942"; + "1942-01-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "Guest"; + 11424; + "Singer"; + "Two weeks season"; + ; + ; + . + + a ; + "Between 10th and 19th May 1945"; + "1945-05-19"^^xsd:date; + "1945-05-10"^^xsd:date; + "Beginning of February 1945"; + "1945-02-10"^^xsd:date; + "1945-02-01"^^xsd:date; + "Tour"; + 11429; + "Singer"; + ; + ; + . + + a ; + "1st January 1946"; + "1946-01-01"^^xsd:date; + "1946-01-01"^^xsd:date; + "Other"; + 11434; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Permanent"; + 11494; + "Actor"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Permanent"; + 11499; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Tour"; + 115; + "Actor"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Guest"; + 11504; + "Singer"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Guest"; + 11509; + "Singer"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Permanent"; + 11514; + "Singer"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Permanent"; + 11519; + "Singer"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Permanent"; + 11524; + "Singer"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Permanent"; + 11529; + "Singer"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Permanent"; + 11534; + "Singer"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 11539; + "Singer"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Permanent"; + 11544; + "Singer"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Permanent"; + 11549; + "Singer"; + ; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Permanent"; + 11554; + "Singer"; + ; + ; + . + + a ; + "1869"; + "1869-12-01"^^xsd:date; + "1869-01-01"^^xsd:date; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Permanent"; + 11559; + "Singer"; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Permanent"; + 11564; + "Singer"; + ; + ; + . + + a ; + "between May and September 1947"; + "1947-09-30"^^xsd:date; + "1947-05-01"^^xsd:date; + "between May and August 1947"; + "1947-08-31"^^xsd:date; + "1947-05-01"^^xsd:date; + "Guest"; + 11574; + "Singer"; + ; + . + + a ; + "September 1947"; + "1947-09-30"^^xsd:date; + "1947-09-01"^^xsd:date; + "Guest"; + 11579; + "Singer"; + ; + ; + . + + a ; + "Three weeks season"; + "1948-02-29"^^xsd:date; + "1948-02-01"^^xsd:date; + "February 1948"; + "1948-02-29"^^xsd:date; + "1948-02-01"^^xsd:date; + "Guest"; + 11584; + "Singer"; + . + + a ; + "first half of April 1948"; + "1948-04-16"^^xsd:date; + "1948-04-01"^^xsd:date; + "between March and April 1948"; + "1948-04-16"^^xsd:date; + "1948-03-01"^^xsd:date; + "Guest"; + 11589; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Six weeks season"; + "1948-06-07"^^xsd:date; + "1948-06-07"^^xsd:date; + "second half of April 1948"; + "1948-04-26"^^xsd:date; + "1948-04-26"^^xsd:date; + "Tour"; + 11594; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "27th September 1948"; + "1948-09-27"^^xsd:date; + "1948-09-27"^^xsd:date; + "Guest"; + 11599; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 116; + "Actor"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "December 1948"; + "1948-12-31"^^xsd:date; + "1948-12-01"^^xsd:date; + "December 1948"; + "1948-12-31"^^xsd:date; + "1948-12-01"^^xsd:date; + "Tour"; + 11604; + "Actor"; + "Singer"; + ; + . + + a ; + "January 1949"; + "1949-01-31"^^xsd:date; + "1949-01-01"^^xsd:date; + "December 1948"; + "1948-12-31"^^xsd:date; + "1948-12-01"^^xsd:date; + "Tour"; + 11609; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "January 1949"; + "1949-01-31"^^xsd:date; + "1949-01-01"^^xsd:date; + "January 1949"; + "1949-01-31"^^xsd:date; + "1949-01-01"^^xsd:date; + "Tour"; + 11614; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "February 1949"; + "1949-02-28"^^xsd:date; + "1949-02-01"^^xsd:date; + "February 1949"; + "1949-02-28"^^xsd:date; + "1949-02-01"^^xsd:date; + "Tour"; + 11619; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "February 1949"; + "1949-02-28"^^xsd:date; + "1949-02-01"^^xsd:date; + "February 1949"; + "1949-02-28"^^xsd:date; + "1949-02-01"^^xsd:date; + "Tour"; + 11624; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "November 1949"; + "1949-11-30"^^xsd:date; + "1949-11-01"^^xsd:date; + "August 1949"; + "1949-08-31"^^xsd:date; + "1949-08-01"^^xsd:date; + "Other"; + 11629; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "January 1950"; + "1950-01-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "January 1950"; + "1950-01-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Tour"; + 11634; + "Actor"; + "Singer"; + "Miami"; + ; + . + + a ; + "March 1950"; + "1950-03-31"^^xsd:date; + "1950-03-01"^^xsd:date; + "March 1950"; + "1950-03-31"^^xsd:date; + "1950-03-01"^^xsd:date; + "Tour"; + 11639; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Tour"; + 11644; + "Actor"; + "Singer"; + "also in Detroid and other cities"; + ; + . + + a ; + "Tour"; + 11649; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "August 1955"; + "1955-08-31"^^xsd:date; + "1955-08-01"^^xsd:date; + "Guest"; + 11654; + "Actor"; + "Singer"; + ; + . + + a ; + "25th March 1951"; + "1951-03-25"^^xsd:date; + "1951-03-25"^^xsd:date; + "25th March 1951"; + "1951-03-25"^^xsd:date; + "1951-03-25"^^xsd:date; + "Guest"; + 11659; + "Actor"; + "Singer"; + ; + . + + a ; + "April 1951"; + "1951-04-30"^^xsd:date; + "1951-04-01"^^xsd:date; + "March 1951"; + "1951-03-31"^^xsd:date; + "1951-03-01"^^xsd:date; + "Guest"; + 11664; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "between March and April 1951"; + "1951-04-30"^^xsd:date; + "1951-03-01"^^xsd:date; + "between March and April 1951"; + "1951-04-30"^^xsd:date; + "1951-03-01"^^xsd:date; + "Guest"; + 11669; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Guest"; + 11674; + "Actor"; + ; + . + + a ; + "Guest"; + 11679; + ; + . + + a ; + "Guest"; + 11683; + ; + . + + a ; + "3rd October 1951"; + "1951-10-03"^^xsd:date; + "1951-10-03"^^xsd:date; + "22nd August 1951"; + "1951-08-22"^^xsd:date; + "1951-08-22"^^xsd:date; + "Tour"; + 11684; + "Actor"; + "Singer"; + "Tour in 43 Cities of USA"; + ; + ; + . + + a ; + "December 1951"; + "1951-12-31"^^xsd:date; + "1951-12-01"^^xsd:date; + "November 1951"; + "1951-11-30"^^xsd:date; + "1951-11-01"^^xsd:date; + "Guest"; + 11689; + "Singer"; + ; + ; + . + + a ; + "December 1951"; + "1951-12-31"^^xsd:date; + "1951-12-01"^^xsd:date; + "November 1951"; + "1951-11-30"^^xsd:date; + "1951-11-01"^^xsd:date; + "Guest"; + 11694; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "December 1951"; + "1951-12-31"^^xsd:date; + "1951-12-01"^^xsd:date; + "November 1951"; + "1951-11-30"^^xsd:date; + "1951-11-01"^^xsd:date; + "Guest"; + 11699; + "Actor"; + "Singer"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 117; + "Teacher (Theatre related)"; + "he was appointed professor at the Academy of Music in Munich, where he was also responsible for the artistic training of young talents at the Court Theatre."; + . + + a ; + "January 1952"; + "January 1952"; + "1952-01-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "Guest"; + 11704; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "January 1952"; + "1952-01-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "January 1952"; + "1952-01-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "Guest"; + 11709; + "Actor"; + "Singer"; + ; + . + + a ; + "January 1952"; + "1952-01-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "January 1952"; + "1952-01-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "Guest"; + 11714; + "Actor"; + "Singer"; + ; + . + + a ; + "March 1952"; + "1952-03-31"^^xsd:date; + "1952-03-01"^^xsd:date; + "March 1952"; + "1952-03-31"^^xsd:date; + "1952-03-01"^^xsd:date; + "Guest"; + 11719; + "Actor"; + "Singer"; + ; + . + + a ; + "May 1952"; + "1952-05-31"^^xsd:date; + "1952-05-01"^^xsd:date; + "May 1952"; + "1952-05-31"^^xsd:date; + "1952-05-01"^^xsd:date; + "Guest"; + 11724; + "Actor"; + "Singer"; + ; + . + + a ; + "July 1952"; + "1952-07-31"^^xsd:date; + "1952-07-01"^^xsd:date; + "June 1952"; + "1952-06-30"^^xsd:date; + "1952-06-01"^^xsd:date; + "Other"; + 11729; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "December 1952"; + "1952-12-31"^^xsd:date; + "1952-12-01"^^xsd:date; + "Guest"; + 11734; + "Actor"; + "Singer"; + ; + . + + a ; + "June 1953"; + "1953-06-30"^^xsd:date; + "1953-06-01"^^xsd:date; + "20th March 1953"; + "1953-03-20"^^xsd:date; + "1953-03-20"^^xsd:date; + "Tour"; + 11739; + "Actor"; + "Singer"; + "Tour in Europe ( Italy, Sweden and Finland)"; + ; + ; + . + + a ; + "September 1953"; + "1953-09-30"^^xsd:date; + "1953-09-01"^^xsd:date; + "September 1953"; + "1953-09-30"^^xsd:date; + "1953-09-01"^^xsd:date; + "Guest"; + 11744; + "Actor"; + "Singer"; + ; + . + + a ; + "October 1953"; + "1953-10-31"^^xsd:date; + "1953-10-01"^^xsd:date; + "October 1953"; + "1953-10-31"^^xsd:date; + "1953-10-01"^^xsd:date; + "Tour"; + 11749; + ; + ; + . + + a ; + "October 1953"; + "1953-10-31"^^xsd:date; + "1953-10-01"^^xsd:date; + "October 1953"; + "1953-10-31"^^xsd:date; + "1953-10-01"^^xsd:date; + "Tour"; + 11754; + ; + ; + . + + a ; + "March 1954"; + "1954-03-31"^^xsd:date; + "1954-03-01"^^xsd:date; + "March 1954"; + "1954-03-31"^^xsd:date; + "1954-03-01"^^xsd:date; + "Tour"; + 11759; + ; + . + + a ; + "March 1954"; + "1954-03-31"^^xsd:date; + "1954-03-01"^^xsd:date; + "March 1954"; + "1954-03-31"^^xsd:date; + "1954-03-01"^^xsd:date; + "Tour"; + 11764; + ; + . + + a ; + "5th May 1955"; + "1955-05-05"^^xsd:date; + "1955-05-05"^^xsd:date; + "April 1955"; + "1955-04-30"^^xsd:date; + "1955-04-01"^^xsd:date; + "Tour"; + 11769; + ; + . + + a ; + "29th July 1955"; + "1955-07-29"^^xsd:date; + "1955-07-29"^^xsd:date; + "13th July 1955"; + "1955-07-13"^^xsd:date; + "1955-07-13"^^xsd:date; + "Tour"; + 11774; + ; + ; + . + + a ; + "February 1951"; + "1951-02-28"^^xsd:date; + "1951-02-01"^^xsd:date; + "11th January 1951"; + "1951-01-11"^^xsd:date; + "1951-01-11"^^xsd:date; + "Tour"; + 11779; + "Actor"; + "Singer"; + "Honolulu, Maui,, Kauai, Hilo (Havaí)"; + . + + a ; + "between 1859 and May 1862"; + "1862-05-31"^^xsd:date; + "1859-02-17"^^xsd:date; + "17th February 1859"; + "1859-02-17"^^xsd:date; + "1859-02-17"^^xsd:date; + "Permanent"; + 11784; + "Impresario"; + "Founder"; + ; + ; + . + + a ; + "April 1866"; + "1866-04-30"^^xsd:date; + "1866-04-01"^^xsd:date; + "31th May 1862"; + "1862-05-31"^^xsd:date; + "1862-05-31"^^xsd:date; + "Permanent"; + 11788; + "Impresario"; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Permanent"; + 11793; + "Impresario"; + ; + ; + . + + a ; + "June 1870"; + "1870-06-30"^^xsd:date; + "1870-06-01"^^xsd:date; + "Tour"; + 11794; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "11th June 1868"; + "1868-06-11"^^xsd:date; + "1868-06-11"^^xsd:date; + "Permanent"; + 11799; + "Singer"; + "Actor"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 118; + "Agent"; + "His job was to find young talents and teach them in correct speech"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 11809; + "Journalist"; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11814; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11819; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11824; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11829; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11834; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 11839; + ; + ; + . + + a ; + "Guest"; + 11844; + "Other"; + ; + ; + . + + a ; + "Guest"; + 11849; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 11854; + "Director"; + "Founder"; + ""; + ; + ; + . + + a ; + "Permanent"; + 11859; + "Director"; + "Founder"; + "Other"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 11864; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Permanent"; + 11869; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 11874; + ; + . + + a ; + "Permanent"; + 11879; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "Permanent"; + 11884; + ; + . + + a ; + "Permanent"; + 11889; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Permanent"; + 11894; + "Other"; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Permanent"; + 11899; + "Other"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 119; + "Teacher (Theatre related)"; + ""; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 11904; + ; + . + + a ; + "probably between 1865 and 1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "probably between 1865 and 1870"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 11909; + ; + . + + a ; + "probably between 1865 and 1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "probably between 1865 and 1870"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 11914; + ; + . + + a ; + "probably between 1865 and 1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "probably between 1865 and 1870"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 11919; + ; + ; + . + + a ; + "-"; + "27th July 1877"; + "1877-12-31"^^xsd:date; + "1877-07-27"^^xsd:date; + "Tour"; + 11923; + "Actor"; + ; + . + + a ; + "-"; + "27th July 1877"; + "1877-12-31"^^xsd:date; + "1877-07-27"^^xsd:date; + "Tour"; + 11924; + "Actor"; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 11929; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 11934; + ; + . + + a ; + "-"; + "1883 (probably)"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 11939; + ; + . + + a ; + "-"; + "1883 (probably)"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 11944; + ; + . + + a ; + "May 1883"; + "1883-05-31"^^xsd:date; + "1883-05-01"^^xsd:date; + "April 1883 (one Month stay)"; + "1883-04-30"^^xsd:date; + "1883-04-01"^^xsd:date; + "Tour"; + 11949; + ; + . + + a ; + "June 1883"; + "1883-06-30"^^xsd:date; + "1883-06-01"^^xsd:date; + "May 1883 (one Month stay)"; + "1883-05-31"^^xsd:date; + "1883-05-01"^^xsd:date; + "Tour"; + 11954; + ; + . + + a ; + "-"; + "1883 (probably)"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 11959; + ; + . + + a ; + "-"; + "1883 (probably)"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 11964; + ; + . + + a ; + "-"; + "1883 (probably)"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 11969; + ; + . + + a ; + "-"; + "Summer 1883"; + "1883-09-30"^^xsd:date; + "1883-06-20"^^xsd:date; + "Tour"; + 11974; + ; + . + + a ; + "Summer 1883"; + "1883-09-30"^^xsd:date; + "1883-06-20"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 11979; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 11984; + ; + . + + a ; + "Finish the tour around September 1885"; + "1885-10-01"^^xsd:date; + "1885-09-01"^^xsd:date; + "1885 (13 Months tour)"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 11989; + ; + . + + a ; + "Permanent"; + 1199; + "Singer"; + ; + . + + a ; + "Finish the tour around September 1885"; + "1885-10-01"^^xsd:date; + "1885-09-01"^^xsd:date; + "1885 (13 Months tour)"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 11994; + ; + . + + a ; + "Finish the tour around September 1885"; + "1885-10-01"^^xsd:date; + "1885-09-01"^^xsd:date; + "1885 (13 Months tour)"; + "1885-10-01"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 11999; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "teacher"; + "Tour"; + 120; + ""; + ; + . + + a ; + "beginning of 1886"; + "1886-03-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "beginning of 1886"; + "1886-03-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 12004; + ; + . + + a ; + "beginning of 1886"; + "1886-03-31"^^xsd:date; + "1886-02-01"^^xsd:date; + "beginning of 1886"; + "1886-03-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Guest"; + 12009; + "Actor"; + ; + ; + . + + a ; + "April 1886"; + "1886-04-30"^^xsd:date; + "1886-04-01"^^xsd:date; + "March 1886"; + "1886-03-31"^^xsd:date; + "1886-03-01"^^xsd:date; + "Guest"; + 12014; + ; + . + + a ; + "May 1886"; + "1886-05-31"^^xsd:date; + "1886-05-01"^^xsd:date; + "April 1886"; + "1886-04-30"^^xsd:date; + "1886-04-01"^^xsd:date; + "Tour"; + 12019; + "Actor"; + ; + . + + a ; + "Permanent"; + 1202; + "Singer"; + ; + . + + a ; + "between January and February 1886"; + "1886-02-28"^^xsd:date; + "1886-01-01"^^xsd:date; + "October 1885"; + "1885-10-31"^^xsd:date; + "1885-10-01"^^xsd:date; + "Tour"; + 12024; + "Traveling around Italy for 3 Months"; + ; + . + + a ; + "-"; + "October 1885"; + "1885-10-31"^^xsd:date; + "1885-10-01"^^xsd:date; + "Tour"; + 12029; + ; + . + + a ; + "-"; + "1884 (13 Months tour)"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 12034; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 12039; + "Journalist"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 12044; + ; + ; + ; + . + + a ; + "1913"; + "1913-06-30"^^xsd:date; + "1913-06-01"^^xsd:date; + "1913"; + "1913-06-30"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 12049; + ; + ; + ; + . + + a ; + "Permanent"; + 1205; + "Singer"; + ; + . + + a ; + "1914"; + "1914-03-27"^^xsd:date; + "1914-01-01"^^xsd:date; + "1914"; + "1914-03-27"^^xsd:date; + "1914-01-01"^^xsd:date; + "Permanent"; + 12054; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + 12059; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Permanent"; + 12064; + ; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Permanent"; + 12069; + ; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "Permanent"; + 12074; + "Director"; + ; + ; + ; + . + + a ; + "-"; + "May 1886"; + "1886-05-31"^^xsd:date; + "1886-05-01"^^xsd:date; + "Tour"; + 12079; + "Actor"; + ; + . + + a ; + "Permanent"; + 1208; + "Singer"; + ; + . + + a ; + "October 1886"; + "1886-10-31"^^xsd:date; + "1886-10-01"^^xsd:date; + "May 1886"; + "1886-05-31"^^xsd:date; + "1886-05-01"^^xsd:date; + "Tour"; + 12084; + "After this tour, between 1886-1890 she and her husband settled in Lisbon and sought to rest and not engage in theatrical activity"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 12089; + "Actor"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Permanent"; + 12094; + "Actor"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 12099; + "Actor"; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "Tour"; + 121; + "very successful public academy in front of the Parisian public (in the salle Herz)"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 12104; + "Actor"; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Permanent"; + 12109; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Permanent"; + 1211; + "Singer"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 12114; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 12119; + ; + ; + ; + . + + a ; + "-"; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 12124; + "Actor"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 12128; + "Actor"; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-09-30"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 12133; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 12138; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Permanent"; + 1214; + "Singer"; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 12140; + "Actor"; + "Director"; + ; + ; + . + + a ; + "27th October 1920"; + "1920-10-27"^^xsd:date; + "1920-10-27"^^xsd:date; + "-"; + "Tour"; + 12143; + "Actor"; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Winter 1915"; + "1916-03-21"^^xsd:date; + "1915-12-20"^^xsd:date; + "Tour"; + 12148; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 12153; + "Actor"; + ; + . + + a ; + "September 1910"; + "1910-09-30"^^xsd:date; + "1910-09-01"^^xsd:date; + "April 1910"; + "1910-04-30"^^xsd:date; + "1910-04-01"^^xsd:date; + "Tour"; + 12154; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 12159; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 12164; + "Actor"; + ; + . + + a ; + "-"; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 12169; + "Director"; + "Actor"; + "Last prasentation of Lucinda Simões as na Actress"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 1217; + "Singer"; + ; + . + + a ; + "8th December 1882"; + "1882-12-08"^^xsd:date; + "1882-12-08"^^xsd:date; + "8th December 1882"; + "1882-12-08"^^xsd:date; + "1882-12-08"^^xsd:date; + "Guest"; + 12189; + "Singer"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Other"; + 12194; + "Singer"; + ; + ; + . + + a ; + "-"; + "15th November 1896"; + "1896-11-15"^^xsd:date; + "1896-11-15"^^xsd:date; + "Guest"; + 12199; + "Singer"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 122; + "Actor"; + ""; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Permanent"; + 1220; + "Singer"; + ; + . + + a ; + "Between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "Tour"; + 12204; + "Singer"; + ; + ; + . + + a ; + "Between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "Tour"; + 12209; + "Singer"; + ; + ; + . + + a ; + "Between September and November 1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "between September and November 1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "Tour"; + 12214; + "Singer"; + ; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 12219; + "Singer"; + ; + . + + a ; + "-"; + "-"; + "Tour"; + 12224; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 12229; + "Singer"; + ; + . + + a ; + "Permanent"; + 1223; + "Teacher (Theatre related)"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 12234; + "Singer"; + ; + . + + a ; + "1910-12-31"; + "Permanent"; + 12239; + "Other"; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 12244; + "Other"; + "Cartoonist"; + ; + ; + . + + a ; + "1897-12-31"; + "1897-01-01"; + "Permanent"; + 12249; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Permanent"; + 12254; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12259; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 1226; + "Teacher (Theatre related)"; + ; + . + + a ; + "Guest"; + 12264; + "Other"; + ; + ; + . + + a ; + "Guest"; + 12269; + "Other"; + ; + ; + . + + a ; + "Guest"; + 12274; + "Other"; + ; + ; + . + + a ; + "Guest"; + 12279; + "Other"; + ; + ; + . + + a ; + "1915-12-31"; + "1915-01-01"; + "Guest"; + 12284; + "Other"; + ; + ; + . + + a ; + "1866-10-27"^^xsd:date; + "Guest"; + 12289; + "Actor"; + ; + ; + . + + a ; + "1882-09-12"; + "1881-09-01"; + "Guest"; + 12294; + "Actor"; + ; + ; + ; + . + + a ; + "1885-12-31"; + "1885-01-01"; + "Permanent"; + 12298; + "Stage Designer"; + ; + ; + . + + a ; + "1886-10-27"^^xsd:date; + "Guest"; + 12299; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 123; + "Actor"; + ; + ; + . + + a ; + "1889-07-31"; + "1888-01-01"; + "Guest"; + 12304; + "Teacher (Theatre related)"; + "Other"; + ; + ; + . + + a ; + "1889-01-01"; + "Permanent"; + 12309; + "Stage Designer"; + ; + ; + . + + a ; + "1890-01-01"; + "Permanent"; + 12314; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12319; + "Other"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Permanent"; + 12324; + "Other"; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "Permanent"; + 12329; + "Founder"; + "Other"; + "Brewer"; + ; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 12333; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 12336; + "Founder"; + "Other"; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 12339; + "Other"; + ; + ; + . + + a ; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 12344; + "Founder"; + "Other"; + "Brewer"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Guest"; + 12349; + "Journalist"; + "Other"; + ; + ; + . + + a ; + "Guest"; + 12354; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Permanent"; + 12359; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 1236; + "Singer"; + ; + . + + a ; + "Permanent"; + 12364; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "Permanent"; + 12369; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "1975"; + "1975-12-31"^^xsd:date; + "1975-01-01"^^xsd:date; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "Permanent"; + 12374; + "Other"; + ; + . + + a ; + "1975"; + "1975-12-31"^^xsd:date; + "1975-01-01"^^xsd:date; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "Permanent"; + 12379; + "Other"; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 12380; + "Other"; + ; + . + + a ; + "Guest"; + 12384; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12389; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 1239; + "Singer"; + ; + . + + a ; + "Permanent"; + 12399; + "Other"; + ; + ; + . + + a ; + "Tour"; + 124; + "Actor"; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1941-11-22"^^xsd:date; + "1941-11-22"^^xsd:date; + "Permanent"; + 12404; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Guest"; + 12409; + "Other"; + "Director"; + "First Municipal Prize to Cinema Production (1947) and First Prize from the Arts and Cinema Sciences Association"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 12411; + "Composer"; + ; + . + + a ; + "1877-06-22"^^xsd:date; + "1877-06-22"^^xsd:date; + "June 1877"; + "1877-06-22"^^xsd:date; + "1877-06-22"^^xsd:date; + "Guest"; + 12414; + "Actor"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Permanent"; + 12419; + "Journalist"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 1242; + "Singer"; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "Permanent"; + 12424; + "Journalist"; + ; + ; + . + + a ; + "Permanent"; + 12429; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12434; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Permanent"; + 12439; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Permanent"; + 12444; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "Permanent"; + 12449; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1898"; + "1898-12-24"^^xsd:date; + "1898-12-01"^^xsd:date; + "Permanent"; + 1245; + "Singer"; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "Permanent"; + 12454; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "Permanent"; + 12459; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "Permanent"; + 12464; + "Other"; + "Writer/ Author"; + ; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "Permanent"; + 12469; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "Permanent"; + 12474; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1959"; + "1959-12-31"^^xsd:date; + "1959-01-01"^^xsd:date; + "1959"; + "1959-12-31"^^xsd:date; + "1959-01-01"^^xsd:date; + "Permanent"; + 12479; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1899"; + "1899-05-31"^^xsd:date; + "1899-05-01"^^xsd:date; + "Permanent"; + 1248; + "Singer"; + ; + . + + a ; + "1970"; + "1970-12-31"^^xsd:date; + "1970-01-01"^^xsd:date; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "Permanent"; + 12484; + "Guest, and later permanent"; + ; + ; + . + + a ; + "1967"; + "1967-12-31"^^xsd:date; + "1967-01-01"^^xsd:date; + "1958"; + "1958-12-31"^^xsd:date; + "1958-01-01"^^xsd:date; + "Permanent"; + 12489; + "Director"; + ; + ; + . + + a ; + "1966"; + "1966-12-31"^^xsd:date; + "1966-01-01"^^xsd:date; + "1959"; + "1959-12-31"^^xsd:date; + "1959-01-01"^^xsd:date; + "Permanent"; + 12494; + "Director"; + ; + ; + . + + a ; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + "Permanent"; + 12499; + "Other"; + "Municipality Prize for El verdadero Byron (1954), and Municipality Prize Ricardo Rojas for his essay Ricardo Rojas (1967)."; + ; + ; + . + + a ; + "Tour"; + 125; + "Actor"; + ; + ; + . + + a ; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "1968"; + "1968-12-31"^^xsd:date; + "1968-01-01"^^xsd:date; + "Permanent"; + 12504; + "Other"; + "Secretary"; + ; + ; + . + + a ; + "1970"; + "1970-12-31"^^xsd:date; + "1970-01-01"^^xsd:date; + "1970"; + "1970-12-31"^^xsd:date; + "1970-01-01"^^xsd:date; + "Permanent"; + 12509; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1899"; + "1899-06-30"^^xsd:date; + "1899-06-01"^^xsd:date; + "Permanent"; + 1251; + "Singer"; + "Summer 1899"; + ; + . + + a ; + "1971"; + "1971-12-31"^^xsd:date; + "1971-01-01"^^xsd:date; + "1971"; + "1971-12-31"^^xsd:date; + "1971-01-01"^^xsd:date; + "Permanent"; + 12514; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1973"; + "1973-12-31"^^xsd:date; + "1973-01-01"^^xsd:date; + "1973"; + "1973-12-31"^^xsd:date; + "1973-01-01"^^xsd:date; + "Permanent"; + 12519; + "Other"; + "Writer/ Author"; + ; + . + + a ; + "1886-06-30"^^xsd:date; + "1886-06-30"^^xsd:date; + "1879-09-11"^^xsd:date; + "1879-09-11"^^xsd:date; + "Permanent"; + 12524; + "Director"; + "Actor"; + "Impresario"; + ; + ; + . + + a ; + "1881"; + "1881-06-30"^^xsd:date; + "1880-09-01"^^xsd:date; + "1880"; + "1881-06-30"^^xsd:date; + "1880-09-01"^^xsd:date; + "Guest"; + 12529; + "Actor"; + ; + . + + a ; + "1903-06-30"^^xsd:date; + "1903-06-30"^^xsd:date; + "1893-07-01"^^xsd:date; + "1893-07-01"^^xsd:date; + "Permanent"; + 12534; + "Manager"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1908-02-11"^^xsd:date; + "1908-02-11"^^xsd:date; + "1903-07-01"^^xsd:date; + "1903-07-01"^^xsd:date; + "Permanent"; + 12539; + "Manager"; + "Impresario"; + ; + ; + . + + a ; + "1917-04-13"^^xsd:date; + "1917-04-13"^^xsd:date; + "Permanent"; + 1254; + "Singer"; + "She was German and for this reason she was hostile and had to quit her job at the Metropolitan Opera"; + ; + . + + a ; + "1873-03-31"^^xsd:date; + "1873-03-31"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Permanent"; + 12544; + "Actor"; + ; + . + + a ; + "1874-09-30"^^xsd:date; + "1874-09-30"^^xsd:date; + "1873-04-01"^^xsd:date; + "1873-04-01"^^xsd:date; + "Permanent"; + 12549; + "Actor"; + ; + ; + . + + a ; + "1876-06-30"^^xsd:date; + "1876-06-30"^^xsd:date; + "1874-10-01"^^xsd:date; + "1874-10-01"^^xsd:date; + "Permanent"; + 12554; + "Actor"; + ; + . + + a ; + "1877-07-05"^^xsd:date; + "1877-07-05"^^xsd:date; + "1876-07-01"^^xsd:date; + "1876-07-01"^^xsd:date; + "Permanent"; + 12559; + "Actor"; + ; + ; + . + + a ; + "1878-06-30"^^xsd:date; + "1878-06-30"^^xsd:date; + "1877-09-01"^^xsd:date; + "1877-09-01"^^xsd:date; + "Permanent"; + 12564; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1879-06-30"^^xsd:date; + "1879-06-30"^^xsd:date; + "1878-09-05"^^xsd:date; + "1878-09-05"^^xsd:date; + "Permanent"; + 12569; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 1257; + "Singer"; + ""; + ; + . + + a ; + "1881"; + "1881-06-30"^^xsd:date; + "1880-09-01"^^xsd:date; + "1880"; + "1881-06-30"^^xsd:date; + "1880-09-01"^^xsd:date; + "Guest"; + 12574; + "Actor"; + ; + . + + a ; + "-"; + "11th November 1849"; + "1849-11-11"^^xsd:date; + "1849-11-11"^^xsd:date; + "Guest"; + 12575; + "Musician"; + ; + ; + . + + a ; + "-"; + "December 1849"; + "1849-12-31"^^xsd:date; + "1849-12-01"^^xsd:date; + "Guest"; + 12579; + "Musician"; + ; + ; + . + + a ; + "-"; + "24th January 1850"; + "1850-01-24"^^xsd:date; + "1850-01-24"^^xsd:date; + "Guest"; + 12583; + "Musician"; + ; + ; + . + + a ; + "-"; + "8th March 1850"; + "1850-03-08"^^xsd:date; + "1850-03-08"^^xsd:date; + "Guest"; + 12584; + "Musician"; + ; + ; + . + + a ; + "-"; + "29th May 1850"; + "1850-05-29"^^xsd:date; + "1850-05-29"^^xsd:date; + "Tour"; + 12589; + ; + ; + . + + a ; + "-"; + "between 29th and 31st May 185"; + "1850-05-29"^^xsd:date; + "1850-05-29"^^xsd:date; + "Tour"; + 12594; + ; + ; + . + + a ; + "-"; + "between 29th May 1850 and 21st Fabruary 1851"; + "1851-02-21"^^xsd:date; + "1850-05-29"^^xsd:date; + "Tour"; + 12599; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Permanent"; + 1260; + "Singer"; + ; + . + + a ; + "-"; + "21st Fabruary 1851"; + "1851-02-27"^^xsd:date; + "1851-02-21"^^xsd:date; + "Tour"; + 12604; + ; + ; + . + + a ; + "-"; + "27th May 1851"; + "1851-05-27"^^xsd:date; + "1851-05-27"^^xsd:date; + "Tour"; + 12609; + ; + ; + . + + a ; + "-"; + "10th March 1853"; + "1853-03-10"^^xsd:date; + "1853-03-10"^^xsd:date; + "Tour"; + 12614; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 12619; + "Other"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 12624; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12625; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 12629; + "Other"; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Permanent"; + 1263; + "Singer"; + "her own Opera Company"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Permanent"; + 12631; + "Other"; + ; + ; + . + + a ; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Permanent"; + 12633; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "1958-05-23"^^xsd:date; + "1958-05-23"^^xsd:date; + "1945"; + "1945-12-31"^^xsd:date; + "1945-01-01"^^xsd:date; + "Permanent"; + 12634; + "Impresario"; + ; + . + + a ; + "1958-05-23"^^xsd:date; + "1958-05-23"^^xsd:date; + "Permanent"; + 12639; + "Director"; + "Other"; + ; + ; + . + + a ; + "-"; + "20th March 1853"; + "1853-03-20"^^xsd:date; + "1853-03-20"^^xsd:date; + "Tour"; + 12644; + "Musician"; + "Salon Henri Herz"; + ; + ; + . + + a ; + "-"; + "between 20th March 1853 and 7th February 1854"; + "1854-02-07"^^xsd:date; + "1853-03-20"^^xsd:date; + "Tour"; + 12649; + "Musician"; + "Other"; + ; + . + + a ; + "-"; + "between 20th March 1853 and 7th February 1854"; + "1854-02-07"^^xsd:date; + "1853-03-20"^^xsd:date; + "Tour"; + 12654; + "Musician"; + "Other"; + ; + . + + a ; + "-"; + "between 20th March 1853 and 7th February 1854"; + "1854-02-07"^^xsd:date; + "1853-03-20"^^xsd:date; + "Tour"; + 12659; + "Musician"; + "Other"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 1266; + "Singer"; + "Stettin, Mainz in the years between hear debut in Berlin and Bremen"; + ; + . + + a ; + "-"; + "7th February 1854"; + "1854-02-07"^^xsd:date; + "1854-02-07"^^xsd:date; + "Tour"; + 12664; + "Musician"; + "Music Hall Dublin"; + ; + ; + . + + a ; + "-"; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 12669; + "Musician"; + "Leeds"; + ; + . + + a ; + "-"; + "between 1854 and 1855"; + "1855-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 12674; + "Vauxpall Salon"; + ; + ; + . + + a ; + "-"; + "January 1855"; + "1855-01-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 12679; + "Krolls Theater"; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 12684; + "Musician"; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 12689; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 1269; + "Singer"; + "Stettin, Mainz in the years between hear debut in Berlin and Bremen"; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 12694; + ; + ; + . + + a ; + "31st December 1855"; + "1855-12-31"^^xsd:date; + "1855-12-31"^^xsd:date; + "1st November 1855"; + "1855-11-01"^^xsd:date; + "1855-11-01"^^xsd:date; + "Tour"; + 12699; + ; + . + + a ; + "-"; + "-"; + "Tour"; + 12704; + "Metz, Strasbug, Darmstadt, Ems, Koblenz, Manhheim, Frankfurt"; + ; + . + + a ; + "-"; + "-"; + "Tour"; + 12709; + ; + . + + a ; + "-"; + "September 1856"; + "1856-09-30"^^xsd:date; + "1856-09-01"^^xsd:date; + "Tour"; + 12714; + ; + . + + a ; + "-"; + "between September 1856 and January 1857"; + "1856-09-30"^^xsd:date; + "1856-09-01"^^xsd:date; + "Tour"; + 12719; + "Wiesbaden, Bremen, Weimar, Berlin, Hamburg"; + ; + . + + a ; + "Tour"; + 1272; + "Singer"; + "1894 toured through Netherlands. There Walter Damrosch engaged her for his opera company and a tour through USA"; + ; + . + + a ; + "-"; + "between September 1856 and January 1857"; + "1857-01-31"^^xsd:date; + "1856-09-01"^^xsd:date; + "Tour"; + 12724; + "Posem, Breslau, Warsaw, Cracow, Vienna, Leipzig, London"; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 12729; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 12734; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 12739; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Permanent"; + 12754; + "Actor"; + ; + ; + . + + a ; + "between 1864 and 1865"; + "between 1864 and 1865"; + "Other"; + 12759; + "Actor"; + ; + ; + . + + a ; + "1865"; + "1865"; + "Other"; + 12764; + "Actor"; + ; + ; + . + + a ; + "between 1865 and 1866"; + "between 1865 and 1866"; + "Other"; + 12769; + "Actor"; + ; + ; + . + + a ; + "1869-09-26"^^xsd:date; + "1869-09-26"^^xsd:date; + "1868-08-31"^^xsd:date; + "1868-08-31"^^xsd:date; + "Other"; + 12774; + "Actor"; + ; + ; + ; + . + + a ; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + 12779; + "Actor"; + ; + ; + ; + . + + a ; + "April 1869"; + "1869-04-30"^^xsd:date; + "1869-04-01"^^xsd:date; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + 12784; + "Actor"; + ; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869-05-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "Guest"; + 12789; + "Actor"; + ; + ; + . + + a ; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + 12794; + "Actor"; + ; + ; + . + + a ; + "1872-05-04"^^xsd:date; + "1872-05-04"^^xsd:date; + "1872-03-18"^^xsd:date; + "1872-03-18"^^xsd:date; + "Other"; + 12799; + "Actor"; + ; + ; + . + + a ; + "between October 1888 and April 1890"; + "1890-04-30"^^xsd:date; + "1888-10-06"^^xsd:date; + "1888-10-06"^^xsd:date; + "1888-10-06"^^xsd:date; + "Tour"; + 12804; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between October 1888 and April 1890"; + "1890-04-30"^^xsd:date; + "1888-10-06"^^xsd:date; + "between October 1888 and April 1890"; + "1890-04-30"^^xsd:date; + "1888-10-06"^^xsd:date; + "Tour"; + 12809; + "Actor"; + "Manager"; + "B"; + ; + ; + . + + a ; + "between October 1888 and April 1890"; + "1890-04-30"^^xsd:date; + "1888-10-06"^^xsd:date; + "between October 1888 and April 1890"; + "1890-04-30"^^xsd:date; + "1888-10-06"^^xsd:date; + "Tour"; + 12814; + "Actor"; + "Manager"; + "Newcastle (Australia)"; + ; + . + + a ; + "May 1890"; + "1890-05-31"^^xsd:date; + "1890-05-01"^^xsd:date; + "May 1890"; + "1890-05-31"^^xsd:date; + "1890-05-01"^^xsd:date; + "Tour"; + 12819; + "Actor"; + "Manager"; + ; + . + + a ; + "between May 1890 and March 1891"; + "1891-04-01"^^xsd:date; + "1890-05-01"^^xsd:date; + "May 1890"; + "1890-05-31"^^xsd:date; + "1890-05-01"^^xsd:date; + "Tour"; + 12824; + "Actor"; + "Manager"; + "Ballarat"; + ; + . + + a ; + "between November 1890 and March 1891"; + "1891-04-01"^^xsd:date; + "1890-10-29"^^xsd:date; + "between November 1890 and December 1890"; + "1890-12-31"^^xsd:date; + "1890-10-29"^^xsd:date; + "Tour"; + 12829; + "Actor"; + "Manager"; + "India"; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "April 1891"; + "1891-04-30"^^xsd:date; + "1891-04-01"^^xsd:date; + "Tour"; + 12834; + "Actor"; + "Manager"; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "April 1891"; + "1891-04-30"^^xsd:date; + "1891-04-01"^^xsd:date; + "Tour"; + 12839; + "Actor"; + "Manager"; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "April 1891"; + "1891-04-30"^^xsd:date; + "1891-04-01"^^xsd:date; + "Tour"; + 12854; + "Actor"; + "Manager"; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "April 1891"; + "1891-04-30"^^xsd:date; + "1891-04-01"^^xsd:date; + "Tour"; + 12859; + "Actor"; + "Manager"; + ; + . + + a ; + "Permanent"; + 12864; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 12884; + "Musician"; + ; + . + + a ; + "between 1915 and 1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 12889; + "Musician"; + ; + . + + a ; + "between 1915 and 1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 12894; + "Musician"; + ; + . + + a ; + "between 1915 and 1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 12899; + "Musician"; + ; + . + + a ; + "between 1915 and 1916"; + "1916-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 12904; + "Musician"; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Other"; + 12909; + "Musician"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 12914; + "Musician"; + ; + . + + a ; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 12919; + "Musician"; + ; + . + + a ; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 12924; + "Musician"; + ; + . + + a ; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 12929; + "Musician"; + ; + . + + a ; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 12934; + "Musician"; + ; + . + + a ; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "between 1921 and 1925"; + "1925-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 12939; + "Musician"; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 12944; + "Musician"; + ; + . + + a ; + "1925"; + "1925-10-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-10-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 12949; + "Musician"; + ; + . + + a ; + "October 1925"; + "1925-10-31"^^xsd:date; + "1925-10-01"^^xsd:date; + "October 1925"; + "1925-10-31"^^xsd:date; + "1925-10-01"^^xsd:date; + "Tour"; + 12954; + "Musician"; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Other"; + 12959; + "Musician"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 1296; + "Singer"; + ; + . + + a ; + "1856"; + "1856"; + "Other"; + 12969; + "Actor"; + ; + . + + a ; + "1856-06-07"^^xsd:date; + "1856-06-07"^^xsd:date; + "1856-06-07"^^xsd:date; + "1856-06-07"^^xsd:date; + "Other"; + 12974; + "Actor"; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-09-01"^^xsd:date; + "Other"; + 12984; + "Actor"; + ; + ; + . + + a ; + "1866-01-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Other"; + 12989; + "Actor"; + ; + . + + a ; + "Permanent"; + 1299; + "Singer"; + ; + . + + a ; + "1868"; + "1868"; + "Other"; + 12994; + "Actor"; + ; + ; + . + + a ; + "1873-03-10"^^xsd:date; + "1873-03-10"^^xsd:date; + "1873-03-10"^^xsd:date; + "1873-03-10"^^xsd:date; + "Tour"; + 12999; + "Actor"; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-12-01"^^xsd:date; + "Tour"; + 13; + "Singer"; + """Opera singer, St. Petersburg +Singer, 1845 she gave concerts in Germany with Hermann Berens (piano), later in Hungary +Opera singer, Carnival 1847, Rom +Opera singer, 1847, Royal Opera House, London +Opera singer, Octobre 1847, Theatre-Italien, Paris +"""; + ; + ; + . + + a ; + "1875-10-04"^^xsd:date; + "1874-10-04"^^xsd:date; + "1875-10-04"^^xsd:date; + "1875-10-04"^^xsd:date; + "Tour"; + 13004; + "Actor"; + ; + ; + . + + a ; + "1876-12-31"^^xsd:date; + "1876-03-01"^^xsd:date; + "1876-03-31"^^xsd:date; + "1876-03-01"^^xsd:date; + "Tour"; + 13009; + "Actor"; + ; + . + + a ; + "1876-03-31"^^xsd:date; + "1876-03-01"^^xsd:date; + "1876-03-31"^^xsd:date; + "1876-03-01"^^xsd:date; + "Tour"; + 13014; + "Actor"; + ; + . + + a ; + "1878-08-31"^^xsd:date; + "1878-08-01"^^xsd:date; + "1878-08-31"^^xsd:date; + "1878-08-01"^^xsd:date; + "Tour"; + 13019; + "Actor"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Permanent"; + 1302; + "Singer"; + ; + . + + a ; + "1878-12-31"^^xsd:date; + "1878-12-01"^^xsd:date; + "1878-12-31"^^xsd:date; + "1878-12-01"^^xsd:date; + "Tour"; + 13024; + "Actor"; + ; + ; + . + + a ; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 13029; + "Actor"; + ; + . + + a ; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 13034; + "Actor"; + ; + . + + a ; + "Tour"; + 13039; + "Actor"; + ; + . + + a ; + "Permanent"; + 13044; + "Actor"; + ; + . + + a ; + "1890-11-30"^^xsd:date; + "1890-11-01"^^xsd:date; + "Other"; + 13049; + "Actor"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 1305; + "Singer"; + ; + . + + a ; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Other"; + 13054; + "Actor"; + ; + . + + a ; + "1850"; + "1850"; + "Other"; + 13059; + "Actor"; + ; + ; + . + + a ; + "1855  summer season"; + "1855-09-22"^^xsd:date; + "1855-06-01"^^xsd:date; + "1855  summer season"; + "1855-09-22"^^xsd:date; + "1855-06-01"^^xsd:date; + "Other"; + 13064; + "Actor"; + ; + . + + a ; + "between 1855 and 1857"; + "1857-12-31"^^xsd:date; + "1855-09-23"^^xsd:date; + "1855 winter"; + "1855-12-31"^^xsd:date; + "1855-09-23"^^xsd:date; + "Other"; + 13069; + "Actor"; + "youngest leading women in the U.S. at that time"; + ; + ; + . + + a ; + "between 1857 and 1860"; + "1860-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Other"; + 13074; + "Actor"; + ; + ; + . + + a ; + "1857 summer"; + "1857-09-22"^^xsd:date; + "1857-06-21"^^xsd:date; + "1857 summer"; + "1857-09-22"^^xsd:date; + "1857-06-21"^^xsd:date; + "Other"; + 13079; + "Actor"; + ; + . + + a ; + "Permanent"; + 1308; + "Teacher (Theatre related)"; + ; + . + + a ; + "between 1857 autumn and 1860"; + "1860-12-31"^^xsd:date; + "1857-09-23"^^xsd:date; + "between 1857 autumn and 1860"; + "1860-12-31"^^xsd:date; + "1857-09-23"^^xsd:date; + "Other"; + 13084; + "Actor"; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Other"; + 13089; + "Actor"; + ; + ; + . + + a ; + "1860 later"; + "1860-12-31"^^xsd:date; + "1860-09-01"^^xsd:date; + "1860 later"; + "1860-12-31"^^xsd:date; + "1860-09-01"^^xsd:date; + "Other"; + 13094; + "Actor"; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Other"; + 13099; + "Actor"; + ; + . + + a ; + "between 1861 and 1868"; + "1868-05-22"^^xsd:date; + "1861-01-01"^^xsd:date; + "between 1861 and 1868"; + "1868-05-22"^^xsd:date; + "1861-01-01"^^xsd:date; + "Other"; + 13104; + "Actor"; + ; + . + + a ; + "Guest "; + "Guest"; + 1311; + ; + . + + a ; + "between 1850 and May 1855"; + "1850-05-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "between 1850 and May 1855"; + "1855-05-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Other"; + 13114; + "Actor"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1863-05-23"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 13119; + "Actor"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 13124; + "Actor"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 13129; + "Actor"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 13134; + "Actor"; + ; + . + + a ; + "1868"; + "1868-05-23"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 13139; + "Actor"; + ; + . + + a ; + "Guest"; + "Guest"; + 1314; + ; + . + + a ; + "1890s"; + "1899-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1878-1899"; + "1899-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Other"; + 13144; + "Teacher (Theatre related)"; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 13154; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 13159; + ; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 13164; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 13169; + ; + . + + a ; + "-"; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 13174; + ; + . + + a ; + "-"; + "between 1st January 1858 and 21st October 1858"; + "1858-10-21"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 13179; + ; + . + + a ; + "-"; + "between 1st January 1858 and 21st October 1858"; + "1858-10-21"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 13184; + ; + ; + . + + a ; + "-"; + "between 1st January 1858 and 21st October 1858"; + "1858-10-21"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 13189; + ; + . + + a ; + "-"; + "21st October 1858"; + "1858-10-21"^^xsd:date; + "1858-10-21"^^xsd:date; + "Tour"; + 13194; + "Palace Garden"; + ; + ; + . + + a ; + "-"; + "between 1st November  1858 and 31st December 1860"; + "1860-12-31"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 13199; + ; + . + + a ; + "-"; + "between 1st November  1858 and 31st December 186"; + "1860-12-31"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 13204; + ; + . + + a ; + "-"; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 13209; + ; + . + + a ; + "-"; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 13214; + ; + ; + . + + a ; + "-"; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13219; + ; + . + + a ; + "-"; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13224; + ; + . + + a ; + "-"; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13229; + ; + . + + a ; + "-"; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13234; + ; + . + + a ; + "-"; + "between 1862 and September 1863"; + "1863-09-30"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13239; + ; + . + + a ; + "-"; + "30th September 1863"; + "1863-09-30"^^xsd:date; + "1863-09-30"^^xsd:date; + "Tour"; + 13244; + ; + . + + a ; + "-"; + "December 1863"; + "1863-12-31"^^xsd:date; + "1863-12-01"^^xsd:date; + "Tour"; + 13249; + ; + . + + a ; + "-"; + "between December 1863 and December 1864"; + "1864-12-31"^^xsd:date; + "1863-12-01"^^xsd:date; + "Tour"; + 13254; + ; + . + + a ; + "-"; + "December 1864"; + "1864-12-31"^^xsd:date; + "1864-12-01"^^xsd:date; + "Tour"; + 13259; + ; + . + + a ; + "-"; + "between December 1864 and April 1865"; + "1865-04-30"^^xsd:date; + "1864-12-01"^^xsd:date; + "Tour"; + 13264; + ; + . + + a ; + "-"; + "between April 1865 and August 1865"; + "1865-08-31"^^xsd:date; + "1865-04-01"^^xsd:date; + "Tour"; + 13269; + ; + ; + . + + a ; + "-"; + "September 1865"; + "1865-09-30"^^xsd:date; + "1865-09-01"^^xsd:date; + "Tour"; + 13274; + ; + ; + . + + a ; + "May 1866"; + "1866-05-31"^^xsd:date; + "1866-05-01"^^xsd:date; + "-"; + "Tour"; + 13279; + ; + . + + a ; + "-"; + "between May and June 1866"; + "1866-06-30"^^xsd:date; + "1866-05-01"^^xsd:date; + "Permanent"; + 13284; + ; + ; + . + + a ; + "-"; + "October 1866"; + "1866-10-31"^^xsd:date; + "1866-10-01"^^xsd:date; + "Tour"; + 13289; + "3 concerts"; + ; + . + + a ; + "-"; + "between October and December 1866"; + "1866-12-31"^^xsd:date; + "1866-10-01"^^xsd:date; + "Tour"; + 13294; + "2 concerts in Campinas (SP)"; + ; + . + + a ; + "-"; + "between October and December 1866"; + "1866-12-31"^^xsd:date; + "1866-10-01"^^xsd:date; + "Tour"; + 13299; + "1 concert in Santos (SP)"; + ; + . + + a ; + "-"; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 13304; + "Founder"; + ; + ; + . + + a ; + "-"; + "Early 1880s"; + "1885-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 13309; + "Music Director"; + ; + ; + . + + a ; + "March 1867"; + "1867-03-31"^^xsd:date; + "1867-03-01"^^xsd:date; + "-"; + "Tour"; + 13314; + ; + ; + . + + a ; + "-"; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Guest"; + 13319; + ; + . + + a ; + "-"; + "1867"; + "1887-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 13324; + ; + ; + . + + a ; + "-"; + "between January and May 1868"; + "1868-05-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Guest"; + 13329; + ; + ; + ; + . + + a ; + "-"; + "between January and May 1868"; + "1868-05-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Guest"; + 13334; + ; + . + + a ; + "-"; + "between January and May 1868"; + "1868-05-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Other"; + 13339; + ; + ; + . + + a ; + "End of 1877"; + "1877-12-31"^^xsd:date; + "1877-09-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Permanent"; + 13344; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "-"; + "September 1878"; + "1878-09-30"^^xsd:date; + "1878-09-01"^^xsd:date; + "Tour"; + 13349; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "-"; + "February 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 13354; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "-"; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 13359; + "Impresario"; + "Business Trip"; + ; + . + + a ; + "-"; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 13364; + "Music Director"; + "Musician"; + ; + ; + . + + a ; + "5th December 1902"; + "1902-12-05"^^xsd:date; + "1902-12-05"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 13369; + "Music Director"; + "Musician"; + "Honorary board member"; + ; + ; + . + + a ; + "-"; + "February 1889"; + "1889-02-28"^^xsd:date; + "1889-02-01"^^xsd:date; + "Tour"; + 13374; + ; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 13379; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 1338; + "Singer"; + ; + . + + a ; + "-"; + "between 1889 and 1890"; + "1890-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 13384; + ; + . + + a ; + "-"; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 13389; + ; + . + + a ; + "-"; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 13394; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "between 1893 and 1894"; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "between 1893 and 1894"; + "1894-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 13399; + "Music Director"; + "Musician"; + "Four Concerts per year"; + ; + ; + . + + a ; + "-"; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 13404; + "Music Director"; + "Concert in favour of his brother Alfredo"; + ; + ; + . + + a ; + "-"; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 13409; + "Musician"; + "Impresario"; + "travelling to sign contracts for future concert"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 1341; + "Singer"; + "Worked in Hoftheater"; + ; + . + + a ; + "-"; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 13414; + "Impresario"; + ; + . + + a ; + "-"; + "between 20th and 24th November 1901"; + "1901-11-24"^^xsd:date; + "1901-11-20"^^xsd:date; + "Guest"; + 13419; + "Musician"; + "Club dos Diários"; + ; + ; + . + + a ; + "-"; + "31st July 1902"; + "1902-07-31"^^xsd:date; + "1902-07-31"^^xsd:date; + "Guest"; + 13424; + "Musician"; + "Club dos Diários (Casino Fluminense)"; + ; + ; + . + + a ; + "-"; + "15th October 1902"; + "1902-10-15"^^xsd:date; + "1902-10-15"^^xsd:date; + "Guest"; + 13429; + "Musician"; + "Cassino Fluminense"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 1343; + "Singer"; + ; + ; + . + + a ; + "-"; + "23rd October 1906"; + "1906-10-23"^^xsd:date; + "1906-10-23"^^xsd:date; + "Guest"; + 13434; + "Musician"; + "Music Director"; + ; + . + + a ; + "-"; + "26th August 1907"; + "1907-08-26"^^xsd:date; + "1907-08-26"^^xsd:date; + "Tour"; + 13439; + "Musician"; + "(Instituto Nacional de Música) concert celebrating the 50th anniversary of his first concert in Rio de Janeiro"; + ; + ; + . + + a ; + "-"; + "25th August 1908"; + "1908-08-25"^^xsd:date; + "1908-08-25"^^xsd:date; + "Tour"; + 13444; + "Musician"; + "Instituto Nacional de Música"; + ; + ; + . + + a ; + "-"; + "9th October 1909"; + "1909-10-09"^^xsd:date; + "1909-10-09"^^xsd:date; + "Tour"; + 13449; + "Musician"; + "Instituto Nacional de Música"; + ; + ; + . + + a ; + "31st December 1924"; + "1924-12-31"^^xsd:date; + "1924-12-31"^^xsd:date; + "-"; + "Tour"; + 13454; + "Impresario"; + "Company Sampaio Araujo & Comp."; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "End of 1866"; + "1866-12-31"^^xsd:date; + "1866-09-01"^^xsd:date; + "Other"; + 13459; + "Founder"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Guest"; + 1346; + "Singer"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Early 1867"; + "1867-03-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Other"; + 13464; + "Founder"; + ; + . + + a ; + "1878-11-28"^^xsd:date; + "1878-11-28"^^xsd:date; + "1878-11-27"^^xsd:date; + "1878-11-27"^^xsd:date; + "Tour"; + 13469; + "Actor"; + ; + ; + . + + a ; + "1878-11-30"^^xsd:date; + "1878-11-30"^^xsd:date; + "1878-11-29"^^xsd:date; + "1878-11-29"^^xsd:date; + "Tour"; + 13474; + "Actor"; + ; + ; + . + + a ; + "1878-12-07"^^xsd:date; + "1878-12-07"^^xsd:date; + "1878-12-02"^^xsd:date; + "1878-12-02"^^xsd:date; + "Tour"; + 13479; + "Actor"; + ; + ; + . + + a ; + "1878-12-11"^^xsd:date; + "1878-12-11"^^xsd:date; + "1878-12-09"^^xsd:date; + "1878-12-09"^^xsd:date; + "Tour"; + 13484; + "Actor"; + ; + ; + . + + a ; + "1878-12-14"^^xsd:date; + "1878-12-14"^^xsd:date; + "1878-12-12"^^xsd:date; + "1878-12-12"^^xsd:date; + "Tour"; + 13489; + "Actor"; + ; + ; + . + + a ; + "Guest"; + 1349; + "Singer"; + ; + . + + a ; + "1878-12-17"^^xsd:date; + "1878-12-17"^^xsd:date; + "1878-12-16"^^xsd:date; + "1878-12-16"^^xsd:date; + "Tour"; + 13494; + "Actor"; + ; + ; + . + + a ; + "1878-12-19"^^xsd:date; + "1878-12-19"^^xsd:date; + "1878-12-19"^^xsd:date; + "1878-12-19"^^xsd:date; + "Tour"; + 13499; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 135; + "Singer"; + "Actor"; + ""; + ; + ; + . + + a ; + "1878-12-28"^^xsd:date; + "1878-12-28"^^xsd:date; + "1878-12-23"^^xsd:date; + "1878-12-23"^^xsd:date; + "Tour"; + 13504; + "Actor"; + ; + ; + . + + a ; + "1879-01-04"^^xsd:date; + "1879-01-04"^^xsd:date; + "1878-12-30"^^xsd:date; + "1878-12-30"^^xsd:date; + "Tour"; + 13509; + "Actor"; + ; + ; + . + + a ; + "1879-01-11"^^xsd:date; + "1879-01-11"^^xsd:date; + "1879-01-06"^^xsd:date; + "1879-01-06"^^xsd:date; + "Tour"; + 13514; + "Actor"; + ; + ; + . + + a ; + "1879-01-18"^^xsd:date; + "1879-01-18"^^xsd:date; + "1879-01-13"^^xsd:date; + "1879-01-13"^^xsd:date; + "Tour"; + 13519; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Guest"; + 1352; + "Singer"; + ; + ; + . + + a ; + "1879-01-20"^^xsd:date; + "1879-01-20"^^xsd:date; + "1879-01-20"^^xsd:date; + "1879-01-20"^^xsd:date; + "Tour"; + 13524; + "Actor"; + ; + ; + . + + a ; + "1879-01-21"^^xsd:date; + "1879-01-21"^^xsd:date; + "1879-01-21"^^xsd:date; + "1879-01-21"^^xsd:date; + "Tour"; + 13529; + "Actor"; + ; + ; + . + + a ; + "1879-01-25"^^xsd:date; + "1879-01-25"^^xsd:date; + "1879-01-22"^^xsd:date; + "1879-01-22"^^xsd:date; + "Tour"; + 13534; + "Actor"; + ; + ; + . + + a ; + "1879-01-28"^^xsd:date; + "1879-01-28"^^xsd:date; + "1879-01-27"^^xsd:date; + "1879-01-27"^^xsd:date; + "Tour"; + 13539; + "Actor"; + ; + ; + . + + a ; + "1879-03-04"^^xsd:date; + "1879-03-04"^^xsd:date; + "1879-03-04"^^xsd:date; + "1879-03-04"^^xsd:date; + "Tour"; + 13544; + "Actor"; + ; + ; + . + + a ; + "1879-03-05"^^xsd:date; + "1879-03-05"^^xsd:date; + "1879-03-05"^^xsd:date; + "1879-03-05"^^xsd:date; + "Tour"; + 13549; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 1355; + "Singer"; + ; + ; + . + + a ; + "1879-03-08"^^xsd:date; + "1879-03-08"^^xsd:date; + "1879-03-06"^^xsd:date; + "1879-03-06"^^xsd:date; + "Tour"; + 13554; + "Actor"; + ; + ; + . + + a ; + "1879-03-15"^^xsd:date; + "1879-03-15"^^xsd:date; + "1879-03-10"^^xsd:date; + "1879-03-10"^^xsd:date; + "Tour"; + 13559; + "Actor"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 13569; + "Actor"; + ; + ; + . + + a ; + "1876"; + "1876-07-31"^^xsd:date; + "1876-06-01"^^xsd:date; + "1868-10-04"^^xsd:date; + "1868-10-04"^^xsd:date; + "Tour"; + 13574; + "Actor"; + ; + ; + . + + a ; + "1877-09-02"^^xsd:date; + "1877-09-02"^^xsd:date; + "1877-08-20"^^xsd:date; + "1877-08-20"^^xsd:date; + "Tour"; + 13579; + "Actor"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Permanent"; + 1358; + "Singer"; + ; + ; + . + + a ; + "1877-11-08"^^xsd:date; + "1877-11-08"^^xsd:date; + "1877-11-05"^^xsd:date; + "1877-11-05"^^xsd:date; + "Tour"; + 13584; + "Actor"; + ; + ; + . + + a ; + "1877-12-01"^^xsd:date; + "1877-12-01"^^xsd:date; + "1877-11-26"^^xsd:date; + "1877-11-26"^^xsd:date; + "Tour"; + 13589; + "Actor"; + ; + ; + . + + a ; + "1878-01-26"^^xsd:date; + "1878-01-26"^^xsd:date; + "1877-12-22"^^xsd:date; + "1877-12-22"^^xsd:date; + "Tour"; + 13594; + "Actor"; + ; + ; + . + + a ; + "1878-02-02"^^xsd:date; + "1878-02-02"^^xsd:date; + "1878-01-28"^^xsd:date; + "1878-01-28"^^xsd:date; + "Tour"; + 13599; + "Actor"; + ; + ; + . + + a ; + "Engagement"; + "Tour"; + 136; + ; + . + + a ; + "1878-02-09"^^xsd:date; + "1878-02-09"^^xsd:date; + "1878-02-04"^^xsd:date; + "1878-02-04"^^xsd:date; + "Tour"; + 13604; + "Actor"; + ; + ; + . + + a ; + "1878-02-16"^^xsd:date; + "1878-02-16"^^xsd:date; + "1878-02-11"^^xsd:date; + "1878-02-11"^^xsd:date; + "Tour"; + 13609; + "Actor"; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Permanent"; + 1361; + "Singer"; + ; + ; + . + + a ; + "1878-03-09"^^xsd:date; + "1878-03-09"^^xsd:date; + "1878-02-25"^^xsd:date; + "1878-02-25"^^xsd:date; + "Tour"; + 13614; + "Actor"; + ; + ; + . + + a ; + "1878-03-16"^^xsd:date; + "1878-03-16"^^xsd:date; + "1878-03-11"^^xsd:date; + "1878-03-11"^^xsd:date; + "Tour"; + 13619; + "Actor"; + ; + ; + . + + a ; + "1878-03-23"^^xsd:date; + "1878-03-23"^^xsd:date; + "1878-03-18"^^xsd:date; + "1878-03-18"^^xsd:date; + "Tour"; + 13624; + "Actor"; + ; + ; + . + + a ; + "1878-04-06"^^xsd:date; + "1878-04-06"^^xsd:date; + "1878-04-01"^^xsd:date; + "1878-04-01"^^xsd:date; + "Tour"; + 13634; + "Actor"; + ; + ; + . + + a ; + "1878-04-13"^^xsd:date; + "1878-04-13"^^xsd:date; + "1878-04-08"^^xsd:date; + "1878-04-08"^^xsd:date; + "Tour"; + 13639; + "Actor"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Guest"; + 1364; + "Singer"; + ; + ; + . + + a ; + "1878-05-02"^^xsd:date; + "1878-05-02"^^xsd:date; + "1878-04-15"^^xsd:date; + "1878-04-15"^^xsd:date; + "Tour"; + 13644; + "Actor"; + ; + ; + . + + a ; + "1878-05-02"^^xsd:date; + "1878-05-02"^^xsd:date; + "1878-04-22"^^xsd:date; + "1878-04-22"^^xsd:date; + "Tour"; + 13649; + "Actor"; + ; + ; + . + + a ; + "1878-05-09"^^xsd:date; + "1878-05-09"^^xsd:date; + "1878-05-06"^^xsd:date; + "1878-05-06"^^xsd:date; + "Tour"; + 13654; + "Actor"; + ; + ; + . + + a ; + "1878-05-11"^^xsd:date; + "1878-05-11"^^xsd:date; + "1878-05-09"^^xsd:date; + "1878-05-09"^^xsd:date; + "Tour"; + 13659; + "Actor"; + ; + ; + . + + a ; + "1878-05-18"^^xsd:date; + "1878-05-18"^^xsd:date; + "1878-05-12"^^xsd:date; + "1878-05-13"^^xsd:date; + "Tour"; + 13664; + "Actor"; + ; + ; + . + + a ; + "1878-05-19"^^xsd:date; + "1878-05-19"^^xsd:date; + "1878-05-19"^^xsd:date; + "1878-05-19"^^xsd:date; + "Tour"; + 13669; + "Actor"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 1367; + "Singer"; + ; + ; + . + + a ; + "1878-05-22"^^xsd:date; + "1878-05-22"^^xsd:date; + "1878-05-20"^^xsd:date; + "1878-05-20"^^xsd:date; + "Tour"; + 13674; + "Actor"; + ; + ; + . + + a ; + "1878-05-23"^^xsd:date; + "1878-05-23"^^xsd:date; + "1878-05-23"^^xsd:date; + "1878-05-23"^^xsd:date; + "Tour"; + 13679; + "Actor"; + ; + ; + . + + a ; + "1878-05-25"^^xsd:date; + "1878-05-25"^^xsd:date; + "1878-05-24"^^xsd:date; + "1878-05-24"^^xsd:date; + "Tour"; + 13684; + "Actor"; + ; + ; + . + + a ; + "1878-06-01"^^xsd:date; + "1878-06-01"^^xsd:date; + "1878-05-30"^^xsd:date; + "1878-05-30"^^xsd:date; + "Tour"; + 13689; + "Actor"; + ; + . + + a ; + "1878-09-28"^^xsd:date; + "1878-09-28"^^xsd:date; + "1878-09-16"^^xsd:date; + "1878-09-16"^^xsd:date; + "Tour"; + 13694; + "Actor"; + ; + ; + . + + a ; + "1878-11-09"^^xsd:date; + "1878-11-09"^^xsd:date; + "1878-09-30"^^xsd:date; + "1878-09-30"^^xsd:date; + "Tour"; + 13699; + "Actor"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 137; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Guest"; + 1370; + "Singer"; + ; + ; + . + + a ; + "1878-11-16"^^xsd:date; + "1878-11-16"^^xsd:date; + "1878-11-11"^^xsd:date; + "1878-11-11"^^xsd:date; + "Tour"; + 13704; + "Actor"; + ; + ; + . + + a ; + "1878-11-23"^^xsd:date; + "1878-11-23"^^xsd:date; + "1878-11-18"^^xsd:date; + "1878-11-18"^^xsd:date; + "Tour"; + 13709; + "Actor"; + ; + ; + . + + a ; + "1878-11-26"^^xsd:date; + "1878-11-26"^^xsd:date; + "1878-11-25"^^xsd:date; + "1878-11-25"^^xsd:date; + "Tour"; + 13714; + "Actor"; + ; + ; + . + + a ; + "-"; + "4th March 1889"; + "1889-03-04"^^xsd:date; + "1889-03-04"^^xsd:date; + "Guest"; + 13719; + "Singer"; + ; + ; + . + + a ; + "-"; + "14th May 1890"; + "1890-05-14"^^xsd:date; + "1890-05-14"^^xsd:date; + "Guest"; + 13724; + "Singer"; + ; + ; + . + + a ; + "between 1874 and 1875"; + "1875-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "between 1874 and 1875"; + "1875-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Guest"; + 13729; + "Singer"; + "She was 10 years old, just before move to Brussels"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 1373; + "Singer"; + ; + . + + a ; + "-"; + "Fall 1881"; + "1881-11-24"^^xsd:date; + "1881-09-24"^^xsd:date; + "Other"; + 13734; + "Singer"; + ; + ; + . + + a ; + "-"; + "Winter 1882"; + "1883-03-24"^^xsd:date; + "1882-11-24"^^xsd:date; + "Other"; + 13739; + "Singer"; + ; + ; + . + + a ; + "between 1884 and 1888"; + "1888-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "8th December 1882"; + "1882-12-08"^^xsd:date; + "1882-12-08"^^xsd:date; + "Permanent"; + 13744; + "Singer"; + ; + ; + . + + a ; + "-"; + "23rd April 1884"; + "1884-04-23"^^xsd:date; + "1884-04-23"^^xsd:date; + "Guest"; + 13749; + "Singer"; + ; + ; + . + + a ; + "-"; + "4th April 1885"; + "1885-12-31"^^xsd:date; + "1885-04-04"^^xsd:date; + "Guest"; + 13754; + "Singer"; + ; + ; + . + + a ; + "-"; + "31st December 1885"; + "1885-12-31"^^xsd:date; + "1885-12-31"^^xsd:date; + "Guest"; + 13759; + "Singer"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Guest"; + 1376; + "Singer"; + "worked in Theatre de la Monnaie"; + ; + . + + a ; + "-"; + "1st May 1886"; + "1886-05-01"^^xsd:date; + "1886-05-01"^^xsd:date; + "Guest"; + 13764; + "Singer"; + ; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 13769; + "Singer"; + ; + . + + a ; + "-"; + "11th December 1886"; + "1886-12-11"^^xsd:date; + "1886-12-11"^^xsd:date; + "Guest"; + 13774; + "Singer"; + ; + ; + . + + a ; + "-"; + "8th November 1887"; + "1887-11-08"^^xsd:date; + "1887-11-08"^^xsd:date; + "Guest"; + 13779; + "Singer"; + ; + ; + . + + a ; + "-"; + "11th February 1888"; + "1888-02-11"^^xsd:date; + "1888-02-11"^^xsd:date; + "Guest"; + 13784; + "Singer"; + ; + ; + . + + a ; + "-"; + "15th March 1888"; + "1888-03-15"^^xsd:date; + "1888-03-15"^^xsd:date; + "Guest"; + 13789; + "Singer"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 1379; + "Singer"; + ; + . + + a ; + "-"; + "2nd April 1888"; + "1888-04-02"^^xsd:date; + "1888-04-02"^^xsd:date; + "Guest"; + 13794; + "Singer"; + ; + ; + . + + a ; + "-"; + "18th January 1889"; + "1889-01-18"^^xsd:date; + "1889-01-18"^^xsd:date; + "Guest"; + 13799; + "Singer"; + ; + ; + . + + a ; + """Tour +"""; + "Tour"; + 138; + ; + . + + a ; + "-"; + "4th March 1889"; + "1889-03-04"^^xsd:date; + "1889-03-04"^^xsd:date; + "Guest"; + 13804; + "Singer"; + ; + ; + . + + a ; + "-"; + "24th October 1889"; + "1889-10-24"^^xsd:date; + "1889-10-24"^^xsd:date; + "Guest"; + 13809; + "Singer"; + ; + ; + . + + a ; + "-"; + "14th May 1890"; + "1890-05-14"^^xsd:date; + "1890-05-14"^^xsd:date; + "Guest"; + 13814; + "Singer"; + ; + ; + . + + a ; + "1879-03-22"^^xsd:date; + "1879-03-22"^^xsd:date; + "1879-03-17"^^xsd:date; + "1879-03-17"^^xsd:date; + "Tour"; + 13819; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1382; + "Singer"; + ; + . + + a ; + "1879-01-30"^^xsd:date; + "1879-01-30"^^xsd:date; + "1879-01-29"^^xsd:date; + "1879-01-29"^^xsd:date; + "Tour"; + 13839; + "Actor"; + ; + ; + . + + a ; + "1879-02-01"^^xsd:date; + "1879-02-01"^^xsd:date; + "1879-01-31"^^xsd:date; + "1879-01-31"^^xsd:date; + "Tour"; + 13843; + "Actor"; + ; + ; + . + + a ; + "1879-02-08"^^xsd:date; + "1879-02-08"^^xsd:date; + "1879-02-03"^^xsd:date; + "1879-02-03"^^xsd:date; + "Tour"; + 13844; + "Actor"; + ; + ; + . + + a ; + "1879-02-15"^^xsd:date; + "1879-02-15"^^xsd:date; + "1879-02-10"^^xsd:date; + "1879-02-10"^^xsd:date; + "Tour"; + 13848; + "Actor"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Tour"; + 1385; + "Singer"; + ; + . + + a ; + "1879-03-01"^^xsd:date; + "1879-03-01"^^xsd:date; + "1879-02-17"^^xsd:date; + "1879-02-17"^^xsd:date; + "Tour"; + 13853; + "Actor"; + ; + ; + . + + a ; + "1879-03-03"^^xsd:date; + "1879-03-03"^^xsd:date; + "1879-03-03"^^xsd:date; + "1879-03-03"^^xsd:date; + "Tour"; + 13858; + "Actor"; + ; + ; + . + + a ; + "-"; + "31st December 1890"; + "1890-12-31"^^xsd:date; + "1890-12-31"^^xsd:date; + "Guest"; + 13859; + "Singer"; + ; + ; + . + + a ; + "-"; + "5th January 1887"; + "1887-01-05"^^xsd:date; + "1887-01-05"^^xsd:date; + "Guest"; + 13864; + "Singer"; + ; + ; + . + + a ; + "May 1890"; + "1890-05-31"^^xsd:date; + "1890-05-01"^^xsd:date; + "January 1890"; + "1890-01-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Guest"; + 13869; + "Singer"; + ; + ; + . + + a ; + "-"; + "October 1890"; + "1890-10-31"^^xsd:date; + "1890-10-01"^^xsd:date; + "Guest"; + 13874; + "Singer"; + ; + ; + . + + a ; + "-"; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Guest"; + 13879; + "Singer"; + """Hague Thatre Royal de la Haye"""; + ; + . + + a ; + "1954"; + "1954-12-31"^^xsd:date; + "1954-01-01"^^xsd:date; + "Tour"; + 1388; + "Teacher (Theatre related)"; + ; + . + + a ; + "-"; + "10th March 1891"; + "1891-03-10"^^xsd:date; + "1891-03-10"^^xsd:date; + "Guest"; + 13884; + "Singer"; + ; + ; + . + + a ; + "-"; + "August 1891"; + "1891-08-31"^^xsd:date; + "1891-08-01"^^xsd:date; + "Guest"; + 13894; + "Singer"; + ; + ; + . + + a ; + "Between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "between September and November1891"; + "1891-11-30"^^xsd:date; + "1891-09-01"^^xsd:date; + "Tour"; + 13899; + "Singer"; + ; + ; + . + + a ; + "Tour"; + "Tour"; + 139; + ; + . + + a ; + "Between 1892 and 1893"; + "1893-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "between 1892 and 1893"; + "1893-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 13904; + "Singer"; + ; + . + + a ; + "-"; + "Fall 1893"; + "1893-12-24"^^xsd:date; + "1893-09-24"^^xsd:date; + "Guest"; + 13909; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1391; + "Singer"; + ; + ; + . + + a ; + "-"; + "10th October 1893"; + "1893-10-10"^^xsd:date; + "1893-10-10"^^xsd:date; + "Guest"; + 13914; + "Singer"; + "Founder"; + ; + ; + ; + . + + a ; + "-"; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 13919; + "Singer"; + ; + . + + a ; + "November 1895"; + "1895-11-30"^^xsd:date; + "1895-11-01"^^xsd:date; + "March 1895"; + "1895-03-31"^^xsd:date; + "1895-03-01"^^xsd:date; + "Guest"; + 13924; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13929; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13934; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13939; + "Singer"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 1394; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13944; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13949; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13954; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13959; + "Singer"; + ; + ; + . + + a ; + "Between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "between 1895 and 1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 13964; + "Singer"; + ; + ; + . + + a ; + "-"; + "January 1898"; + "1898-01-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Guest"; + 13969; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 1397; + "Singer"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Permanent"; + 13974; + "Singer"; + ; + ; + . + + a ; + "Spring 1902"; + "1902-06-24"^^xsd:date; + "1902-03-24"^^xsd:date; + "12th April 1901"; + "1901-04-12"^^xsd:date; + "1901-04-12"^^xsd:date; + "Tour"; + 13979; + "Singer"; + "Director"; + "Founder"; + ; + ; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 13984; + "Singer"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 13989; + "Singer"; + ; + . + + a ; + "End of 1897"; + "1897-12-31"^^xsd:date; + "1897-10-21"^^xsd:date; + "21st October 1897"; + "1897-10-21"^^xsd:date; + "1897-10-21"^^xsd:date; + "Guest"; + 13994; + "Singer"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 13999; + "Singer"; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + 14; + "Singer"; + "work together with Impresario Bartolomeo Merelli"; + . + + a ; + "Tour"; + "Tour"; + 140; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 1400; + "Singer"; + ; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 14004; + "Singer"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 14005; + "Singer"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 14009; + "Singer"; + ; + . + + a ; + "Between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "between 1903 and 1906"; + "1906-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 14014; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14019; + "Singer"; + ; + . + + a ; + "-"; + "22nd June 1906"; + "1906-06-22"^^xsd:date; + "1906-06-22"^^xsd:date; + "Tour"; + 14024; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14029; + "Singer"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 1403; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14034; + "Singer"; + ; + . + + a ; + "-"; + "18th August 1906"; + "1906-08-18"^^xsd:date; + "1906-08-18"^^xsd:date; + "Tour"; + 14039; + "Singer"; + ; + ; + . + + a ; + "-"; + "29th September 1906"; + "1906-09-29"^^xsd:date; + "1906-09-29"^^xsd:date; + "Tour"; + 14043; + "Singer"; + ; + ; + . + + a ; + "-"; + "25th December 1907"; + "1907-12-25"^^xsd:date; + "1907-12-25"^^xsd:date; + "Tour"; + 14044; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14049; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14053; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14054; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14059; + "Singer"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 1406; + "Singer"; + ; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14064; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14069; + "Singer"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 1407; + "Singer"; + ; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14074; + "Singer"; + ; + . + + a ; + "Between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14079; + "Singer"; + ; + . + + a ; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "between 1906 and  May 1908"; + "1908-05-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 14084; + "Singer"; + ; + . + + a ; + "between May and October 1908"; + "1908-10-31"^^xsd:date; + "1908-05-01"^^xsd:date; + "between May and October 1908"; + "1908-10-31"^^xsd:date; + "1908-05-01"^^xsd:date; + "Guest"; + 14089; + "Singer"; + ; + . + + a ; + "between May and October 1908"; + "1908-10-31"^^xsd:date; + "1908-05-01"^^xsd:date; + "between May and October 1908"; + "1908-10-31"^^xsd:date; + "1908-05-01"^^xsd:date; + "Guest"; + 14094; + "Singer"; + ; + . + + a ; + "1st November 1908"; + "1908-11-01"^^xsd:date; + "1908-11-01"^^xsd:date; + "25th October 1908"; + "1908-10-25"^^xsd:date; + "1908-10-25"^^xsd:date; + "Guest"; + 14099; + "Singer"; + ; + ; + ; + . + + a ; + "part"; + "Tour"; + 141; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 1410; + "Singer"; + ; + ; + . + + a ; + "-"; + "4th November 1908"; + "1908-11-04"^^xsd:date; + "1908-11-04"^^xsd:date; + "Guest"; + 14104; + "Singer"; + ; + ; + . + + a ; + "-"; + "19th November 1908"; + "1908-11-19"^^xsd:date; + "1908-11-19"^^xsd:date; + "Guest"; + 14109; + "Singer"; + ; + ; + ; + . + + a ; + "-"; + "19th January 1909"; + "1909-01-19"^^xsd:date; + "1909-01-19"^^xsd:date; + "Guest"; + 14114; + "Singer"; + "Test record"; + ; + ; + . + + a ; + "-"; + "3rd February 1909"; + "1909-02-03"^^xsd:date; + "1909-02-03"^^xsd:date; + "Guest"; + 14119; + "Singer"; + "(makes four cylinders)"; + ; + ; + . + + a ; + "-"; + "9th February 1909"; + "1909-02-09"^^xsd:date; + "1909-02-09"^^xsd:date; + "Guest"; + 14124; + "Singer"; + ; + ; + ; + . + + a ; + "19th March 1909"; + "1909-03-19"^^xsd:date; + "1909-03-19"^^xsd:date; + "18th March 1909"; + "1909-03-18"^^xsd:date; + "1909-03-18"^^xsd:date; + "Tour"; + 14129; + "(makes eight Red Seal records)"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 1413; + "Singer"; + "together with Lilli Lehmann"; + ; + ; + . + + a ; + "April 1909"; + "1909-04-30"^^xsd:date; + "1909-04-01"^^xsd:date; + "April 1909"; + "1909-04-30"^^xsd:date; + "1909-04-01"^^xsd:date; + "Tour"; + 14134; + ; + ; + . + + a ; + "4th June 1909"; + "1909-06-04"^^xsd:date; + "1909-06-04"^^xsd:date; + "24th May 1909"; + "1909-05-24"^^xsd:date; + "1909-05-24"^^xsd:date; + "Tour"; + 14139; + "(unconfirmed)"; + ; + ; + . + + a ; + "5th December 1909"; + "1909-12-05"^^xsd:date; + "1909-12-05"^^xsd:date; + "24th October 1909"; + "1909-10-24"^^xsd:date; + "1909-10-24"^^xsd:date; + "Tour"; + 14144; + ; + ; + ; + . + + a ; + "30th December 1909"; + "1909-12-30"^^xsd:date; + "1909-12-30"^^xsd:date; + "27th December 1909"; + "1909-12-27"^^xsd:date; + "1909-12-27"^^xsd:date; + "Tour"; + 14149; + ; + ; + . + + a ; + "10th May 1911"; + "1911-05-10"^^xsd:date; + "1911-05-10"^^xsd:date; + "10th May 1911"; + "1911-05-10"^^xsd:date; + "1911-05-10"^^xsd:date; + "Tour"; + 14154; + ; + ; + . + + a ; + "July 1912"; + "1912-07-31"^^xsd:date; + "1912-07-01"^^xsd:date; + "July 1912"; + "1912-07-31"^^xsd:date; + "1912-07-01"^^xsd:date; + "Tour"; + 14159; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 1416; + "Teacher (Theatre related)"; + ; + . + + a ; + "4th November 1912"; + "1912-11-04"^^xsd:date; + "1912-11-04"^^xsd:date; + "4th November 1912"; + "1912-11-04"^^xsd:date; + "1912-11-04"^^xsd:date; + "Tour"; + 14164; + ; + ; + ; + . + + a ; + "25th January 1913"; + "1913-01-25"^^xsd:date; + "1913-01-25"^^xsd:date; + "25th January 1913"; + "1913-01-25"^^xsd:date; + "1913-01-25"^^xsd:date; + "Tour"; + 14169; + ; + ; + ; + . + + a ; + "8th May 1913"; + "1913-05-08"^^xsd:date; + "1913-05-08"^^xsd:date; + "8th May 1913"; + "1913-05-08"^^xsd:date; + "1913-05-08"^^xsd:date; + "Tour"; + 14174; + ; + ; + ; + . + + a ; + "18th November 1913"; + "1913-11-18"^^xsd:date; + "1913-11-18"^^xsd:date; + "18th November 1913"; + "1913-11-18"^^xsd:date; + "1913-11-18"^^xsd:date; + "Tour"; + 14179; + ; + ; + ; + . + + a ; + "14th December 1913"; + "1913-12-14"^^xsd:date; + "1913-12-14"^^xsd:date; + "14th December 1913"; + "1913-12-14"^^xsd:date; + "1913-12-14"^^xsd:date; + "Tour"; + 14184; + ; + ; + ; + . + + a ; + "7th March 1915"; + "1915-03-07"^^xsd:date; + "1915-03-07"^^xsd:date; + "7th March 1915"; + "1915-03-07"^^xsd:date; + "1915-03-07"^^xsd:date; + "Tour"; + 14189; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 1419; + "Teacher (Theatre related)"; + ; + . + + a ; + "-"; + "26th April 1915"; + "1915-04-26"^^xsd:date; + "1915-04-26"^^xsd:date; + "Guest"; + 14194; + "Singer"; + ; + ; + . + + a ; + "-"; + "15th November 1915"; + "1915-11-15"^^xsd:date; + "1915-11-15"^^xsd:date; + "Guest"; + 14199; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 142; + "Singer"; + ""; + ; + ; + . + + a ; + "-"; + "26th March 1916"; + "1916-03-26"^^xsd:date; + "1916-03-26"^^xsd:date; + "Guest"; + 14204; + "Music Director"; + ; + ; + . + + a ; + "28th July 1918"; + "1918-07-28"^^xsd:date; + "1918-07-28"^^xsd:date; + "Guest"; + 14209; + "Singer"; + ; + ; + ; + . + + a ; + "Between 1933 and 1938"; + "1938-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "between 1933 and 1938"; + "1938-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Other"; + 14214; + "Singer"; + ; + ; + . + + a ; + "Between April and June 1935"; + "1938-12-31"^^xsd:date; + "1935-04-01"^^xsd:date; + "between April and June 1935"; + "1935-06-30"^^xsd:date; + "1935-04-01"^^xsd:date; + "Other"; + 14219; + "Singer"; + "Stars in a weekly series of fifteen-minute radio broadcasts"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Guest"; + 1422; + "Singer"; + ; + ; + . + + a ; + "Between 1935 and 1937"; + "1937-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "between 1935 and 1937"; + "1937-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "Other"; + 14224; + "Author"; + ; + ; + . + + a ; + "1883-01-27"^^xsd:date; + "1883-01-27"^^xsd:date; + "1883-01-22"^^xsd:date; + "1883-01-22"^^xsd:date; + "Tour"; + 14226; + "Actor"; + ; + ; + . + + a ; + "1883-02-17"^^xsd:date; + "1883-02-17"^^xsd:date; + "1883-02-05"^^xsd:date; + "1883-02-05"^^xsd:date; + "Tour"; + 14230; + "Actor"; + ; + ; + . + + a ; + "1883-02-24"^^xsd:date; + "1883-02-24"^^xsd:date; + "1883-02-22"^^xsd:date; + "1883-02-22"^^xsd:date; + "Tour"; + 14234; + "Actor"; + ; + ; + . + + a ; + "1883-03-03"^^xsd:date; + "1883-03-03"^^xsd:date; + "1883-03-01"^^xsd:date; + "1883-03-01"^^xsd:date; + "Tour"; + 14238; + "Actor"; + ; + ; + . + + a ; + "1883-03-10"^^xsd:date; + "1883-03-10"^^xsd:date; + "1883-03-05"^^xsd:date; + "1883-03-05"^^xsd:date; + "Tour"; + 14242; + "Actor"; + ; + ; + . + + a ; + "1883-03-15"^^xsd:date; + "1883-03-15"^^xsd:date; + "1883-03-15"^^xsd:date; + "1883-03-15"^^xsd:date; + "Tour"; + 14246; + "Actor"; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Permanent"; + 1425; + "Singer"; + ; + ; + . + + a ; + "1883-03-21"^^xsd:date; + "1883-03-21"^^xsd:date; + "1883-03-20"^^xsd:date; + "1883-03-20"^^xsd:date; + "Tour"; + 14250; + "Actor"; + ; + ; + . + + a ; + "1883-03-27"^^xsd:date; + "1883-03-27"^^xsd:date; + "1883-03-26"^^xsd:date; + "1883-03-26"^^xsd:date; + "Tour"; + 14258; + "Actor"; + ; + ; + . + + a ; + "1883-04-04"^^xsd:date; + "1883-04-04"^^xsd:date; + "1883-04-04"^^xsd:date; + "1883-04-04"^^xsd:date; + "Tour"; + 14262; + "Actor"; + ; + ; + . + + a ; + "1883-04-21"^^xsd:date; + "1883-04-21"^^xsd:date; + "1883-04-09"^^xsd:date; + "1883-04-09"^^xsd:date; + "Tour"; + 14266; + "Actor"; + ; + ; + . + + a ; + "1883-04-28"^^xsd:date; + "1883-04-28"^^xsd:date; + "1883-04-28"^^xsd:date; + "1883-04-28"^^xsd:date; + "Tour"; + 14270; + "Actor"; + ; + ; + . + + a ; + "1883-06-02"^^xsd:date; + "1883-06-02"^^xsd:date; + "1883-05-07"^^xsd:date; + "1883-05-07"^^xsd:date; + "Tour"; + 14274; + "Actor"; + ; + ; + . + + a ; + "1883-06-05"^^xsd:date; + "1883-06-05"^^xsd:date; + "1883-06-05"^^xsd:date; + "1883-06-05"^^xsd:date; + "Tour"; + 14278; + "Actor"; + ; + ; + . + + a ; + "1883-06-16"^^xsd:date; + "1883-06-16"^^xsd:date; + "1883-06-11"^^xsd:date; + "1883-06-11"^^xsd:date; + "Tour"; + 14282; + "Actor"; + ; + ; + . + + a ; + "1883-09-15"^^xsd:date; + "1883-09-15"^^xsd:date; + "1883-09-02"^^xsd:date; + "1883-09-02"^^xsd:date; + "Tour"; + 14286; + "Actor"; + ; + ; + . + + a ; + "1883-09-18"^^xsd:date; + "1883-09-18"^^xsd:date; + "1883-09-18"^^xsd:date; + "1883-09-18"^^xsd:date; + "Tour"; + 14290; + "Actor"; + ; + ; + . + + a ; + "1883-09-20"^^xsd:date; + "1883-09-20"^^xsd:date; + "1883-09-20"^^xsd:date; + "1883-09-20"^^xsd:date; + "Tour"; + 14294; + "Actor"; + ; + ; + . + + a ; + "1883-09-22"^^xsd:date; + "1883-09-22"^^xsd:date; + "1883-09-22"^^xsd:date; + "1883-09-22"^^xsd:date; + "Tour"; + 14298; + "Actor"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 143; + "Singer"; + ; + ; + . + + a ; + "1883-09-25"^^xsd:date; + "1883-09-25"^^xsd:date; + "1883-09-25"^^xsd:date; + "1883-09-25"^^xsd:date; + "Tour"; + 14302; + "Actor"; + ; + ; + . + + a ; + "1883-09-27"^^xsd:date; + "1883-09-27"^^xsd:date; + "1883-09-27"^^xsd:date; + "1883-09-27"^^xsd:date; + "Tour"; + 14306; + "Actor"; + ; + ; + . + + a ; + "1883-09-29"^^xsd:date; + "1883-09-29"^^xsd:date; + "1883-09-29"^^xsd:date; + "1883-09-29"^^xsd:date; + "Tour"; + 14310; + "Actor"; + ; + ; + . + + a ; + "1883-10-09"^^xsd:date; + "1883-10-09"^^xsd:date; + "1883-10-09"^^xsd:date; + "1883-10-09"^^xsd:date; + "Tour"; + 14314; + "Actor"; + ; + ; + . + + a ; + "1883-10-11"^^xsd:date; + "1883-10-11"^^xsd:date; + "1883-10-11"^^xsd:date; + "1883-10-11"^^xsd:date; + "Tour"; + 14318; + "Actor"; + ; + ; + . + + a ; + "1883-10-13"^^xsd:date; + "1883-10-13"^^xsd:date; + "1883-10-13"^^xsd:date; + "1883-10-13"^^xsd:date; + "Tour"; + 14322; + "Actor"; + ; + ; + . + + a ; + "1883-10-20"^^xsd:date; + "1883-10-20"^^xsd:date; + "1883-10-19"^^xsd:date; + "1883-10-19"^^xsd:date; + "Tour"; + 14326; + "Actor"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Permanent"; + 1433; + "Singer"; + ; + ; + . + + a ; + "1889-07-16"^^xsd:date; + "1889-07-16"^^xsd:date; + "1889-07-15"^^xsd:date; + "1889-07-15"^^xsd:date; + "Tour"; + 14330; + "Actor"; + ; + ; + . + + a ; + "1889-07-27"^^xsd:date; + "1889-07-27"^^xsd:date; + "1889-07-25"^^xsd:date; + "1889-07-25"^^xsd:date; + "Tour"; + 14334; + "Actor"; + ; + ; + . + + a ; + "1879-04-05"^^xsd:date; + "1879-04-05"^^xsd:date; + "1879-03-24"^^xsd:date; + "1879-03-24"^^xsd:date; + "Tour"; + 14338; + "Actor"; + ; + ; + . + + a ; + "1879-04-09"^^xsd:date; + "1879-04-09"^^xsd:date; + "1879-04-09"^^xsd:date; + "1879-04-09"^^xsd:date; + "Tour"; + 14342; + "Actor"; + ; + ; + . + + a ; + "1879-04-11"^^xsd:date; + "1879-04-11"^^xsd:date; + "1879-04-11"^^xsd:date; + "1879-04-11"^^xsd:date; + "Tour"; + 14346; + "Actor"; + ; + ; + . + + a ; + "1879-04-15"^^xsd:date; + "1879-04-15"^^xsd:date; + "1879-04-14"^^xsd:date; + "1879-04-14"^^xsd:date; + "Tour"; + 14350; + "Actor"; + ; + ; + . + + a ; + "1879-04-17"^^xsd:date; + "1879-04-17"^^xsd:date; + "1879-04-17"^^xsd:date; + "1879-04-17"^^xsd:date; + "Tour"; + 14354; + "Actor"; + ; + ; + . + + a ; + "1879-04-19"^^xsd:date; + "1879-04-19"^^xsd:date; + "1879-04-19"^^xsd:date; + "1879-04-19"^^xsd:date; + "Tour"; + 14358; + "Actor"; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1896"; + "1886-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 1436; + "Singer"; + ; + ; + . + + a ; + "1879-05-10"^^xsd:date; + "1879-05-10"^^xsd:date; + "1879-04-28"^^xsd:date; + "1879-04-28"^^xsd:date; + "Tour"; + 14362; + "Actor"; + ; + ; + . + + a ; + "1879-05-14"^^xsd:date; + "1879-05-14"^^xsd:date; + "1879-05-14"^^xsd:date; + "1879-05-14"^^xsd:date; + "Tour"; + 14366; + "Actor"; + ; + ; + . + + a ; + "1879-05-17"^^xsd:date; + "1879-05-17"^^xsd:date; + "1879-05-16"^^xsd:date; + "1879-05-16"^^xsd:date; + "Tour"; + 14382; + "Actor"; + ; + ; + . + + a ; + "1880"; + "1880-03-31"^^xsd:date; + "1880-03-01"^^xsd:date; + "1879"; + "1879-10-31"^^xsd:date; + "1879-10-01"^^xsd:date; + "Tour"; + 14386; + "Actor"; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Permanent"; + 1439; + "Singer"; + ; + ; + . + + a ; + "1880"; + "1880-05-31"^^xsd:date; + "1880-05-01"^^xsd:date; + "1880"; + "1880-05-31"^^xsd:date; + "1880-05-01"^^xsd:date; + "Tour"; + 14390; + "Actor"; + ; + ; + . + + a ; + "1882"; + "1882-03-31"^^xsd:date; + "1882-03-01"^^xsd:date; + "1882"; + "1882-01-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 14394; + "Actor"; + ; + . + + a ; + "1882-10-21"^^xsd:date; + "1882-10-21"^^xsd:date; + "1882-10-02"^^xsd:date; + "1882-10-02"^^xsd:date; + "Tour"; + 14398; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 144; + ; + . + + a ; + "1882-10-25"^^xsd:date; + "1882-10-25"^^xsd:date; + "1882-10-23"^^xsd:date; + "1882-10-23"^^xsd:date; + "Tour"; + 14402; + "Actor"; + ; + . + + a ; + "1882-10-26"^^xsd:date; + "1882-10-26"^^xsd:date; + "1882-10-26"^^xsd:date; + "1882-10-26"^^xsd:date; + "Tour"; + 14406; + "Actor"; + ; + . + + a ; + "1882-10-28"^^xsd:date; + "1882-10-28"^^xsd:date; + "1882-10-28"^^xsd:date; + "1882-10-28"^^xsd:date; + "Tour"; + 14410; + "Actor"; + ; + ; + . + + a ; + "1882-11-04"^^xsd:date; + "1882-11-04"^^xsd:date; + "1882-10-30"^^xsd:date; + "1882-10-30"^^xsd:date; + "Tour"; + 14414; + "Actor"; + ; + ; + . + + a ; + "1882-11-08"^^xsd:date; + "1882-11-08"^^xsd:date; + "1882-11-06"^^xsd:date; + "1882-11-06"^^xsd:date; + "Tour"; + 14418; + "Actor"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Permanent"; + 1442; + "Singer"; + ; + ; + . + + a ; + "1882-11-11"^^xsd:date; + "1882-11-11"^^xsd:date; + "1882-11-09"^^xsd:date; + "1882-11-09"^^xsd:date; + "Tour"; + 14422; + "Actor"; + ; + ; + . + + a ; + "1882-11-25"^^xsd:date; + "1882-11-25"^^xsd:date; + "1882-11-13"^^xsd:date; + "1882-11-13"^^xsd:date; + "Tour"; + 14426; + "Actor"; + ; + ; + . + + a ; + "1882-11-27"^^xsd:date; + "1882-11-27"^^xsd:date; + "1882-11-27"^^xsd:date; + "1882-11-27"^^xsd:date; + "Tour"; + 14430; + "Actor"; + ; + ; + . + + a ; + "1882-11-28"^^xsd:date; + "1882-11-28"^^xsd:date; + "1882-11-28"^^xsd:date; + "1882-11-28"^^xsd:date; + "Tour"; + 14434; + "Actor"; + ; + ; + . + + a ; + "1882-11-29"^^xsd:date; + "1882-11-29"^^xsd:date; + "1882-11-29"^^xsd:date; + "1882-11-29"^^xsd:date; + "Tour"; + 14438; + "Actor"; + ; + ; + . + + a ; + "1882-11-30"^^xsd:date; + "1882-11-30"^^xsd:date; + "1882-11-30"^^xsd:date; + "1882-11-30"^^xsd:date; + "Tour"; + 14442; + "Actor"; + ; + ; + . + + a ; + "1882-12-01"^^xsd:date; + "1882-12-01"^^xsd:date; + "1882-12-01"^^xsd:date; + "1882-12-01"^^xsd:date; + "Tour"; + 14446; + "Actor"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + 1445; + "Singer"; + ; + ; + . + + a ; + "1882-12-02"^^xsd:date; + "1882-12-02"^^xsd:date; + "1882-12-02"^^xsd:date; + "1882-12-02"^^xsd:date; + "Tour"; + 14458; + "Actor"; + ; + ; + . + + a ; + "1882-12-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "1882-12-04"^^xsd:date; + "1882-12-04"^^xsd:date; + "Tour"; + 14462; + "Actor"; + ; + ; + . + + a ; + "1883-01-06"^^xsd:date; + "1883-01-06"^^xsd:date; + "1882-12-11"^^xsd:date; + "1882-12-11"^^xsd:date; + "Tour"; + 14466; + "Actor"; + ; + ; + . + + a ; + "1883-01-13"^^xsd:date; + "1883-01-13"^^xsd:date; + "1883-01-08"^^xsd:date; + "1883-01-08"^^xsd:date; + "Tour"; + 14470; + "Actor"; + ; + ; + . + + a ; + "1883-01-20"^^xsd:date; + "1883-01-20"^^xsd:date; + "1883-01-15"^^xsd:date; + "1883-01-15"^^xsd:date; + "Tour"; + 14478; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest "; + "Guest"; + 1448; + "from 1905 until 1914 she lived in Berlin and had guest engagements all around."; + ; + . + + a ; + "1883-02-03"^^xsd:date; + "1883-02-03"^^xsd:date; + "1883-01-29"^^xsd:date; + "1883-01-29"^^xsd:date; + "Tour"; + 14482; + "Actor"; + ; + ; + . + + a ; + "1883-02-21"^^xsd:date; + "1883-02-21"^^xsd:date; + "1883-02-19"^^xsd:date; + "1883-02-19"^^xsd:date; + "Tour"; + 14486; + "Actor"; + ; + ; + . + + a ; + "1883-02-27"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-02-27"^^xsd:date; + "1883-02-27"^^xsd:date; + "Tour"; + 14490; + "Actor"; + ; + ; + . + + a ; + "1883-02-26"^^xsd:date; + "1883-02-26"^^xsd:date; + "1883-02-26"^^xsd:date; + "1883-02-26"^^xsd:date; + "Tour"; + 14494; + "Actor"; + ; + ; + . + + a ; + "1883-03-12"^^xsd:date; + "1883-03-12"^^xsd:date; + "1883-03-12"^^xsd:date; + "1883-03-12"^^xsd:date; + "Tour"; + 14498; + "Actor"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 145; + "Singer"; + ; + ; + . + + a ; + "1883-03-14"^^xsd:date; + "1883-03-14"^^xsd:date; + "1883-03-14"^^xsd:date; + "1883-03-14"^^xsd:date; + "Tour"; + 14502; + "Actor"; + ; + . + + a ; + "1883-03-22"^^xsd:date; + "1883-03-22"^^xsd:date; + "1883-03-22"^^xsd:date; + "1883-03-22"^^xsd:date; + "Tour"; + 14506; + "Actor"; + ; + ; + . + + a ; + "Summer 1910"; + "1910-09-30"^^xsd:date; + "1910-06-01"^^xsd:date; + "Summer 1910"; + "1910-09-30"^^xsd:date; + "1910-06-01"^^xsd:date; + "Guest"; + 1451; + "Singer"; + "in summer 1908 and 1910 she sung at the Münchner Wagner-Festspiele"; + ; + ; + . + + a ; + "1883-03-27"^^xsd:date; + "1883-03-27"^^xsd:date; + "1883-03-26"^^xsd:date; + "1883-03-26"^^xsd:date; + "Tour"; + 14510; + "Actor"; + ; + ; + . + + a ; + "1883-03-31"^^xsd:date; + "1883-03-31"^^xsd:date; + "1883-03-31"^^xsd:date; + "1883-03-31"^^xsd:date; + "Tour"; + 14514; + "Actor"; + ; + ; + . + + a ; + "1883-04-06"^^xsd:date; + "1883-04-06"^^xsd:date; + "1883-04-05"^^xsd:date; + "1883-04-05"^^xsd:date; + "Tour"; + 14518; + "Actor"; + ; + ; + . + + a ; + "1883-04-27"^^xsd:date; + "1883-04-27"^^xsd:date; + "1883-04-23"^^xsd:date; + "1883-04-23"^^xsd:date; + "Tour"; + 14522; + "Actor"; + ; + . + + a ; + "1883-04-30"^^xsd:date; + "1883-04-30"^^xsd:date; + "1883-04-30"^^xsd:date; + "1883-04-30"^^xsd:date; + "Tour"; + 14526; + "Actor"; + ; + ; + . + + a ; + "1886-06-04"^^xsd:date; + "1883-06-04"^^xsd:date; + "1883-06-04"^^xsd:date; + "1883-06-04"^^xsd:date; + "Tour"; + 14530; + "Actor"; + ; + ; + . + + a ; + "1883-06-09"^^xsd:date; + "1883-06-09"^^xsd:date; + "1883-06-08"^^xsd:date; + "1883-06-08"^^xsd:date; + "Tour"; + 14534; + "Actor"; + ; + ; + . + + a ; + "1883-09-01"^^xsd:date; + "1883-09-01"^^xsd:date; + "1883-08-30"^^xsd:date; + "1883-08-30"^^xsd:date; + "Tour"; + 14538; + "Actor"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 1454; + "Singer"; + ; + . + + a ; + "1883-09-17"^^xsd:date; + "1883-09-17"^^xsd:date; + "1883-09-17"^^xsd:date; + "1883-09-17"^^xsd:date; + "Tour"; + 14542; + "Actor"; + ; + ; + . + + a ; + "1883-09-19"^^xsd:date; + "1883-09-19"^^xsd:date; + "1883-09-19"^^xsd:date; + "1883-09-19"^^xsd:date; + "Tour"; + 14546; + "Actor"; + ; + ; + . + + a ; + "1883-09-21"^^xsd:date; + "1883-09-21"^^xsd:date; + "1883-09-21"^^xsd:date; + "1883-09-21"^^xsd:date; + "Tour"; + 14550; + "Actor"; + ; + ; + . + + a ; + "1883-09-24"^^xsd:date; + "1883-09-24"^^xsd:date; + "1883-09-24"^^xsd:date; + "1883-09-24"^^xsd:date; + "Tour"; + 14554; + "Actor"; + ; + ; + . + + a ; + "1883-09-26"^^xsd:date; + "1883-09-26"^^xsd:date; + "1883-09-26"^^xsd:date; + "1883-09-26"^^xsd:date; + "Tour"; + 14558; + "Actor"; + ; + . + + a ; + "1883-09-28"^^xsd:date; + "1883-09-28"^^xsd:date; + "1883-09-28"^^xsd:date; + "1883-09-28"^^xsd:date; + "Tour"; + 14562; + "Actor"; + ; + ; + . + + a ; + "1883-10-06"^^xsd:date; + "1883-10-06"^^xsd:date; + "1883-10-01"^^xsd:date; + "1883-10-01"^^xsd:date; + "Tour"; + 14566; + "Actor"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 1457; + "Director"; + ; + . + + a ; + "1883-10-10"^^xsd:date; + "1883-10-10"^^xsd:date; + "1883-10-10"^^xsd:date; + "1883-10-10"^^xsd:date; + "Tour"; + 14570; + "Actor"; + ; + ; + . + + a ; + "1883-10-12"^^xsd:date; + "1883-10-12"^^xsd:date; + "1883-10-12"^^xsd:date; + "1883-10-12"^^xsd:date; + "Tour"; + 14574; + "Actor"; + ; + ; + . + + a ; + "1883-10-17"^^xsd:date; + "1883-10-17"^^xsd:date; + "1883-10-16"^^xsd:date; + "1883-10-16"^^xsd:date; + "Tour"; + 14578; + "Actor"; + ; + ; + . + + a ; + "1883-10-24"^^xsd:date; + "1883-10-24"^^xsd:date; + "1883-10-22"^^xsd:date; + "1883-10-22"^^xsd:date; + "Tour"; + 14582; + "Actor"; + ; + ; + . + + a ; + "1889-07-18"^^xsd:date; + "1889-07-18"^^xsd:date; + "1889-07-17"^^xsd:date; + "1889-07-17"^^xsd:date; + "Tour"; + 14586; + "Actor"; + ; + ; + . + + a ; + "1889-10-05"^^xsd:date; + "1889-10-05"^^xsd:date; + "1889-09-30"^^xsd:date; + "1889-09-30"^^xsd:date; + "Tour"; + 14590; + "Actor"; + ; + ; + . + + a ; + "1879-04-07"^^xsd:date; + "1879-04-07"^^xsd:date; + "1879-04-07"^^xsd:date; + "1879-04-07"^^xsd:date; + "Tour"; + 14594; + "Actor"; + ; + ; + . + + a ; + "1879-04-10"^^xsd:date; + "1879-04-10"^^xsd:date; + "1879-04-10"^^xsd:date; + "1879-04-10"^^xsd:date; + "Tour"; + 14598; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 146; + "Singer"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 1460; + "Director"; + ; + . + + a ; + "1879-04-12"^^xsd:date; + "1879-04-12"^^xsd:date; + "1879-04-12"^^xsd:date; + "1879-04-12"^^xsd:date; + "Tour"; + 14602; + "Actor"; + ; + ; + . + + a ; + "1879-04-16"^^xsd:date; + "1879-04-16"^^xsd:date; + "1879-04-16"^^xsd:date; + "1879-04-16"^^xsd:date; + "Tour"; + 14606; + "Actor"; + ; + ; + . + + a ; + "1879-04-18"^^xsd:date; + "1879-04-18"^^xsd:date; + "1879-04-18"^^xsd:date; + "1879-04-18"^^xsd:date; + "Tour"; + 14610; + "Actor"; + ; + ; + . + + a ; + "1879-04-26"^^xsd:date; + "1879-04-26"^^xsd:date; + "1879-04-21"^^xsd:date; + "1879-04-21"^^xsd:date; + "Tour"; + 14614; + "Actor"; + ; + ; + . + + a ; + "1879-05-13"^^xsd:date; + "1879-05-13"^^xsd:date; + "1879-05-12"^^xsd:date; + "1879-05-12"^^xsd:date; + "Tour"; + 14618; + "Actor"; + ; + ; + . + + a ; + "1879-05-15"^^xsd:date; + "1879-05-15"^^xsd:date; + "1879-05-15"^^xsd:date; + "1879-05-15"^^xsd:date; + "Tour"; + 14622; + "Actor"; + ; + ; + . + + a ; + "1883-10-26"^^xsd:date; + "1883-10-26"^^xsd:date; + "1883-10-26"^^xsd:date; + "1883-10-26"^^xsd:date; + "Tour"; + 14625; + "Actor"; + ; + ; + . + + a ; + "1883-10-27"^^xsd:date; + "1883-10-27"^^xsd:date; + "1883-10-27"^^xsd:date; + "1883-10-27"^^xsd:date; + "Tour"; + 14629; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1463; + "Director"; + "Singer"; + ; + . + + a ; + "1883-10-29"^^xsd:date; + "1883-10-29"^^xsd:date; + "1883-10-29"^^xsd:date; + "1883-10-29"^^xsd:date; + "Tour"; + 14630; + "Actor"; + ; + . + + a ; + "1883-10-30"^^xsd:date; + "1883-10-30"^^xsd:date; + "1883-10-30"^^xsd:date; + "1883-10-30"^^xsd:date; + "Tour"; + 14634; + "Actor"; + ; + . + + a ; + "1883-10-31"^^xsd:date; + "1883-10-31"^^xsd:date; + "1883-10-31"^^xsd:date; + "1883-10-31"^^xsd:date; + "Tour"; + 14638; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1464; + ; + . + + a ; + "1883-11-03"^^xsd:date; + "1883-11-03"^^xsd:date; + "1883-11-01"^^xsd:date; + "1883-11-01"^^xsd:date; + "Tour"; + 14642; + "Actor"; + ; + ; + . + + a ; + "1883-11-07"^^xsd:date; + "1883-11-07"^^xsd:date; + "1883-11-05"^^xsd:date; + "1883-11-05"^^xsd:date; + "Tour"; + 14646; + "Actor"; + ; + ; + . + + a ; + "1883-11-08"^^xsd:date; + "1883-11-08"^^xsd:date; + "1883-11-08"^^xsd:date; + "1883-11-08"^^xsd:date; + "Tour"; + 14650; + "Actor"; + ; + ; + . + + a ; + "1883-11-09"^^xsd:date; + "1883-11-09"^^xsd:date; + "1883-11-09"^^xsd:date; + "1883-11-09"^^xsd:date; + "Tour"; + 14654; + "Actor"; + ; + ; + . + + a ; + "1883-11-10"^^xsd:date; + "1883-11-10"^^xsd:date; + "1883-11-10"^^xsd:date; + "1883-11-10"^^xsd:date; + "Tour"; + 14658; + "Actor"; + ; + . + + a ; + "1883-11-14"^^xsd:date; + "1883-11-14"^^xsd:date; + "1883-11-12"^^xsd:date; + "1883-11-12"^^xsd:date; + "Tour"; + 14662; + "Actor"; + ; + ; + . + + a ; + "1883-11-17"^^xsd:date; + "1883-11-17"^^xsd:date; + "1883-11-15"^^xsd:date; + "1883-11-15"^^xsd:date; + "Tour"; + 14666; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1467; + ; + . + + a ; + "1883-11-24"^^xsd:date; + "1883-11-24"^^xsd:date; + "1883-11-19"^^xsd:date; + "1883-11-19"^^xsd:date; + "Tour"; + 14670; + "Actor"; + ; + ; + . + + a ; + "1883-12-01"^^xsd:date; + "1883-12-01"^^xsd:date; + "1883-11-26"^^xsd:date; + "1883-11-26"^^xsd:date; + "Tour"; + 14674; + "Actor"; + ; + ; + . + + a ; + "1883-12-08"^^xsd:date; + "1883-12-08"^^xsd:date; + "1883-12-03"^^xsd:date; + "1883-12-03"^^xsd:date; + "Tour"; + 14678; + "Actor"; + ; + ; + . + + a ; + "1883-12-10"^^xsd:date; + "1883-12-10"^^xsd:date; + "1883-12-10"^^xsd:date; + "1883-12-10"^^xsd:date; + "Tour"; + 14682; + "Actor"; + ; + ; + . + + a ; + "1883-12-11"^^xsd:date; + "1883-12-11"^^xsd:date; + "1883-12-11"^^xsd:date; + "1883-12-11"^^xsd:date; + "Tour"; + 14686; + "Actor"; + ; + ; + . + + a ; + "1883-12-12"^^xsd:date; + "1883-12-12"^^xsd:date; + "1883-12-12"^^xsd:date; + "1883-12-12"^^xsd:date; + "Tour"; + 14690; + "Actor"; + ; + . + + a ; + "1883-12-13"^^xsd:date; + "1883-12-13"^^xsd:date; + "1883-12-13"^^xsd:date; + "1883-12-13"^^xsd:date; + "Tour"; + 14694; + "Actor"; + ; + ; + . + + a ; + "1883-12-14"^^xsd:date; + "1883-12-14"^^xsd:date; + "1883-12-14"^^xsd:date; + "1883-12-14"^^xsd:date; + "Tour"; + 14698; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 147; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 1470; + ; + . + + a ; + "1883-12-15"^^xsd:date; + "1883-12-15"^^xsd:date; + "1883-12-15"^^xsd:date; + "1883-12-15"^^xsd:date; + "Tour"; + 14702; + "Actor"; + ; + ; + . + + a ; + "1883-12-23"^^xsd:date; + "1883-12-23"^^xsd:date; + "1883-12-17"^^xsd:date; + "1883-12-17"^^xsd:date; + "Tour"; + 14706; + "Actor"; + ; + ; + . + + a ; + "1883-12-26"^^xsd:date; + "1883-12-26"^^xsd:date; + "1883-12-24"^^xsd:date; + "1883-12-24"^^xsd:date; + "Tour"; + 14710; + "Actor"; + ; + ; + . + + a ; + "1884-01-12"^^xsd:date; + "1884-01-12"^^xsd:date; + "1883-12-31"^^xsd:date; + "1883-12-31"^^xsd:date; + "Tour"; + 14714; + "Actor"; + ; + ; + . + + a ; + "1884-01-15"^^xsd:date; + "1884-01-15"^^xsd:date; + "1884-01-14"^^xsd:date; + "1884-01-14"^^xsd:date; + "Tour"; + 14718; + "Actor"; + ; + ; + . + + a ; + "1884-01-16"^^xsd:date; + "1884-01-16"^^xsd:date; + "1884-01-16"^^xsd:date; + "1884-01-16"^^xsd:date; + "Tour"; + 14719; + "Actor"; + ; + ; + . + + a ; + "1884-01-17"^^xsd:date; + "1884-01-17"^^xsd:date; + "1884-01-16"^^xsd:date; + "1884-01-16"^^xsd:date; + "Tour"; + 14723; + "Actor"; + ; + ; + . + + a ; + "1884-01-21"^^xsd:date; + "1884-01-21"^^xsd:date; + "1884-01-21"^^xsd:date; + "1884-01-21"^^xsd:date; + "Tour"; + 14726; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1473; + ; + . + + a ; + "1884-01-22"^^xsd:date; + "1884-01-22"^^xsd:date; + "1884-01-22"^^xsd:date; + "1884-01-22"^^xsd:date; + "Tour"; + 14730; + "Actor"; + ; + ; + . + + a ; + "1884-01-23"^^xsd:date; + "1884-01-23"^^xsd:date; + "1884-01-23"^^xsd:date; + "1884-01-23"^^xsd:date; + "Tour"; + 14734; + "Actor"; + ; + ; + . + + a ; + "1884-01-24"^^xsd:date; + "1884-01-24"^^xsd:date; + "1884-01-24"^^xsd:date; + "1884-01-24"^^xsd:date; + "Tour"; + 14738; + "Actor"; + ; + ; + . + + a ; + "1884-01-26"^^xsd:date; + "1884-01-26"^^xsd:date; + "1884-01-25"^^xsd:date; + "1884-01-25"^^xsd:date; + "Tour"; + 14742; + "Actor"; + ; + ; + . + + a ; + "1884-01-29"^^xsd:date; + "1884-01-29"^^xsd:date; + "1884-01-28"^^xsd:date; + "1884-01-28"^^xsd:date; + "Tour"; + 14746; + "Actor"; + ; + ; + . + + a ; + "1884-01-30"^^xsd:date; + "1884-01-30"^^xsd:date; + "1884-01-30"^^xsd:date; + "1884-01-30"^^xsd:date; + "Tour"; + 14750; + "Actor"; + ; + ; + . + + a ; + "1884-02-02"^^xsd:date; + "1884-02-02"^^xsd:date; + "1884-02-01"^^xsd:date; + "1884-02-01"^^xsd:date; + "Tour"; + 14754; + "Actor"; + ; + ; + . + + a ; + "1884-02-09"^^xsd:date; + "1884-02-09"^^xsd:date; + "1884-02-04"^^xsd:date; + "1884-02-04"^^xsd:date; + "Tour"; + 14758; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1476; + ; + . + + a ; + "1884-03-01"^^xsd:date; + "1884-03-01"^^xsd:date; + "1884-02-11"^^xsd:date; + "1884-02-11"^^xsd:date; + "Tour"; + 14762; + "Actor"; + ; + ; + . + + a ; + "1884-03-06"^^xsd:date; + "1884-03-06"^^xsd:date; + "1884-03-06"^^xsd:date; + "1884-03-06"^^xsd:date; + "Tour"; + 14766; + "Actor"; + ; + ; + . + + a ; + "1884-03-15"^^xsd:date; + "1884-03-15"^^xsd:date; + "1884-03-10"^^xsd:date; + "1884-03-10"^^xsd:date; + "Tour"; + 14770; + "Actor"; + ; + ; + . + + a ; + "1884-03-17"^^xsd:date; + "1884-03-17"^^xsd:date; + "1884-03-17"^^xsd:date; + "1884-03-17"^^xsd:date; + "Tour"; + 14774; + "Actor"; + ; + ; + . + + a ; + "1884-03-18"^^xsd:date; + "1884-03-18"^^xsd:date; + "1884-03-18"^^xsd:date; + "1884-03-18"^^xsd:date; + "Tour"; + 14778; + "Actor"; + ; + ; + . + + a ; + "1884-03-19"^^xsd:date; + "1884-03-19"^^xsd:date; + "1884-03-19"^^xsd:date; + "1884-03-19"^^xsd:date; + "Tour"; + 14779; + "Actor"; + ; + ; + . + + a ; + "1884-03-22"^^xsd:date; + "1884-03-22"^^xsd:date; + "1884-03-22"^^xsd:date; + "1884-03-22"^^xsd:date; + "Tour"; + 14783; + "Actor"; + ; + ; + . + + a ; + "1884-03-29"^^xsd:date; + "1884-03-29"^^xsd:date; + "1884-03-24"^^xsd:date; + "1884-03-24"^^xsd:date; + "Tour"; + 14786; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1479; + ; + . + + a ; + "1884-04-02"^^xsd:date; + "1884-04-02"^^xsd:date; + "1884-04-01"^^xsd:date; + "1884-04-01"^^xsd:date; + "Tour"; + 14790; + "Actor"; + ; + ; + . + + a ; + "1884-04-05"^^xsd:date; + "1884-04-05"^^xsd:date; + "1884-04-03"^^xsd:date; + "1884-04-03"^^xsd:date; + "Tour"; + 14794; + "Actor"; + ; + ; + . + + a ; + "1884-04-19"^^xsd:date; + "1884-04-19"^^xsd:date; + "1884-04-14"^^xsd:date; + "1884-04-14"^^xsd:date; + "Tour"; + 14798; + "Actor"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 148; + "Singer"; + ; + . + + a ; + "1884-04-26"^^xsd:date; + "1884-04-26"^^xsd:date; + "1884-04-21"^^xsd:date; + "1884-04-21"^^xsd:date; + "Tour"; + 14802; + "Actor"; + ; + ; + . + + a ; + "1884-04-30"^^xsd:date; + "1884-04-30"^^xsd:date; + "1884-04-28"^^xsd:date; + "1884-04-28"^^xsd:date; + "Tour"; + 14806; + "Actor"; + ; + ; + . + + a ; + "1884-05-10"^^xsd:date; + "1884-05-10"^^xsd:date; + "1884-05-05"^^xsd:date; + "1884-05-05"^^xsd:date; + "Tour"; + 14810; + "Actor"; + ; + ; + . + + a ; + "February 1885"; + "1885-02-28"^^xsd:date; + "1885-02-01"^^xsd:date; + "October 1884"; + "1884-10-31"^^xsd:date; + "1884-10-01"^^xsd:date; + "Tour"; + 14814; + "Actor"; + ; + . + + a ; + "Spring 1885"; + "1885-06-20"^^xsd:date; + "1885-03-21"^^xsd:date; + "Spring 1885"; + "1885-06-20"^^xsd:date; + "1885-03-21"^^xsd:date; + "Tour"; + 14818; + "Actor"; + ; + . + + a ; + "Tour"; + 1482; + ; + . + + a ; + "Spring 1885"; + "1885-06-20"^^xsd:date; + "1885-03-21"^^xsd:date; + "Spring 1885"; + "1885-06-20"^^xsd:date; + "1885-03-21"^^xsd:date; + "Tour"; + 14822; + "Actor"; + ; + . + + a ; + "1885-10-05"^^xsd:date; + "1885-10-05"^^xsd:date; + "1885-10-05"^^xsd:date; + "1885-10-05"^^xsd:date; + "Tour"; + 14830; + "Actor"; + ; + ; + . + + a ; + "1885-10-06"^^xsd:date; + "1885-10-06"^^xsd:date; + "1885-10-06"^^xsd:date; + "1885-10-06"^^xsd:date; + "Tour"; + 14834; + "Actor"; + ; + ; + . + + a ; + "1885-10-07"^^xsd:date; + "1885-10-07"^^xsd:date; + "1885-10-07"^^xsd:date; + "1885-10-07"^^xsd:date; + "Tour"; + 14838; + "Actor"; + ; + ; + . + + a ; + "1889-07-20"^^xsd:date; + "1889-07-20"^^xsd:date; + "1889-07-19"^^xsd:date; + "1889-07-19"^^xsd:date; + "Tour"; + 14842; + "Actor"; + ; + ; + . + + a ; + "1889-10-12"^^xsd:date; + "1889-10-12"^^xsd:date; + "1889-10-07"^^xsd:date; + "1889-10-07"^^xsd:date; + "Tour"; + 14846; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 1485; + "Singer"; + ; + ; + . + + a ; + "1884-05-12"^^xsd:date; + "1884-05-12"^^xsd:date; + "1884-05-12"^^xsd:date; + "1884-05-12"^^xsd:date; + "Tour"; + 14850; + "Actor"; + ; + ; + . + + a ; + "1884-05-13"^^xsd:date; + "1884-05-13"^^xsd:date; + "1884-05-13"^^xsd:date; + "1884-05-13"^^xsd:date; + "Tour"; + 14854; + "Actor"; + ; + ; + . + + a ; + "1884-05-14"^^xsd:date; + "1884-05-14"^^xsd:date; + "1884-05-14"^^xsd:date; + "1884-05-14"^^xsd:date; + "Tour"; + 14858; + "Actor"; + ; + ; + . + + a ; + "1884-05-17"^^xsd:date; + "1884-05-17"^^xsd:date; + "1884-05-15"^^xsd:date; + "1884-05-15"^^xsd:date; + "Tour"; + 14862; + "Actor"; + ; + ; + . + + a ; + "1884-05-19"^^xsd:date; + "1884-05-19"^^xsd:date; + "1884-05-19"^^xsd:date; + "1884-05-19"^^xsd:date; + "Tour"; + 14866; + "Actor"; + ; + ; + . + + a ; + "1884-05-20"^^xsd:date; + "1884-05-20"^^xsd:date; + "1884-05-20"^^xsd:date; + "1884-05-20"^^xsd:date; + "Tour"; + 14870; + "Actor"; + ; + ; + . + + a ; + "1884-05-21"^^xsd:date; + "1884-05-21"^^xsd:date; + "1884-05-21"^^xsd:date; + "1884-05-21"^^xsd:date; + "Tour"; + 14874; + "Actor"; + ; + ; + . + + a ; + "1884-05-22"^^xsd:date; + "1884-05-22"^^xsd:date; + "1884-05-22"^^xsd:date; + "1884-05-22"^^xsd:date; + "Tour"; + 14878; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 1488; + "Singer"; + ; + ; + . + + a ; + "1884-05-24"^^xsd:date; + "1884-05-24"^^xsd:date; + "1884-05-23"^^xsd:date; + "1884-05-23"^^xsd:date; + "Tour"; + 14882; + "Actor"; + ; + ; + . + + a ; + "1884-05-27"^^xsd:date; + "1884-05-27"^^xsd:date; + "1884-05-27"^^xsd:date; + "1884-05-27"^^xsd:date; + "Tour"; + 14886; + "Actor"; + ; + ; + . + + a ; + "1884-05-29"^^xsd:date; + "1884-05-29"^^xsd:date; + "1884-05-29"^^xsd:date; + "1884-05-29"^^xsd:date; + "Tour"; + 14890; + "Actor"; + ; + ; + . + + a ; + "1885-10-10"^^xsd:date; + "1885-10-10"^^xsd:date; + "1885-10-08"^^xsd:date; + "1885-10-08"^^xsd:date; + "Tour"; + 14894; + "Actor"; + ; + ; + . + + a ; + "1885-10-14"^^xsd:date; + "1885-10-14"^^xsd:date; + "1885-10-12"^^xsd:date; + "1885-10-12"^^xsd:date; + "Tour"; + 14898; + "Actor"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 149; + "Singer"; + ; + . + + a ; + "1885-10-31"^^xsd:date; + "1885-10-31"^^xsd:date; + "1885-10-26"^^xsd:date; + "1885-10-26"^^xsd:date; + "Tour"; + 14902; + "Actor"; + ; + ; + . + + a ; + "1885-11-04"^^xsd:date; + "1885-11-04"^^xsd:date; + "1885-11-02"^^xsd:date; + "1885-11-02"^^xsd:date; + "Tour"; + 14906; + "Actor"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 1491; + "Singer"; + ; + ; + . + + a ; + "1885-11-08"^^xsd:date; + "1885-11-08"^^xsd:date; + "1885-11-08"^^xsd:date; + "1885-11-08"^^xsd:date; + "Tour"; + 14910; + "Actor"; + ; + ; + . + + a ; + "1885-11-07"^^xsd:date; + "1885-11-07"^^xsd:date; + "1885-11-06"^^xsd:date; + "1885-11-06"^^xsd:date; + "Tour"; + 14914; + "Actor"; + ; + ; + . + + a ; + "1885-11-11"^^xsd:date; + "1885-11-11"^^xsd:date; + "1885-11-09"^^xsd:date; + "1885-11-09"^^xsd:date; + "Tour"; + 14918; + "Actor"; + ; + ; + . + + a ; + "1885-11-14"^^xsd:date; + "1885-11-14"^^xsd:date; + "1885-11-12"^^xsd:date; + "1885-11-12"^^xsd:date; + "Tour"; + 14922; + "Actor"; + ; + ; + . + + a ; + "1885-11-18"^^xsd:date; + "1885-11-18"^^xsd:date; + "1885-11-16"^^xsd:date; + "1885-11-16"^^xsd:date; + "Tour"; + 14926; + "Actor"; + ; + ; + . + + a ; + "1885-11-19"^^xsd:date; + "1885-11-19"^^xsd:date; + "1885-11-19"^^xsd:date; + "1885-11-19"^^xsd:date; + "Tour"; + 14930; + "Actor"; + ; + ; + . + + a ; + "1885-11-20"^^xsd:date; + "1885-11-20"^^xsd:date; + "1885-11-20"^^xsd:date; + "1885-11-20"^^xsd:date; + "Tour"; + 14934; + "Actor"; + ; + ; + . + + a ; + "1885-11-21"^^xsd:date; + "1885-11-21"^^xsd:date; + "1885-11-21"^^xsd:date; + "1885-11-21"^^xsd:date; + "Tour"; + 14938; + "Actor"; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 1494; + "Singer"; + "her husband was director there"; + ; + ; + . + + a ; + "1885-11-28"^^xsd:date; + "1885-11-28"^^xsd:date; + "1885-11-23"^^xsd:date; + "1885-11-23"^^xsd:date; + "Tour"; + 14942; + "Actor"; + ; + ; + . + + a ; + "1885-12-05"^^xsd:date; + "1885-12-05"^^xsd:date; + "1885-11-30"^^xsd:date; + "1885-11-30"^^xsd:date; + "Tour"; + 14946; + "Actor"; + ; + ; + . + + a ; + "1885-12-09"^^xsd:date; + "1885-12-09"^^xsd:date; + "1885-12-07"^^xsd:date; + "1885-12-07"^^xsd:date; + "Tour"; + 14950; + "Actor"; + ; + ; + . + + a ; + "1885-12-12"^^xsd:date; + "1885-12-12"^^xsd:date; + "1885-12-10"^^xsd:date; + "1885-12-10"^^xsd:date; + "Tour"; + 14954; + "Actor"; + ; + ; + . + + a ; + "1885-12-19"^^xsd:date; + "1885-12-19"^^xsd:date; + "1885-12-14"^^xsd:date; + "1885-12-14"^^xsd:date; + "Tour"; + 14958; + "Actor"; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 1496; + "Singer"; + ; + . + + a ; + "1885-12-25"^^xsd:date; + "1885-12-25"^^xsd:date; + "1885-12-25"^^xsd:date; + "1885-12-25"^^xsd:date; + "Tour"; + 14962; + "Actor"; + ; + ; + . + + a ; + "1886-01-30"^^xsd:date; + "1886-01-30"^^xsd:date; + "1886-01-04"^^xsd:date; + "1886-01-04"^^xsd:date; + "Tour"; + 14966; + "Actor"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Permanent"; + 1497; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1886-02-13"^^xsd:date; + "1886-02-13"^^xsd:date; + "1886-02-01"^^xsd:date; + "1886-02-01"^^xsd:date; + "Tour"; + 14970; + "Actor"; + ; + ; + . + + a ; + "1886-02-20"^^xsd:date; + "1886-02-20"^^xsd:date; + "1886-02-15"^^xsd:date; + "1886-02-15"^^xsd:date; + "Tour"; + 14974; + "Actor"; + ; + ; + . + + a ; + "1886-02-27"^^xsd:date; + "1886-02-27"^^xsd:date; + "1886-02-22"^^xsd:date; + "1886-02-22"^^xsd:date; + "Tour"; + 14978; + "Actor"; + ; + ; + . + + a ; + "1886-03-13"^^xsd:date; + "1886-03-13"^^xsd:date; + "1886-03-01"^^xsd:date; + "1886-03-01"^^xsd:date; + "Tour"; + 14982; + "Actor"; + ; + ; + . + + a ; + "1886-03-17"^^xsd:date; + "1886-03-17"^^xsd:date; + "1886-03-15"^^xsd:date; + "1886-03-15"^^xsd:date; + "Tour"; + 14986; + "Actor"; + ; + ; + . + + a ; + "1886-03-18"^^xsd:date; + "1886-03-18"^^xsd:date; + "1886-03-18"^^xsd:date; + "1886-03-18"^^xsd:date; + "Tour"; + 14990; + "Actor"; + ; + ; + . + + a ; + "1886-03-20"^^xsd:date; + "1886-03-20"^^xsd:date; + "1886-03-20"^^xsd:date; + "1886-03-20"^^xsd:date; + "Tour"; + 14994; + "Actor"; + ; + ; + . + + a ; + "1886-03-22"^^xsd:date; + "1886-03-22"^^xsd:date; + "1886-03-22"^^xsd:date; + "1886-03-22"^^xsd:date; + "Tour"; + 14998; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 15; + "Singer"; + ""; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1878-10-15"^^xsd:date; + "1878-10-15"^^xsd:date; + "Permanent"; + 150; + "Singer"; + "debut in Il Trovatore under the name Tini Rössler"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + 1500; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1886-03-23"^^xsd:date; + "1886-03-23"^^xsd:date; + "1886-03-23"^^xsd:date; + "1886-03-23"^^xsd:date; + "Tour"; + 15002; + "Actor"; + ; + ; + . + + a ; + "1886-03-24"^^xsd:date; + "1886-03-24"^^xsd:date; + "1886-03-24"^^xsd:date; + "1886-03-24"^^xsd:date; + "Tour"; + 15006; + "Actor"; + ; + ; + . + + a ; + "1886-03-27"^^xsd:date; + "1886-03-27"^^xsd:date; + "1886-03-25"^^xsd:date; + "1886-03-25"^^xsd:date; + "Tour"; + 15010; + "Actor"; + ; + ; + . + + a ; + "1886-03-29"^^xsd:date; + "1886-03-29"^^xsd:date; + "1886-03-29"^^xsd:date; + "1886-03-29"^^xsd:date; + "Tour"; + 15014; + "Actor"; + ; + ; + . + + a ; + "1886-03-30"^^xsd:date; + "1886-03-30"^^xsd:date; + "1886-03-30"^^xsd:date; + "1886-03-30"^^xsd:date; + "Tour"; + 15022; + "Actor"; + ; + ; + . + + a ; + "1886-03-31"^^xsd:date; + "1886-03-31"^^xsd:date; + "1886-03-31"^^xsd:date; + "1886-03-31"^^xsd:date; + "Tour"; + 15026; + "Actor"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Permanent"; + 1503; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1886-04-03"^^xsd:date; + "1886-04-03"^^xsd:date; + "1886-04-01"^^xsd:date; + "1886-04-01"^^xsd:date; + "Tour"; + 15030; + "Actor"; + ; + ; + . + + a ; + "1886-04-07"^^xsd:date; + "1886-04-07"^^xsd:date; + "1886-04-05"^^xsd:date; + "1886-04-05"^^xsd:date; + "Tour"; + 15034; + "Actor"; + ; + ; + . + + a ; + "1886-04-10"^^xsd:date; + "1886-04-10"^^xsd:date; + "1886-04-08"^^xsd:date; + "1886-04-08"^^xsd:date; + "Tour"; + 15038; + "Actor"; + ; + ; + . + + a ; + "1886-04-12"^^xsd:date; + "1886-04-12"^^xsd:date; + "1886-04-12"^^xsd:date; + "1886-04-12"^^xsd:date; + "Tour"; + 15042; + "Actor"; + ; + ; + . + + a ; + "1886-04-13"^^xsd:date; + "1886-04-13"^^xsd:date; + "1886-04-13"^^xsd:date; + "1886-04-13"^^xsd:date; + "Tour"; + 15046; + "Actor"; + ; + ; + . + + a ; + "1886-04-14"^^xsd:date; + "1886-04-14"^^xsd:date; + "1886-04-14"^^xsd:date; + "1886-04-14"^^xsd:date; + "Tour"; + 15050; + "Actor"; + ; + ; + . + + a ; + "1886-04-24"^^xsd:date; + "1886-04-24"^^xsd:date; + "1886-04-19"^^xsd:date; + "1886-04-19"^^xsd:date; + "Tour"; + 15051; + "Actor"; + ; + ; + . + + a ; + "1886-04-26"^^xsd:date; + "1886-04-26"^^xsd:date; + "1886-04-26"^^xsd:date; + "1886-04-26"^^xsd:date; + "Tour"; + 15054; + "Actor"; + ; + ; + . + + a ; + "1886-04-27"^^xsd:date; + "1886-04-27"^^xsd:date; + "1886-04-27"^^xsd:date; + "1886-04-27"^^xsd:date; + "Tour"; + 15058; + "Actor"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Permanent"; + 1506; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1886-04-28"^^xsd:date; + "1886-04-28"^^xsd:date; + "1886-04-28"^^xsd:date; + "1886-04-28"^^xsd:date; + "Tour"; + 15062; + "Actor"; + ; + ; + . + + a ; + "1886-04-29"^^xsd:date; + "1886-04-29"^^xsd:date; + "1886-04-29"^^xsd:date; + "1886-04-29"^^xsd:date; + "Tour"; + 15066; + "Actor"; + ; + ; + . + + a ; + "1886-05-01"^^xsd:date; + "1886-05-01"^^xsd:date; + "1886-04-30"^^xsd:date; + "1886-04-30"^^xsd:date; + "Tour"; + 15070; + "Actor"; + ; + ; + . + + a ; + "1886-05-04"^^xsd:date; + "1886-05-04"^^xsd:date; + "1886-05-04"^^xsd:date; + "1886-05-04"^^xsd:date; + "Tour"; + 15074; + "Actor"; + ; + ; + . + + a ; + "1886-05-05"^^xsd:date; + "1886-05-05"^^xsd:date; + "1886-05-05"^^xsd:date; + "1886-05-05"^^xsd:date; + "Tour"; + 15078; + "Actor"; + ; + ; + . + + a ; + "1886-05-06"^^xsd:date; + "1886-05-06"^^xsd:date; + "1886-05-06"^^xsd:date; + "1886-05-06"^^xsd:date; + "Tour"; + 15082; + "Actor"; + ; + ; + . + + a ; + "1886-05-07"^^xsd:date; + "1886-05-07"^^xsd:date; + "1886-05-07"^^xsd:date; + "1886-05-07"^^xsd:date; + "Tour"; + 15086; + "Actor"; + ; + ; + . + + a ; + "-"; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Permanent"; + 1509; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1886-07-31"^^xsd:date; + "1886-07-31"^^xsd:date; + "1886-07-12"^^xsd:date; + "1886-07-12"^^xsd:date; + "Tour"; + 15090; + "Actor"; + ; + ; + . + + a ; + "1886-08-07"^^xsd:date; + "1886-08-07"^^xsd:date; + "1886-08-02"^^xsd:date; + "1886-08-02"^^xsd:date; + "Tour"; + 15094; + "Actor"; + ; + ; + . + + a ; + "1889-07-22"^^xsd:date; + "1889-07-22"^^xsd:date; + "1889-07-22"^^xsd:date; + "1889-07-22"^^xsd:date; + "Tour"; + 15098; + "Actor"; + ; + . + + a ; + "1889-12-07"^^xsd:date; + "1889-12-07"^^xsd:date; + "1889-10-14"^^xsd:date; + "1889-10-14"^^xsd:date; + "Tour"; + 15102; + "Actor"; + ; + ; + . + + a ; + "1886-04-17"^^xsd:date; + "1886-04-17"^^xsd:date; + "1886-04-15"^^xsd:date; + "1886-04-15"^^xsd:date; + "Tour"; + 15106; + "Actor"; + ; + ; + . + + a ; + "1886-08-21"^^xsd:date; + "1886-08-21"^^xsd:date; + "1886-08-16"^^xsd:date; + "1886-08-16"^^xsd:date; + "Tour"; + 15110; + "Actor"; + ; + ; + . + + a ; + "1886-08-25"^^xsd:date; + "1886-08-25"^^xsd:date; + "1886-08-23"^^xsd:date; + "1886-08-23"^^xsd:date; + "Tour"; + 15114; + "Actor"; + ; + ; + . + + a ; + "1886-08-26"^^xsd:date; + "1886-08-26"^^xsd:date; + "1886-08-26"^^xsd:date; + "1886-08-26"^^xsd:date; + "Tour"; + 15118; + "Actor"; + ; + ; + . + + a ; + "1886-08-28"^^xsd:date; + "1886-08-28"^^xsd:date; + "1886-08-28"^^xsd:date; + "1886-08-28"^^xsd:date; + "Tour"; + 15122; + "Actor"; + ; + ; + . + + a ; + "1886-08-31"^^xsd:date; + "1886-08-31"^^xsd:date; + "1886-08-30"^^xsd:date; + "1886-08-30"^^xsd:date; + "Tour"; + 15126; + "Actor"; + ; + ; + . + + a ; + "1886-12-18"^^xsd:date; + "1886-12-18"^^xsd:date; + "1886-10-25"^^xsd:date; + "1886-10-25"^^xsd:date; + "Tour"; + 15130; + "Actor"; + ; + ; + . + + a ; + "1886-12-25"^^xsd:date; + "1886-12-25"^^xsd:date; + "1886-12-25"^^xsd:date; + "1886-12-25"^^xsd:date; + "Tour"; + 15134; + "Actor"; + ; + ; + . + + a ; + "1886-12-27"^^xsd:date; + "1886-12-27"^^xsd:date; + "1886-12-27"^^xsd:date; + "1886-12-27"^^xsd:date; + "Tour"; + 15138; + "Actor"; + ; + ; + . + + a ; + "1887-01-25"^^xsd:date; + "1887-01-25"^^xsd:date; + "1887-01-25"^^xsd:date; + "1887-01-25"^^xsd:date; + "Tour"; + 15142; + "Actor"; + ; + ; + . + + a ; + "1887-01-26"^^xsd:date; + "1887-01-26"^^xsd:date; + "1887-01-26"^^xsd:date; + "1887-01-26"^^xsd:date; + "Tour"; + 15146; + "Actor"; + ; + ; + . + + a ; + "1887-01-27"^^xsd:date; + "1887-01-27"^^xsd:date; + "1887-01-27"^^xsd:date; + "1887-01-27"^^xsd:date; + "Tour"; + 15150; + "Actor"; + ; + ; + . + + a ; + "1887-01-28"^^xsd:date; + "1887-01-28"^^xsd:date; + "1887-01-28"^^xsd:date; + "1887-01-28"^^xsd:date; + "Tour"; + 15154; + "Actor"; + ; + ; + . + + a ; + "1887-01-29"^^xsd:date; + "1887-01-29"^^xsd:date; + "1887-01-29"^^xsd:date; + "1887-01-29"^^xsd:date; + "Tour"; + 15158; + "Actor"; + ; + ; + . + + a ; + "1887-02-12"^^xsd:date; + "1887-02-12"^^xsd:date; + "1887-01-31"^^xsd:date; + "1887-01-31"^^xsd:date; + "Tour"; + 15162; + "Actor"; + ; + ; + . + + a ; + "1887-02-19"^^xsd:date; + "1887-02-19"^^xsd:date; + "1887-02-14"^^xsd:date; + "1887-02-14"^^xsd:date; + "Tour"; + 15166; + "Actor"; + ; + ; + . + + a ; + "1887-02-26"^^xsd:date; + "1887-02-26"^^xsd:date; + "1887-02-21"^^xsd:date; + "1887-02-21"^^xsd:date; + "Tour"; + 15170; + "Actor"; + ; + ; + . + + a ; + "1887-04-19"^^xsd:date; + "1887-04-19"^^xsd:date; + "1887-04-19"^^xsd:date; + "1887-04-19"^^xsd:date; + "Tour"; + 15174; + "Actor"; + ; + ; + . + + a ; + "1887-04-23"^^xsd:date; + "1887-04-23"^^xsd:date; + "1887-04-21"^^xsd:date; + "1887-04-21"^^xsd:date; + "Tour"; + 15178; + "Actor"; + ; + ; + . + + a ; + "1887-05-28"^^xsd:date; + "1887-05-28"^^xsd:date; + "1887-05-02"^^xsd:date; + "1887-05-02"^^xsd:date; + "Tour"; + 15182; + "Actor"; + ; + ; + . + + a ; + "1887-06-04"^^xsd:date; + "1887-06-04"^^xsd:date; + "1887-06-02"^^xsd:date; + "1887-06-02"^^xsd:date; + "Tour"; + 15186; + "Actor"; + ; + ; + . + + a ; + "1887-06-17"^^xsd:date; + "1887-06-17"^^xsd:date; + "1887-06-17"^^xsd:date; + "1887-06-17"^^xsd:date; + "Tour"; + 15190; + "Actor"; + ; + ; + . + + a ; + "1887-09-30"^^xsd:date; + "1887-09-30"^^xsd:date; + "1887-09-30"^^xsd:date; + "1887-09-30"^^xsd:date; + "Tour"; + 15194; + "Actor"; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "between 1882 and 1887"; + "1887-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Permanent"; + 152; + "Singer"; + "Carmen and Le Prophete"; + ; + ; + . + + a ; + "1887-10-12"^^xsd:date; + "1887-10-12"^^xsd:date; + "1887-10-11"^^xsd:date; + "1887-10-11"^^xsd:date; + "Tour"; + 15202; + "Actor"; + ; + ; + . + + a ; + "1887-10-14"^^xsd:date; + "1887-10-14"^^xsd:date; + "1887-10-14"^^xsd:date; + "1887-10-14"^^xsd:date; + "Tour"; + 15206; + "Actor"; + ; + ; + . + + a ; + "1887-10-17"^^xsd:date; + "1887-10-17"^^xsd:date; + "1887-10-17"^^xsd:date; + "1887-10-17"^^xsd:date; + "Tour"; + 15210; + "Actor"; + ; + ; + . + + a ; + "1887-10-19"^^xsd:date; + "1887-10-19"^^xsd:date; + "1887-10-19"^^xsd:date; + "1887-10-19"^^xsd:date; + "Tour"; + 15214; + "Actor"; + ; + ; + . + + a ; + "1887-10-26"^^xsd:date; + "1887-10-26"^^xsd:date; + "1887-10-24"^^xsd:date; + "1887-10-24"^^xsd:date; + "Tour"; + 15218; + "Actor"; + ; + ; + . + + a ; + "1887-11-12"^^xsd:date; + "1887-11-12"^^xsd:date; + "1887-10-31"^^xsd:date; + "1887-10-31"^^xsd:date; + "Tour"; + 15222; + "Actor"; + ; + ; + . + + a ; + "1887-11-21"^^xsd:date; + "1887-11-21"^^xsd:date; + "1887-11-21"^^xsd:date; + "1887-11-21"^^xsd:date; + "Tour"; + 15226; + "Actor"; + ; + ; + . + + a ; + "1887-11-23"^^xsd:date; + "1887-11-23"^^xsd:date; + "1887-11-23"^^xsd:date; + "1887-11-23"^^xsd:date; + "Tour"; + 15230; + "Actor"; + ; + ; + . + + a ; + "1887-11-25"^^xsd:date; + "1887-11-25"^^xsd:date; + "1887-11-25"^^xsd:date; + "1887-11-25"^^xsd:date; + "Tour"; + 15234; + "Actor"; + ; + ; + . + + a ; + "1887-11-29"^^xsd:date; + "1887-11-29"^^xsd:date; + "1887-11-29"^^xsd:date; + "1887-11-29"^^xsd:date; + "Tour"; + 15238; + "Actor"; + ; + ; + . + + a ; + "1887-12-03"^^xsd:date; + "1887-12-03"^^xsd:date; + "1887-12-01"^^xsd:date; + "1887-12-01"^^xsd:date; + "Tour"; + 15242; + "Actor"; + ; + ; + . + + a ; + "1887-12-13"^^xsd:date; + "1887-12-13"^^xsd:date; + "1887-12-13"^^xsd:date; + "1887-12-13"^^xsd:date; + "Tour"; + 15246; + "Actor"; + ; + ; + . + + a ; + "1887-12-14"^^xsd:date; + "1887-12-14"^^xsd:date; + "1887-12-14"^^xsd:date; + "1887-12-14"^^xsd:date; + "Tour"; + 15250; + "Actor"; + ; + ; + . + + a ; + "1887-12-29"^^xsd:date; + "1887-12-29"^^xsd:date; + "1887-12-26"^^xsd:date; + "1887-12-26"^^xsd:date; + "Tour"; + 15254; + "Actor"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-12-31"^^xsd:date; + "1887-12-31"^^xsd:date; + "Tour"; + 15258; + "Actor"; + ; + ; + . + + a ; + "1888-01-03"^^xsd:date; + "1888-01-03"^^xsd:date; + "1888-01-03"^^xsd:date; + "1888-01-03"^^xsd:date; + "Tour"; + 15262; + "Actor"; + ; + ; + . + + a ; + "1888-01-07"^^xsd:date; + "1888-01-07"^^xsd:date; + "1888-01-05"^^xsd:date; + "1888-01-05"^^xsd:date; + "Tour"; + 15263; + "Actor"; + ; + ; + . + + a ; + "1888-01-09"^^xsd:date; + "1888-01-09"^^xsd:date; + "1888-01-09"^^xsd:date; + "1888-01-09"^^xsd:date; + "Tour"; + 15266; + "Actor"; + ; + ; + . + + a ; + "1888-01-11"^^xsd:date; + "1888-01-11"^^xsd:date; + "1888-01-11"^^xsd:date; + "1888-01-11"^^xsd:date; + "Tour"; + 15270; + "Actor"; + ; + ; + . + + a ; + "1888-01-16"^^xsd:date; + "1888-01-16"^^xsd:date; + "1888-01-16"^^xsd:date; + "1888-01-16"^^xsd:date; + "Tour"; + 15274; + "Actor"; + ; + ; + . + + a ; + "1888-01-21"^^xsd:date; + "1888-01-21"^^xsd:date; + "1888-01-19"^^xsd:date; + "1888-01-19"^^xsd:date; + "Tour"; + 15278; + "Actor"; + ; + ; + . + + a ; + "1888-01-27"^^xsd:date; + "1888-01-27"^^xsd:date; + "1888-01-26"^^xsd:date; + "1888-01-26"^^xsd:date; + "Tour"; + 15282; + "Actor"; + ; + ; + . + + a ; + "1888-02-13"^^xsd:date; + "1888-02-13"^^xsd:date; + "1888-02-13"^^xsd:date; + "1888-02-13"^^xsd:date; + "Tour"; + 15286; + "Actor"; + ; + ; + . + + a ; + "1888-02-23"^^xsd:date; + "1888-02-23"^^xsd:date; + "1888-02-23"^^xsd:date; + "1888-02-23"^^xsd:date; + "Tour"; + 15290; + "Actor"; + ; + ; + . + + a ; + "1888-02-27"^^xsd:date; + "1888-02-27"^^xsd:date; + "1888-02-27"^^xsd:date; + "1888-02-27"^^xsd:date; + "Tour"; + 15294; + "Actor"; + ; + ; + . + + a ; + "1888-02-28"^^xsd:date; + "1888-02-28"^^xsd:date; + "1888-02-28"^^xsd:date; + "1888-02-28"^^xsd:date; + "Tour"; + 15298; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Other"; + 153; + "Singer"; + ""; + ; + ; + . + + a ; + "1888-03-03"^^xsd:date; + "1888-03-03"^^xsd:date; + "1888-03-02"^^xsd:date; + "1888-03-02"^^xsd:date; + "Tour"; + 15302; + "Actor"; + ; + ; + . + + a ; + "1888-03-07"^^xsd:date; + "1888-03-07"^^xsd:date; + "1888-03-07"^^xsd:date; + "1888-03-07"^^xsd:date; + "Tour"; + 15306; + "Actor"; + ; + ; + . + + a ; + "1888-03-09"^^xsd:date; + "1888-03-09"^^xsd:date; + "1888-03-09"^^xsd:date; + "1888-03-09"^^xsd:date; + "Tour"; + 15310; + "Actor"; + ; + ; + . + + a ; + "1888-03-13"^^xsd:date; + "1888-03-13"^^xsd:date; + "1888-03-13"^^xsd:date; + "1888-03-13"^^xsd:date; + "Tour"; + 15314; + "Actor"; + ; + ; + . + + a ; + "1888-03-15"^^xsd:date; + "1888-03-15"^^xsd:date; + "1888-03-15"^^xsd:date; + "1888-03-15"^^xsd:date; + "Tour"; + 15318; + "Actor"; + ; + ; + . + + a ; + "1888-04-07"^^xsd:date; + "1888-04-07"^^xsd:date; + "1888-03-26"^^xsd:date; + "1888-03-26"^^xsd:date; + "Tour"; + 15322; + "Actor"; + ; + ; + . + + a ; + "1888-04-21"^^xsd:date; + "1888-04-21"^^xsd:date; + "1888-04-09"^^xsd:date; + "1888-04-09"^^xsd:date; + "Tour"; + 15326; + "Actor"; + ; + ; + . + + a ; + "1888-03-17"^^xsd:date; + "1888-03-17"^^xsd:date; + "1888-03-16"^^xsd:date; + "1888-03-16"^^xsd:date; + "Tour"; + 15330; + "Actor"; + ; + ; + . + + a ; + "1889-06-13"^^xsd:date; + "1889-06-13"^^xsd:date; + "1889-06-12"^^xsd:date; + "1889-06-12"^^xsd:date; + "Tour"; + 15334; + "Actor"; + ; + ; + . + + a ; + "1889-06-18"^^xsd:date; + "1889-06-18"^^xsd:date; + "1889-06-17"^^xsd:date; + "1889-06-17"^^xsd:date; + "Tour"; + 15338; + "Actor"; + ; + ; + . + + a ; + "1889-06-28"^^xsd:date; + "1889-06-28"^^xsd:date; + "1889-06-24"^^xsd:date; + "1889-06-24"^^xsd:date; + "Tour"; + 15342; + "Actor"; + ; + ; + . + + a ; + "1889-07-04"^^xsd:date; + "1889-07-04"^^xsd:date; + "1889-07-01"^^xsd:date; + "1889-07-01"^^xsd:date; + "Tour"; + 15346; + "Actor"; + ; + ; + . + + a ; + "1889-07-13"^^xsd:date; + "1889-07-13"^^xsd:date; + "1889-07-08"^^xsd:date; + "1889-07-08"^^xsd:date; + "Tour"; + 15350; + "Actor"; + ; + ; + . + + a ; + "1889-07-23"^^xsd:date; + "1889-07-23"^^xsd:date; + "1889-07-23"^^xsd:date; + "1889-07-23"^^xsd:date; + "Tour"; + 15354; + "Actor"; + ; + ; + . + + a ; + "1887-03-05"^^xsd:date; + "1887-03-05"^^xsd:date; + "1887-02-28"^^xsd:date; + "1887-02-28"^^xsd:date; + "Tour"; + 15362; + "Actor"; + ; + ; + . + + a ; + "1887-03-12"^^xsd:date; + "1887-03-12"^^xsd:date; + "1887-03-07"^^xsd:date; + "1887-03-07"^^xsd:date; + "Tour"; + 15366; + "Actor"; + ; + ; + . + + a ; + "1887-03-14"^^xsd:date; + "1887-03-14"^^xsd:date; + "1887-03-14"^^xsd:date; + "1887-03-14"^^xsd:date; + "Tour"; + 15370; + "Actor"; + ; + ; + . + + a ; + "1887-03-15"^^xsd:date; + "1887-03-15"^^xsd:date; + "1887-03-15"^^xsd:date; + "1887-03-15"^^xsd:date; + "Tour"; + 15374; + "Actor"; + ; + ; + . + + a ; + "1887-03-16"^^xsd:date; + "1887-03-16"^^xsd:date; + "1887-03-16"^^xsd:date; + "1887-03-16"^^xsd:date; + "Tour"; + 15378; + "Actor"; + ; + ; + . + + a ; + "1887-03-19"^^xsd:date; + "1887-03-19"^^xsd:date; + "1887-03-17"^^xsd:date; + "1887-03-17"^^xsd:date; + "Tour"; + 15382; + "Actor"; + ; + ; + . + + a ; + "1887-03-23"^^xsd:date; + "1887-03-23"^^xsd:date; + "1887-03-21"^^xsd:date; + "1887-03-21"^^xsd:date; + "Tour"; + 15386; + "Actor"; + ; + ; + . + + a ; + "1887-03-28"^^xsd:date; + "1887-03-28"^^xsd:date; + "1887-03-28"^^xsd:date; + "1887-03-28"^^xsd:date; + "Tour"; + 15390; + "Actor"; + ; + ; + . + + a ; + "1887-03-29"^^xsd:date; + "1887-03-29"^^xsd:date; + "1887-03-29"^^xsd:date; + "1887-03-29"^^xsd:date; + "Tour"; + 15394; + "Actor"; + ; + ; + . + + a ; + "1887-03-30"^^xsd:date; + "1887-03-30"^^xsd:date; + "1887-03-30"^^xsd:date; + "1887-03-30"^^xsd:date; + "Tour"; + 15398; + "Actor"; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Other"; + 154; + "Singer"; + ; + ; + . + + a ; + "1887-04-02"^^xsd:date; + "1887-04-02"^^xsd:date; + "1887-03-31"^^xsd:date; + "1887-03-31"^^xsd:date; + "Tour"; + 15402; + "Actor"; + ; + ; + . + + a ; + "1887-04-11"^^xsd:date; + "1887-04-11"^^xsd:date; + "1887-04-11"^^xsd:date; + "1887-04-11"^^xsd:date; + "Tour"; + 15406; + "Actor"; + ; + ; + . + + a ; + "1887-04-12"^^xsd:date; + "1887-04-12"^^xsd:date; + "1887-04-12"^^xsd:date; + "1887-04-12"^^xsd:date; + "Tour"; + 15410; + "Actor"; + ; + ; + . + + a ; + "1887-04-13"^^xsd:date; + "1887-04-13"^^xsd:date; + "1887-04-13"^^xsd:date; + "1887-04-13"^^xsd:date; + "Tour"; + 15414; + "Actor"; + ; + ; + . + + a ; + "1887-04-15"^^xsd:date; + "1887-04-15"^^xsd:date; + "1887-04-01"^^xsd:date; + "1887-04-01"^^xsd:date; + "Tour"; + 15418; + "Actor"; + ; + ; + . + + a ; + "1887-04-16"^^xsd:date; + "1887-04-16"^^xsd:date; + "1887-04-16"^^xsd:date; + "1887-04-16"^^xsd:date; + "Tour"; + 15422; + "Actor"; + ; + ; + . + + a ; + "1887-04-18"^^xsd:date; + "1887-04-18"^^xsd:date; + "1887-04-18"^^xsd:date; + "1887-04-18"^^xsd:date; + "Tour"; + 15426; + "Actor"; + ; + ; + . + + a ; + "1887-04-20"^^xsd:date; + "1887-04-20"^^xsd:date; + "1887-04-20"^^xsd:date; + "1887-04-20"^^xsd:date; + "Tour"; + 15430; + "Actor"; + ; + ; + . + + a ; + "1887-04-30"^^xsd:date; + "1887-04-30"^^xsd:date; + "1887-04-25"^^xsd:date; + "1887-04-25"^^xsd:date; + "Tour"; + 15434; + "Actor"; + ; + ; + . + + a ; + "1887-06-01"^^xsd:date; + "1887-06-01"^^xsd:date; + "1887-05-30"^^xsd:date; + "1887-05-30"^^xsd:date; + "Tour"; + 15438; + "Actor"; + ; + ; + . + + a ; + "1887-06-06"^^xsd:date; + "1887-06-06"^^xsd:date; + "1887-06-06"^^xsd:date; + "1887-06-06"^^xsd:date; + "Tour"; + 15442; + "Actor"; + ; + ; + . + + a ; + "1887-06-18"^^xsd:date; + "1887-06-18"^^xsd:date; + "1887-06-18"^^xsd:date; + "1887-06-18"^^xsd:date; + "Tour"; + 15446; + "Actor"; + ; + ; + . + + a ; + "1887-10-09"^^xsd:date; + "1887-10-09"^^xsd:date; + "1887-10-03"^^xsd:date; + "1887-10-03"^^xsd:date; + "Tour"; + 15450; + "Actor"; + ; + ; + . + + a ; + "1887-10-10"^^xsd:date; + "1887-10-10"^^xsd:date; + "1887-10-10"^^xsd:date; + "1887-10-10"^^xsd:date; + "Tour"; + 15454; + "Actor"; + ; + ; + . + + a ; + "1887-10-13"^^xsd:date; + "1887-10-13"^^xsd:date; + "1887-10-13"^^xsd:date; + "1887-10-13"^^xsd:date; + "Tour"; + 15458; + "Actor"; + ; + ; + . + + a ; + "1887-10-15"^^xsd:date; + "1887-10-15"^^xsd:date; + "1887-10-15"^^xsd:date; + "1887-10-15"^^xsd:date; + "Tour"; + 15462; + "Actor"; + ; + ; + . + + a ; + "1887-10-18"^^xsd:date; + "1887-10-18"^^xsd:date; + "1887-10-18"^^xsd:date; + "1887-10-18"^^xsd:date; + "Tour"; + 15466; + "Actor"; + ; + ; + . + + a ; + "1887-10-22"^^xsd:date; + "1887-10-22"^^xsd:date; + "1887-10-20"^^xsd:date; + "1887-10-20"^^xsd:date; + "Tour"; + 15470; + "Actor"; + ; + ; + . + + a ; + "1887-10-29"^^xsd:date; + "1887-10-29"^^xsd:date; + "1887-10-27"^^xsd:date; + "1887-10-27"^^xsd:date; + "Tour"; + 15474; + "Actor"; + ; + ; + . + + a ; + "1887-11-19"^^xsd:date; + "1887-11-19"^^xsd:date; + "1887-11-14"^^xsd:date; + "1887-11-14"^^xsd:date; + "Tour"; + 15478; + "Actor"; + ; + ; + . + + a ; + "1887-11-22"^^xsd:date; + "1887-11-22"^^xsd:date; + "1887-11-22"^^xsd:date; + "1887-11-22"^^xsd:date; + "Tour"; + 15482; + "Actor"; + ; + ; + . + + a ; + "1887-11-24"^^xsd:date; + "1887-11-24"^^xsd:date; + "1887-11-24"^^xsd:date; + "1887-11-24"^^xsd:date; + "Tour"; + 15486; + "Actor"; + ; + ; + . + + a ; + "1887-11-26"^^xsd:date; + "1887-11-26"^^xsd:date; + "1887-11-26"^^xsd:date; + "1887-11-26"^^xsd:date; + "Tour"; + 15490; + "Actor"; + ; + ; + . + + a ; + "1887-11-30"^^xsd:date; + "1887-11-30"^^xsd:date; + "1887-11-30"^^xsd:date; + "1887-11-30"^^xsd:date; + "Tour"; + 15494; + "Actor"; + ; + ; + . + + a ; + "1887-12-10"^^xsd:date; + "1887-12-10"^^xsd:date; + "1887-12-05"^^xsd:date; + "1887-12-05"^^xsd:date; + "Tour"; + 15498; + "Actor"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 155; + "Singer"; + ""; + ; + ; + . + + a ; + "1887-12-17"^^xsd:date; + "1887-12-17"^^xsd:date; + "1887-12-15"^^xsd:date; + "1887-12-15"^^xsd:date; + "Tour"; + 15506; + "Actor"; + ; + ; + . + + a ; + "1887-12-30"^^xsd:date; + "1887-12-30"^^xsd:date; + "1887-12-30"^^xsd:date; + "1887-12-30"^^xsd:date; + "Tour"; + 15510; + "Actor"; + ; + ; + . + + a ; + "1888-01-02"^^xsd:date; + "1888-01-02"^^xsd:date; + "1888-01-02"^^xsd:date; + "1888-01-02"^^xsd:date; + "Tour"; + 15514; + "Actor"; + ; + ; + . + + a ; + "1888-01-04"^^xsd:date; + "1888-01-04"^^xsd:date; + "1888-01-04"^^xsd:date; + "1888-01-04"^^xsd:date; + "Tour"; + 15518; + "Actor"; + ; + ; + . + + a ; + "1888-01-10"^^xsd:date; + "1888-01-10"^^xsd:date; + "1888-01-10"^^xsd:date; + "1888-01-10"^^xsd:date; + "Tour"; + 15522; + "Actor"; + ; + ; + . + + a ; + "1888-01-14"^^xsd:date; + "1888-01-14"^^xsd:date; + "1888-01-12"^^xsd:date; + "1888-01-12"^^xsd:date; + "Tour"; + 15526; + "Actor"; + ; + ; + . + + a ; + "1888-01-18"^^xsd:date; + "1888-01-18"^^xsd:date; + "1888-01-17"^^xsd:date; + "1888-01-17"^^xsd:date; + "Tour"; + 15530; + "Actor"; + ; + ; + . + + a ; + "1888-01-25"^^xsd:date; + "1888-01-25"^^xsd:date; + "1888-01-25"^^xsd:date; + "1888-01-25"^^xsd:date; + "Tour"; + 15534; + "Actor"; + ; + ; + . + + a ; + "1888-02-11"^^xsd:date; + "1888-02-11"^^xsd:date; + "1888-01-30"^^xsd:date; + "1888-01-30"^^xsd:date; + "Tour"; + 15538; + "Actor"; + ; + ; + . + + a ; + "1888-02-22"^^xsd:date; + "1888-02-22"^^xsd:date; + "1888-02-22"^^xsd:date; + "1888-02-22"^^xsd:date; + "Tour"; + 15543; + "Actor"; + ; + ; + . + + a ; + "1888-02-25"^^xsd:date; + "1888-02-25"^^xsd:date; + "1888-02-24"^^xsd:date; + "1888-02-24"^^xsd:date; + "Tour"; + 15546; + "Actor"; + ; + ; + . + + a ; + "1888-03-01"^^xsd:date; + "1888-03-01"^^xsd:date; + "1888-03-01"^^xsd:date; + "1888-03-01"^^xsd:date; + "Tour"; + 15554; + "Actor"; + ; + ; + . + + a ; + "1888-03-06"^^xsd:date; + "1888-03-06"^^xsd:date; + "1888-03-06"^^xsd:date; + "1888-03-06"^^xsd:date; + "Tour"; + 15558; + "Actor"; + ; + ; + . + + a ; + "1888-03-08"^^xsd:date; + "1888-03-08"^^xsd:date; + "1888-03-08"^^xsd:date; + "1888-03-08"^^xsd:date; + "Tour"; + 15562; + "Actor"; + ; + ; + . + + a ; + "1888-03-10"^^xsd:date; + "1888-03-10"^^xsd:date; + "1888-03-10"^^xsd:date; + "1888-03-10"^^xsd:date; + "Tour"; + 15566; + "Actor"; + ; + ; + . + + a ; + "1888-03-14"^^xsd:date; + "1888-03-14"^^xsd:date; + "1888-03-14"^^xsd:date; + "1888-03-14"^^xsd:date; + "Tour"; + 15570; + "Actor"; + ; + ; + . + + a ; + "1888-03-24"^^xsd:date; + "1888-03-24"^^xsd:date; + "1888-03-19"^^xsd:date; + "1888-03-19"^^xsd:date; + "Tour"; + 15574; + "Actor"; + ; + ; + . + + a ; + "August 1903"; + "1903-08-31"^^xsd:date; + "1903-08-01"^^xsd:date; + "Summer 1903"; + "1903-08-31"^^xsd:date; + "1903-06-24"^^xsd:date; + "Permanent"; + 15578; + "Founder"; + "Director"; + "Singer"; + ; + ; + ; + . + + a ; + "between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 15582; + ; + ; + . + + a ; + "between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 15586; + ; + ; + . + + a ; + "1889-06-15"^^xsd:date; + "1889-06-15"^^xsd:date; + "1889-06-14"^^xsd:date; + "1889-06-14"^^xsd:date; + "Tour"; + 15590; + "Actor"; + ; + ; + . + + a ; + "1889-06-29"^^xsd:date; + "1889-06-29"^^xsd:date; + "1889-06-29"^^xsd:date; + "1889-06-29"^^xsd:date; + "Tour"; + 15598; + "Actor"; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "between 1903 and 1932"; + "1932-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Other"; + 156; + "Singer"; + ; + ; + . + + a ; + "1889-07-06"^^xsd:date; + "1889-07-06"^^xsd:date; + "1889-07-06"^^xsd:date; + "1889-07-06"^^xsd:date; + "Tour"; + 15602; + "Actor"; + ; + ; + . + + a ; + "1889-07-24"^^xsd:date; + "1889-07-24"^^xsd:date; + "1889-07-24"^^xsd:date; + "1889-07-24"^^xsd:date; + "Tour"; + 15610; + "Actor"; + ; + ; + . + + a ; + "1888-05-21"^^xsd:date; + "1888-05-21"^^xsd:date; + "1888-05-21"^^xsd:date; + "1888-05-21"^^xsd:date; + "Tour"; + 15618; + "Actor"; + ; + ; + . + + a ; + "1889-02-06"^^xsd:date; + "1889-02-06"^^xsd:date; + "1889-01-28"^^xsd:date; + "1889-01-28"^^xsd:date; + "Tour"; + 15622; + "Actor"; + ; + ; + . + + a ; + "1889-02-19"^^xsd:date; + "1889-02-19"^^xsd:date; + "1889-02-18"^^xsd:date; + "1889-02-18"^^xsd:date; + "Tour"; + 15626; + "Actor"; + ; + ; + . + + a ; + "1889-02-20"^^xsd:date; + "1889-02-20"^^xsd:date; + "1889-02-20"^^xsd:date; + "1889-02-20"^^xsd:date; + "Tour"; + 15630; + "Actor"; + ; + ; + . + + a ; + "1889-02-21"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889-02-21"^^xsd:date; + "Tour"; + 15634; + "Actor"; + ; + ; + . + + a ; + "1889-02-23"^^xsd:date; + "1889-02-23"^^xsd:date; + "1889-02-22"^^xsd:date; + "1889-02-22"^^xsd:date; + "Tour"; + 15638; + "Actor"; + ; + ; + . + + a ; + "1889-03-02"^^xsd:date; + "1889-03-02"^^xsd:date; + "1889-02-25"^^xsd:date; + "1889-02-25"^^xsd:date; + "Tour"; + 15642; + "Actor"; + ; + ; + . + + a ; + "1889-03-04"^^xsd:date; + "1889-03-04"^^xsd:date; + "1889-03-04"^^xsd:date; + "1889-03-04"^^xsd:date; + "Tour"; + 15646; + "Actor"; + ; + ; + . + + a ; + "1889-03-05"^^xsd:date; + "1889-03-05"^^xsd:date; + "1889-03-05"^^xsd:date; + "1889-03-05"^^xsd:date; + "Tour"; + 15650; + "Actor"; + ; + ; + . + + a ; + "1889-03-08"^^xsd:date; + "1889-03-08"^^xsd:date; + "1889-03-06"^^xsd:date; + "1889-03-06"^^xsd:date; + "Tour"; + 15654; + "Actor"; + ; + ; + . + + a ; + "1889-03-09"^^xsd:date; + "1889-03-09"^^xsd:date; + "1889-03-09"^^xsd:date; + "1889-03-09"^^xsd:date; + "Tour"; + 15658; + "Actor"; + ; + ; + . + + a ; + "1889-06-11"^^xsd:date; + "1889-06-11"^^xsd:date; + "1889-06-10"^^xsd:date; + "1889-06-10"^^xsd:date; + "Tour"; + 15662; + "Actor"; + ; + ; + . + + a ; + "1890-02-08"^^xsd:date; + "1890-02-08"^^xsd:date; + "1890-02-04"^^xsd:date; + "1890-02-04"^^xsd:date; + "Tour"; + 15666; + "Actor"; + ; + ; + . + + a ; + "1890-03-29"^^xsd:date; + "1890-03-29"^^xsd:date; + "1890-03-10"^^xsd:date; + "1890-03-10"^^xsd:date; + "Tour"; + 15670; + "Actor"; + ; + ; + . + + a ; + "1890-04-12"^^xsd:date; + "1890-04-12"^^xsd:date; + "1890-04-07"^^xsd:date; + "1890-04-07"^^xsd:date; + "Tour"; + 15674; + "Actor"; + ; + ; + . + + a ; + "1890-04-18"^^xsd:date; + "1890-04-18"^^xsd:date; + "1890-04-18"^^xsd:date; + "1890-04-18"^^xsd:date; + "Tour"; + 15678; + "Actor"; + ; + ; + . + + a ; + "1890-04-22"^^xsd:date; + "1890-04-22"^^xsd:date; + "1890-04-21"^^xsd:date; + "1890-04-21"^^xsd:date; + "Tour"; + 15682; + "Actor"; + ; + ; + . + + a ; + "1890-04-24"^^xsd:date; + "1890-04-24"^^xsd:date; + "1890-04-24"^^xsd:date; + "1890-04-24"^^xsd:date; + "Tour"; + 15686; + "Actor"; + ; + ; + . + + a ; + "1890-04-26"^^xsd:date; + "1890-04-26"^^xsd:date; + "1890-04-26"^^xsd:date; + "1890-04-26"^^xsd:date; + "Tour"; + 15690; + "Actor"; + ; + ; + . + + a ; + "1890-04-29"^^xsd:date; + "1890-04-29"^^xsd:date; + "1890-04-29"^^xsd:date; + "1890-04-29"^^xsd:date; + "Tour"; + 15694; + "Actor"; + ; + ; + . + + a ; + "1890-05-03"^^xsd:date; + "1890-05-03"^^xsd:date; + "1890-05-01"^^xsd:date; + "1890-05-01"^^xsd:date; + "Tour"; + 15698; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 157; + "Singer"; + "1815? , with engagements at Theater an der Wien"; + ; + . + + a ; + "1890-05-06"^^xsd:date; + "1890-05-06"^^xsd:date; + "1890-05-06"^^xsd:date; + "1890-05-06"^^xsd:date; + "Tour"; + 15702; + "Actor"; + ; + ; + . + + a ; + "1890-05-08"^^xsd:date; + "1890-05-08"^^xsd:date; + "1890-05-08"^^xsd:date; + "1890-05-08"^^xsd:date; + "Tour"; + 15706; + "Actor"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Guest"; + 1571; + "Singer"; + ; + ; + . + + a ; + "1891"; + "1891-06-20"^^xsd:date; + "1891-03-21"^^xsd:date; + "1890"; + "1890-12-20"^^xsd:date; + "1890-09-23"^^xsd:date; + "Tour"; + 15710; + "Actor"; + ; + . + + a ; + "1891-09-22"^^xsd:date; + "1891-09-22"^^xsd:date; + "1891-09-22"^^xsd:date; + "1891-09-22"^^xsd:date; + "Tour"; + 15714; + "Actor"; + ; + ; + . + + a ; + "1891-09-26"^^xsd:date; + "1891-09-26"^^xsd:date; + "1891"; + "1890-09-24"^^xsd:date; + "1891-09-24"^^xsd:date; + "Tour"; + 15718; + "Actor"; + ; + ; + . + + a ; + "1891-10-06"^^xsd:date; + "1891-10-06"^^xsd:date; + "1891-10-05"^^xsd:date; + "1891-10-05"^^xsd:date; + "Tour"; + 15722; + "Actor"; + ; + ; + . + + a ; + "1891-10-10"^^xsd:date; + "1891-10-10"^^xsd:date; + "1891-10-08"^^xsd:date; + "1891-10-08"^^xsd:date; + "Tour"; + 15726; + "Actor"; + ; + ; + . + + a ; + "1891-10-13"^^xsd:date; + "1891-10-13"^^xsd:date; + "1891-10-13"^^xsd:date; + "1891-10-13"^^xsd:date; + "Tour"; + 15730; + "Actor"; + ; + ; + . + + a ; + "1891-10-15"^^xsd:date; + "1891-10-15"^^xsd:date; + "1891-10-15"^^xsd:date; + "1891-10-15"^^xsd:date; + "Tour"; + 15734; + "Actor"; + ; + ; + . + + a ; + "1891-10-24"^^xsd:date; + "1891-10-24"^^xsd:date; + "1891-10-19"^^xsd:date; + "1891-10-19"^^xsd:date; + "Tour"; + 15738; + "Actor"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Guest"; + 1574; + "Singer"; + ; + ; + . + + a ; + "1891-11-09"^^xsd:date; + "1891-11-09"^^xsd:date; + "1891-11-09"^^xsd:date; + "1891-11-09"^^xsd:date; + "Tour"; + 15742; + "Actor"; + ; + ; + . + + a ; + "1891-11-11"^^xsd:date; + "1891-11-11"^^xsd:date; + "1891-11-11"^^xsd:date; + "1891-11-11"^^xsd:date; + "Tour"; + 15746; + "Actor"; + ; + ; + . + + a ; + "1891-11-14"^^xsd:date; + "1891-11-14"^^xsd:date; + "1891-11-14"^^xsd:date; + "1891-11-14"^^xsd:date; + "Tour"; + 15750; + "Actor"; + ; + ; + . + + a ; + "1891-11-28"^^xsd:date; + "1891-11-28"^^xsd:date; + "1891-11-23"^^xsd:date; + "1891-11-23"^^xsd:date; + "Tour"; + 15754; + "Actor"; + ; + ; + . + + a ; + "1891-07-12"^^xsd:date; + "1891-12-07"^^xsd:date; + "1891-12-07"^^xsd:date; + "1891-12-07"^^xsd:date; + "Tour"; + 15758; + "Actor"; + ; + ; + . + + a ; + "1891-12-09"^^xsd:date; + "1891-12-09"^^xsd:date; + "1891-12-09"^^xsd:date; + "1891-12-09"^^xsd:date; + "Tour"; + 15762; + "Actor"; + ; + ; + . + + a ; + "1891-12-26"^^xsd:date; + "1891-12-26"^^xsd:date; + "1891-12-25"^^xsd:date; + "1891-12-25"^^xsd:date; + "Tour"; + 15766; + "Actor"; + ; + ; + . + + a ; + "1861"; + "1861-01-01"^^xsd:date; + "1861-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Permanent"; + 1577; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1892-01-01"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892-01-01"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 15770; + "Actor"; + ; + ; + . + + a ; + "1892-01-23"^^xsd:date; + "1892-01-23"^^xsd:date; + "1892-01-11"^^xsd:date; + "1892-01-11"^^xsd:date; + "Tour"; + 15771; + "Actor"; + ; + ; + . + + a ; + "1892-01-26"^^xsd:date; + "1892-01-26"^^xsd:date; + "1892-01-26"^^xsd:date; + "1892-01-26"^^xsd:date; + "Tour"; + 15772; + "Actor"; + ; + ; + . + + a ; + "1892-01-30"^^xsd:date; + "1892-01-30"^^xsd:date; + "1892-01-28"^^xsd:date; + "1892-01-28"^^xsd:date; + "Tour"; + 15776; + "Actor"; + ; + ; + . + + a ; + "1892-02-04"^^xsd:date; + "1892-02-04"^^xsd:date; + "1892-02-03"^^xsd:date; + "1892-02-03"^^xsd:date; + "Tour"; + 15779; + "Actor"; + ; + ; + . + + a ; + "1892-02-06"^^xsd:date; + "1892-02-06"^^xsd:date; + "1892-02-06"^^xsd:date; + "1892-02-06"^^xsd:date; + "Tour"; + 15780; + "Actor"; + ; + . + + a ; + "1892-02-13"^^xsd:date; + "1892-02-13"^^xsd:date; + "1892-02-08"^^xsd:date; + "1892-02-08"^^xsd:date; + "Tour"; + 15782; + "Actor"; + ; + ; + . + + a ; + "1892-02-20"^^xsd:date; + "1892-02-20"^^xsd:date; + "1892-02-18"^^xsd:date; + "1892-02-18"^^xsd:date; + "Tour"; + 15786; + "Actor"; + ; + ; + . + + a ; + "1892-03-02"^^xsd:date; + "1892-03-02"^^xsd:date; + "1892-02-29"^^xsd:date; + "1892-02-29"^^xsd:date; + "Tour"; + 15790; + "Actor"; + ; + ; + . + + a ; + "1892-03-12"^^xsd:date; + "1892-03-12"^^xsd:date; + "1892-03-07"^^xsd:date; + "1892-03-07"^^xsd:date; + "Tour"; + 15794; + "Actor"; + ; + ; + . + + a ; + "1892-03-16"^^xsd:date; + "1892-03-16"^^xsd:date; + "1892-03-16"^^xsd:date; + "1892-03-16"^^xsd:date; + "Tour"; + 15798; + "Actor"; + ; + ; + . + + a ; + "Engagement"; + "Tour"; + 158; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + 1580; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1892-03-19"^^xsd:date; + "1892-03-19"^^xsd:date; + "1892-03-17"^^xsd:date; + "1892-03-17"^^xsd:date; + "Tour"; + 15802; + "Actor"; + ; + ; + . + + a ; + "1892-03-21"^^xsd:date; + "1892-03-21"^^xsd:date; + "1892-03-21"^^xsd:date; + "1892-03-21"^^xsd:date; + "Tour"; + 15806; + "Actor"; + ; + ; + . + + a ; + "1892-03-22"^^xsd:date; + "1892-03-22"^^xsd:date; + "1892-03-22"^^xsd:date; + "1892-03-22"^^xsd:date; + "Tour"; + 15810; + "Actor"; + ; + ; + . + + a ; + "1892-03-26"^^xsd:date; + "1892-03-26"^^xsd:date; + "1892-03-24"^^xsd:date; + "1892-03-24"^^xsd:date; + "Tour"; + 15822; + "Actor"; + ; + ; + . + + a ; + "1892-03-29"^^xsd:date; + "1892-03-29"^^xsd:date; + "1892-03-29"^^xsd:date; + "1892-03-29"^^xsd:date; + "Tour"; + 15826; + "Actor"; + ; + ; + . + + a ; + "between 1881 and 1902"; + "1902-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Permanent"; + 1583; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1892-03-31"^^xsd:date; + "1892-03-31"^^xsd:date; + "1892-03-31"^^xsd:date; + "1892-03-31"^^xsd:date; + "Tour"; + 15830; + "Actor"; + ; + . + + a ; + "1892-04-01"^^xsd:date; + "1892-04-01"^^xsd:date; + "1892-04-01"^^xsd:date; + "1892-04-01"^^xsd:date; + "Tour"; + 15838; + "Actor"; + ; + ; + . + + a ; + "1892-04-02"^^xsd:date; + "1892-04-02"^^xsd:date; + "1892-04-02"^^xsd:date; + "1892-04-02"^^xsd:date; + "Tour"; + 15842; + "Actor"; + ; + ; + . + + a ; + "1892-04-09"^^xsd:date; + "1892-04-09"^^xsd:date; + "1892-04-04"^^xsd:date; + "1892-04-04"^^xsd:date; + "Tour"; + 15846; + "Actor"; + ; + ; + . + + a ; + "1889-12-09"^^xsd:date; + "1889-12-09"^^xsd:date; + "1889-12-09"^^xsd:date; + "1889-12-09"^^xsd:date; + "Tour"; + 15874; + "Actor"; + ; + ; + . + + a ; + "1889-12-05"^^xsd:date; + "1889-12-05"^^xsd:date; + "1889-12-05"^^xsd:date; + "1889-12-05"^^xsd:date; + "Tour"; + 15878; + "Actor"; + ; + ; + . + + a ; + "1889-12-12"^^xsd:date; + "1889-12-12"^^xsd:date; + "1889-12-11"^^xsd:date; + "1889-12-11"^^xsd:date; + "Tour"; + 15882; + "Actor"; + ; + ; + . + + a ; + "1889-12-14"^^xsd:date; + "1889-12-14"^^xsd:date; + "1889-12-13"^^xsd:date; + "1889-12-13"^^xsd:date; + "Tour"; + 15886; + "Actor"; + ; + ; + . + + a ; + "1889-12-21"^^xsd:date; + "1889-12-21"^^xsd:date; + "1889-12-16"^^xsd:date; + "1889-12-16"^^xsd:date; + "Tour"; + 15890; + "Actor"; + ; + ; + . + + a ; + "1890-01-11"^^xsd:date; + "1890-01-11"^^xsd:date; + "1890-01-06"^^xsd:date; + "1890-01-06"^^xsd:date; + "Tour"; + 15894; + "Actor"; + ; + ; + . + + a ; + "1890-01-13"^^xsd:date; + "1890-01-13"^^xsd:date; + "1890-01-13"^^xsd:date; + "1890-01-13"^^xsd:date; + "Tour"; + 15898; + "Actor"; + ; + ; + . + + a ; + """Engagement +"""; + "Tour"; + 159; + "End of Engagement because of marriage with an officer, David Oskar von Döring. It was forbidden being an officer´s wife and working on stage at the same time"; + ; + ; + . + + a ; + "1890-01-14"^^xsd:date; + "1890-01-14"^^xsd:date; + "1890-01-14"^^xsd:date; + "1890-01-14"^^xsd:date; + "Tour"; + 15902; + "Actor"; + ; + ; + . + + a ; + "1890-01-15"^^xsd:date; + "1890-01-15"^^xsd:date; + "1890-01-15"^^xsd:date; + "1890-01-15"^^xsd:date; + "Tour"; + 15906; + "Actor"; + ; + ; + . + + a ; + "1890-01-16"^^xsd:date; + "1890-01-16"^^xsd:date; + "1890-01-16"^^xsd:date; + "1890-01-16"^^xsd:date; + "Tour"; + 15910; + "Actor"; + ; + ; + . + + a ; + "1890-02-01"^^xsd:date; + "1890-02-01"^^xsd:date; + "1890-01-20"^^xsd:date; + "1890-01-20"^^xsd:date; + "Tour"; + 15914; + "Actor"; + ; + ; + . + + a ; + "1890-02-03"^^xsd:date; + "1890-02-03"^^xsd:date; + "1890-02-03"^^xsd:date; + "1890-02-03"^^xsd:date; + "Tour"; + 15918; + "Actor"; + ; + ; + . + + a ; + "1890-03-08"^^xsd:date; + "1890-03-08"^^xsd:date; + "1890-02-24"^^xsd:date; + "1890-02-24"^^xsd:date; + "Tour"; + 15922; + "Actor"; + ; + ; + . + + a ; + "1890-04-05"^^xsd:date; + "1890-04-05"^^xsd:date; + "1890-03-31"^^xsd:date; + "1890-03-31"^^xsd:date; + "Tour"; + 15926; + "Actor"; + ; + ; + . + + a ; + "1890-04-17"^^xsd:date; + "1890-04-17"^^xsd:date; + "1890-04-14"^^xsd:date; + "1890-04-14"^^xsd:date; + "Tour"; + 15930; + "Actor"; + ; + ; + . + + a ; + "1890-04-19"^^xsd:date; + "1890-04-19"^^xsd:date; + "1890-04-19"^^xsd:date; + "1890-04-19"^^xsd:date; + "Tour"; + 15934; + "Actor"; + ; + ; + . + + a ; + "1890-04-23"^^xsd:date; + "1890-04-23"^^xsd:date; + "1890-04-23"^^xsd:date; + "1890-04-23"^^xsd:date; + "Tour"; + 15938; + "Actor"; + ; + ; + . + + a ; + "1890-04-25"^^xsd:date; + "1890-04-25"^^xsd:date; + "1890-04-25"^^xsd:date; + "1890-04-25"^^xsd:date; + "Tour"; + 15942; + "Actor"; + ; + ; + . + + a ; + "1890-04-28"^^xsd:date; + "1890-04-28"^^xsd:date; + "1890-04-28"^^xsd:date; + "1890-04-28"^^xsd:date; + "Tour"; + 15946; + "Actor"; + ; + ; + . + + a ; + "1890-04-30"^^xsd:date; + "1890-04-30"^^xsd:date; + "1890-04-30"^^xsd:date; + "1890-04-30"^^xsd:date; + "Tour"; + 15950; + "Actor"; + ; + ; + . + + a ; + "1890-05-05"^^xsd:date; + "1890-05-05"^^xsd:date; + "1890-05-05"^^xsd:date; + "1890-05-05"^^xsd:date; + "Tour"; + 15954; + "Actor"; + ; + ; + . + + a ; + "1890-05-07"^^xsd:date; + "1890-05-07"^^xsd:date; + "1890-05-07"^^xsd:date; + "1890-05-07"^^xsd:date; + "Tour"; + 15958; + "Actor"; + ; + ; + . + + a ; + "1890-05-10"^^xsd:date; + "1890-05-10"^^xsd:date; + "1890-05-09"^^xsd:date; + "1890-05-09"^^xsd:date; + "Tour"; + 15962; + "Actor"; + ; + ; + . + + a ; + "1891-09-21"^^xsd:date; + "1891-09-21"^^xsd:date; + "1891-09-21"^^xsd:date; + "1891-09-21"^^xsd:date; + "Tour"; + 15966; + "Actor"; + ; + ; + . + + a ; + "1891-09-23"^^xsd:date; + "1891-09-23"^^xsd:date; + "1891-09-23"^^xsd:date; + "1891-09-23"^^xsd:date; + "Tour"; + 15970; + "Actor"; + ; + ; + . + + a ; + "1891-10-03"^^xsd:date; + "1891-10-03"^^xsd:date; + "1891-09-28"^^xsd:date; + "1891-09-28"^^xsd:date; + "Tour"; + 15974; + "Actor"; + ; + ; + . + + a ; + "1891-10-07"^^xsd:date; + "1891-10-07"^^xsd:date; + "1891-10-07"^^xsd:date; + "1891-10-07"^^xsd:date; + "Tour"; + 15978; + "Actor"; + ; + ; + . + + a ; + "1891-10-12"^^xsd:date; + "1891-10-12"^^xsd:date; + "1891-10-12"^^xsd:date; + "1891-10-12"^^xsd:date; + "Tour"; + 15982; + "Actor"; + ; + ; + . + + a ; + "1891-10-14"^^xsd:date; + "1891-10-14"^^xsd:date; + "1891-10-14"^^xsd:date; + "1891-10-14"^^xsd:date; + "Tour"; + 15986; + "Actor"; + ; + ; + . + + a ; + "1891-10-17"^^xsd:date; + "1891-10-17"^^xsd:date; + "1891-10-16"^^xsd:date; + "1891-10-16"^^xsd:date; + "Tour"; + 15990; + "Actor"; + ; + ; + . + + a ; + "1891-11-07"^^xsd:date; + "1891-11-07"^^xsd:date; + "1891-10-26"^^xsd:date; + "1891-10-26"^^xsd:date; + "Tour"; + 15994; + "Actor"; + ; + ; + . + + a ; + "1891-11-10"^^xsd:date; + "1891-11-10"^^xsd:date; + "1891-11-10"^^xsd:date; + "1891-11-10"^^xsd:date; + "Tour"; + 15998; + "Actor"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + 16; + "Singer"; + """she gave concerts in Germany with Hermann Berens (piano), later in Hungary +"""; + ; + . + + a ; + "1994"; + "1994-12-31"^^xsd:date; + "1994-01-01"^^xsd:date; + "Tour"; + 160; + "Singer"; + ""; + ; + ; + . + + a ; + "1891-11-13"^^xsd:date; + "1891-11-13"^^xsd:date; + "1891-11-13"^^xsd:date; + "1891-11-13"^^xsd:date; + "Tour"; + 16002; + "Actor"; + ; + ; + . + + a ; + "1891-11-21"^^xsd:date; + "1891-11-21"^^xsd:date; + "1891-11-16"^^xsd:date; + "1891-11-16"^^xsd:date; + "Tour"; + 16006; + "Actor"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Guest"; + 1601; + "Singer"; + ; + . + + a ; + "1891-12-05"^^xsd:date; + "1891-12-05"^^xsd:date; + "1891-11-30"^^xsd:date; + "1891-11-30"^^xsd:date; + "Tour"; + 16010; + "Actor"; + ; + ; + . + + a ; + "1891-12-08"^^xsd:date; + "1891-12-08"^^xsd:date; + "1891-12-08"^^xsd:date; + "1891-12-08"^^xsd:date; + "Tour"; + 16014; + "Actor"; + ; + ; + . + + a ; + "1891-12-10"^^xsd:date; + "1891-12-10"^^xsd:date; + "1891-12-10"^^xsd:date; + "1891-12-10"^^xsd:date; + "Tour"; + 16018; + "Actor"; + ; + ; + . + + a ; + "1891-12-31"^^xsd:date; + "1891-12-31"^^xsd:date; + "1891-12-28"^^xsd:date; + "1891-12-28"^^xsd:date; + "Tour"; + 16022; + "Actor"; + ; + ; + . + + a ; + "1892-01-09"^^xsd:date; + "1892-01-09"^^xsd:date; + "1892-01-04"^^xsd:date; + "1892-01-04"^^xsd:date; + "Tour"; + 16026; + "Actor"; + ; + ; + . + + a ; + "1892-01-27"^^xsd:date; + "1892-01-27"^^xsd:date; + "1892-01-27"^^xsd:date; + "1892-01-27"^^xsd:date; + "Tour"; + 16030; + "Actor"; + ; + ; + . + + a ; + "1892-02-02"^^xsd:date; + "1892-02-02"^^xsd:date; + "1892-02-02"^^xsd:date; + "1892-02-02"^^xsd:date; + "Tour"; + 16034; + "Actor"; + ; + ; + . + + a ; + "1892-02-17"^^xsd:date; + "1892-02-17"^^xsd:date; + "1892-02-15"^^xsd:date; + "1892-02-15"^^xsd:date; + "Tour"; + 16038; + "Actor"; + ; + ; + . + + a ; + "1900"; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Guest"; + 1604; + "Singer"; + ; + ; + . + + a ; + "1892-02-27"^^xsd:date; + "1892-02-27"^^xsd:date; + "1892-02-25"^^xsd:date; + "1892-02-25"^^xsd:date; + "Tour"; + 16042; + "Actor"; + ; + ; + . + + a ; + "1892-03-05"^^xsd:date; + "1892-03-05"^^xsd:date; + "1892-03-03"^^xsd:date; + "1892-03-03"^^xsd:date; + "Tour"; + 16046; + "Actor"; + ; + ; + . + + a ; + "1892-03-14"^^xsd:date; + "1892-03-14"^^xsd:date; + "1892-03-14"^^xsd:date; + "1892-03-14"^^xsd:date; + "Tour"; + 16050; + "Actor"; + ; + ; + . + + a ; + "1877-11-03"^^xsd:date; + "1877-11-03"^^xsd:date; + "1877-10-31"^^xsd:date; + "1877-10-31"^^xsd:date; + "Tour"; + 16054; + "Actor"; + ; + ; + . + + a ; + "1889-06-22"^^xsd:date; + "1889-06-22"^^xsd:date; + "1889-06-19"^^xsd:date; + "1889-06-19"^^xsd:date; + "Tour"; + 16058; + "Actor"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + 1607; + "Singer"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 161; + "Singer"; + "Teacher (Theatre related)"; + ""; + ; + . + + a ; + "1902"; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + 1610; + "Singer"; + ; + ; + . + + a ; + "August 1865"; + "1865-08-31"^^xsd:date; + "1865-08-01"^^xsd:date; + "March 1863"; + "1863-03-31"^^xsd:date; + "1863-03-01"^^xsd:date; + "Tour"; + 16126; + "Actor"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 1613; + "Teacher (Theatre related)"; + ; + . + + a ; + "1892-07-02"^^xsd:date; + "1892-07-02"^^xsd:date; + "1892-07-02"^^xsd:date; + "1892-07-02"^^xsd:date; + "Tour"; + 16130; + "Actor"; + ; + ; + . + + a ; + "1892-11-19"^^xsd:date; + "1892-11-19"^^xsd:date; + "1892-11-07"^^xsd:date; + "1892-11-07"^^xsd:date; + "Tour"; + 16134; + "Actor"; + ; + ; + . + + a ; + "1892-11-25"^^xsd:date; + "1892-11-25"^^xsd:date; + "1892-11-25"^^xsd:date; + "1892-11-25"^^xsd:date; + "Tour"; + 16138; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 1614; + "Singer"; + ; + . + + a ; + "1892-11-29"^^xsd:date; + "1892-11-29"^^xsd:date; + "1892-11-29"^^xsd:date; + "1892-11-29"^^xsd:date; + "Tour"; + 16142; + "Actor"; + ; + ; + . + + a ; + "1892-12-26"^^xsd:date; + "1892-12-26"^^xsd:date; + "1892-12-26"^^xsd:date; + "1892-12-26"^^xsd:date; + "Tour"; + 16146; + "Actor"; + ; + ; + . + + a ; + "1892-12-30"^^xsd:date; + "1892-12-30"^^xsd:date; + "1892-12-30"^^xsd:date; + "1892-12-30"^^xsd:date; + "Tour"; + 16150; + "Actor"; + ; + . + + a ; + "1893-01-02"^^xsd:date; + "1893-01-02"^^xsd:date; + "1893-01-02"^^xsd:date; + "1893-01-02"^^xsd:date; + "Tour"; + 16154; + "Actor"; + ; + ; + . + + a ; + "1893-01-04"^^xsd:date; + "1893-01-04"^^xsd:date; + "1893-01-04"^^xsd:date; + "1893-01-04"^^xsd:date; + "Tour"; + 16158; + "Actor"; + ; + ; + . + + a ; + "1893-01-11"^^xsd:date; + "1893-01-11"^^xsd:date; + "1893-01-09"^^xsd:date; + "1893-01-09"^^xsd:date; + "Tour"; + 16162; + "Actor"; + ; + ; + . + + a ; + "1893-01-17"^^xsd:date; + "1893-01-17"^^xsd:date; + "1893-01-17"^^xsd:date; + "1893-01-17"^^xsd:date; + "Tour"; + 16166; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 1617; + "Singer"; + ; + . + + a ; + "1893-01-20"^^xsd:date; + "1893-01-20"^^xsd:date; + "1893-01-20"^^xsd:date; + "1893-01-20"^^xsd:date; + "Tour"; + 16170; + "Actor"; + ; + ; + . + + a ; + "1893-01-22"^^xsd:date; + "1893-01-22"^^xsd:date; + "1893-01-22"^^xsd:date; + "1893-01-22"^^xsd:date; + "Tour"; + 16174; + "Actor"; + ; + ; + . + + a ; + "1893-01-24"^^xsd:date; + "1893-01-24"^^xsd:date; + "1893-01-24"^^xsd:date; + "1893-01-24"^^xsd:date; + "Tour"; + 16178; + "Actor"; + ; + ; + . + + a ; + "1893-01-28"^^xsd:date; + "1893-01-28"^^xsd:date; + "1893-01-26"^^xsd:date; + "1893-01-26"^^xsd:date; + "Tour"; + 16182; + "Actor"; + ; + ; + . + + a ; + "1893-02-11"^^xsd:date; + "1893-02-11"^^xsd:date; + "1893-02-06"^^xsd:date; + "1893-02-06"^^xsd:date; + "Tour"; + 16186; + "Actor"; + ; + . + + a ; + "Guest "; + "Guest"; + 1619; + ; + . + + a ; + "1893-02-18"^^xsd:date; + "1893-02-18"^^xsd:date; + "1893-02-16"^^xsd:date; + "1893-02-16"^^xsd:date; + "Tour"; + 16190; + "Actor"; + ; + . + + a ; + "1893-02-21"^^xsd:date; + "1893-02-21"^^xsd:date; + "1893-02-21"^^xsd:date; + "1893-02-21"^^xsd:date; + "Tour"; + 16194; + "Actor"; + ; + ; + . + + a ; + "1893-03-01"^^xsd:date; + "1893-03-01"^^xsd:date; + "1893-02-27"^^xsd:date; + "1893-02-27"^^xsd:date; + "Tour"; + 16198; + "Actor"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 162; + "Singer"; + "she sang alternately in Gotha and Coburg"; + ; + . + + a ; + "1893-03-04"^^xsd:date; + "1893-03-04"^^xsd:date; + "1893-03-02"^^xsd:date; + "1893-03-02"^^xsd:date; + "Tour"; + 16202; + "Actor"; + ; + ; + . + + a ; + "1893-03-11"^^xsd:date; + "1893-03-11"^^xsd:date; + "1893-03-06"^^xsd:date; + "1893-03-06"^^xsd:date; + "Tour"; + 16206; + "Actor"; + ; + ; + . + + a ; + "1893-03-14"^^xsd:date; + "1893-03-14"^^xsd:date; + "1893-03-14"^^xsd:date; + "1893-03-14"^^xsd:date; + "Tour"; + 16210; + "Actor"; + ; + ; + . + + a ; + "1893-03-15"^^xsd:date; + "1893-03-15"^^xsd:date; + "1893-03-15"^^xsd:date; + "1893-03-15"^^xsd:date; + "Tour"; + 16214; + "Actor"; + ; + ; + . + + a ; + "1893-03-16"^^xsd:date; + "1893-03-16"^^xsd:date; + "1893-03-16"^^xsd:date; + "1893-03-16"^^xsd:date; + "Tour"; + 16218; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 1622; + ; + . + + a ; + "1893-03-17"^^xsd:date; + "1893-03-17"^^xsd:date; + "1893-03-17"^^xsd:date; + "1893-03-17"^^xsd:date; + "Tour"; + 16222; + "Actor"; + ; + ; + . + + a ; + "1893-03-18"^^xsd:date; + "1893-03-18"^^xsd:date; + "1893-03-18"^^xsd:date; + "1893-03-18"^^xsd:date; + "Tour"; + 16226; + "Actor"; + ; + ; + . + + a ; + "1893-03-21"^^xsd:date; + "1893-03-21"^^xsd:date; + "1893-03-20"^^xsd:date; + "1893-03-20"^^xsd:date; + "Tour"; + 16230; + "Actor"; + ; + . + + a ; + "1893-03-22"^^xsd:date; + "1893-03-22"^^xsd:date; + "1893-03-22"^^xsd:date; + "1893-03-22"^^xsd:date; + "Tour"; + 16234; + "Actor"; + ; + . + + a ; + "1893-03-23"^^xsd:date; + "1893-03-23"^^xsd:date; + "1893-03-23"^^xsd:date; + "1893-03-23"^^xsd:date; + "Tour"; + 16238; + "Actor"; + ; + ; + . + + a ; + "1893-04-03"^^xsd:date; + "1893-04-03"^^xsd:date; + "1893-04-03"^^xsd:date; + "1893-04-03"^^xsd:date; + "Tour"; + 16242; + "Actor"; + ; + ; + . + + a ; + "1893-04-04"^^xsd:date; + "1893-04-04"^^xsd:date; + "1893-04-04"^^xsd:date; + "1893-04-04"^^xsd:date; + "Tour"; + 16246; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 1625; + ; + . + + a ; + "1893-04-05"^^xsd:date; + "1893-04-05"^^xsd:date; + "1893-04-05"^^xsd:date; + "1893-04-05"^^xsd:date; + "Tour"; + 16250; + "Actor"; + ; + ; + . + + a ; + "1893-04-06"^^xsd:date; + "1893-04-06"^^xsd:date; + "1893-04-06"^^xsd:date; + "1893-04-06"^^xsd:date; + "Tour"; + 16254; + "Actor"; + ; + ; + . + + a ; + "1893-04-07"^^xsd:date; + "1893-04-07"^^xsd:date; + "1893-04-07"^^xsd:date; + "1893-04-07"^^xsd:date; + "Tour"; + 16258; + "Actor"; + ; + ; + . + + a ; + "1893-04-15"^^xsd:date; + "1893-04-15"^^xsd:date; + "1893-04-10"^^xsd:date; + "1893-04-10"^^xsd:date; + "Tour"; + 16266; + "Actor"; + ; + ; + . + + a ; + "1893-04-17"^^xsd:date; + "1893-04-17"^^xsd:date; + "1893-04-17"^^xsd:date; + "1893-04-17"^^xsd:date; + "Tour"; + 16270; + "Actor"; + ; + ; + . + + a ; + "July 1861"; + "1861-07-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "July 1861"; + "1861-07-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "Other"; + 16274; + "Actor"; + ; + . + + a ; + "between July 1861 and December 1862"; + "1862-12-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "between July and December 1861"; + "1861-12-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "Other"; + 16278; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Itinerant"; + 1628; + ; + . + + a ; + "between July 1861 and December 1862"; + "1862-12-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "between July and December 1861"; + "1861-12-31"^^xsd:date; + "1861-07-01"^^xsd:date; + "Other"; + 16282; + "Actor"; + ; + . + + a ; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Other"; + 16286; + "Actor"; + ; + . + + a ; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Other"; + 16290; + "Actor"; + ; + . + + a ; + "Spring 1869"; + "1869-06-20"^^xsd:date; + "1869-03-21"^^xsd:date; + "Octorber 1865"; + "1865-10-31"^^xsd:date; + "1865-10-01"^^xsd:date; + "Other"; + 16294; + "Actor"; + ; + ; + . + + a ; + "1877-10-27"^^xsd:date; + "1877-10-27"^^xsd:date; + "1877-10-23"^^xsd:date; + "1877-10-23"^^xsd:date; + "Tour"; + 16298; + "Actor"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 163; + "Singer"; + "she sang together with Ludwig Schnorr von Carolsfeld"; + ; + ; + . + + a ; + "1877-10-29"^^xsd:date; + "1877-10-29"^^xsd:date; + "1877-10-29"^^xsd:date; + "1877-10-29"^^xsd:date; + "Tour"; + 16302; + "Actor"; + ; + ; + . + + a ; + "1877-10-30"^^xsd:date; + "1877-10-30"^^xsd:date; + "1877-10-30"^^xsd:date; + "1877-10-30"^^xsd:date; + "Tour"; + 16306; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Itinerant"; + 1631; + ; + . + + a ; + "1892-03-23"^^xsd:date; + "1892-03-23"^^xsd:date; + "1892-03-23"^^xsd:date; + "1892-03-23"^^xsd:date; + "Tour"; + 16310; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Itinerant"; + 1634; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Itinerant"; + 1637; + ; + . + + a ; + "1883-03-24"^^xsd:date; + "1883-03-24"^^xsd:date; + "1883-03-24"^^xsd:date; + "1883-03-24"^^xsd:date; + "Tour"; + 16374; + "Actor"; + ; + ; + . + + a ; + "1865"; + "1865-10-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Other"; + 16382; + "Actor"; + ; + . + + a ; + "1892-11-05"^^xsd:date; + "1892-11-05"^^xsd:date; + "1892-10-10"^^xsd:date; + "1892-10-10"^^xsd:date; + "Tour"; + 16386; + "Actor"; + ; + ; + . + + a ; + "1892-11-23"^^xsd:date; + "1892-11-23"^^xsd:date; + "1892-11-23"^^xsd:date; + "1892-11-23"^^xsd:date; + "Tour"; + 16390; + "Actor"; + ; + ; + . + + a ; + "1892-11-28"^^xsd:date; + "1892-11-28"^^xsd:date; + "1892-11-28"^^xsd:date; + "1892-11-28"^^xsd:date; + "Tour"; + 16394; + "Actor"; + ; + ; + . + + a ; + "1892-12-17"^^xsd:date; + "1892-12-17"^^xsd:date; + "1892-12-05"^^xsd:date; + "1892-12-05"^^xsd:date; + "Tour"; + 16398; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 164; + "Singer"; + ""; + ; + ; + . + + a ; + "-"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "25th February 1904"; + "1904-02-24"^^xsd:date; + "1904-02-25"^^xsd:date; + "Tour"; + 1640; + ; + ; + . + + a ; + "1892-12-29"^^xsd:date; + "1892-12-29"^^xsd:date; + "1892-12-29"^^xsd:date; + "1892-12-29"^^xsd:date; + "Tour"; + 16402; + "Actor"; + ; + ; + . + + a ; + "1892-12-31"^^xsd:date; + "1892-12-31"^^xsd:date; + "1892-12-31"^^xsd:date; + "1892-12-31"^^xsd:date; + "Tour"; + 16406; + "Actor"; + ; + ; + . + + a ; + "1893-01-03"^^xsd:date; + "1893-01-03"^^xsd:date; + "1893-01-03"^^xsd:date; + "1893-01-03"^^xsd:date; + "Tour"; + 16410; + "Actor"; + ; + ; + . + + a ; + "1893-01-07"^^xsd:date; + "1893-01-07"^^xsd:date; + "1893-01-05"^^xsd:date; + "1893-01-05"^^xsd:date; + "Tour"; + 16414; + "Actor"; + ; + ; + . + + a ; + "1893-01-14"^^xsd:date; + "1893-01-14"^^xsd:date; + "1893-01-12"^^xsd:date; + "1893-01-12"^^xsd:date; + "Tour"; + 16418; + "Actor"; + ; + ; + . + + a ; + "1893-01-19"^^xsd:date; + "1893-01-19"^^xsd:date; + "1893-01-19"^^xsd:date; + "1893-01-19"^^xsd:date; + "Tour"; + 16422; + "Actor"; + ; + ; + . + + a ; + "1893-01-21"^^xsd:date; + "1893-01-21"^^xsd:date; + "1893-01-21"^^xsd:date; + "1893-01-21"^^xsd:date; + "Tour"; + 16426; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Itinerant"; + 1643; + ; + . + + a ; + "1893-01-23"^^xsd:date; + "1893-01-23"^^xsd:date; + "1893-01-23"^^xsd:date; + "1893-01-23"^^xsd:date; + "Tour"; + 16430; + "Actor"; + ; + . + + a ; + "1893-01-25"^^xsd:date; + "1893-01-25"^^xsd:date; + "1893-01-25"^^xsd:date; + "1893-01-25"^^xsd:date; + "Tour"; + 16434; + "Actor"; + ; + ; + . + + a ; + "1893-02-04"^^xsd:date; + "1893-02-04"^^xsd:date; + "1893-01-30"^^xsd:date; + "1893-01-30"^^xsd:date; + "Tour"; + 16438; + "Actor"; + ; + . + + a ; + "1893-02-15"^^xsd:date; + "1893-02-15"^^xsd:date; + "1893-02-13"^^xsd:date; + "1893-02-13"^^xsd:date; + "Tour"; + 16442; + "Actor"; + ; + . + + a ; + "1893-02-20"^^xsd:date; + "1893-02-20"^^xsd:date; + "1893-02-20"^^xsd:date; + "1893-02-20"^^xsd:date; + "Tour"; + 16446; + "Actor"; + ; + . + + a ; + "1893-02-25"^^xsd:date; + "1893-02-25"^^xsd:date; + "1893-02-22"^^xsd:date; + "1893-02-22"^^xsd:date; + "Tour"; + 16450; + "Actor"; + ; + . + + a ; + "Guest"; + 16458; + "Other"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Itinerant"; + 1646; + ; + . + + a ; + "Guest"; + 16462; + "Other"; + ; + ; + . + + a ; + "December 1825"; + "1825-12-31"^^xsd:date; + "1825-12-01"^^xsd:date; + "December 1825"; + "1825-12-31"^^xsd:date; + "1825-12-01"^^xsd:date; + "Tour"; + 16466; + "Actor"; + ; + . + + a ; + "-"; + "Probably 1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 16470; + "Actor"; + "Firewall presentation"; + ; + . + + a ; + "-"; + "Probably 1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Guest"; + 16471; + "Actor"; + "Liverpool Theatre"; + ; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16474; + "Actor"; + ; + . + + a ; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16475; + "Actor"; + ; + . + + a ; + "Between Summer 1837 and 1838"; + "1838-12-31"^^xsd:date; + "1837-06-24"^^xsd:date; + "Summer 1837"; + "1837-09-23"^^xsd:date; + "1837-06-24"^^xsd:date; + "Tour"; + 16478; + "Actor"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Tour"; + 16482; + "Actor"; + ; + ; + . + + a ; + "-"; + "October 1842"; + "1842-10-31"^^xsd:date; + "1842-10-01"^^xsd:date; + "Tour"; + 16486; + "Actor"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Itinerant"; + 1649; + ; + . + + a ; + "-"; + "May 1849"; + "1849-05-31"^^xsd:date; + "1849-05-01"^^xsd:date; + "Tour"; + 16490; + "Actor"; + ; + ; + . + + a ; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Late 1849"; + "1849-12-31"^^xsd:date; + "1849-09-01"^^xsd:date; + "Guest"; + 16494; + "Actor"; + ; + . + + a ; + "-"; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 16498; + "Actor"; + "Brougham Lyceum"; + ; + . + + a ; + "Tour"; + 165; + "Singer"; + "Teacher (Theatre related)"; + """UA: Tristan und Isolde, title role together with her husband. after the death of her husband (21.7.1865) she withdrew from the stage +"""; + ; + ; + . + + a ; + "1818, 1819 and 1820"; + "1820-12-31"^^xsd:date; + "1818-01-01"^^xsd:date; + "1818, 1819 and 1820"; + "1820-12-31"^^xsd:date; + "1818-01-01"^^xsd:date; + "Guest"; + 16502; + "Actor"; + ; + . + + a ; + "1821"; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + "1820"; + "1820-12-31"^^xsd:date; + "1820-01-01"^^xsd:date; + "Tour"; + 16506; + "Actor"; + "Tour in England, Ireland and Scotland"; + ; + . + + a ; + "1821"; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + "1820"; + "1820-12-31"^^xsd:date; + "1820-01-01"^^xsd:date; + "Tour"; + 16510; + "Actor"; + "Tour in England, Ireland and Scotland"; + ; + . + + a ; + "1821"; + "1821-12-31"^^xsd:date; + "1821-01-01"^^xsd:date; + "1820"; + "1820-12-31"^^xsd:date; + "1820-01-01"^^xsd:date; + "Tour"; + 16514; + "Actor"; + "Tour in England, Ireland and Scotland"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16518; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16522; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16526; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16530; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16534; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16538; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16542; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16546; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16550; + "Actor"; + "Frankfort - Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16554; + "Actor"; + "Lexington - Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16558; + "Actor"; + "Vicksburg - Tour around South and West of US"; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 16562; + "Actor"; + "Natchez - Tour around South and West of US"; + ; + . + + a ; + "between 01.01.1878 und 30.04.1878"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 16570; + "Actor"; + ; + . + + a ; + "Tour"; + 166; + "Teacher (Theatre related)"; + ""; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Permanent"; + 1664; + "Singer"; + ; + ; + . + + a ; + "July 1891"; + "1891-07-31"^^xsd:date; + "1891-07-01"^^xsd:date; + "June 1891"; + "1891-06-30"^^xsd:date; + "1891-06-01"^^xsd:date; + """Opera singer +"""; + "Tour"; + 1667; + "Singer"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "-"; + "Tour"; + 1670; + "Singer"; + ; + . + + a ; + "Between 1892 and 1893"; + "1893-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "between 1892 and 1893"; + "1893-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 1673; + "Singer"; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 16766; + "Other"; + "Military service"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Guest"; + 16770; + "Actor"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + "Tour"; + 16774; + "Director"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Tour"; + 16778; + "Actor"; + ; + ; + . + + a ; + "August 1914"; + "1914-08-31"^^xsd:date; + "1914-08-01"^^xsd:date; + "Guest"; + 16782; + "Actor"; + ; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 16786; + "Actor"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 16790; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 16794; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 16798; + "Actor"; + ; + ; + . + + a ; + "Singer, Theatre owner, Direktor, Gesangslehrer"; + "Tour"; + 168; + ""; + ; + ; + . + + a ; + "Tour"; + 16802; + "Actor"; + ; + ; + . + + a ; + "December 1926"; + "Tour"; + 16806; + "Actor"; + ; + ; + . + + a ; + "April 1927"; + "Permanent"; + 16810; + "Actor"; + "to benefit the Shakespeare Memorial Theatre Fund"; + ; + ; + . + + a ; + "December 1927"; + "Permanent"; + 16814; + "Actor"; + ; + ; + . + + a ; + "30th May 1927"; + "Other"; + 16818; + "Director"; + "Author"; + ; + ; + . + + a ; + "28th February 1928"; + "Other"; + 16822; + "Author"; + "Actor"; + ; + ; + . + + a ; + "June 1928"; + "Other"; + 16826; + "Author"; + "Actor"; + ; + ; + . + + a ; + "26th December 1928"; + "Tour"; + 16827; + "Author"; + ; + ; + . + + a ; + "September 1929"; + "Tour"; + 16830; + "Author"; + ; + ; + ; + . + + a ; + "Between 1929 and 1930"; + "Tour"; + 16834; + "Author"; + ; + ; + . + + a ; + "Between 1929 and 1930"; + "Tour"; + 16835; + "Author"; + ; + ; + . + + a ; + "1923"; + "Tour"; + 16838; + "Actor"; + ; + ; + ; + . + + a ; + "1923"; + "Tour"; + 16842; + "Actor"; + ; + ; + . + + a ; + "Autumm 1924"; + "Tour"; + 16846; + "Actor"; + ; + ; + . + + a ; + "March 1925"; + "Tour"; + 16850; + "Actor"; + ; + ; + . + + a ; + "September 1925"; + "Tour"; + 16854; + "Actor"; + ; + . + + a ; + "15th October 1931"; + "Tour"; + 16858; + "Author"; + "Director"; + ; + ; + . + + a ; + "February 1932"; + "Tour"; + 16862; + "Author"; + "Actor"; + "Director"; + ; + ; + . + + a ; + "Between 1932 and 1933"; + "Tour"; + 16866; + "Author"; + "Actor"; + ; + ; + . + + a ; + "Janury 1936"; + "Tour"; + 16870; + "Author"; + ; + ; + . + + a ; + "15th April 1929"; + "Tour"; + 16874; + "Author"; + ; + ; + . + + a ; + "Between 1940 and 1941"; + "Tour"; + 16878; + "Author"; + ; + ; + . + + a ; + "1882"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1880"; + "Permanent"; + 1688; + "Singer"; + ; + ; + . + + a ; + "Between 1941 and 1942"; + "Tour"; + 16882; + "Author"; + ; + ; + . + + a ; + "1943"; + "Tour"; + 16886; + "Author"; + ; + ; + . + + a ; + "June 1944"; + "Tour"; + 16890; + "Author"; + ; + ; + . + + a ; + "September 1946"; + "1946"; + "Tour"; + 16894; + "Author"; + ; + ; + . + + a ; + "September 1931"; + "Tour"; + 16898; + "Author"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 169; + "Manager"; + ; + ; + . + + a ; + "1933"; + "Tour"; + 16902; + "Author"; + ; + ; + . + + a ; + "April 1937"; + "Permanent"; + 16906; + "Author"; + ; + ; + . + + a ; + "1882"; + "Permanent"; + 1691; + "Singer"; + ; + ; + . + + a ; + "1939"; + "Tour"; + 16910; + "Author"; + ; + ; + . + + a ; + "Between 1950 and 1952"; + "Tour"; + 16914; + "Author"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 16918; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 16922; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 16926; + "Actor"; + "Director"; + ; + ; + . + + a ; + "February 1910"; + "1910-02-28"^^xsd:date; + "1910-02-01"^^xsd:date; + "February 1910"; + "1910-02-10"^^xsd:date; + "1910-02-01"^^xsd:date; + "Guest"; + 16930; + "Actor"; + "Director"; + ; + ; + . + + a ; + "17th September 1909"; + "1909-09-17"^^xsd:date; + "1909-09-17"^^xsd:date; + "Probably 1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 16934; + "Director"; + ; + ; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 16938; + ; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 16946; + ; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 16950; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 16954; + "Director"; + "Founder"; + ; + ; + ; + . + + a ; + "Tour"; + 16958; + ; + . + + a ; + "Tour"; + 16962; + ; + . + + a ; + "Tour"; + 16966; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Permanent"; + 1697; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 16970; + ; + . + + a ; + "Tour"; + 16974; + ; + . + + a ; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 16978; + "Actor"; + ; + . + + a ; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 16982; + "Actor"; + ; + . + + a ; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "between 1910 and 1933"; + "1933-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 16986; + ; + . + + a ; + "Tour"; + 16990; + "Director"; + ; + . + + a ; + "Tour"; + 16994; + "Royal Theatre"; + ; + . + + a ; + "Tour"; + 16995; + "Globe Theatre in Cleveland"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 16997; + "Director"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Tour"; + 17; + "Singer"; + "Carnival 1847, Rom"; + ; + . + + a ; + "Tour"; + 170; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 1700; + ; + ; + . + + a ; + "1893-04-18"^^xsd:date; + "1893-04-18"^^xsd:date; + "1893-04-18"^^xsd:date; + "1893-04-18"^^xsd:date; + "Tour"; + 17000; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-04-22"^^xsd:date; + "1893-04-22"^^xsd:date; + "1893-04-21"^^xsd:date; + "1893-04-21"^^xsd:date; + "Tour"; + 17001; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-04-29"^^xsd:date; + "1893-04-29"^^xsd:date; + "1893-04-24"^^xsd:date; + "1893-04-24"^^xsd:date; + "Tour"; + 17002; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-05-07"^^xsd:date; + "1893-05-07"^^xsd:date; + "1893-05-01"^^xsd:date; + "1893-05-01"^^xsd:date; + "Tour"; + 17003; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-05-11"^^xsd:date; + "1893-05-11"^^xsd:date; + "1893-05-11"^^xsd:date; + "1893-05-11"^^xsd:date; + "Tour"; + 17004; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-10-03"^^xsd:date; + "1893-10-03"^^xsd:date; + "1893-10-03"^^xsd:date; + "1893-10-03"^^xsd:date; + "Tour"; + 17005; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-11"^^xsd:date; + "1893-10-11"^^xsd:date; + "1893-10-09"^^xsd:date; + "1893-10-09"^^xsd:date; + "Tour"; + 17006; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-14"^^xsd:date; + "1893-10-14"^^xsd:date; + "1893-10-12"^^xsd:date; + "1893-10-12"^^xsd:date; + "Tour"; + 17007; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-19"^^xsd:date; + "1893-10-19"^^xsd:date; + "1893-10-18"^^xsd:date; + "1893-10-18"^^xsd:date; + "Tour"; + 17008; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-20"^^xsd:date; + "1893-10-20"^^xsd:date; + "1893-10-20"^^xsd:date; + "1893-10-20"^^xsd:date; + "Tour"; + 17009; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-21"^^xsd:date; + "1893-10-21"^^xsd:date; + "1893-10-21"^^xsd:date; + "1893-10-21"^^xsd:date; + "Tour"; + 17010; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-25"^^xsd:date; + "1893-10-25"^^xsd:date; + "1893-10-23"^^xsd:date; + "1893-10-23"^^xsd:date; + "Tour"; + 17011; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-28"^^xsd:date; + "1893-10-28"^^xsd:date; + "1893-10-26"^^xsd:date; + "1893-10-26"^^xsd:date; + "Tour"; + 17012; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-10-30"^^xsd:date; + "1893-10-30"^^xsd:date; + "1893-10-30"^^xsd:date; + "1893-10-30"^^xsd:date; + "Tour"; + 17013; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-03"^^xsd:date; + "1893-11-03"^^xsd:date; + "1893-11-02"^^xsd:date; + "1893-11-02"^^xsd:date; + "Tour"; + 17014; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-04"^^xsd:date; + "1893-11-04"^^xsd:date; + "1893-11-04"^^xsd:date; + "1893-11-04"^^xsd:date; + "Tour"; + 17015; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-07"^^xsd:date; + "1893-11-07"^^xsd:date; + "1893-11-07"^^xsd:date; + "1893-11-07"^^xsd:date; + "Tour"; + 17016; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-08"^^xsd:date; + "1893-11-08"^^xsd:date; + "1893-11-08"^^xsd:date; + "1893-11-08"^^xsd:date; + "Tour"; + 17017; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-11"^^xsd:date; + "1893-11-11"^^xsd:date; + "1893-11-10"^^xsd:date; + "1893-11-10"^^xsd:date; + "Tour"; + 17018; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-11-15"^^xsd:date; + "1893-11-15"^^xsd:date; + "1893-11-13"^^xsd:date; + "1893-11-13"^^xsd:date; + "Tour"; + 17019; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-11-18"^^xsd:date; + "1893-11-18"^^xsd:date; + "1893-11-16"^^xsd:date; + "1893-11-16"^^xsd:date; + "Tour"; + 17020; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-12-10"^^xsd:date; + "1893-12-10"^^xsd:date; + "1893-11-27"^^xsd:date; + "1893-11-27"^^xsd:date; + "Tour"; + 17021; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-11"^^xsd:date; + "1893-12-11"^^xsd:date; + "1893-12-11"^^xsd:date; + "1893-12-11"^^xsd:date; + "Tour"; + 17022; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-12"^^xsd:date; + "1893-12-12"^^xsd:date; + "1893-12-12"^^xsd:date; + "1893-12-12"^^xsd:date; + "Tour"; + 17023; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-12-13"^^xsd:date; + "1893-12-13"^^xsd:date; + "1893-12-13"^^xsd:date; + "1893-12-13"^^xsd:date; + "Tour"; + 17024; + "Actor"; + ""; + ""; + ; + . + + a ; + "1893-12-14"^^xsd:date; + "1893-12-14"^^xsd:date; + "1893-12-14"^^xsd:date; + "1893-12-14"^^xsd:date; + "Tour"; + 17025; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-15"^^xsd:date; + "1893-12-15"^^xsd:date; + "1893-12-15"^^xsd:date; + "1893-12-15"^^xsd:date; + "Tour"; + 17026; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-16"^^xsd:date; + "1893-12-16"^^xsd:date; + "1893-12-16"^^xsd:date; + "1893-12-16"^^xsd:date; + "Tour"; + 17027; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-19"^^xsd:date; + "1893-12-19"^^xsd:date; + "1893-12-18"^^xsd:date; + "1893-12-18"^^xsd:date; + "Tour"; + 17028; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-20"^^xsd:date; + "1893-12-20"^^xsd:date; + "1893-12-20"^^xsd:date; + "1893-12-20"^^xsd:date; + "Tour"; + 17029; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 1703; + ; + ; + . + + a ; + "1893-12-21"^^xsd:date; + "1893-12-21"^^xsd:date; + "1893-12-21"^^xsd:date; + "1893-12-21"^^xsd:date; + "Tour"; + 17030; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-23"^^xsd:date; + "1893-12-23"^^xsd:date; + "1893-12-22"^^xsd:date; + "1893-12-22"^^xsd:date; + "Tour"; + 17031; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1893-12-30"^^xsd:date; + "1893-12-30"^^xsd:date; + "1893-12-25"^^xsd:date; + "1893-12-25"^^xsd:date; + "Tour"; + 17032; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-01"^^xsd:date; + "1894-01-01"^^xsd:date; + "1894-01-01"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 17033; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-03"^^xsd:date; + "1894-01-03"^^xsd:date; + "1894-01-02"^^xsd:date; + "1894-01-02"^^xsd:date; + "Tour"; + 17034; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-04"^^xsd:date; + "1894-01-04"^^xsd:date; + "1894-01-04"^^xsd:date; + "1894-01-04"^^xsd:date; + "Tour"; + 17035; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-01-06"^^xsd:date; + "1894-01-06"^^xsd:date; + "1894-01-05"^^xsd:date; + "1894-01-05"^^xsd:date; + "Tour"; + 17036; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-08"^^xsd:date; + "1894-01-08"^^xsd:date; + "1894-01-08"^^xsd:date; + "1894-01-08"^^xsd:date; + "Tour"; + 17037; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-19"^^xsd:date; + "1894-01-19"^^xsd:date; + "1894-01-19"^^xsd:date; + "1894-01-19"^^xsd:date; + "Tour"; + 17038; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-10"^^xsd:date; + "1894-01-10"^^xsd:date; + "1894-01-10"^^xsd:date; + "1894-01-10"^^xsd:date; + "Tour"; + 17039; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-11"^^xsd:date; + "1894-01-11"^^xsd:date; + "1894-01-11"^^xsd:date; + "1894-01-11"^^xsd:date; + "Tour"; + 17040; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-13"^^xsd:date; + "1894-01-13"^^xsd:date; + "1894-01-12"^^xsd:date; + "1894-01-12"^^xsd:date; + "Tour"; + 17041; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-20"^^xsd:date; + "1894-01-20"^^xsd:date; + "1894-01-15"^^xsd:date; + "1894-01-15"^^xsd:date; + "Tour"; + 17042; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-01-27"^^xsd:date; + "1894-01-27"^^xsd:date; + "1894-01-22"^^xsd:date; + "1894-01-22"^^xsd:date; + "Tour"; + 17043; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-10"^^xsd:date; + "1894-02-10"^^xsd:date; + "1894-01-29"^^xsd:date; + "1894-01-29"^^xsd:date; + "Tour"; + 17044; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-17"^^xsd:date; + "1894-02-17"^^xsd:date; + "1894-02-12"^^xsd:date; + "1894-02-12"^^xsd:date; + "Tour"; + 17045; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-19"^^xsd:date; + "1894-02-19"^^xsd:date; + "1894-02-19"^^xsd:date; + "1894-02-19"^^xsd:date; + "Tour"; + 17046; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-02-20"^^xsd:date; + "1894-02-20"^^xsd:date; + "1894-02-20"^^xsd:date; + "1894-02-20"^^xsd:date; + "Tour"; + 17047; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-21"^^xsd:date; + "1894-02-21"^^xsd:date; + "1894-02-21"^^xsd:date; + "1894-02-21"^^xsd:date; + "Tour"; + 17048; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-22"^^xsd:date; + "1894-02-22"^^xsd:date; + "1894-02-22"^^xsd:date; + "1894-02-22"^^xsd:date; + "Tour"; + 17049; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-23"^^xsd:date; + "1894-02-23"^^xsd:date; + "1894-02-23"^^xsd:date; + "1894-02-23"^^xsd:date; + "Tour"; + 17050; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-24"^^xsd:date; + "1894-02-24"^^xsd:date; + "1894-02-24"^^xsd:date; + "1894-02-24"^^xsd:date; + "Tour"; + 17051; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-26"^^xsd:date; + "1894-02-26"^^xsd:date; + "1894-02-26"^^xsd:date; + "1894-02-26"^^xsd:date; + "Tour"; + 17052; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-02-27"^^xsd:date; + "1894-02-27"^^xsd:date; + "1894-02-27"^^xsd:date; + "1894-02-27"^^xsd:date; + "Tour"; + 17053; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-02-28"^^xsd:date; + "1894-02-28"^^xsd:date; + "1894-02-28"^^xsd:date; + "1894-02-28"^^xsd:date; + "Tour"; + 17054; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-03-01"^^xsd:date; + "1894-03-01"^^xsd:date; + "1894-03-01"^^xsd:date; + "1894-03-01"^^xsd:date; + "Tour"; + 17055; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-03-02"^^xsd:date; + "1894-03-02"^^xsd:date; + "1894-03-02"^^xsd:date; + "1894-03-02"^^xsd:date; + "Tour"; + 17056; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-03-03"^^xsd:date; + "1894-03-03"^^xsd:date; + "1894-03-03"^^xsd:date; + "1894-03-03"^^xsd:date; + "Tour"; + 17057; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-03-10"^^xsd:date; + "1894-03-10"^^xsd:date; + "1894-03-05"^^xsd:date; + "1894-03-05"^^xsd:date; + "Tour"; + 17058; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-03-14"^^xsd:date; + "1894-03-14"^^xsd:date; + "1894-03-12"^^xsd:date; + "1894-03-12"^^xsd:date; + "Tour"; + 17059; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-03-15"^^xsd:date; + "1894-03-15"^^xsd:date; + "1894-03-15"^^xsd:date; + "1894-03-15"^^xsd:date; + "Tour"; + 17060; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-03-16"^^xsd:date; + "1894-03-16"^^xsd:date; + "1894-03-16"^^xsd:date; + "1894-03-16"^^xsd:date; + "Tour"; + 17061; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-03-17"^^xsd:date; + "1894-03-17"^^xsd:date; + "1894-03-17"^^xsd:date; + "1894-03-17"^^xsd:date; + "Tour"; + 17062; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-03-31"^^xsd:date; + "1894-03-31"^^xsd:date; + "1894-03-29"^^xsd:date; + "1894-03-29"^^xsd:date; + "Tour"; + 17063; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-04-07"^^xsd:date; + "1894-04-07"^^xsd:date; + "1894-04-02"^^xsd:date; + "1894-04-02"^^xsd:date; + "Tour"; + 17064; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-04-14"^^xsd:date; + "1894-04-14"^^xsd:date; + "1894-04-12"^^xsd:date; + "1894-04-12"^^xsd:date; + "Tour"; + 17065; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-04-17"^^xsd:date; + "1894-04-17"^^xsd:date; + "1894-04-17"^^xsd:date; + "1894-04-17"^^xsd:date; + "Tour"; + 17066; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-04-19"^^xsd:date; + "1894-04-19"^^xsd:date; + "1894-04-19"^^xsd:date; + "1894-04-19"^^xsd:date; + "Tour"; + 17067; + "Actor"; + ""; + ""; + ; + . + + a ; + "1894-04-20"^^xsd:date; + "1894-04-20"^^xsd:date; + "1894-04-20"^^xsd:date; + "1894-04-20"^^xsd:date; + "Tour"; + 17068; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-04-21"^^xsd:date; + "1894-04-21"^^xsd:date; + "1894-04-21"^^xsd:date; + "1894-04-21"^^xsd:date; + "Tour"; + 17069; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1894-05-12"^^xsd:date; + "1894-05-12"^^xsd:date; + "1894-04-21"^^xsd:date; + "1894-04-21"^^xsd:date; + "Tour"; + 17070; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-09-22"^^xsd:date; + "1895-06-21"^^xsd:date; + "1894-10-31"^^xsd:date; + "1894-10-01"^^xsd:date; + "Tour"; + 17071; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-10-19"^^xsd:date; + "1895-10-19"^^xsd:date; + "1895-10-07"^^xsd:date; + "1895-10-07"^^xsd:date; + "Tour"; + 17072; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-10-26"^^xsd:date; + "1895-10-26"^^xsd:date; + "1895-10-21"^^xsd:date; + "1895-10-21"^^xsd:date; + "Tour"; + 17073; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-10-28"^^xsd:date; + "1895-10-28"^^xsd:date; + "1895-10-28"^^xsd:date; + "1895-10-28"^^xsd:date; + "Tour"; + 17074; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-10-29"^^xsd:date; + "1895-10-29"^^xsd:date; + "1895-10-29"^^xsd:date; + "1895-10-29"^^xsd:date; + "Tour"; + 17075; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-10-30"^^xsd:date; + "1895-10-30"^^xsd:date; + "1895-10-30"^^xsd:date; + "1895-10-30"^^xsd:date; + "Tour"; + 17076; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-11-02"^^xsd:date; + "1895-11-02"^^xsd:date; + "1895-10-31"^^xsd:date; + "1895-10-31"^^xsd:date; + "Tour"; + 17077; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-04"^^xsd:date; + "1895-11-04"^^xsd:date; + "1895-11-04"^^xsd:date; + "1895-11-04"^^xsd:date; + "Tour"; + 17078; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-06"^^xsd:date; + "1895-11-06"^^xsd:date; + "1895-11-06"^^xsd:date; + "1895-11-06"^^xsd:date; + "Tour"; + 17079; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-11-08"^^xsd:date; + "1895-11-08"^^xsd:date; + "1895-11-08"^^xsd:date; + "1895-11-08"^^xsd:date; + "Tour"; + 17080; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-11-09"^^xsd:date; + "1895-11-09"^^xsd:date; + "1895-11-09"^^xsd:date; + "1895-11-09"^^xsd:date; + "Tour"; + 17081; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-11"^^xsd:date; + "1895-11-11"^^xsd:date; + "1895-11-11"^^xsd:date; + "1895-11-11"^^xsd:date; + "Tour"; + 17082; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-12"^^xsd:date; + "1895-11-12"^^xsd:date; + "1895-11-12"^^xsd:date; + "1895-11-12"^^xsd:date; + "Tour"; + 17083; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-13"^^xsd:date; + "1895-11-13"^^xsd:date; + "1895-11-13"^^xsd:date; + "1895-11-13"^^xsd:date; + "Tour"; + 17084; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-14"^^xsd:date; + "1895-11-14"^^xsd:date; + "1895-11-14"^^xsd:date; + "1895-11-14"^^xsd:date; + "Tour"; + 17085; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-16"^^xsd:date; + "1895-11-16"^^xsd:date; + "1895-11-16"^^xsd:date; + "1895-11-16"^^xsd:date; + "Tour"; + 17086; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-11-30"^^xsd:date; + "1895-11-30"^^xsd:date; + "1895-11-18"^^xsd:date; + "1895-11-18"^^xsd:date; + "Tour"; + 17087; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-12-02"^^xsd:date; + "1895-12-02"^^xsd:date; + "1895-12-02"^^xsd:date; + "1895-12-02"^^xsd:date; + "Tour"; + 17088; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-04"^^xsd:date; + "1895-12-04"^^xsd:date; + "1895-12-04"^^xsd:date; + "1895-12-04"^^xsd:date; + "Tour"; + 17089; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "Tour"; + 17090; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "1895-12-05"^^xsd:date; + "Tour"; + 17091; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-07"^^xsd:date; + "1895-12-07"^^xsd:date; + "1895-12-07"^^xsd:date; + "1895-12-07"^^xsd:date; + "Tour"; + 17092; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-12-14"^^xsd:date; + "1895-12-14"^^xsd:date; + "1895-12-09"^^xsd:date; + "1895-12-09"^^xsd:date; + "Tour"; + 17093; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-17"^^xsd:date; + "1895-12-17"^^xsd:date; + "1895-12-16"^^xsd:date; + "1895-12-16"^^xsd:date; + "Tour"; + 17094; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1895-12-25"^^xsd:date; + "1895-12-25"^^xsd:date; + "1895-12-25"^^xsd:date; + "1895-12-25"^^xsd:date; + "Tour"; + 17095; + "Actor"; + ""; + ""; + ; + . + + a ; + "1895-12-26"^^xsd:date; + "1895-12-26"^^xsd:date; + "1895-12-26"^^xsd:date; + "1895-12-26"^^xsd:date; + "Tour"; + 17096; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1896-01-11"^^xsd:date; + "1896-01-11"^^xsd:date; + "1895-12-30"^^xsd:date; + "1895-12-30"^^xsd:date; + "Tour"; + 17097; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1896-01-18"^^xsd:date; + "1896-01-18"^^xsd:date; + "1896-01-13"^^xsd:date; + "1896-01-13"^^xsd:date; + "Tour"; + 17098; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-02-06"^^xsd:date; + "1897-02-06"^^xsd:date; + "1897-01-25"^^xsd:date; + "1897-01-25"^^xsd:date; + "Tour"; + 17099; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "Tour"; + 171; + "Teacher (Theatre related)"; + ; + . + + a ; + "1897-02-09"^^xsd:date; + "1897-02-09"^^xsd:date; + "1897-02-08"^^xsd:date; + "1897-02-08"^^xsd:date; + "Tour"; + 17100; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-02-13"^^xsd:date; + "1897-02-13"^^xsd:date; + "1897-02-10"^^xsd:date; + "1897-02-10"^^xsd:date; + "Tour"; + 17101; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-10-20"^^xsd:date; + "1897-10-20"^^xsd:date; + "1897-10-18"^^xsd:date; + "1897-10-18"^^xsd:date; + "Tour"; + 17102; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-10-22"^^xsd:date; + "1897-10-22"^^xsd:date; + "1897-10-21"^^xsd:date; + "1897-10-21"^^xsd:date; + "Tour"; + 17103; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-10-23"^^xsd:date; + "1897-10-23"^^xsd:date; + "1897-10-23"^^xsd:date; + "1897-10-23"^^xsd:date; + "Tour"; + 17104; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-10-25"^^xsd:date; + "1897-10-25"^^xsd:date; + "1897-10-25"^^xsd:date; + "1897-10-25"^^xsd:date; + "Tour"; + 17105; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-10-26"^^xsd:date; + "1897-10-26"^^xsd:date; + "1897-10-26"^^xsd:date; + "1897-10-26"^^xsd:date; + "Tour"; + 17106; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-10-27"^^xsd:date; + "1897-10-27"^^xsd:date; + "1897-10-27"^^xsd:date; + "1897-10-27"^^xsd:date; + "Tour"; + 17107; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-11-20"^^xsd:date; + "1897-11-20"^^xsd:date; + "1897-11-01"^^xsd:date; + "1897-11-01"^^xsd:date; + "Tour"; + 17108; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-11-23"^^xsd:date; + "1897-11-23"^^xsd:date; + "1897-11-22"^^xsd:date; + "1897-11-22"^^xsd:date; + "Tour"; + 17109; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-11-25"^^xsd:date; + "1897-11-25"^^xsd:date; + "1897-11-24"^^xsd:date; + "1897-11-24"^^xsd:date; + "Tour"; + 17110; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-11-27"^^xsd:date; + "1897-11-27"^^xsd:date; + "1897-11-26"^^xsd:date; + "1897-11-26"^^xsd:date; + "Tour"; + 17111; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-11-29"^^xsd:date; + "1897-11-29"^^xsd:date; + "1897-11-29"^^xsd:date; + "1897-11-29"^^xsd:date; + "Tour"; + 17112; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-03"^^xsd:date; + "1897-12-03"^^xsd:date; + "1897-12-03"^^xsd:date; + "1897-12-03"^^xsd:date; + "Tour"; + 17113; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-12-04"^^xsd:date; + "1897-12-04"^^xsd:date; + "1897-12-04"^^xsd:date; + "1897-12-04"^^xsd:date; + "Tour"; + 17114; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-08"^^xsd:date; + "1897-12-08"^^xsd:date; + "1897-12-06"^^xsd:date; + "1897-12-06"^^xsd:date; + "Tour"; + 17115; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-09"^^xsd:date; + "1897-12-09"^^xsd:date; + "1897-12-09"^^xsd:date; + "1897-12-09"^^xsd:date; + "Tour"; + 17116; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-11"^^xsd:date; + "1897-12-11"^^xsd:date; + "1897-12-10"^^xsd:date; + "1897-12-10"^^xsd:date; + "Tour"; + 17117; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-14"^^xsd:date; + "1897-12-14"^^xsd:date; + "1897-12-13"^^xsd:date; + "1897-12-13"^^xsd:date; + "Tour"; + 17118; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1897-12-15"^^xsd:date; + "1897-12-15"^^xsd:date; + "1897-12-15"^^xsd:date; + "1897-12-15"^^xsd:date; + "Tour"; + 17119; + "Actor"; + ""; + ""; + ; + . + + a ; + "1897-12-25"^^xsd:date; + "1897-12-25"^^xsd:date; + "1897-12-20"^^xsd:date; + "1897-12-20"^^xsd:date; + "Tour"; + 17120; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-03"^^xsd:date; + "1898-01-03"^^xsd:date; + "1898-01-03"^^xsd:date; + "1898-01-03"^^xsd:date; + "Tour"; + 17121; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-04"^^xsd:date; + "1898-01-04"^^xsd:date; + "1898-01-04"^^xsd:date; + "1898-01-04"^^xsd:date; + "Tour"; + 17122; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-05"^^xsd:date; + "1898-01-05"^^xsd:date; + "1898-01-05"^^xsd:date; + "1898-01-05"^^xsd:date; + "Tour"; + 17123; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-06"^^xsd:date; + "1898-01-06"^^xsd:date; + "1898-01-06"^^xsd:date; + "1898-01-06"^^xsd:date; + "Tour"; + 17124; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-08"^^xsd:date; + "1898-01-08"^^xsd:date; + "1898-01-07"^^xsd:date; + "1898-01-07"^^xsd:date; + "Tour"; + 17125; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-22"^^xsd:date; + "1898-01-22"^^xsd:date; + "1898-01-17"^^xsd:date; + "1898-01-17"^^xsd:date; + "Tour"; + 17126; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-25"^^xsd:date; + "1898-01-25"^^xsd:date; + "1898-01-24"^^xsd:date; + "1898-01-24"^^xsd:date; + "Tour"; + 17127; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-01-29"^^xsd:date; + "1898-01-29"^^xsd:date; + "1898-01-26"^^xsd:date; + "1898-01-26"^^xsd:date; + "Tour"; + 17128; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-01-31"^^xsd:date; + "1898-01-31"^^xsd:date; + "1898-01-31"^^xsd:date; + "1898-01-31"^^xsd:date; + "Tour"; + 17129; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-02-01"^^xsd:date; + "1898-02-01"^^xsd:date; + "1898-02-01"^^xsd:date; + "1898-02-01"^^xsd:date; + "Tour"; + 17130; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-02-02"^^xsd:date; + "1898-02-02"^^xsd:date; + "1898-02-02"^^xsd:date; + "1898-02-02"^^xsd:date; + "Tour"; + 17131; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-02-04"^^xsd:date; + "1898-02-04"^^xsd:date; + "1898-02-03"^^xsd:date; + "1898-02-03"^^xsd:date; + "Tour"; + 17132; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-02-05"^^xsd:date; + "1898-02-05"^^xsd:date; + "1898-02-05"^^xsd:date; + "1898-02-05"^^xsd:date; + "Tour"; + 17133; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-02-19"^^xsd:date; + "1898-02-19"^^xsd:date; + "1898-02-07"^^xsd:date; + "1898-02-07"^^xsd:date; + "Tour"; + 17134; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-02-22"^^xsd:date; + "1898-02-22"^^xsd:date; + "1898-02-22"^^xsd:date; + "1898-02-22"^^xsd:date; + "Tour"; + 17135; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-03-12"^^xsd:date; + "1898-03-12"^^xsd:date; + "1898-02-28"^^xsd:date; + "1898-02-28"^^xsd:date; + "Tour"; + 17136; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-03-20"^^xsd:date; + "1898-03-20"^^xsd:date; + "1898-03-20"^^xsd:date; + "1898-03-20"^^xsd:date; + "Tour"; + 17137; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-04-07"^^xsd:date; + "1898-04-07"^^xsd:date; + "1898-03-28"^^xsd:date; + "1898-03-28"^^xsd:date; + "Tour"; + 17138; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-07-07"^^xsd:date; + "1898-07-07"^^xsd:date; + "1898-06-13"^^xsd:date; + "1898-06-13"^^xsd:date; + "Tour"; + 17139; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-09-03"^^xsd:date; + "1898-09-03"^^xsd:date; + "1898-09-01"^^xsd:date; + "1898-09-01"^^xsd:date; + "Tour"; + 17140; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + "Tour"; + 17141; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-09-10"^^xsd:date; + "1898-09-10"^^xsd:date; + "1898-09-07"^^xsd:date; + "1898-09-07"^^xsd:date; + "Tour"; + 17142; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-09-24"^^xsd:date; + "1898-09-24"^^xsd:date; + "1898-09-12"^^xsd:date; + "1898-09-12"^^xsd:date; + "Tour"; + 17143; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-09-28"^^xsd:date; + "1898-09-28"^^xsd:date; + "1898-09-26"^^xsd:date; + "1898-09-26"^^xsd:date; + "Tour"; + 17144; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-09-29"^^xsd:date; + "1898-09-29"^^xsd:date; + "1898-09-29"^^xsd:date; + "1898-09-29"^^xsd:date; + "Tour"; + 17145; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-09-30"^^xsd:date; + "1898-09-30"^^xsd:date; + "1898-09-30"^^xsd:date; + "1898-09-30"^^xsd:date; + "Tour"; + 17146; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-10-01"^^xsd:date; + "1898-10-01"^^xsd:date; + "1898-10-01"^^xsd:date; + "1898-10-01"^^xsd:date; + "Tour"; + 17147; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-10-03"^^xsd:date; + "1898-10-03"^^xsd:date; + "1898-10-03"^^xsd:date; + "1898-10-03"^^xsd:date; + "Tour"; + 17148; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-10-06"^^xsd:date; + "1898-10-06"^^xsd:date; + "1898-10-06"^^xsd:date; + "1898-10-06"^^xsd:date; + "Tour"; + 17149; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-10-07"^^xsd:date; + "1898-10-07"^^xsd:date; + "1898-10-07"^^xsd:date; + "1898-10-07"^^xsd:date; + "Tour"; + 17150; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-10-10"^^xsd:date; + "1898-10-10"^^xsd:date; + "1898-10-10"^^xsd:date; + "1898-10-10"^^xsd:date; + "Tour"; + 17151; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-10-12"^^xsd:date; + "1898-10-12"^^xsd:date; + "1898-10-11"^^xsd:date; + "1898-10-11"^^xsd:date; + "Tour"; + 17152; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-10-13"^^xsd:date; + "1898-10-13"^^xsd:date; + "1898-10-13"^^xsd:date; + "1898-10-13"^^xsd:date; + "Tour"; + 17153; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-10-15"^^xsd:date; + "1898-10-15"^^xsd:date; + "1898-10-14"^^xsd:date; + "1898-10-14"^^xsd:date; + "Tour"; + 17154; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-05"^^xsd:date; + "1898-11-05"^^xsd:date; + "1898-10-17"^^xsd:date; + "1898-10-17"^^xsd:date; + "Tour"; + 17155; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-12"^^xsd:date; + "1898-11-12"^^xsd:date; + "1898-11-07"^^xsd:date; + "1898-11-07"^^xsd:date; + "Tour"; + 17156; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-19"^^xsd:date; + "1898-11-19"^^xsd:date; + "1898-11-14"^^xsd:date; + "1898-11-14"^^xsd:date; + "Tour"; + 17157; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-11-22"^^xsd:date; + "1898-11-22"^^xsd:date; + "1898-11-22"^^xsd:date; + "1898-11-22"^^xsd:date; + "Tour"; + 17158; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-24"^^xsd:date; + "1898-11-24"^^xsd:date; + "1898-11-23"^^xsd:date; + "1898-11-23"^^xsd:date; + "Tour"; + 17159; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-25"^^xsd:date; + "1898-11-25"^^xsd:date; + "1898-11-25"^^xsd:date; + "1898-11-25"^^xsd:date; + "Tour"; + 17160; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-26"^^xsd:date; + "1898-11-26"^^xsd:date; + "1898-11-26"^^xsd:date; + "1898-11-26"^^xsd:date; + "Tour"; + 17161; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-11-28"^^xsd:date; + "1898-11-28"^^xsd:date; + "1898-11-28"^^xsd:date; + "1898-11-28"^^xsd:date; + "Tour"; + 17162; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-11-30"^^xsd:date; + "1898-11-30"^^xsd:date; + "1898-11-30"^^xsd:date; + "1898-11-30"^^xsd:date; + "Tour"; + 17163; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-12-01"^^xsd:date; + "1898-12-01"^^xsd:date; + "1898-12-01"^^xsd:date; + "1898-12-01"^^xsd:date; + "Tour"; + 17164; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-02"^^xsd:date; + "1898-12-02"^^xsd:date; + "1898-12-02"^^xsd:date; + "1898-12-02"^^xsd:date; + "Tour"; + 17165; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-03"^^xsd:date; + "1898-12-03"^^xsd:date; + "1898-12-03"^^xsd:date; + "1898-12-03"^^xsd:date; + "Tour"; + 17166; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-10"^^xsd:date; + "1898-12-10"^^xsd:date; + "1898-12-05"^^xsd:date; + "1898-12-05"^^xsd:date; + "Tour"; + 17167; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-17"^^xsd:date; + "1898-12-17"^^xsd:date; + "1898-12-12"^^xsd:date; + "1898-12-12"^^xsd:date; + "Tour"; + 17168; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-26"^^xsd:date; + "1898-12-26"^^xsd:date; + "1898-12-26"^^xsd:date; + "1898-12-26"^^xsd:date; + "Tour"; + 17169; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-28"^^xsd:date; + "1898-12-28"^^xsd:date; + "1898-12-28"^^xsd:date; + "1898-12-28"^^xsd:date; + "Tour"; + 17170; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-12-29"^^xsd:date; + "1898-12-29"^^xsd:date; + "1898-12-29"^^xsd:date; + "1898-12-29"^^xsd:date; + "Tour"; + 17171; + "Actor"; + ""; + ""; + ; + . + + a ; + "1898-12-30"^^xsd:date; + "1898-12-30"^^xsd:date; + "1898-12-30"^^xsd:date; + "1898-12-30"^^xsd:date; + "Tour"; + 17172; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1898-12-31"^^xsd:date; + "1898-12-31"^^xsd:date; + "1898-12-31"^^xsd:date; + "1898-12-31"^^xsd:date; + "Tour"; + 17173; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-01-04"^^xsd:date; + "1899-01-04"^^xsd:date; + "1899-01-02"^^xsd:date; + "1899-01-02"^^xsd:date; + "Tour"; + 17174; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-01-09"^^xsd:date; + "1899-01-09"^^xsd:date; + "1899-01-09"^^xsd:date; + "1899-01-09"^^xsd:date; + "Tour"; + 17175; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-01-12"^^xsd:date; + "1899-01-12"^^xsd:date; + "1899-01-12"^^xsd:date; + "1899-01-12"^^xsd:date; + "Tour"; + 17176; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-01-14"^^xsd:date; + "1899-01-14"^^xsd:date; + "1899-01-14"^^xsd:date; + "1899-01-14"^^xsd:date; + "Tour"; + 17177; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-01-21"^^xsd:date; + "1899-01-21"^^xsd:date; + "1899-01-16"^^xsd:date; + "1899-01-16"^^xsd:date; + "Tour"; + 17178; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-01-27"^^xsd:date; + "1899-01-27"^^xsd:date; + "1899-01-23"^^xsd:date; + "1899-01-23"^^xsd:date; + "Tour"; + 17179; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-01-28"^^xsd:date; + "1899-01-28"^^xsd:date; + "1899-01-28"^^xsd:date; + "1899-01-28"^^xsd:date; + "Tour"; + 17180; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-01-31"^^xsd:date; + "1899-01-31"^^xsd:date; + "1899-01-31"^^xsd:date; + "1899-01-31"^^xsd:date; + "Tour"; + 17181; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-02-02"^^xsd:date; + "1899-02-02"^^xsd:date; + "1899-02-01"^^xsd:date; + "1899-02-01"^^xsd:date; + "Tour"; + 17182; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-02-04"^^xsd:date; + "1899-02-04"^^xsd:date; + "1899-02-04"^^xsd:date; + "1899-02-04"^^xsd:date; + "Tour"; + 17183; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-02-08"^^xsd:date; + "1899-02-08"^^xsd:date; + "1899-02-06"^^xsd:date; + "1899-02-06"^^xsd:date; + "Tour"; + 17184; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-02-15"^^xsd:date; + "1899-02-15"^^xsd:date; + "1899-02-13"^^xsd:date; + "1899-02-13"^^xsd:date; + "Tour"; + 17185; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-02-18"^^xsd:date; + "1899-02-18"^^xsd:date; + "1899-02-16"^^xsd:date; + "1899-02-16"^^xsd:date; + "Tour"; + 17186; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-02-22"^^xsd:date; + "1899-02-22"^^xsd:date; + "1899-02-20"^^xsd:date; + "1899-02-20"^^xsd:date; + "Tour"; + 17187; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-02-23"^^xsd:date; + "1899-02-23"^^xsd:date; + "1899-02-23"^^xsd:date; + "1899-02-23"^^xsd:date; + "Tour"; + 17188; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-02-25"^^xsd:date; + "1899-02-25"^^xsd:date; + "1899-02-24"^^xsd:date; + "1899-02-24"^^xsd:date; + "Tour"; + 17189; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-01"^^xsd:date; + "1899-03-01"^^xsd:date; + "1899-02-27"^^xsd:date; + "1899-02-27"^^xsd:date; + "Tour"; + 17190; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-02"^^xsd:date; + "1899-03-02"^^xsd:date; + "1899-03-02"^^xsd:date; + "1899-03-02"^^xsd:date; + "Tour"; + 17191; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-03"^^xsd:date; + "1899-03-03"^^xsd:date; + "1899-03-03"^^xsd:date; + "1899-03-03"^^xsd:date; + "Tour"; + 17192; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-04"^^xsd:date; + "1899-03-04"^^xsd:date; + "1899-03-04"^^xsd:date; + "1899-03-04"^^xsd:date; + "Tour"; + 17193; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-08"^^xsd:date; + "1899-03-08"^^xsd:date; + "1899-03-06"^^xsd:date; + "1899-03-06"^^xsd:date; + "Tour"; + 17194; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-09"^^xsd:date; + "1899-03-09"^^xsd:date; + "1899-03-09"^^xsd:date; + "1899-03-09"^^xsd:date; + "Tour"; + 17195; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-10"^^xsd:date; + "1899-03-10"^^xsd:date; + "1899-03-10"^^xsd:date; + "1899-03-10"^^xsd:date; + "Tour"; + 17196; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-11"^^xsd:date; + "1899-03-11"^^xsd:date; + "1899-03-11"^^xsd:date; + "1899-03-11"^^xsd:date; + "Tour"; + 17197; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-18"^^xsd:date; + "1899-03-18"^^xsd:date; + "1899-03-16"^^xsd:date; + "1899-03-16"^^xsd:date; + "Tour"; + 17198; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-20"^^xsd:date; + "1899-03-20"^^xsd:date; + "1899-03-20"^^xsd:date; + "1899-03-20"^^xsd:date; + "Tour"; + 17199; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "Tour"; + 172; + "Teacher (Theatre related)"; + ; + . + + a ; + "1899-03-21"^^xsd:date; + "1899-03-21"^^xsd:date; + "1899-03-21"^^xsd:date; + "1899-03-21"^^xsd:date; + "Tour"; + 17200; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-03-23"^^xsd:date; + "1899-03-23"^^xsd:date; + "1899-03-23"^^xsd:date; + "1899-03-23"^^xsd:date; + "Tour"; + 17201; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-03-24"^^xsd:date; + "1899-03-24"^^xsd:date; + "1899-03-24"^^xsd:date; + "1899-03-24"^^xsd:date; + "Tour"; + 17202; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-05"^^xsd:date; + "1899-04-05"^^xsd:date; + "1899-04-03"^^xsd:date; + "1899-04-03"^^xsd:date; + "Tour"; + 17203; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-08"^^xsd:date; + "1899-04-08"^^xsd:date; + "1899-04-06"^^xsd:date; + "1899-04-06"^^xsd:date; + "Tour"; + 17204; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-04-11"^^xsd:date; + "1899-04-11"^^xsd:date; + "1899-04-11"^^xsd:date; + "1899-04-11"^^xsd:date; + "Tour"; + 17205; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-04-12"^^xsd:date; + "1899-04-12"^^xsd:date; + "1899-04-12"^^xsd:date; + "1899-04-12"^^xsd:date; + "Tour"; + 17206; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-13"^^xsd:date; + "1899-04-13"^^xsd:date; + "1899-04-13"^^xsd:date; + "1899-04-13"^^xsd:date; + "Tour"; + 17207; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-15"^^xsd:date; + "1899-04-15"^^xsd:date; + "1899-04-14"^^xsd:date; + "1899-04-14"^^xsd:date; + "Tour"; + 17208; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-22"^^xsd:date; + "1899-04-22"^^xsd:date; + "1899-04-17"^^xsd:date; + "1899-04-17"^^xsd:date; + "Tour"; + 17209; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-04-29"^^xsd:date; + "1899-04-29"^^xsd:date; + "1899-04-24"^^xsd:date; + "1899-04-24"^^xsd:date; + "Tour"; + 17210; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-09-06"^^xsd:date; + "1899-09-06"^^xsd:date; + "1899-09-04"^^xsd:date; + "1899-09-04"^^xsd:date; + "Tour"; + 17211; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-09-07"^^xsd:date; + "1899-09-07"^^xsd:date; + "1899-09-07"^^xsd:date; + "1899-09-07"^^xsd:date; + "Tour"; + 17212; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-09-08"^^xsd:date; + "1899-09-08"^^xsd:date; + "1899-09-08"^^xsd:date; + "1899-09-08"^^xsd:date; + "Tour"; + 17213; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-09-09"^^xsd:date; + "1899-09-09"^^xsd:date; + "1899-09-09"^^xsd:date; + "1899-09-09"^^xsd:date; + "Tour"; + 17214; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-09-16"^^xsd:date; + "1899-09-16"^^xsd:date; + "1899-09-11"^^xsd:date; + "1899-09-11"^^xsd:date; + "Tour"; + 17215; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-09-18"^^xsd:date; + "1899-09-18"^^xsd:date; + "1899-09-18"^^xsd:date; + "1899-09-18"^^xsd:date; + "Tour"; + 17216; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-09-20"^^xsd:date; + "1899-09-20"^^xsd:date; + "1899-09-20"^^xsd:date; + "1899-09-20"^^xsd:date; + "Tour"; + 17217; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-09-21"^^xsd:date; + "1899-09-21"^^xsd:date; + "1899-09-21"^^xsd:date; + "1899-09-21"^^xsd:date; + "Tour"; + 17218; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-09-23"^^xsd:date; + "1899-09-23"^^xsd:date; + "1899-09-22"^^xsd:date; + "1899-09-22"^^xsd:date; + "Tour"; + 17219; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-10-07"^^xsd:date; + "1899-10-07"^^xsd:date; + "1899-09-25"^^xsd:date; + "1899-09-25"^^xsd:date; + "Tour"; + 17220; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-10-11"^^xsd:date; + "1899-10-11"^^xsd:date; + "1899-10-09"^^xsd:date; + "1899-10-09"^^xsd:date; + "Tour"; + 17221; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-10-13"^^xsd:date; + "1899-10-13"^^xsd:date; + "1899-10-13"^^xsd:date; + "1899-10-13"^^xsd:date; + "Tour"; + 17222; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-10-14"^^xsd:date; + "1899-10-14"^^xsd:date; + "1899-10-14"^^xsd:date; + "1899-10-14"^^xsd:date; + "Tour"; + 17223; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-10-18"^^xsd:date; + "1899-10-18"^^xsd:date; + "1899-10-16"^^xsd:date; + "1899-10-16"^^xsd:date; + "Tour"; + 17224; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-10-19"^^xsd:date; + "1899-10-19"^^xsd:date; + "1899-10-19"^^xsd:date; + "1899-10-19"^^xsd:date; + "Tour"; + 17225; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-10-21"^^xsd:date; + "1899-10-21"^^xsd:date; + "1899-10-20"^^xsd:date; + "1899-10-20"^^xsd:date; + "Tour"; + 17226; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-10-24"^^xsd:date; + "1899-10-24"^^xsd:date; + "1899-10-23"^^xsd:date; + "1899-10-23"^^xsd:date; + "Tour"; + 17227; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-10-26"^^xsd:date; + "1899-10-26"^^xsd:date; + "1899-10-26"^^xsd:date; + "1899-10-26"^^xsd:date; + "Tour"; + 17228; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-10-28"^^xsd:date; + "1899-10-28"^^xsd:date; + "1899-10-27"^^xsd:date; + "1899-10-27"^^xsd:date; + "Tour"; + 17229; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-01"^^xsd:date; + "1899-11-01"^^xsd:date; + "1899-10-31"^^xsd:date; + "1899-10-31"^^xsd:date; + "Tour"; + 17230; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-11-02"^^xsd:date; + "1899-11-02"^^xsd:date; + "1899-11-02"^^xsd:date; + "1899-11-02"^^xsd:date; + "Tour"; + 17231; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-11-04"^^xsd:date; + "1899-11-04"^^xsd:date; + "1899-11-04"^^xsd:date; + "1899-11-04"^^xsd:date; + "Tour"; + 17232; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-18"^^xsd:date; + "1899-11-18"^^xsd:date; + "1899-11-06"^^xsd:date; + "1899-11-06"^^xsd:date; + "Tour"; + 17233; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-21"^^xsd:date; + "1899-11-21"^^xsd:date; + "1899-11-21"^^xsd:date; + "1899-11-21"^^xsd:date; + "Tour"; + 17234; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-24"^^xsd:date; + "1899-11-24"^^xsd:date; + "1899-11-22"^^xsd:date; + "1899-11-22"^^xsd:date; + "Tour"; + 17235; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-28"^^xsd:date; + "1899-11-28"^^xsd:date; + "1899-11-28"^^xsd:date; + "1899-11-28"^^xsd:date; + "Tour"; + 17236; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-11-29"^^xsd:date; + "1899-11-29"^^xsd:date; + "1899-11-29"^^xsd:date; + "1899-11-29"^^xsd:date; + "Tour"; + 17237; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-02"^^xsd:date; + "1899-12-02"^^xsd:date; + "1899-11-30"^^xsd:date; + "1899-11-30"^^xsd:date; + "Tour"; + 17238; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-04"^^xsd:date; + "1899-12-04"^^xsd:date; + "1899-12-04"^^xsd:date; + "1899-12-04"^^xsd:date; + "Tour"; + 17239; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-12-05"^^xsd:date; + "1899-12-05"^^xsd:date; + "1899-12-05"^^xsd:date; + "1899-12-05"^^xsd:date; + "Tour"; + 17240; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-06"^^xsd:date; + "1899-12-06"^^xsd:date; + "1899-12-06"^^xsd:date; + "1899-12-06"^^xsd:date; + "Tour"; + 17241; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-09"^^xsd:date; + "1899-12-09"^^xsd:date; + "1899-12-09"^^xsd:date; + "1899-12-09"^^xsd:date; + "Tour"; + 17242; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-12-11"^^xsd:date; + "1899-12-11"^^xsd:date; + "1899-12-11"^^xsd:date; + "1899-12-11"^^xsd:date; + "Tour"; + 17243; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-13"^^xsd:date; + "1899-12-13"^^xsd:date; + "1899-12-13"^^xsd:date; + "1899-12-13"^^xsd:date; + "Tour"; + 17244; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-16"^^xsd:date; + "1899-12-16"^^xsd:date; + "1899-12-14"^^xsd:date; + "1899-12-14"^^xsd:date; + "Tour"; + 17245; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1899-12-26"^^xsd:date; + "1899-12-26"^^xsd:date; + "1899-12-25"^^xsd:date; + "1899-12-25"^^xsd:date; + "Tour"; + 17246; + "Actor"; + ""; + ""; + ; + . + + a ; + "1899-12-27"^^xsd:date; + "1899-12-27"^^xsd:date; + "1899-12-27"^^xsd:date; + "1899-12-27"^^xsd:date; + "Tour"; + 17247; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-01-13"^^xsd:date; + "1900-01-13"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 17248; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-01-20"^^xsd:date; + "1900-01-20"^^xsd:date; + "1900-01-15"^^xsd:date; + "1900-01-15"^^xsd:date; + "Tour"; + 17249; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-01-22"^^xsd:date; + "1900-01-22"^^xsd:date; + "1900-01-22"^^xsd:date; + "1900-01-22"^^xsd:date; + "Tour"; + 17250; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-01-24"^^xsd:date; + "1900-01-24"^^xsd:date; + "1900-01-24"^^xsd:date; + "1900-01-24"^^xsd:date; + "Tour"; + 17251; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-01-27"^^xsd:date; + "1900-01-27"^^xsd:date; + "1900-01-25"^^xsd:date; + "1900-01-25"^^xsd:date; + "Tour"; + 17252; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-01-31"^^xsd:date; + "1900-01-31"^^xsd:date; + "1900-01-29"^^xsd:date; + "1900-01-29"^^xsd:date; + "Tour"; + 17253; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-02-03"^^xsd:date; + "1900-02-03"^^xsd:date; + "1900-02-01"^^xsd:date; + "1900-02-01"^^xsd:date; + "Tour"; + 17254; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-02-06"^^xsd:date; + "1900-02-06"^^xsd:date; + "1900-02-06"^^xsd:date; + "1900-02-06"^^xsd:date; + "Tour"; + 17255; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-02-07"^^xsd:date; + "1900-02-07"^^xsd:date; + "1900-02-07"^^xsd:date; + "1900-02-07"^^xsd:date; + "Tour"; + 17256; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-02-12"^^xsd:date; + "1900-02-12"^^xsd:date; + "1900-02-12"^^xsd:date; + "1900-02-12"^^xsd:date; + "Tour"; + 17257; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-02-13"^^xsd:date; + "1900-02-13"^^xsd:date; + "1900-02-13"^^xsd:date; + "1900-02-13"^^xsd:date; + "Tour"; + 17258; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-02-14"^^xsd:date; + "1900-02-14"^^xsd:date; + "1900-02-14"^^xsd:date; + "1900-02-14"^^xsd:date; + "Tour"; + 17259; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-02-15"^^xsd:date; + "1900-02-15"^^xsd:date; + "1900-02-15"^^xsd:date; + "1900-02-15"^^xsd:date; + "Tour"; + 17260; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-03-17"^^xsd:date; + "1900-03-17"^^xsd:date; + "1900-02-26"^^xsd:date; + "1900-02-26"^^xsd:date; + "Tour"; + 17261; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-03-19"^^xsd:date; + "1900-03-19"^^xsd:date; + "1900-03-19"^^xsd:date; + "1900-03-19"^^xsd:date; + "Tour"; + 17262; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-03-23"^^xsd:date; + "1900-03-23"^^xsd:date; + "1900-03-21"^^xsd:date; + "1900-03-21"^^xsd:date; + "Tour"; + 17263; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-03-26"^^xsd:date; + "1900-03-26"^^xsd:date; + "1900-03-26"^^xsd:date; + "1900-03-26"^^xsd:date; + "Tour"; + 17264; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-03-27"^^xsd:date; + "1900-03-27"^^xsd:date; + "1900-03-27"^^xsd:date; + "1900-03-27"^^xsd:date; + "Tour"; + 17265; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-03-29"^^xsd:date; + "1900-03-29"^^xsd:date; + "1900-03-29"^^xsd:date; + "1900-03-29"^^xsd:date; + "Tour"; + 17266; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-03-30"^^xsd:date; + "1900-03-30"^^xsd:date; + "1900-03-30"^^xsd:date; + "1900-03-30"^^xsd:date; + "Tour"; + 17267; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-03-31"^^xsd:date; + "1900-03-31"^^xsd:date; + "1900-03-31"^^xsd:date; + "1900-03-31"^^xsd:date; + "Tour"; + 17268; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-15"^^xsd:date; + "1900-10-15"^^xsd:date; + "1900-10-11"^^xsd:date; + "1900-10-11"^^xsd:date; + "Tour"; + 17269; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-01"^^xsd:date; + "1900-10-01"^^xsd:date; + "1900-10-01"^^xsd:date; + "1900-10-01"^^xsd:date; + "Tour"; + 17270; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-10-19"^^xsd:date; + "1900-10-19"^^xsd:date; + "1900-10-19"^^xsd:date; + "1900-10-19"^^xsd:date; + "Tour"; + 17271; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-10-20"^^xsd:date; + "1900-10-20"^^xsd:date; + "1900-10-20"^^xsd:date; + "1900-10-20"^^xsd:date; + "Tour"; + 17272; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-23"^^xsd:date; + "1900-10-23"^^xsd:date; + "1900-10-23"^^xsd:date; + "1900-10-23"^^xsd:date; + "Tour"; + 17273; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-24"^^xsd:date; + "1900-10-24"^^xsd:date; + "1900-10-24"^^xsd:date; + "1900-10-24"^^xsd:date; + "Tour"; + 17274; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-10-25"^^xsd:date; + "1900-10-25"^^xsd:date; + "1900-10-25"^^xsd:date; + "1900-10-25"^^xsd:date; + "Tour"; + 17275; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-10-26"^^xsd:date; + "1900-10-26"^^xsd:date; + "1900-10-26"^^xsd:date; + "1900-10-26"^^xsd:date; + "Tour"; + 17276; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-27"^^xsd:date; + "1900-10-27"^^xsd:date; + "1900-10-27"^^xsd:date; + "1900-10-27"^^xsd:date; + "Tour"; + 17277; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-10-31"^^xsd:date; + "1900-10-31"^^xsd:date; + "1900-10-29"^^xsd:date; + "1900-10-29"^^xsd:date; + "Tour"; + 17278; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-01"^^xsd:date; + "1900-11-01"^^xsd:date; + "1900-11-01"^^xsd:date; + "1900-11-01"^^xsd:date; + "Tour"; + 17279; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-02"^^xsd:date; + "1900-11-02"^^xsd:date; + "1900-11-02"^^xsd:date; + "1900-11-02"^^xsd:date; + "Tour"; + 17280; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-13"^^xsd:date; + "1900-11-13"^^xsd:date; + "1900-11-13"^^xsd:date; + "1900-11-13"^^xsd:date; + "Tour"; + 17281; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-06"^^xsd:date; + "1900-11-06"^^xsd:date; + "1900-11-06"^^xsd:date; + "1900-11-06"^^xsd:date; + "Tour"; + 17282; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-07"^^xsd:date; + "1900-11-07"^^xsd:date; + "1900-11-07"^^xsd:date; + "1900-11-07"^^xsd:date; + "Tour"; + 17283; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-08"^^xsd:date; + "1900-11-08"^^xsd:date; + "1900-11-08"^^xsd:date; + "1900-11-08"^^xsd:date; + "Tour"; + 17284; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-09"^^xsd:date; + "1900-11-09"^^xsd:date; + "1900-11-09"^^xsd:date; + "1900-11-09"^^xsd:date; + "Tour"; + 17285; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-14"^^xsd:date; + "1900-11-14"^^xsd:date; + "1900-11-12"^^xsd:date; + "1900-11-12"^^xsd:date; + "Tour"; + 17286; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-15"^^xsd:date; + "1900-11-15"^^xsd:date; + "1900-11-15"^^xsd:date; + "1900-11-15"^^xsd:date; + "Tour"; + 17287; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-17"^^xsd:date; + "1900-11-17"^^xsd:date; + "1900-11-16"^^xsd:date; + "1900-11-16"^^xsd:date; + "Tour"; + 17288; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-20"^^xsd:date; + "1900-11-20"^^xsd:date; + "1900-11-20"^^xsd:date; + "1900-11-20"^^xsd:date; + "Tour"; + 17289; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-21"^^xsd:date; + "1900-11-21"^^xsd:date; + "1900-11-21"^^xsd:date; + "1900-11-21"^^xsd:date; + "Tour"; + 17290; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-24"^^xsd:date; + "1900-11-24"^^xsd:date; + "1900-11-22"^^xsd:date; + "1900-11-22"^^xsd:date; + "Tour"; + 17291; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-24"^^xsd:date; + "1900-11-24"^^xsd:date; + "1900-11-24"^^xsd:date; + "1900-11-24"^^xsd:date; + "Tour"; + 17292; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-27"^^xsd:date; + "1900-11-27"^^xsd:date; + "1900-11-27"^^xsd:date; + "1900-11-27"^^xsd:date; + "Tour"; + 17293; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-28"^^xsd:date; + "1900-11-28"^^xsd:date; + "1900-11-28"^^xsd:date; + "1900-11-28"^^xsd:date; + "Tour"; + 17294; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-11-29"^^xsd:date; + "1900-11-29"^^xsd:date; + "1900-11-29"^^xsd:date; + "1900-11-29"^^xsd:date; + "Tour"; + 17295; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-11-30"^^xsd:date; + "1900-11-30"^^xsd:date; + "1900-11-30"^^xsd:date; + "1900-11-30"^^xsd:date; + "Tour"; + 17296; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-01"^^xsd:date; + "1900-12-01"^^xsd:date; + "1900-12-01"^^xsd:date; + "1900-12-01"^^xsd:date; + "Tour"; + 17297; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-03"^^xsd:date; + "1900-12-03"^^xsd:date; + "1900-12-03"^^xsd:date; + "1900-12-03"^^xsd:date; + "Tour"; + 17298; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-04"^^xsd:date; + "1900-12-04"^^xsd:date; + "1900-12-04"^^xsd:date; + "1900-12-04"^^xsd:date; + "Tour"; + 17299; + "Actor"; + ""; + ""; + ; + . + + a ; + "Tour"; + 173; + "Teacher (Theatre related)"; + ; + . + + a ; + "1900-12-05"^^xsd:date; + "1900-12-05"^^xsd:date; + "1900-12-05"^^xsd:date; + "1900-12-05"^^xsd:date; + "Tour"; + 17300; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-06"^^xsd:date; + "1900-12-06"^^xsd:date; + "1900-12-06"^^xsd:date; + "1900-12-06"^^xsd:date; + "Tour"; + 17301; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-07"^^xsd:date; + "1900-12-07"^^xsd:date; + "1900-12-07"^^xsd:date; + "1900-12-07"^^xsd:date; + "Tour"; + 17302; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-08"^^xsd:date; + "1900-12-08"^^xsd:date; + "1900-12-08"^^xsd:date; + "1900-12-08"^^xsd:date; + "Tour"; + 17303; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-12"^^xsd:date; + "1900-12-12"^^xsd:date; + "1900-12-10"^^xsd:date; + "1900-12-10"^^xsd:date; + "Tour"; + 17304; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-15"^^xsd:date; + "1900-12-15"^^xsd:date; + "1900-12-13"^^xsd:date; + "1900-12-13"^^xsd:date; + "Tour"; + 17305; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-17"^^xsd:date; + "1900-12-17"^^xsd:date; + "1900-12-17"^^xsd:date; + "1900-12-17"^^xsd:date; + "Tour"; + 17306; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-19"^^xsd:date; + "1900-12-19"^^xsd:date; + "1900-12-19"^^xsd:date; + "1900-12-19"^^xsd:date; + "Tour"; + 17307; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-20"^^xsd:date; + "1900-12-20"^^xsd:date; + "1900-12-20"^^xsd:date; + "1900-12-20"^^xsd:date; + "Tour"; + 17308; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-25"^^xsd:date; + "1900-12-25"^^xsd:date; + "1900-12-25"^^xsd:date; + "1900-12-25"^^xsd:date; + "Tour"; + 17309; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "Tour"; + 1731; + "Actor"; + ; + . + + a ; + "1900-12-26"^^xsd:date; + "1900-12-26"^^xsd:date; + "1900-12-26"^^xsd:date; + "1900-12-26"^^xsd:date; + "Tour"; + 17310; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1900-12-27"^^xsd:date; + "1900-12-27"^^xsd:date; + "1900-12-27"^^xsd:date; + "1900-12-27"^^xsd:date; + "Tour"; + 17311; + "Actor"; + ""; + ""; + ; + . + + a ; + "1900-12-29"^^xsd:date; + "1900-12-29"^^xsd:date; + "1900-12-29"^^xsd:date; + "1900-12-29"^^xsd:date; + "Tour"; + 17312; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-01"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 17313; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-02"^^xsd:date; + "1901-01-02"^^xsd:date; + "1901-01-02"^^xsd:date; + "1901-01-02"^^xsd:date; + "Tour"; + 17314; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-01-05"^^xsd:date; + "1901-01-05"^^xsd:date; + "1901-01-03"^^xsd:date; + "1901-01-03"^^xsd:date; + "Tour"; + 17315; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-09"^^xsd:date; + "1901-01-09"^^xsd:date; + "1901-01-07"^^xsd:date; + "1901-01-07"^^xsd:date; + "Tour"; + 17316; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-11"^^xsd:date; + "1901-01-11"^^xsd:date; + "1901-01-11"^^xsd:date; + "1901-01-11"^^xsd:date; + "Tour"; + 17317; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-12"^^xsd:date; + "1901-01-12"^^xsd:date; + "1901-01-12"^^xsd:date; + "1901-01-12"^^xsd:date; + "Tour"; + 17318; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-01-19"^^xsd:date; + "1901-01-19"^^xsd:date; + "1901-01-14"^^xsd:date; + "1901-01-14"^^xsd:date; + "Tour"; + 17319; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-21"^^xsd:date; + "1901-01-21"^^xsd:date; + "1901-01-21"^^xsd:date; + "1901-01-21"^^xsd:date; + "Tour"; + 17320; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-01-23"^^xsd:date; + "1901-01-23"^^xsd:date; + "1901-01-23"^^xsd:date; + "1901-01-23"^^xsd:date; + "Tour"; + 17321; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-01-24"^^xsd:date; + "1901-01-24"^^xsd:date; + "1901-01-24"^^xsd:date; + "1901-01-24"^^xsd:date; + "Tour"; + 17322; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-25"^^xsd:date; + "1901-01-25"^^xsd:date; + "1901-01-25"^^xsd:date; + "1901-01-25"^^xsd:date; + "Tour"; + 17323; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-01-26"^^xsd:date; + "1901-01-26"^^xsd:date; + "1901-01-26"^^xsd:date; + "1901-01-26"^^xsd:date; + "Tour"; + 17324; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-28"^^xsd:date; + "1901-01-28"^^xsd:date; + "1901-01-28"^^xsd:date; + "1901-01-28"^^xsd:date; + "Tour"; + 17325; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-29"^^xsd:date; + "1901-01-29"^^xsd:date; + "1901-01-29"^^xsd:date; + "1901-01-29"^^xsd:date; + "Tour"; + 17326; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-30"^^xsd:date; + "1901-01-30"^^xsd:date; + "1901-01-30"^^xsd:date; + "1901-01-30"^^xsd:date; + "Tour"; + 17327; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-01-31"^^xsd:date; + "1901-01-31"^^xsd:date; + "1901-01-31"^^xsd:date; + "1901-01-31"^^xsd:date; + "Tour"; + 17328; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-01"^^xsd:date; + "1901-02-01"^^xsd:date; + "1901-02-01"^^xsd:date; + "1901-02-01"^^xsd:date; + "Tour"; + 17329; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "Tour"; + 17330; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-09"^^xsd:date; + "1901-02-09"^^xsd:date; + "1901-02-04"^^xsd:date; + "1901-02-04"^^xsd:date; + "Tour"; + 17331; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "1901-02-02"^^xsd:date; + "Tour"; + 17332; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-13"^^xsd:date; + "1901-02-13"^^xsd:date; + "1901-02-12"^^xsd:date; + "1901-02-12"^^xsd:date; + "Tour"; + 17333; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-02-14"^^xsd:date; + "1901-02-14"^^xsd:date; + "1901-02-14"^^xsd:date; + "1901-02-14"^^xsd:date; + "Tour"; + 17334; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-02-15"^^xsd:date; + "1901-02-15"^^xsd:date; + "1901-02-15"^^xsd:date; + "1901-02-15"^^xsd:date; + "Tour"; + 17335; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-16"^^xsd:date; + "1901-02-16"^^xsd:date; + "1901-02-16"^^xsd:date; + "1901-02-16"^^xsd:date; + "Tour"; + 17336; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-18"^^xsd:date; + "1901-02-18"^^xsd:date; + "1901-02-18"^^xsd:date; + "1901-02-18"^^xsd:date; + "Tour"; + 17337; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-19"^^xsd:date; + "1901-02-19"^^xsd:date; + "1901-02-19"^^xsd:date; + "1901-02-19"^^xsd:date; + "Tour"; + 17338; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-02-20"^^xsd:date; + "1901-02-20"^^xsd:date; + "1901-02-20"^^xsd:date; + "1901-02-20"^^xsd:date; + "Tour"; + 17339; + "Actor"; + ""; + ""; + ; + . + + a ; + "Tour"; + 1734; + ; + . + + a ; + "1901-02-22"^^xsd:date; + "1901-02-22"^^xsd:date; + "1901-02-22"^^xsd:date; + "1901-02-22"^^xsd:date; + "Tour"; + 17340; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-02-23"^^xsd:date; + "1901-02-23"^^xsd:date; + "1901-02-23"^^xsd:date; + "1901-02-23"^^xsd:date; + "Tour"; + 17341; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-03-02"^^xsd:date; + "1901-03-02"^^xsd:date; + "1901-02-25"^^xsd:date; + "1901-02-25"^^xsd:date; + "Tour"; + 17342; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-03-04"^^xsd:date; + "1901-03-04"^^xsd:date; + "1901-03-04"^^xsd:date; + "1901-03-04"^^xsd:date; + "Tour"; + 17343; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-03-05"^^xsd:date; + "1901-03-05"^^xsd:date; + "1901-03-05"^^xsd:date; + "1901-03-05"^^xsd:date; + "Tour"; + 17344; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-06"^^xsd:date; + "1901-03-06"^^xsd:date; + "1901-03-06"^^xsd:date; + "1901-03-06"^^xsd:date; + "Tour"; + 17345; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-03-07"^^xsd:date; + "1901-03-07"^^xsd:date; + "1901-03-07"^^xsd:date; + "1901-03-07"^^xsd:date; + "Tour"; + 17346; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-08"^^xsd:date; + "1901-03-08"^^xsd:date; + "1901-03-08"^^xsd:date; + "1901-03-08"^^xsd:date; + "Tour"; + 17347; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-09"^^xsd:date; + "1901-03-09"^^xsd:date; + "1901-03-09"^^xsd:date; + "1901-03-09"^^xsd:date; + "Tour"; + 17348; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-16"^^xsd:date; + "1901-03-16"^^xsd:date; + "1901-03-11"^^xsd:date; + "1901-03-11"^^xsd:date; + "Tour"; + 17349; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-18"^^xsd:date; + "1901-03-18"^^xsd:date; + "1901-03-18"^^xsd:date; + "1901-03-18"^^xsd:date; + "Tour"; + 17350; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-19"^^xsd:date; + "1901-03-19"^^xsd:date; + "1901-03-19"^^xsd:date; + "1901-03-19"^^xsd:date; + "Tour"; + 17351; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-21"^^xsd:date; + "1901-03-21"^^xsd:date; + "1901-03-20"^^xsd:date; + "1901-03-20"^^xsd:date; + "Tour"; + 17352; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-23"^^xsd:date; + "1901-03-23"^^xsd:date; + "1901-03-23"^^xsd:date; + "1901-03-23"^^xsd:date; + "Tour"; + 17353; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-03-27"^^xsd:date; + "1901-03-27"^^xsd:date; + "1901-03-25"^^xsd:date; + "1901-03-25"^^xsd:date; + "Tour"; + 17354; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-03-28"^^xsd:date; + "1901-03-28"^^xsd:date; + "1901-03-28"^^xsd:date; + "1901-03-28"^^xsd:date; + "Tour"; + 17355; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-06"^^xsd:date; + "1901-04-06"^^xsd:date; + "1901-03-29"^^xsd:date; + "1901-03-29"^^xsd:date; + "Tour"; + 17356; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-10"^^xsd:date; + "1901-04-10"^^xsd:date; + "1901-04-08"^^xsd:date; + "1901-04-08"^^xsd:date; + "Tour"; + 17357; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-11"^^xsd:date; + "1901-04-11"^^xsd:date; + "1901-04-11"^^xsd:date; + "1901-04-11"^^xsd:date; + "Tour"; + 17358; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-13"^^xsd:date; + "1901-04-13"^^xsd:date; + "1901-04-12"^^xsd:date; + "1901-04-12"^^xsd:date; + "Tour"; + 17359; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-15"^^xsd:date; + "1901-04-15"^^xsd:date; + "1901-04-15"^^xsd:date; + "1901-04-15"^^xsd:date; + "Tour"; + 17360; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-16"^^xsd:date; + "1901-04-16"^^xsd:date; + "1901-04-16"^^xsd:date; + "1901-04-16"^^xsd:date; + "Tour"; + 17361; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-17"^^xsd:date; + "1901-04-17"^^xsd:date; + "1901-04-17"^^xsd:date; + "1901-04-17"^^xsd:date; + "Tour"; + 17362; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-20"^^xsd:date; + "1901-04-20"^^xsd:date; + "1901-04-18"^^xsd:date; + "1901-04-18"^^xsd:date; + "Tour"; + 17363; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-24"^^xsd:date; + "1901-04-24"^^xsd:date; + "1901-04-23"^^xsd:date; + "1901-04-23"^^xsd:date; + "Tour"; + 17364; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-26"^^xsd:date; + "1901-04-26"^^xsd:date; + "1901-04-26"^^xsd:date; + "1901-04-26"^^xsd:date; + "Tour"; + 17365; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-04-27"^^xsd:date; + "1901-04-27"^^xsd:date; + "1901-04-27"^^xsd:date; + "1901-04-27"^^xsd:date; + "Tour"; + 17366; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-04-30"^^xsd:date; + "1901-04-30"^^xsd:date; + "1901-04-29"^^xsd:date; + "1901-04-29"^^xsd:date; + "Tour"; + 17367; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-07-31"^^xsd:date; + "1901-07-01"^^xsd:date; + "1901-07-31"^^xsd:date; + "1901-07-01"^^xsd:date; + "Tour"; + 17368; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-01"^^xsd:date; + "1901-10-01"^^xsd:date; + "1901-09-30"^^xsd:date; + "1901-09-30"^^xsd:date; + "Tour"; + 17369; + "Actor"; + ""; + ""; + ; + . + + a ; + "Tour"; + 1737; + ; + . + + a ; + "1901-10-03"^^xsd:date; + "1901-10-03"^^xsd:date; + "1901-10-03"^^xsd:date; + "1901-10-03"^^xsd:date; + "Tour"; + 17370; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-04"^^xsd:date; + "1901-10-04"^^xsd:date; + "1901-10-04"^^xsd:date; + "1901-10-04"^^xsd:date; + "Tour"; + 17371; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-07"^^xsd:date; + "1901-10-07"^^xsd:date; + "1901-10-07"^^xsd:date; + "1901-10-07"^^xsd:date; + "Tour"; + 17372; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-08"^^xsd:date; + "1901-10-08"^^xsd:date; + "1901-10-08"^^xsd:date; + "1901-10-08"^^xsd:date; + "Tour"; + 17373; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-09"^^xsd:date; + "1901-10-09"^^xsd:date; + "1901-10-09"^^xsd:date; + "1901-10-09"^^xsd:date; + "Tour"; + 17374; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "Tour"; + 17375; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-11"^^xsd:date; + "1901-10-11"^^xsd:date; + "1901-10-11"^^xsd:date; + "1901-10-11"^^xsd:date; + "Tour"; + 17376; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-12"^^xsd:date; + "1901-10-12"^^xsd:date; + "1901-10-12"^^xsd:date; + "1901-10-12"^^xsd:date; + "Tour"; + 17377; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-19"^^xsd:date; + "1901-10-19"^^xsd:date; + "1901-10-14"^^xsd:date; + "1901-10-14"^^xsd:date; + "Tour"; + 17378; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-21"^^xsd:date; + "1901-10-21"^^xsd:date; + "1901-10-21"^^xsd:date; + "1901-10-21"^^xsd:date; + "Tour"; + 17379; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-22"^^xsd:date; + "1901-10-22"^^xsd:date; + "1901-10-22"^^xsd:date; + "1901-10-22"^^xsd:date; + "Tour"; + 17380; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "1901-10-10"^^xsd:date; + "Tour"; + 17381; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-24"^^xsd:date; + "1901-10-24"^^xsd:date; + "1901-10-24"^^xsd:date; + "1901-10-24"^^xsd:date; + "Tour"; + 17382; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-25"^^xsd:date; + "1901-10-25"^^xsd:date; + "1901-10-25"^^xsd:date; + "1901-10-25"^^xsd:date; + "Tour"; + 17383; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-26"^^xsd:date; + "1901-10-26"^^xsd:date; + "1901-10-26"^^xsd:date; + "1901-10-26"^^xsd:date; + "Tour"; + 17384; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-10-28"^^xsd:date; + "1901-10-28"^^xsd:date; + "1901-10-28"^^xsd:date; + "1901-10-28"^^xsd:date; + "Tour"; + 17385; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-30"^^xsd:date; + "1901-10-30"^^xsd:date; + "1901-10-30"^^xsd:date; + "1901-10-30"^^xsd:date; + "Tour"; + 17386; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-10-31"^^xsd:date; + "1901-10-31"^^xsd:date; + "1901-10-31"^^xsd:date; + "1901-10-31"^^xsd:date; + "Tour"; + 17387; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-01"^^xsd:date; + "1901-11-01"^^xsd:date; + "1901-11-01"^^xsd:date; + "1901-11-01"^^xsd:date; + "Tour"; + 17388; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-02"^^xsd:date; + "1901-11-02"^^xsd:date; + "1901-11-02"^^xsd:date; + "1901-11-02"^^xsd:date; + "Tour"; + 17389; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-04"^^xsd:date; + "1901-11-04"^^xsd:date; + "1901-11-04"^^xsd:date; + "1901-11-04"^^xsd:date; + "Tour"; + 17390; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-05"^^xsd:date; + "1901-11-05"^^xsd:date; + "1901-11-05"^^xsd:date; + "1901-11-05"^^xsd:date; + "Tour"; + 17391; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-06"^^xsd:date; + "1901-11-06"^^xsd:date; + "1901-11-06"^^xsd:date; + "1901-11-06"^^xsd:date; + "Tour"; + 17392; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-07"^^xsd:date; + "1901-11-07"^^xsd:date; + "1901-11-07"^^xsd:date; + "1901-11-07"^^xsd:date; + "Tour"; + 17393; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-08"^^xsd:date; + "1901-11-08"^^xsd:date; + "1901-11-08"^^xsd:date; + "1901-11-08"^^xsd:date; + "Tour"; + 17394; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-09"^^xsd:date; + "1901-11-09"^^xsd:date; + "1901-11-09"^^xsd:date; + "1901-11-09"^^xsd:date; + "Tour"; + 17395; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-13"^^xsd:date; + "1901-11-13"^^xsd:date; + "1901-11-13"^^xsd:date; + "1901-11-13"^^xsd:date; + "Tour"; + 17396; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-15"^^xsd:date; + "1901-11-15"^^xsd:date; + "1901-11-15"^^xsd:date; + "1901-11-15"^^xsd:date; + "Tour"; + 17398; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-16"^^xsd:date; + "1901-11-16"^^xsd:date; + "1901-11-16"^^xsd:date; + "1901-11-16"^^xsd:date; + "Tour"; + 17399; + "Actor"; + ""; + ""; + ; + . + + a ; + "Tour"; + 174; + "Teacher (Theatre related)"; + ; + . + + a ; + "Tour"; + 1740; + ; + . + + a ; + "1901-11-23"^^xsd:date; + "1901-11-23"^^xsd:date; + "1901-11-18"^^xsd:date; + "1901-11-18"^^xsd:date; + "Tour"; + 17400; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-11-26"^^xsd:date; + "1901-11-26"^^xsd:date; + "1901-11-26"^^xsd:date; + "1901-11-26"^^xsd:date; + "Tour"; + 17401; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-27"^^xsd:date; + "1901-11-27"^^xsd:date; + "1901-11-27"^^xsd:date; + "1901-11-27"^^xsd:date; + "Tour"; + 17402; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-28"^^xsd:date; + "1901-11-28"^^xsd:date; + "1901-11-28"^^xsd:date; + "1901-11-28"^^xsd:date; + "Tour"; + 17403; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-11-29"^^xsd:date; + "1901-11-29"^^xsd:date; + "1901-11-29"^^xsd:date; + "1901-11-29"^^xsd:date; + "Tour"; + 17404; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-04"^^xsd:date; + "1901-12-04"^^xsd:date; + "1901-12-04"^^xsd:date; + "1901-12-04"^^xsd:date; + "Tour"; + 17405; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-05"^^xsd:date; + "1901-12-05"^^xsd:date; + "1901-12-05"^^xsd:date; + "1901-12-05"^^xsd:date; + "Tour"; + 17406; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-12-06"^^xsd:date; + "1901-12-06"^^xsd:date; + "1901-12-06"^^xsd:date; + "1901-12-06"^^xsd:date; + "Tour"; + 17407; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-12-07"^^xsd:date; + "1901-12-07"^^xsd:date; + "1901-12-07"^^xsd:date; + "1901-12-07"^^xsd:date; + "Tour"; + 17408; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-09"^^xsd:date; + "1901-12-09"^^xsd:date; + "1901-12-09"^^xsd:date; + "1901-12-09"^^xsd:date; + "Tour"; + 17409; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-10"^^xsd:date; + "1901-12-10"^^xsd:date; + "1901-12-10"^^xsd:date; + "1901-12-10"^^xsd:date; + "Tour"; + 17410; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-11"^^xsd:date; + "1901-12-11"^^xsd:date; + "1901-12-11"^^xsd:date; + "1901-12-11"^^xsd:date; + "Tour"; + 17411; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-12"^^xsd:date; + "1901-12-12"^^xsd:date; + "1901-12-12"^^xsd:date; + "1901-12-12"^^xsd:date; + "Tour"; + 17412; + "Actor"; + ""; + ""; + ; + . + + a ; + "1901-12-14"^^xsd:date; + "1901-12-14"^^xsd:date; + "1901-12-13"^^xsd:date; + "1901-12-13"^^xsd:date; + "Tour"; + 17413; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-21"^^xsd:date; + "1901-12-21"^^xsd:date; + "1901-12-16"^^xsd:date; + "1901-12-16"^^xsd:date; + "Tour"; + 17414; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-25"^^xsd:date; + "1901-12-25"^^xsd:date; + "1901-12-25"^^xsd:date; + "1901-12-25"^^xsd:date; + "Tour"; + 17415; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-26"^^xsd:date; + "1901-12-26"^^xsd:date; + "1901-12-26"^^xsd:date; + "1901-12-26"^^xsd:date; + "Tour"; + 17416; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1901-12-28"^^xsd:date; + "1901-12-28"^^xsd:date; + "1901-12-28"^^xsd:date; + "1901-12-28"^^xsd:date; + "Tour"; + 17417; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-01-02"^^xsd:date; + "1902-01-02"^^xsd:date; + "1901-12-30"^^xsd:date; + "1901-12-30"^^xsd:date; + "Tour"; + 17418; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-01-03"^^xsd:date; + "1902-01-03"^^xsd:date; + "1902-01-03"^^xsd:date; + "1902-01-03"^^xsd:date; + "Tour"; + 17419; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-01-18"^^xsd:date; + "1902-01-18"^^xsd:date; + "1902-01-06"^^xsd:date; + "1902-01-06"^^xsd:date; + "Tour"; + 17420; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-01-20"^^xsd:date; + "1902-01-20"^^xsd:date; + "1902-01-20"^^xsd:date; + "1902-01-20"^^xsd:date; + "Tour"; + 17421; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-01-25"^^xsd:date; + "1902-01-25"^^xsd:date; + "1902-01-22"^^xsd:date; + "1902-01-22"^^xsd:date; + "Tour"; + 17422; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-01-31"^^xsd:date; + "1902-01-31"^^xsd:date; + "1902-01-31"^^xsd:date; + "1902-01-31"^^xsd:date; + "Tour"; + 17423; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-02-04"^^xsd:date; + "1902-02-04"^^xsd:date; + "1902-02-03"^^xsd:date; + "1902-02-03"^^xsd:date; + "Tour"; + 17424; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-05"^^xsd:date; + "1902-02-05"^^xsd:date; + "1902-02-05"^^xsd:date; + "1902-02-05"^^xsd:date; + "Tour"; + 17425; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-06"^^xsd:date; + "1902-02-06"^^xsd:date; + "1902-02-06"^^xsd:date; + "1902-02-06"^^xsd:date; + "Tour"; + 17426; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-07"^^xsd:date; + "1902-02-07"^^xsd:date; + "1902-02-07"^^xsd:date; + "1902-02-07"^^xsd:date; + "Tour"; + 17427; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-02-08"^^xsd:date; + "1902-02-08"^^xsd:date; + "1902-02-08"^^xsd:date; + "1902-02-08"^^xsd:date; + "Tour"; + 17428; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-12"^^xsd:date; + "1902-02-12"^^xsd:date; + "1902-02-11"^^xsd:date; + "1902-02-11"^^xsd:date; + "Tour"; + 17429; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 1743; + ; + . + + a ; + "1902-02-15"^^xsd:date; + "1902-02-15"^^xsd:date; + "1902-02-13"^^xsd:date; + "1902-02-13"^^xsd:date; + "Tour"; + 17430; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-02-17"^^xsd:date; + "1902-02-17"^^xsd:date; + "1902-02-17"^^xsd:date; + "1902-02-17"^^xsd:date; + "Tour"; + 17431; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-02-18"^^xsd:date; + "1902-02-18"^^xsd:date; + "1902-02-18"^^xsd:date; + "1902-02-18"^^xsd:date; + "Tour"; + 17432; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-19"^^xsd:date; + "1902-02-19"^^xsd:date; + "1902-02-19"^^xsd:date; + "1902-02-19"^^xsd:date; + "Tour"; + 17433; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-25"^^xsd:date; + "1902-02-25"^^xsd:date; + "1902-02-22"^^xsd:date; + "1902-02-22"^^xsd:date; + "Tour"; + 17434; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-02-26"^^xsd:date; + "1902-02-26"^^xsd:date; + "1902-02-26"^^xsd:date; + "1902-02-26"^^xsd:date; + "Tour"; + 17435; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-03-01"^^xsd:date; + "1902-03-01"^^xsd:date; + "1902-03-01"^^xsd:date; + "1902-03-01"^^xsd:date; + "Tour"; + 17436; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-03-04"^^xsd:date; + "1902-03-04"^^xsd:date; + "1902-03-04"^^xsd:date; + "1902-03-04"^^xsd:date; + "Tour"; + 17437; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-06"^^xsd:date; + "1902-03-06"^^xsd:date; + "1902-03-06"^^xsd:date; + "1902-03-06"^^xsd:date; + "Tour"; + 17438; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-03-08"^^xsd:date; + "1902-03-08"^^xsd:date; + "1902-03-08"^^xsd:date; + "1902-03-08"^^xsd:date; + "Tour"; + 17439; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-03-10"^^xsd:date; + "1902-03-10"^^xsd:date; + "1902-03-10"^^xsd:date; + "1902-03-10"^^xsd:date; + "Tour"; + 17440; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-11"^^xsd:date; + "1902-03-11"^^xsd:date; + "1902-03-11"^^xsd:date; + "1902-03-11"^^xsd:date; + "Tour"; + 17441; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-13"^^xsd:date; + "1902-03-13"^^xsd:date; + "1902-03-13"^^xsd:date; + "1902-03-13"^^xsd:date; + "Tour"; + 17442; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-14"^^xsd:date; + "1902-03-14"^^xsd:date; + "1902-03-14"^^xsd:date; + "1902-03-14"^^xsd:date; + "Tour"; + 17443; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-15"^^xsd:date; + "1902-03-15"^^xsd:date; + "1902-03-15"^^xsd:date; + "1902-03-15"^^xsd:date; + "Tour"; + 17444; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-03-31"^^xsd:date; + "1902-03-31"^^xsd:date; + "1902-03-31"^^xsd:date; + "1902-03-31"^^xsd:date; + "Tour"; + 17445; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-02"^^xsd:date; + "1902-04-02"^^xsd:date; + "1902-04-02"^^xsd:date; + "1902-04-02"^^xsd:date; + "Tour"; + 17446; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-04"^^xsd:date; + "1902-04-04"^^xsd:date; + "1902-04-04"^^xsd:date; + "1902-04-04"^^xsd:date; + "Tour"; + 17447; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-07"^^xsd:date; + "1902-04-07"^^xsd:date; + "1902-04-07"^^xsd:date; + "1902-04-07"^^xsd:date; + "Tour"; + 17448; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-08"^^xsd:date; + "1902-04-08"^^xsd:date; + "1902-04-08"^^xsd:date; + "1902-04-08"^^xsd:date; + "Tour"; + 17449; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-09"^^xsd:date; + "1902-04-09"^^xsd:date; + "1902-04-09"^^xsd:date; + "1902-04-09"^^xsd:date; + "Tour"; + 17450; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-11"^^xsd:date; + "1902-04-11"^^xsd:date; + "1902-04-11"^^xsd:date; + "1902-04-11"^^xsd:date; + "Tour"; + 17451; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-04-12"^^xsd:date; + "1902-04-12"^^xsd:date; + "1902-04-12"^^xsd:date; + "1902-04-12"^^xsd:date; + "Tour"; + 17452; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-14"^^xsd:date; + "1902-04-14"^^xsd:date; + "1902-04-14"^^xsd:date; + "1902-04-14"^^xsd:date; + "Tour"; + 17453; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-04-18"^^xsd:date; + "1902-04-18"^^xsd:date; + "1902-04-18"^^xsd:date; + "1902-04-18"^^xsd:date; + "Tour"; + 17454; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-04-21"^^xsd:date; + "1902-04-21"^^xsd:date; + "1902-04-21"^^xsd:date; + "1902-04-21"^^xsd:date; + "Tour"; + 17455; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-04-28"^^xsd:date; + "1902-04-28"^^xsd:date; + "1902-04-28"^^xsd:date; + "1902-04-28"^^xsd:date; + "Tour"; + 17456; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-04-29"^^xsd:date; + "1902-04-29"^^xsd:date; + "1902-04-29"^^xsd:date; + "1902-04-29"^^xsd:date; + "Tour"; + 17457; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1902-04-30"^^xsd:date; + "1902-04-30"^^xsd:date; + "1902-04-30"^^xsd:date; + "1902-04-30"^^xsd:date; + "Tour"; + 17458; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-05-01"^^xsd:date; + "1902-05-01"^^xsd:date; + "1902-05-01"^^xsd:date; + "1902-05-01"^^xsd:date; + "Tour"; + 17459; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 1746; + ; + . + + a ; + "1902-05-02"^^xsd:date; + "1902-05-02"^^xsd:date; + "1902-05-02"^^xsd:date; + "1902-05-02"^^xsd:date; + "Tour"; + 17460; + "Actor"; + ""; + ""; + ; + . + + a ; + "1902-05-03"^^xsd:date; + "1902-05-03"^^xsd:date; + "1902-05-03"^^xsd:date; + "1902-05-03"^^xsd:date; + "Tour"; + 17461; + "Actor"; + ""; + ""; + ; + . + + a ; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "Tour"; + 17462; + "Actor"; + ""; + ""; + ; + . + + a ; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "Tour"; + 17463; + "Actor"; + ""; + ""; + ; + . + + a ; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "1903-04-28"^^xsd:date; + "1902-10-31"^^xsd:date; + "Tour"; + 17464; + "Actor"; + ""; + ""; + ; + . + + a ; + "1903-04-30"^^xsd:date; + "1903-04-01"^^xsd:date; + "1903-01-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 17465; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-05-02"^^xsd:date; + "1905-05-02"^^xsd:date; + "1905-05-02"^^xsd:date; + "1905-05-02"^^xsd:date; + "Tour"; + 17466; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-06"^^xsd:date; + "1905-11-06"^^xsd:date; + "1905-11-06"^^xsd:date; + "1905-11-06"^^xsd:date; + "Tour"; + 17467; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-07"^^xsd:date; + "1905-11-07"^^xsd:date; + "1905-11-07"^^xsd:date; + "1905-11-07"^^xsd:date; + "Tour"; + 17468; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-08"^^xsd:date; + "1905-11-08"^^xsd:date; + "1905-11-08"^^xsd:date; + "1905-11-08"^^xsd:date; + "Tour"; + 17469; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-10"^^xsd:date; + "1905-11-10"^^xsd:date; + "1905-11-10"^^xsd:date; + "1905-11-10"^^xsd:date; + "Tour"; + 17470; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-14"^^xsd:date; + "1905-11-14"^^xsd:date; + "1905-11-14"^^xsd:date; + "1905-11-14"^^xsd:date; + "Tour"; + 17471; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-16"^^xsd:date; + "1905-11-16"^^xsd:date; + "1905-11-16"^^xsd:date; + "1905-11-16"^^xsd:date; + "Tour"; + 17472; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-18"^^xsd:date; + "1905-11-18"^^xsd:date; + "1905-11-18"^^xsd:date; + "1905-11-18"^^xsd:date; + "Tour"; + 17473; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-20"^^xsd:date; + "1905-11-20"^^xsd:date; + "1905-11-20"^^xsd:date; + "1905-11-20"^^xsd:date; + "Tour"; + 17474; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-21"^^xsd:date; + "1905-11-21"^^xsd:date; + "1905-11-21"^^xsd:date; + "1905-11-21"^^xsd:date; + "Tour"; + 17475; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-22"^^xsd:date; + "1905-11-22"^^xsd:date; + "1905-11-22"^^xsd:date; + "1905-11-22"^^xsd:date; + "Tour"; + 17476; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-11-24"^^xsd:date; + "1905-11-24"^^xsd:date; + "1905-11-24"^^xsd:date; + "1905-11-24"^^xsd:date; + "Tour"; + 17477; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-11-29"^^xsd:date; + "1905-11-29"^^xsd:date; + "1905-11-27"^^xsd:date; + "1905-11-27"^^xsd:date; + "Tour"; + 17478; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-02"^^xsd:date; + "1905-12-02"^^xsd:date; + "1905-11-30"^^xsd:date; + "1905-11-30"^^xsd:date; + "Tour"; + 17479; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-12-04"^^xsd:date; + "1905-12-04"^^xsd:date; + "1905-12-04"^^xsd:date; + "1905-12-04"^^xsd:date; + "Tour"; + 17480; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-12-05"^^xsd:date; + "1905-12-05"^^xsd:date; + "1905-12-05"^^xsd:date; + "1905-12-05"^^xsd:date; + "Tour"; + 17481; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-06"^^xsd:date; + "1905-12-06"^^xsd:date; + "1905-12-06"^^xsd:date; + "1905-12-06"^^xsd:date; + "Tour"; + 17482; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-11"^^xsd:date; + "1905-12-11"^^xsd:date; + "1905-12-11"^^xsd:date; + "1905-12-11"^^xsd:date; + "Tour"; + 17483; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-12-12"^^xsd:date; + "1905-12-12"^^xsd:date; + "1905-12-12"^^xsd:date; + "1905-12-12"^^xsd:date; + "Tour"; + 17484; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-14"^^xsd:date; + "1905-12-14"^^xsd:date; + "1905-12-14"^^xsd:date; + "1905-12-14"^^xsd:date; + "Tour"; + 17485; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-15"^^xsd:date; + "1905-12-15"^^xsd:date; + "1905-12-15"^^xsd:date; + "1905-12-15"^^xsd:date; + "Tour"; + 17486; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-16"^^xsd:date; + "1905-12-16"^^xsd:date; + "1905-12-16"^^xsd:date; + "1905-12-16"^^xsd:date; + "Tour"; + 17487; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-18"^^xsd:date; + "1905-12-18"^^xsd:date; + "1905-12-18"^^xsd:date; + "1905-12-18"^^xsd:date; + "Tour"; + 17488; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-19"^^xsd:date; + "1905-12-19"^^xsd:date; + "1905-12-19"^^xsd:date; + "1905-12-19"^^xsd:date; + "Tour"; + 17489; + "Actor"; + ""; + ""; + ; + . + + a ; + "Tour"; + 1749; + ; + . + + a ; + "1905-12-20"^^xsd:date; + "1905-12-20"^^xsd:date; + "1905-12-20"^^xsd:date; + "1905-12-20"^^xsd:date; + "Tour"; + 17490; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-22"^^xsd:date; + "1905-12-22"^^xsd:date; + "1905-12-22"^^xsd:date; + "1905-12-22"^^xsd:date; + "Tour"; + 17491; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-23"^^xsd:date; + "1905-12-23"^^xsd:date; + "1905-12-23"^^xsd:date; + "1905-12-23"^^xsd:date; + "Tour"; + 17492; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-25"^^xsd:date; + "1905-12-25"^^xsd:date; + "1905-12-25"^^xsd:date; + "1905-12-25"^^xsd:date; + "Tour"; + 17493; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1905-12-26"^^xsd:date; + "1905-12-26"^^xsd:date; + "1905-12-26"^^xsd:date; + "1905-12-26"^^xsd:date; + "Tour"; + 17494; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-28"^^xsd:date; + "1905-12-28"^^xsd:date; + "1905-12-28"^^xsd:date; + "1905-12-28"^^xsd:date; + "Tour"; + 17495; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-29"^^xsd:date; + "1905-12-29"^^xsd:date; + "1905-12-29"^^xsd:date; + "1905-12-29"^^xsd:date; + "Tour"; + 17496; + "Actor"; + ""; + ""; + ; + . + + a ; + "1905-12-30"^^xsd:date; + "1905-12-30"^^xsd:date; + "1905-12-30"^^xsd:date; + "1905-12-30"^^xsd:date; + "Tour"; + 17497; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-02"^^xsd:date; + "1906-01-02"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 17498; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-03"^^xsd:date; + "1906-01-03"^^xsd:date; + "1906-01-03"^^xsd:date; + "1906-01-03"^^xsd:date; + "Tour"; + 17499; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-04"^^xsd:date; + "1906-01-04"^^xsd:date; + "1906-01-04"^^xsd:date; + "1906-01-04"^^xsd:date; + "Tour"; + 17500; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-06"^^xsd:date; + "1906-01-06"^^xsd:date; + "1906-01-06"^^xsd:date; + "1906-01-06"^^xsd:date; + "Tour"; + 17501; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-08"^^xsd:date; + "1906-01-08"^^xsd:date; + "1906-01-08"^^xsd:date; + "1906-01-08"^^xsd:date; + "Tour"; + 17502; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-09"^^xsd:date; + "1906-01-09"^^xsd:date; + "1906-01-09"^^xsd:date; + "1906-01-09"^^xsd:date; + "Tour"; + 17503; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-10"^^xsd:date; + "1906-01-10"^^xsd:date; + "1906-01-10"^^xsd:date; + "1906-01-10"^^xsd:date; + "Tour"; + 17504; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-13"^^xsd:date; + "1906-01-13"^^xsd:date; + "1906-01-11"^^xsd:date; + "1906-01-11"^^xsd:date; + "Tour"; + 17505; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-20"^^xsd:date; + "1906-01-20"^^xsd:date; + "1906-01-15"^^xsd:date; + "1906-01-15"^^xsd:date; + "Tour"; + 17506; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-23"^^xsd:date; + "1906-01-23"^^xsd:date; + "1906-01-22"^^xsd:date; + "1906-01-22"^^xsd:date; + "Tour"; + 17507; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-24"^^xsd:date; + "1906-01-24"^^xsd:date; + "1906-01-24"^^xsd:date; + "1906-01-24"^^xsd:date; + "Tour"; + 17508; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-01-25"^^xsd:date; + "1906-01-25"^^xsd:date; + "1906-01-25"^^xsd:date; + "1906-01-25"^^xsd:date; + "Tour"; + 17509; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-26"^^xsd:date; + "1906-01-26"^^xsd:date; + "1906-01-26"^^xsd:date; + "1906-01-26"^^xsd:date; + "Tour"; + 17510; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-29"^^xsd:date; + "1906-01-29"^^xsd:date; + "1906-01-29"^^xsd:date; + "1906-01-29"^^xsd:date; + "Tour"; + 17511; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-01-31"^^xsd:date; + "1906-01-31"^^xsd:date; + "1906-01-30"^^xsd:date; + "1906-01-30"^^xsd:date; + "Tour"; + 17512; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-01"^^xsd:date; + "1906-02-01"^^xsd:date; + "1906-02-01"^^xsd:date; + "1906-02-01"^^xsd:date; + "Tour"; + 17513; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-07"^^xsd:date; + "1906-02-07"^^xsd:date; + "1906-02-05"^^xsd:date; + "1906-02-05"^^xsd:date; + "Tour"; + 17514; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-08"^^xsd:date; + "1906-02-08"^^xsd:date; + "1906-02-08"^^xsd:date; + "1906-02-08"^^xsd:date; + "Tour"; + 17515; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-09"^^xsd:date; + "1906-02-09"^^xsd:date; + "1906-02-09"^^xsd:date; + "1906-02-09"^^xsd:date; + "Tour"; + 17516; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-10"^^xsd:date; + "1906-02-10"^^xsd:date; + "1906-02-10"^^xsd:date; + "1906-02-10"^^xsd:date; + "Tour"; + 17517; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-02-12"^^xsd:date; + "1906-02-12"^^xsd:date; + "1906-02-12"^^xsd:date; + "1906-02-12"^^xsd:date; + "Tour"; + 17518; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-13"^^xsd:date; + "1906-02-13"^^xsd:date; + "1906-02-13"^^xsd:date; + "1906-02-13"^^xsd:date; + "Tour"; + 17519; + "Actor"; + ""; + ""; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 1752; + ; + . + + a ; + "1906-02-17"^^xsd:date; + "1906-02-17"^^xsd:date; + "1906-02-15"^^xsd:date; + "1906-02-15"^^xsd:date; + "Tour"; + 17520; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-19"^^xsd:date; + "1906-02-19"^^xsd:date; + "1906-02-19"^^xsd:date; + "1906-02-19"^^xsd:date; + "Tour"; + 17521; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-20"^^xsd:date; + "1906-02-20"^^xsd:date; + "1906-02-20"^^xsd:date; + "1906-02-20"^^xsd:date; + "Tour"; + 17522; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-22"^^xsd:date; + "1906-02-22"^^xsd:date; + "1906-02-22"^^xsd:date; + "1906-02-22"^^xsd:date; + "Tour"; + 17523; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-23"^^xsd:date; + "1906-02-23"^^xsd:date; + "1906-02-23"^^xsd:date; + "1906-02-23"^^xsd:date; + "Tour"; + 17524; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-02-24"^^xsd:date; + "1906-02-24"^^xsd:date; + "1906-02-24"^^xsd:date; + "1906-02-24"^^xsd:date; + "Tour"; + 17525; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-02-26"^^xsd:date; + "1906-02-26"^^xsd:date; + "1906-02-26"^^xsd:date; + "1906-02-26"^^xsd:date; + "Tour"; + 17526; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-02-28"^^xsd:date; + "1906-02-28"^^xsd:date; + "1906-02-28"^^xsd:date; + "1906-02-28"^^xsd:date; + "Tour"; + 17527; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-01"^^xsd:date; + "1906-03-01"^^xsd:date; + "1906-03-01"^^xsd:date; + "1906-03-01"^^xsd:date; + "Tour"; + 17528; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-02"^^xsd:date; + "1906-03-02"^^xsd:date; + "1906-03-02"^^xsd:date; + "1906-03-02"^^xsd:date; + "Tour"; + 17529; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-03"^^xsd:date; + "1906-03-03"^^xsd:date; + "1906-03-03"^^xsd:date; + "1906-03-03"^^xsd:date; + "Tour"; + 17530; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-06"^^xsd:date; + "1906-03-06"^^xsd:date; + "1906-03-06"^^xsd:date; + "1906-03-06"^^xsd:date; + "Tour"; + 17531; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-08"^^xsd:date; + "1906-03-08"^^xsd:date; + "1906-03-08"^^xsd:date; + "1906-03-08"^^xsd:date; + "Tour"; + 17532; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-10"^^xsd:date; + "1906-03-10"^^xsd:date; + "1906-03-10"^^xsd:date; + "1906-03-10"^^xsd:date; + "Tour"; + 17533; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-12"^^xsd:date; + "1906-03-12"^^xsd:date; + "1906-03-12"^^xsd:date; + "1906-03-12"^^xsd:date; + "Tour"; + 17534; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-14"^^xsd:date; + "1906-03-14"^^xsd:date; + "1906-03-14"^^xsd:date; + "1906-03-14"^^xsd:date; + "Tour"; + 17535; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-15"^^xsd:date; + "1906-03-15"^^xsd:date; + "1906-03-15"^^xsd:date; + "1906-03-15"^^xsd:date; + "Tour"; + 17536; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-16"^^xsd:date; + "1906-03-16"^^xsd:date; + "1906-03-16"^^xsd:date; + "1906-03-16"^^xsd:date; + "Tour"; + 17537; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-17"^^xsd:date; + "1906-03-17"^^xsd:date; + "1906-03-17"^^xsd:date; + "1906-03-17"^^xsd:date; + "Tour"; + 17538; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-20"^^xsd:date; + "1906-03-20"^^xsd:date; + "1906-03-20"^^xsd:date; + "1906-03-20"^^xsd:date; + "Tour"; + 17539; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-21"^^xsd:date; + "1906-03-21"^^xsd:date; + "1906-03-21"^^xsd:date; + "1906-03-21"^^xsd:date; + "Tour"; + 17540; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-23"^^xsd:date; + "1906-03-23"^^xsd:date; + "1906-03-23"^^xsd:date; + "1906-03-23"^^xsd:date; + "Tour"; + 17541; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-24"^^xsd:date; + "1906-03-24"^^xsd:date; + "1906-03-24"^^xsd:date; + "1906-03-24"^^xsd:date; + "Tour"; + 17542; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-26"^^xsd:date; + "1906-03-26"^^xsd:date; + "1906-03-26"^^xsd:date; + "1906-03-26"^^xsd:date; + "Tour"; + 17543; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-27"^^xsd:date; + "1906-03-27"^^xsd:date; + "1906-03-27"^^xsd:date; + "1906-03-27"^^xsd:date; + "Tour"; + 17544; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-28"^^xsd:date; + "1906-03-28"^^xsd:date; + "1906-03-28"^^xsd:date; + "1906-03-28"^^xsd:date; + "Tour"; + 17545; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-03-29"^^xsd:date; + "1906-03-29"^^xsd:date; + "1906-03-29"^^xsd:date; + "1906-03-29"^^xsd:date; + "Tour"; + 17546; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-03-30"^^xsd:date; + "1906-03-30"^^xsd:date; + "1906-03-30"^^xsd:date; + "1906-03-30"^^xsd:date; + "Tour"; + 17547; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-03"^^xsd:date; + "1906-04-03"^^xsd:date; + "1906-04-03"^^xsd:date; + "1906-04-03"^^xsd:date; + "Tour"; + 17548; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-04"^^xsd:date; + "1906-04-04"^^xsd:date; + "1906-04-04"^^xsd:date; + "1906-04-04"^^xsd:date; + "Tour"; + 17549; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "Tour"; + 1755; + ; + . + + a ; + "1906-04-07"^^xsd:date; + "1906-04-07"^^xsd:date; + "1906-04-07"^^xsd:date; + "1906-04-07"^^xsd:date; + "Tour"; + 17550; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-16"^^xsd:date; + "1906-04-16"^^xsd:date; + "1906-04-16"^^xsd:date; + "1906-04-16"^^xsd:date; + "Tour"; + 17551; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-17"^^xsd:date; + "1906-04-17"^^xsd:date; + "1906-04-17"^^xsd:date; + "1906-04-17"^^xsd:date; + "Tour"; + 17552; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-19"^^xsd:date; + "1906-04-19"^^xsd:date; + "1906-04-19"^^xsd:date; + "1906-04-19"^^xsd:date; + "Tour"; + 17553; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-04-20"^^xsd:date; + "1906-04-20"^^xsd:date; + "1906-04-20"^^xsd:date; + "1906-04-20"^^xsd:date; + "Tour"; + 17554; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-04-23"^^xsd:date; + "1906-04-23"^^xsd:date; + "1906-04-23"^^xsd:date; + "1906-04-23"^^xsd:date; + "Tour"; + 17555; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-04-25"^^xsd:date; + "1906-04-25"^^xsd:date; + "1906-04-25"^^xsd:date; + "1906-04-25"^^xsd:date; + "Tour"; + 17556; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-26"^^xsd:date; + "1906-04-26"^^xsd:date; + "1906-04-26"^^xsd:date; + "1906-04-26"^^xsd:date; + "Tour"; + 17557; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-04-27"^^xsd:date; + "1906-04-27"^^xsd:date; + "1906-04-27"^^xsd:date; + "1906-04-27"^^xsd:date; + "Tour"; + 17558; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-04-28"^^xsd:date; + "1906-04-28"^^xsd:date; + "1906-04-28"^^xsd:date; + "1906-04-28"^^xsd:date; + "Tour"; + 17559; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-10-15"^^xsd:date; + "1906-10-15"^^xsd:date; + "1906-10-15"^^xsd:date; + "1906-10-15"^^xsd:date; + "Tour"; + 17560; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-10-17"^^xsd:date; + "1906-10-17"^^xsd:date; + "1906-10-17"^^xsd:date; + "1906-10-17"^^xsd:date; + "Tour"; + 17561; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-10-22"^^xsd:date; + "1906-10-22"^^xsd:date; + "1906-10-22"^^xsd:date; + "1906-10-22"^^xsd:date; + "Tour"; + 17562; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-10-25"^^xsd:date; + "1906-10-25"^^xsd:date; + "1906-10-25"^^xsd:date; + "1906-10-25"^^xsd:date; + "Tour"; + 17563; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-10-27"^^xsd:date; + "1906-10-27"^^xsd:date; + "1906-10-27"^^xsd:date; + "1906-10-27"^^xsd:date; + "Tour"; + 17564; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-10-29"^^xsd:date; + "1906-10-29"^^xsd:date; + "1906-10-29"^^xsd:date; + "1906-10-29"^^xsd:date; + "Tour"; + 17565; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-10-30"^^xsd:date; + "1906-10-30"^^xsd:date; + "1906-10-30"^^xsd:date; + "1906-10-30"^^xsd:date; + "Tour"; + 17566; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-10-31"^^xsd:date; + "1906-10-31"^^xsd:date; + "1906-10-31"^^xsd:date; + "1906-10-31"^^xsd:date; + "Tour"; + 17567; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-01"^^xsd:date; + "1906-11-01"^^xsd:date; + "1906-11-01"^^xsd:date; + "1906-11-01"^^xsd:date; + "Tour"; + 17568; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-02"^^xsd:date; + "1906-11-02"^^xsd:date; + "1906-11-02"^^xsd:date; + "1906-11-02"^^xsd:date; + "Tour"; + 17569; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-03"^^xsd:date; + "1906-11-03"^^xsd:date; + "1906-11-03"^^xsd:date; + "1906-11-03"^^xsd:date; + "Tour"; + 17570; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-05"^^xsd:date; + "1906-11-05"^^xsd:date; + "1906-11-05"^^xsd:date; + "1906-11-05"^^xsd:date; + "Tour"; + 17571; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-06"^^xsd:date; + "1906-11-06"^^xsd:date; + "1906-11-06"^^xsd:date; + "1906-11-06"^^xsd:date; + "Tour"; + 17572; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-07"^^xsd:date; + "1906-11-07"^^xsd:date; + "1906-11-07"^^xsd:date; + "1906-11-07"^^xsd:date; + "Tour"; + 17573; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-08"^^xsd:date; + "1906-11-08"^^xsd:date; + "1906-11-08"^^xsd:date; + "1906-11-08"^^xsd:date; + "Tour"; + 17574; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-09"^^xsd:date; + "1906-11-09"^^xsd:date; + "1906-11-09"^^xsd:date; + "1906-11-09"^^xsd:date; + "Tour"; + 17575; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-14"^^xsd:date; + "1906-11-14"^^xsd:date; + "1906-11-14"^^xsd:date; + "1906-11-14"^^xsd:date; + "Tour"; + 17576; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-15"^^xsd:date; + "1906-11-15"^^xsd:date; + "1906-11-15"^^xsd:date; + "1906-11-15"^^xsd:date; + "Tour"; + 17577; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-16"^^xsd:date; + "1906-11-16"^^xsd:date; + "1906-11-16"^^xsd:date; + "1906-11-16"^^xsd:date; + "Tour"; + 17578; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-17"^^xsd:date; + "1906-11-17"^^xsd:date; + "1906-11-17"^^xsd:date; + "1906-11-17"^^xsd:date; + "Tour"; + 17579; + "Actor"; + ""; + ""; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 1758; + "Director"; + "Director together with Bela Laszky"; + ; + ; + . + + a ; + "1906-11-21"^^xsd:date; + "1906-11-21"^^xsd:date; + "1906-11-21"^^xsd:date; + "1906-11-21"^^xsd:date; + "Tour"; + 17580; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-22"^^xsd:date; + "1906-11-22"^^xsd:date; + "1906-11-22"^^xsd:date; + "1906-11-22"^^xsd:date; + "Tour"; + 17581; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-23"^^xsd:date; + "1906-11-23"^^xsd:date; + "1906-11-23"^^xsd:date; + "1906-11-23"^^xsd:date; + "Tour"; + 17582; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-24"^^xsd:date; + "1906-11-24"^^xsd:date; + "1906-11-24"^^xsd:date; + "1906-11-24"^^xsd:date; + "Tour"; + 17583; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-26"^^xsd:date; + "1906-11-26"^^xsd:date; + "1906-11-26"^^xsd:date; + "1906-11-26"^^xsd:date; + "Tour"; + 17584; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-27"^^xsd:date; + "1906-11-27"^^xsd:date; + "1906-11-27"^^xsd:date; + "1906-11-27"^^xsd:date; + "Tour"; + 17585; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-11-28"^^xsd:date; + "1906-11-28"^^xsd:date; + "1906-11-28"^^xsd:date; + "1906-11-28"^^xsd:date; + "Tour"; + 17586; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-29"^^xsd:date; + "1906-11-29"^^xsd:date; + "1906-11-29"^^xsd:date; + "1906-11-29"^^xsd:date; + "Tour"; + 17587; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-11-30"^^xsd:date; + "1906-11-30"^^xsd:date; + "1906-11-30"^^xsd:date; + "1906-11-30"^^xsd:date; + "Tour"; + 17588; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-01"^^xsd:date; + "1906-12-01"^^xsd:date; + "1906-12-01"^^xsd:date; + "1906-12-01"^^xsd:date; + "Tour"; + 17589; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-03"^^xsd:date; + "1906-12-03"^^xsd:date; + "1906-12-03"^^xsd:date; + "1906-12-03"^^xsd:date; + "Tour"; + 17590; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-04"^^xsd:date; + "1906-12-04"^^xsd:date; + "1906-12-04"^^xsd:date; + "1906-12-04"^^xsd:date; + "Tour"; + 17591; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-05"^^xsd:date; + "1906-12-05"^^xsd:date; + "1906-12-05"^^xsd:date; + "1906-12-05"^^xsd:date; + "Tour"; + 17592; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-07"^^xsd:date; + "1906-12-07"^^xsd:date; + "1906-12-07"^^xsd:date; + "1906-12-07"^^xsd:date; + "Tour"; + 17593; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-08"^^xsd:date; + "1906-12-08"^^xsd:date; + "1906-12-08"^^xsd:date; + "1906-12-08"^^xsd:date; + "Tour"; + 17594; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-10"^^xsd:date; + "1906-12-10"^^xsd:date; + "1906-12-10"^^xsd:date; + "1906-12-10"^^xsd:date; + "Tour"; + 17595; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-11"^^xsd:date; + "1906-12-11"^^xsd:date; + "1906-12-11"^^xsd:date; + "1906-12-11"^^xsd:date; + "Tour"; + 17596; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-13"^^xsd:date; + "1906-12-13"^^xsd:date; + "1906-12-13"^^xsd:date; + "1906-12-13"^^xsd:date; + "Tour"; + 17597; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-14"^^xsd:date; + "1906-12-14"^^xsd:date; + "1906-12-14"^^xsd:date; + "1906-12-14"^^xsd:date; + "Tour"; + 17598; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-15"^^xsd:date; + "1906-12-15"^^xsd:date; + "1906-12-15"^^xsd:date; + "1906-12-15"^^xsd:date; + "Tour"; + 17599; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-25"^^xsd:date; + "1906-12-25"^^xsd:date; + "1906-12-25"^^xsd:date; + "1906-12-25"^^xsd:date; + "Tour"; + 17600; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-27"^^xsd:date; + "1906-12-27"^^xsd:date; + "1906-12-27"^^xsd:date; + "1906-12-27"^^xsd:date; + "Tour"; + 17601; + "Actor"; + ""; + ""; + ; + . + + a ; + "1906-12-28"^^xsd:date; + "1906-12-28"^^xsd:date; + "1906-12-28"^^xsd:date; + "1906-12-28"^^xsd:date; + "Tour"; + 17602; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-29"^^xsd:date; + "1906-12-29"^^xsd:date; + "1906-12-29"^^xsd:date; + "1906-12-29"^^xsd:date; + "Tour"; + 17603; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1906-12-31"^^xsd:date; + "1906-12-31"^^xsd:date; + "1906-12-31"^^xsd:date; + "1906-12-31"^^xsd:date; + "Tour"; + 17604; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-01"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 17605; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-03"^^xsd:date; + "1907-01-03"^^xsd:date; + "1907-01-03"^^xsd:date; + "1907-01-03"^^xsd:date; + "Tour"; + 17606; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-04"^^xsd:date; + "1907-01-04"^^xsd:date; + "1907-01-04"^^xsd:date; + "1907-01-04"^^xsd:date; + "Tour"; + 17607; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-05"^^xsd:date; + "1907-01-05"^^xsd:date; + "1907-01-05"^^xsd:date; + "1907-01-05"^^xsd:date; + "Tour"; + 17608; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-07"^^xsd:date; + "1907-01-07"^^xsd:date; + "1907-01-07"^^xsd:date; + "1907-01-07"^^xsd:date; + "Tour"; + 17609; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "-"; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 1761; + "Composer"; + "firsttime “Das Dreimäderlhaus”"; + ; + ; + . + + a ; + "1907-01-08"^^xsd:date; + "1907-01-08"^^xsd:date; + "1907-01-08"^^xsd:date; + "1907-01-08"^^xsd:date; + "Tour"; + 17610; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-09"^^xsd:date; + "1907-01-09"^^xsd:date; + "1907-01-09"^^xsd:date; + "1907-01-09"^^xsd:date; + "Tour"; + 17611; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-12"^^xsd:date; + "1907-01-12"^^xsd:date; + "1907-01-10"^^xsd:date; + "1907-01-10"^^xsd:date; + "Tour"; + 17612; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-14"^^xsd:date; + "1907-01-14"^^xsd:date; + "1907-01-14"^^xsd:date; + "1907-01-14"^^xsd:date; + "Tour"; + 17613; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-15"^^xsd:date; + "1907-01-15"^^xsd:date; + "1907-01-15"^^xsd:date; + "1907-01-15"^^xsd:date; + "Tour"; + 17614; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-16"^^xsd:date; + "1907-01-16"^^xsd:date; + "1907-01-16"^^xsd:date; + "1907-01-16"^^xsd:date; + "Tour"; + 17615; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-17"^^xsd:date; + "1907-01-17"^^xsd:date; + "1907-01-17"^^xsd:date; + "1907-01-17"^^xsd:date; + "Tour"; + 17616; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-18"^^xsd:date; + "1907-01-18"^^xsd:date; + "1907-01-18"^^xsd:date; + "1907-01-18"^^xsd:date; + "Tour"; + 17617; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-21"^^xsd:date; + "1907-01-21"^^xsd:date; + "1907-01-21"^^xsd:date; + "1907-01-21"^^xsd:date; + "Tour"; + 17618; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-22"^^xsd:date; + "1907-01-22"^^xsd:date; + "1907-01-22"^^xsd:date; + "1907-01-22"^^xsd:date; + "Tour"; + 17619; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-23"^^xsd:date; + "1907-01-23"^^xsd:date; + "1907-01-23"^^xsd:date; + "1907-01-23"^^xsd:date; + "Tour"; + 17620; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-24"^^xsd:date; + "1907-01-24"^^xsd:date; + "1907-01-24"^^xsd:date; + "1907-01-24"^^xsd:date; + "Tour"; + 17621; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-25"^^xsd:date; + "1907-01-25"^^xsd:date; + "1907-01-25"^^xsd:date; + "1907-01-25"^^xsd:date; + "Tour"; + 17622; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-26"^^xsd:date; + "1907-01-26"^^xsd:date; + "1907-01-26"^^xsd:date; + "1907-01-26"^^xsd:date; + "Tour"; + 17623; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-28"^^xsd:date; + "1907-01-28"^^xsd:date; + "1907-01-28"^^xsd:date; + "1907-01-28"^^xsd:date; + "Tour"; + 17624; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-29"^^xsd:date; + "1907-01-29"^^xsd:date; + "1907-01-29"^^xsd:date; + "1907-01-29"^^xsd:date; + "Tour"; + 17625; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-01-30"^^xsd:date; + "1907-01-30"^^xsd:date; + "1907-01-30"^^xsd:date; + "1907-01-30"^^xsd:date; + "Tour"; + 17626; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-01-31"^^xsd:date; + "1907-01-31"^^xsd:date; + "1907-01-31"^^xsd:date; + "1907-01-31"^^xsd:date; + "Tour"; + 17627; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-01"^^xsd:date; + "1907-02-01"^^xsd:date; + "1907-02-01"^^xsd:date; + "1907-02-01"^^xsd:date; + "Tour"; + 17628; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-02"^^xsd:date; + "1907-02-02"^^xsd:date; + "1907-02-02"^^xsd:date; + "1907-02-02"^^xsd:date; + "Tour"; + 17629; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-04"^^xsd:date; + "1907-02-04"^^xsd:date; + "1907-02-04"^^xsd:date; + "1907-02-04"^^xsd:date; + "Tour"; + 17630; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-02-05"^^xsd:date; + "1907-02-05"^^xsd:date; + "1907-02-05"^^xsd:date; + "1907-02-05"^^xsd:date; + "Tour"; + 17631; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-06"^^xsd:date; + "1907-02-06"^^xsd:date; + "1907-02-06"^^xsd:date; + "1907-02-06"^^xsd:date; + "Tour"; + 17632; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-07"^^xsd:date; + "1907-02-07"^^xsd:date; + "1907-02-07"^^xsd:date; + "1907-02-07"^^xsd:date; + "Tour"; + 17633; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-08"^^xsd:date; + "1907-02-08"^^xsd:date; + "1907-02-08"^^xsd:date; + "1907-02-08"^^xsd:date; + "Tour"; + 17634; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-09"^^xsd:date; + "1907-02-09"^^xsd:date; + "1907-02-09"^^xsd:date; + "1907-02-09"^^xsd:date; + "Tour"; + 17635; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-11"^^xsd:date; + "1907-02-11"^^xsd:date; + "1907-02-11"^^xsd:date; + "1907-02-11"^^xsd:date; + "Tour"; + 17636; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-12"^^xsd:date; + "1907-02-12"^^xsd:date; + "1907-02-12"^^xsd:date; + "1907-02-12"^^xsd:date; + "Tour"; + 17637; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-13"^^xsd:date; + "1907-02-13"^^xsd:date; + "1907-02-13"^^xsd:date; + "1907-02-13"^^xsd:date; + "Tour"; + 17638; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-14"^^xsd:date; + "1907-02-14"^^xsd:date; + "1907-02-14"^^xsd:date; + "1907-02-14"^^xsd:date; + "Tour"; + 17639; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-15"^^xsd:date; + "1907-02-15"^^xsd:date; + "1907-02-15"^^xsd:date; + "1907-02-15"^^xsd:date; + "Tour"; + 17640; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-16"^^xsd:date; + "1907-02-16"^^xsd:date; + "1907-02-16"^^xsd:date; + "1907-02-16"^^xsd:date; + "Tour"; + 17641; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-18"^^xsd:date; + "1907-02-18"^^xsd:date; + "1907-02-18"^^xsd:date; + "1907-02-18"^^xsd:date; + "Tour"; + 17642; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-19"^^xsd:date; + "1907-02-19"^^xsd:date; + "1907-02-19"^^xsd:date; + "1907-02-19"^^xsd:date; + "Tour"; + 17643; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-20"^^xsd:date; + "1907-02-20"^^xsd:date; + "1907-02-20"^^xsd:date; + "1907-02-20"^^xsd:date; + "Tour"; + 17644; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-02-21"^^xsd:date; + "1907-02-21"^^xsd:date; + "1907-02-21"^^xsd:date; + "1907-02-21"^^xsd:date; + "Tour"; + 17645; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-22"^^xsd:date; + "1907-02-22"^^xsd:date; + "1907-02-22"^^xsd:date; + "1907-02-22"^^xsd:date; + "Tour"; + 17646; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-23"^^xsd:date; + "1907-02-23"^^xsd:date; + "1907-02-23"^^xsd:date; + "1907-02-23"^^xsd:date; + "Tour"; + 17647; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-25"^^xsd:date; + "1907-02-25"^^xsd:date; + "1907-02-25"^^xsd:date; + "1907-02-25"^^xsd:date; + "Tour"; + 17648; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-26"^^xsd:date; + "1907-02-26"^^xsd:date; + "1907-02-26"^^xsd:date; + "1907-02-26"^^xsd:date; + "Tour"; + 17649; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-02-27"^^xsd:date; + "1907-02-27"^^xsd:date; + "1907-02-27"^^xsd:date; + "1907-02-27"^^xsd:date; + "Tour"; + 17650; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-02-28"^^xsd:date; + "1907-02-28"^^xsd:date; + "1907-02-28"^^xsd:date; + "1907-02-28"^^xsd:date; + "Tour"; + 17651; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-03-01"^^xsd:date; + "1907-03-01"^^xsd:date; + "1907-03-01"^^xsd:date; + "1907-03-01"^^xsd:date; + "Tour"; + 17652; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-02"^^xsd:date; + "1907-03-02"^^xsd:date; + "1907-03-02"^^xsd:date; + "1907-03-02"^^xsd:date; + "Tour"; + 17653; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-05"^^xsd:date; + "1907-03-05"^^xsd:date; + "1907-03-04"^^xsd:date; + "1907-03-04"^^xsd:date; + "Tour"; + 17654; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-06"^^xsd:date; + "1907-03-06"^^xsd:date; + "1907-03-06"^^xsd:date; + "1907-03-06"^^xsd:date; + "Tour"; + 17655; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-07"^^xsd:date; + "1907-03-07"^^xsd:date; + "1907-03-07"^^xsd:date; + "1907-03-07"^^xsd:date; + "Tour"; + 17656; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-08"^^xsd:date; + "1907-03-08"^^xsd:date; + "1907-03-08"^^xsd:date; + "1907-03-08"^^xsd:date; + "Tour"; + 17657; + "Actor"; + ""; + ""; + ; + ; + . + + a ; + "1907-03-09"^^xsd:date; + "1907-03-09"^^xsd:date; + "1907-03-09"^^xsd:date; + "1907-03-09"^^xsd:date; + "Tour"; + 17658; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-11"^^xsd:date; + "1907-03-11"^^xsd:date; + "1907-03-11"^^xsd:date; + "1907-03-11"^^xsd:date; + "Tour"; + 17659; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-13"^^xsd:date; + "1907-03-13"^^xsd:date; + "1907-03-12"^^xsd:date; + "1907-03-12"^^xsd:date; + "Tour"; + 17660; + "Actor"; + ""; + ""; + ; + . + + a ; + "1907-03-14"^^xsd:date; + "1907-03-14"^^xsd:date; + "1907-03-14"^^xsd:date; + "1907-03-14"^^xsd:date; + "Tour"; + 17661; + "Actor"; + ""; + ""; + ; + . + + a ; + "1909-01-12"^^xsd:date; + "1909-01-12"^^xsd:date; + "1909-01-12"^^xsd:date; + "1909-01-12"^^xsd:date; + "Tour"; + 17662; + "Actor"; + ""; + ""; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Tour"; + 18; + "Singer"; + ""; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Between 1895 and 1897"; + "1897-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 1830; + "Musician"; + "Violinist"; + ; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + 1833; + "Music Director"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Guest"; + 1836; + "Music Director"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + 1839; + "Music Director"; + "assistant of Gustav Mahler"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Autumm 1909"; + "1909-11-23"^^xsd:date; + "1909-09-24"^^xsd:date; + "employments"; + "Permanent"; + 1842; + "Music Director"; + ; + ; + . + + a ; + "1939"; + "1939-11-23"^^xsd:date; + "1939-11-23"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "employments"; + "Permanent"; + 1845; + "Music Director"; + "Musician"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 1854; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 186; + "Dancer"; + "Primaballerina"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 1860; + "Singer"; + """After her big success in Nizza she went to Germany to study Wagner-roles. +She had different guest engagements also in Berlin at the Hofoper."""; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 1862; + "Singer"; + "Gustav Mahler gave her the job in Wien"; + ; + ; + . + + a ; + "Tour"; + 187; + "Dancer"; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Tour"; + 1871; + "Singer"; + ; + ; + . + + a ; + "1913"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 1874; + "Singer"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 1877; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 188; + "Dancer"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Guest"; + 1889; + "Singer"; + "After the first world war she had guest engagements in Berlin, Dresden, Leipzig, München and Amsterdam, but dates are not known until now."; + ; + ; + . + + a ; + "Tour"; + 189; + "Dancer"; + "together with her husband Francesco"; + ; + . + + a ; + "October 1847"; + "1847-10-31"^^xsd:date; + "1847-10-01"^^xsd:date; + "Tour"; + 19; + "Singer"; + ""; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 190; + "Dancer"; + "because of an invitation"; + ; + ; + . + + a ; + "Tour"; + 191; + "Dancer"; + "Paris im Ballett-Divertissement zu Halévys Oper La tempête"; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + """Opera singer + +"""; + "Guest"; + 1910; + "Singer"; + ; + ; + . + + a ; + "Permanent"; + 1913; + "Teacher (Theatre related)"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Guest"; + 1916; + "Singer"; + ; + . + + a ; + "Tour"; + 1919; + "Teacher (Theatre related)"; + ; + . + + a ; + "Tour"; + 192; + "Dancer"; + "At the same time guest engagements in London"; + ; + . + + a ; + "Tour"; + 1922; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 1923; + "Singer"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Tour"; + 1926; + "Singer"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 1929; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Tour"; + 193; + "Dancer"; + "fixed contract. She was the highest paid dancer of her time in Paris"; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + 1932; + "Singer"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 194; + "Dancer"; + "after an invitation"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "world tour with engagements"; + "Tour"; + 1943; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "world tour with engagements"; + "Tour"; + 1946; + ; + ; + . + + a ; + "1877"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "engagements"; + "Tour"; + 1949; + ; + ; + . + + a ; + "Tour"; + 195; + "Musician"; + ; + . + + a ; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 1952; + "Singer"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 1955; + "Singer"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 1958; + "Singer"; + ; + . + + a ; + "choirmaster"; + "Tour"; + 196; + "on recommendation of Richard Wagner"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 1961; + "Singer"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 1964; + "Singer"; + "Director"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 1967; + "Singer"; + "first season of this institution"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 197; + "first Lohengrin there"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 1970; + "Singer"; + ""; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 1973; + "Singer"; + ""; + ; + . + + a ; + "1899"; + "1899-01-01"^^xsd:date; + "Tour"; + 1976; + "Singer"; + ""; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 198; + "Music Director"; + ; + ; + . + + a ; + "Tour"; + 199; + "of the first Ring des Nibelungen"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Permanent"; + 1995; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Guest"; + 1998; + "Singer"; + "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + ; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 2; + "Singer"; + ""; + ; + ; + . + + a ; + "1875-05-30"^^xsd:date; + "1875-05-30"^^xsd:date; + "1873-10-04"^^xsd:date; + "Tour"; + 20; + "Actor"; + "04.10.1873-30.05.1875 or later"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 200; + "Music Director"; + ; + . + + a ; + "1906"; + "1906-04-26"^^xsd:date; + "1906-04-26"^^xsd:date; + "1906"; + "1906-04-26"^^xsd:date; + "1906-04-26"^^xsd:date; + "Guest"; + 2001; + "Singer"; + "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Guest"; + 2004; + "Singer"; + "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Guest"; + 2007; + "Singer"; + "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 201; + "of the philharmonic concerts"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Guest"; + 2010; + "Singer"; + "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 2013; + "Singer"; + ; + ; + . + + a ; + "Emcee"; + "Tour"; + 2016; + ; + . + + a ; + "Tour"; + 2019; + "Singer"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 202; + "Gesellschaft der Musikfreunde"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + """emcee +"""; + "Tour"; + 2022; + "from time to time during this periode"; + ; + . + + a ; + "Cabaret Artist"; + "Tour"; + 2025; + "“Doppelconférence“"; + ; + . + + a ; + "Tour"; + 2028; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 203; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 2031; + "Director"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 2034; + "Director"; + ; + . + + a ; + "1951"; + "1951-12-31"^^xsd:date; + "1951-01-01"^^xsd:date; + "Tour"; + 2037; + "Director"; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-02"^^xsd:date; + "1850"; + "1850-01-01"^^xsd:date; + "1850-01-01"^^xsd:date; + "Other"; + 204; + "Actor"; + ""; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-05-23"^^xsd:date; + "Guest"; + 205; + "Actor"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 2063; + "Singer"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 2066; + "Singer"; + "Bernhard Scholz helped her to get the job. After marriage 1863 she finished her career as an opera singer and sang only in concerts again."; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1868-1880"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 2069; + "Singer"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 2072; + "Singer"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 2075; + "Singer"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 2078; + "Singer"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 2081; + "Singer"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 2084; + "Singer"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 2087; + "concert tours with Laura Rappoldi"; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 2090; + "Teacher (Theatre related)"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 2093; + "tour through USA"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 2096; + "Teacher (Theatre related)"; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 2099; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 21; + "Actor"; + ""; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 210; + "Actor"; + ""; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 2102; + "Singer"; + ; + . + + a ; + "Tour"; + 2105; + "Singer"; + ; + . + + a ; + "Tour"; + 2108; + "Singer"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21096; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 211; + "Actor"; + "played supporting roles alongside prominent actors like Edwin Booth and John Edward McCullough"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21100; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21104; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 21108; + "Actor"; + "4"; + ; + . + + a ; + "Tour"; + 2111; + "Singer"; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Society/Union"; + "Other"; + 21112; + "Author"; + "1"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Printed Media"; + "Other"; + 21116; + "Author"; + "3"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21120; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21124; + "Founder"; + "2"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-03"^^xsd:date; + "Traveling Company"; + "Tour"; + 21128; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 21132; + "Director"; + "4"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Traveling Company"; + "Guest"; + 21136; + "Actor"; + "Director"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 2114; + "Singer"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21140; + "Manager"; + "6"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21144; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 21148; + "Director"; + "8"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 21152; + "Director"; + "9"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 21156; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 21160; + "Actor"; + "11"; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 21164; + "Actor"; + "12"; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 21168; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 2117; + "Singer"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21172; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 21176; + "Actor"; + "2"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21180; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21184; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21188; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21192; + "Actor"; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21196; + "Actor"; + "Singer"; + "2"; + ; + ; + ; + . + + a ; + "Tour"; + 212; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 2120; + "Singer"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21200; + "Actor"; + "Singer"; + ""; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21204; + "Actor"; + "Singer"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21208; + "Actor"; + "Singer"; + "5"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21212; + "Actor"; + "Singer"; + "6"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21216; + "Actor"; + "Singer"; + "7"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21220; + "Actor"; + "Singer"; + "8"; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21224; + "Actor"; + "Singer"; + "9"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21228; + "Actor"; + "Singer"; + "10"; + ; + ; + . + + a ; + "Tour"; + 2123; + "Teacher (Theatre related)"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21232; + "Actor"; + "Singer"; + "11"; + ; + ; + . + + a ; + "10"; + "2010-12-31"^^xsd:date; + "2010-01-01"^^xsd:date; + "Society/Union"; + "Other"; + 21236; + "Actor"; + "Singer"; + "12"; + ; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 21240; + "Author"; + "1"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Other"; + 21244; + "Author"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21248; + "Director"; + "4"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21252; + "Director"; + "5"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21256; + "Director"; + "6"; + ; + ; + ; + . + + a ; + "engagement"; + "Tour"; + 2126; + "engagements in several German opera houses."; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 21260; + "Director"; + "7"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21264; + "Director"; + "8"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21268; + "Director"; + "9"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 21272; + "Director"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21280; + "Author"; + "10"; + ; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 21284; + "Director"; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 21288; + "Director"; + "11"; + ; + ; + ; + . + + a ; + "engagements"; + "Tour"; + 2129; + "engagements in Amsterdam."; + ; + . + + a ; + "End of 1919"; + "1919-12-31"^^xsd:date; + "1919-09-01"^^xsd:date; + "Theatre"; + "Other"; + 21292; + "Director"; + "13"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21296; + "Author"; + "Director"; + ""; + "14"; + ; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 213; + "Actor"; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Tour"; + 21300; + "Founder"; + "15"; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Guest"; + 21304; + "Director"; + "16"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21308; + "Director"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 21312; + "Translator"; + "Director"; + ""; + "17"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21316; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "engagement"; + "Tour"; + 2132; + "engagements in Prag."; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21320; + "Actor"; + "2"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21324; + "Director"; + "3"; + ; + ; + ; + . + + a ; + "Other"; + 21332; + "Actor"; + "2"; + ; + . + + a ; + "Other"; + 21336; + "Actor"; + "3"; + ; + . + + a ; + "Other"; + 21340; + "Actor"; + "4"; + ; + . + + a ; + "engagement"; + "Tour"; + 2135; + "engagements in Budapest."; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21356; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21360; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21364; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21368; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21372; + "Actor"; + "Singer"; + "5"; + ; + ; + ; + . + + a ; + "Between 1914 and 1915"; + "1915-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Theatre"; + "Tour"; + 21376; + "Singer"; + "6"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21380; + "Actor"; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Permanent"; + 21388; + "Singer"; + ""; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21396; + "Actor"; + "2"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 214; + "Actor"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21400; + "Singer"; + "3"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Guest"; + 21404; + "Author"; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Permanent"; + 21412; + "Actor"; + ""; + ; + . + + a ; + "Amateur"; + "Tour"; + 21416; + "Actor"; + "1"; + ; + ; + . + + a ; + "Tour"; + 21420; + "Actor"; + ; + . + + a ; + "Tour"; + 21424; + "Actor"; + "2"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 21428; + "Actor"; + "3"; + ; + . + + a ; + "Amateur"; + "Tour"; + 21432; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21440; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Media"; + "Other"; + 21444; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "October 1921"; + "1921-10-31"^^xsd:date; + "1921-10-01"^^xsd:date; + "Tour"; + 21448; + "Actor"; + "11"; + ; + . + + a ; + "Student"; + "Permanent"; + 2145; + "Studies with Vinzenz Lachner"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21456; + "Actor"; + "Stage manager"; + "14"; + ; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21460; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21476; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Student"; + "Permanent"; + 2148; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21480; + "Actor"; + "3"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Other"; + 21484; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21488; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21492; + "Actor"; + "6"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21496; + "Actor"; + "Other"; + "7"; + ; + ; + ; + . + + a ; + "Tour"; + 215; + "Actor"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Other"; + 21500; + "Actor"; + "8"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Traveling Company"; + "Other"; + 21504; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Other"; + 21508; + "Actor"; + "10"; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + 2151; + "Music Director"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 21512; + "Actor"; + "11"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 21516; + "Author"; + "1"; + ; + . + + a ; + "1870"; + "1870-11-30"^^xsd:date; + "1870-11-01"^^xsd:date; + "Tour"; + 21520; + "Author"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 21524; + "Author"; + "2"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Circus"; + "Tour"; + 21528; + "Author"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 21532; + "Actor"; + ""; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21536; + "Actor"; + "1"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Permanent"; + 2154; + "Music Director"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21540; + "Other"; + ""; + "2"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21544; + "Actor"; + "3"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21548; + "Actor"; + "Director"; + "4"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 21552; + "Director"; + "5"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21556; + "Director"; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21560; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21564; + "Actor"; + "8"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21568; + "Actor"; + "9"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Permanent"; + 2157; + "Music Director"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21576; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "1919-1920"; + "1920-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21580; + "Actor"; + "13"; + ; + ; + . + + a ; + "1920-1921"; + "1921-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21584; + "Actor"; + "14"; + ; + ; + . + + a ; + "1920-1929"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21588; + "Actor"; + "Director"; + "15"; + ; + ; + . + + a ; + "1926-1927"; + "1927-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21592; + "Actor"; + "Director"; + "16"; + ; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + 21596; + "Other"; + "1"; + ; + . + + a ; + "Tour"; + 216; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Permanent"; + 2160; + "Music Director"; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 21600; + "Other"; + "2"; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 21604; + "Other"; + "3"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 21608; + "Author"; + "5"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 21612; + "Author"; + "6"; + ; + . + + a ; + "Tour"; + 21616; + "Author"; + "7"; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 21620; + "Other"; + ""; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21624; + "Singer"; + "2"; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21628; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Permanent"; + 2163; + "Music Director"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21632; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21636; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 21640; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21644; + "Prompter"; + "1"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21648; + "Actor"; + ""; + "2"; + ; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + """Opera singer +"""; + "Tour"; + 2165; + "Singer"; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21652; + "Director"; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21656; + "Director"; + "4"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21660; + "Director"; + "5"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21664; + "Director"; + "6"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21668; + "Director"; + "7"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21672; + "Director"; + "8"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21676; + "Director"; + "9"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 2168; + "Singer"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21680; + "Director"; + "10"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21684; + "Director"; + "11"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 21688; + "Other"; + ""; + "2"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 21692; + "Manager"; + ""; + "3"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 21696; + "Manager"; + ""; + "4"; + ; + ; + ; + . + + a ; + "Tour"; + 217; + "Actor"; + ""; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 21700; + "Author"; + "1"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 21704; + "Other"; + "2"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 21708; + "Author"; + "3"; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 2171; + "Singer"; + ; + . + + a ; + "1924-09-01"; + "1924-12-31"^^xsd:date; + "2001-09-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21712; + "Author"; + "5"; + ; + ; + ; + . + + a ; + "1926-11-01"; + "2001-11-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21716; + "Author"; + "6"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 21720; + "Author"; + "7"; + ; + ; + ; + . + + a ; + "Musical Organization"; + "Tour"; + 21724; + "Singer"; + "2"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21728; + "Singer"; + ; + ; + ; + . + + a ; + "Musical Organization"; + "Tour"; + 21732; + "Singer"; + "3"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 21736; + "Actor"; + ""; + "4"; + ; + . + + a ; + "Tour"; + 2174; + "Teacher (Theatre related)"; + ; + . + + a ; + "Tour"; + 21740; + "Actor"; + "5"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21744; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 21748; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21752; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 21756; + "Actor"; + "9"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21760; + "Impresario"; + "1"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21764; + "Manager"; + "2"; + ; + ; + . + + a ; + "Tour"; + 21768; + "Manager"; + "3"; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 2177; + "Teacher (Theatre related)"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21772; + "Manager"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21776; + "Manager"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 21780; + "Director"; + "6"; + ; + . + + a ; + "Tour"; + 21784; + "Director"; + "7"; + ; + . + + a ; + "Tour"; + 21788; + "Director"; + "8"; + ; + . + + a ; + "Tour"; + 21792; + "Director"; + "9"; + ; + . + + a ; + "Tour"; + 21796; + "Director"; + "10"; + ; + . + + a ; + "Tour"; + 218; + "Other"; + "Producer"; + ; + . + + a ; + "Tour"; + 2180; + "Teacher (Theatre related)"; + ; + . + + a ; + "Amateur"; + "Tour"; + 21800; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21804; + "Actor"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21808; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21812; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 21816; + "Actor"; + "4"; + ; + . + + a ; + "Tour"; + 21820; + "Actor"; + "5"; + ; + . + + a ; + "Tour"; + 21824; + "Actor"; + "6"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 21828; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 21832; + "Actor"; + "8"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 21836; + "Actor"; + "9"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 21840; + "Actor"; + "10"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 21844; + "Actor"; + "11"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 21848; + "Actor"; + "12"; + ; + . + + a ; + "Tour"; + 21852; + "Actor"; + "13"; + ; + . + + a ; + "Tour"; + 21856; + "Singer"; + ""; + "1"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 21860; + "Singer"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21864; + "Actor"; + "2"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21868; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1920-1922"; + "1922-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21872; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21876; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21880; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 21884; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-03"^^xsd:date; + "1899-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21888; + "Founder"; + ""; + ; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 21892; + "Actor"; + "1"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 21896; + "Actor"; + "2"; + ; + . + + a ; + "Tour"; + 219; + "Actor"; + "English debut"; + ; + ; + . + + a ; + "1905-06-01"; + "1906-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 21900; + "Manager"; + "3"; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21904; + "Actor"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21908; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21912; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 21916; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 21920; + "Actor"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21924; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 21928; + "Other"; + ""; + "6"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 21932; + "Actor"; + "7"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 21936; + "Actor"; + "1"; + ; + . + + a ; + "Amateur"; + "Tour"; + 21940; + "Actor"; + "2"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 21944; + "Actor"; + "3"; + ; + ; + . + + a ; + "Tour"; + 21948; + "Other"; + ""; + ; + . + + a ; + "Printed Media"; + "Tour"; + 21952; + "Actor"; + "1"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 21956; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 21960; + "Author"; + ""; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 21964; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 21968; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 21972; + "Other"; + ""; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21976; + "Manager"; + "5"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 21980; + "Founder"; + "6"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21984; + "Director"; + "7"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 21988; + "Director"; + "8"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 21992; + "Founder"; + ""; + ; + ; + ; + . + + a ; + "1923-1924"; + "1924-03-30"^^xsd:date; + "1923-11-01"^^xsd:date; + "Society/Union"; + "Tour"; + 21996; + "Manager"; + ; + ; + ; + . + + a ; + "December 1878"; + "1878-12-31"^^xsd:date; + "1878-12-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 22; + "Actor"; + "Start 1877, End between 10. June 1878 and the end of 1878"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 220; + "Actor"; + "often acting in the plays of Henrik Ibsen"; + ; + ; + . + + a ; + "1925-08-01"; + "1925-08-30"^^xsd:date; + "1925-08-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 22000; + "Director"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22004; + "Manager"; + "9"; + ; + ; + ; + . + + a ; + "1926-1927"; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22008; + "Manager"; + ""; + "10"; + ; + ; + ; + . + + a ; + "Guest"; + 2201; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 22012; + "Director"; + "11"; + ; + ; + ; + . + + a ; + "1895-1896"; + "1896-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22016; + "Author"; + "1"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22020; + "Founder"; + "2"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22024; + "Author"; + ""; + "3"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22028; + "Author"; + "4"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22032; + "Journalist"; + "5"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22036; + "Journalist"; + "6"; + ; + ; + ; + . + + a ; + "Guest"; + 2204; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 22040; + "Other"; + ""; + "7"; + ; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 22044; + "Other"; + ""; + "8"; + ; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 22048; + "Other"; + ""; + "9"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22052; + "Other"; + ""; + "10"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 22056; + "Other"; + ""; + "11"; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 22060; + "Other"; + ""; + "12"; + ; + ; + . + + a ; + "1902-1912"; + "1912-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 22064; + "Director"; + "12"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22068; + "Author"; + "13"; + ; + ; + ; + . + + a ; + "Guest"; + 2207; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22072; + "Translator"; + "14"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22076; + "Translator"; + "15"; + ; + ; + ; + . + + a ; + "1885-86"; + "1886-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22080; + "Singer"; + "1"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Musical Organization"; + "Tour"; + 22084; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Tour"; + 22088; + "Other"; + ""; + "3"; + ; + . + + a ; + "Tour"; + 22092; + "Actor"; + "4"; + ; + . + + a ; + "Tour"; + 22096; + "Actor"; + "6"; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Tour"; + 221; + "Actor"; + "contract with Metro Pictures"; + ; + . + + a ; + "Guest"; + 2210; + ; + ; + . + + a ; + "Tour"; + 22100; + "Actor"; + "7"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22104; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 22108; + "Actor"; + "9"; + ; + . + + a ; + "1911-1912"; + "1911-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22112; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Tour"; + 22116; + "Other"; + ""; + "2"; + ; + . + + a ; + "Tour"; + 22120; + ""; + "3"; + ; + . + + a ; + "Tour"; + 22124; + "Author"; + "4"; + ; + . + + a ; + "1924 (June-September)"; + "1924-09-30"^^xsd:date; + "1924-06-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22128; + "Author"; + "5"; + ; + ; + . + + a ; + "Guest"; + 2213; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22132; + "Other"; + ""; + "6"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22136; + "Author"; + "7"; + ; + ; + ; + . + + a ; + "1967"; + "1967-12-31"^^xsd:date; + "1967-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22140; + "Author"; + "8"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 22144; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22148; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22152; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 22156; + "Actor"; + "4"; + ; + ; + . + + a ; + "Tour"; + 2216; + "tours all around music centres"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22160; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22164; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22168; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22172; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22176; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22180; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1930"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22184; + "Author"; + ""; + "11"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22188; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 2219; + "tours all around music centres"; + ; + . + + a ; + "1888-1889"; + "1888-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22192; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22196; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 222; + "Singer"; + ""; + ; + . + + a ; + "1889-1891"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22200; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1891-1892"; + "1891-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22204; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22208; + "Actor"; + "6"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22212; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 22216; + "Director"; + "9"; + ; + ; + ; + . + + a ; + "Tour"; + 2222; + "tours all around music centres"; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 22220; + "Director"; + "10"; + ; + ; + ; + . + + a ; + "1921-1923"; + "1923-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 22224; + "Other"; + ""; + "11"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22228; + "Other"; + ""; + "12"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22232; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22236; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22240; + "Actor"; + "2"; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 22244; + "Actor"; + "3"; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 22248; + "Actor"; + "4"; + ; + ; + . + + a ; + "Tour"; + 2225; + "tours all around music centres"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22252; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1925-6-1"; + "1926-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22256; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1926-07-01"; + "1927-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22260; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1928-09-01"; + "1929-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22264; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22268; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22272; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 22276; + "Founder"; + "4"; + ; + ; + ; + . + + a ; + "Tour"; + 2228; + "tours all around music centres"; + ; + . + + a ; + "Tour"; + 22280; + "Teacher (Theatre related)"; + "5"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22284; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22288; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Tour"; + 22292; + "Actor"; + "8"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22296; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Tour"; + 223; + "Singer"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22300; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22304; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 22308; + "Founder"; + "12"; + ; + ; + ; + . + + a ; + "Tour"; + 2231; + "tours all around music centres"; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22312; + "Other"; + ""; + "13"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 22316; + "Other"; + ""; + "1"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22320; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22324; + "Actor"; + "3"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22328; + "Actor"; + "4"; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 22332; + "Actor"; + "5"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22336; + "Actor"; + "6"; + ; + ; + . + + a ; + "Tour"; + 2234; + "tours all around music centres"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22340; + "Actor"; + "7"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22344; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22348; + "Music Director"; + "2"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22352; + "Author"; + "4"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22356; + "Author"; + "5"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 22360; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 22364; + "Actor"; + "1"; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 22368; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Tour"; + 2237; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22372; + "Author"; + "4"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22376; + "Other"; + ""; + "1"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22380; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22384; + "Composer"; + "3"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22388; + "Actor"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22392; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 22396; + "Actor"; + "2"; + ; + . + + a ; + "Tour"; + 224; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 2240; + ; + ; + . + + a ; + "1888-1890"; + "1888-01-01"^^xsd:date; + "Tour"; + 22400; + "Actor"; + "3"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 22404; + "Singer"; + "3"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 22408; + "Singer"; + "4"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22412; + "Actor"; + "5"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22416; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22420; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22424; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1890-1-1"; + "1891-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22428; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Tour"; + 2243; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22432; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22436; + "Other"; + ""; + "11"; + ; + ; + ; + . + + a ; + "1921-28"; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22440; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "1929-30"; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22444; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "1931-02-01"; + "1932-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22448; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22452; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "Tour"; + 22456; + "Actor"; + ""; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 2246; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22460; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1881-1882"; + "1881-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22464; + "Director"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22472; + "Actor"; + ""; + "He had the same wandering ways with his parents, until he had made Paris his place of rest."; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22476; + "Actor"; + "1"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22480; + "Manager"; + ""; + "2"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22484; + ""; + "3"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22488; + "Actor"; + "4"; + ; + ; + . + + a ; + "Tour"; + 2249; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22492; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22496; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 225; + "Singer"; + ; + . + + a ; + "1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22500; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 22504; + "Prompter"; + "1"; + ; + . + + a ; + "Tour"; + 22508; + ""; + "2"; + . + + a ; + "Tour"; + 22512; + "Actor"; + "3"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22516; + "Prompter"; + "4"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 2252; + ; + ; + . + + a ; + "26-1-1894"; + "1894-01-26"^^xsd:date; + "1894-01-26"^^xsd:date; + "Theatre"; + "Permanent"; + 22520; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 22524; + "Actor"; + ""; + ; + . + + a ; + "1916-1918"; + "1916-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22528; + "Prompter"; + "1"; + ; + ; + . + + a ; + "1918-1919"; + "1918-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22532; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22536; + "Actor"; + "3"; + ; + ; + . + + a ; + "1919-1920"; + "1919-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22540; + "Actor"; + "4"; + ; + ; + . + + a ; + "1921-1922"; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22544; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22548; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Tour"; + 2255; + ; + ; + . + + a ; + "1923-1924"; + "1923-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22552; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 22556; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22560; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22564; + "Other"; + ""; + ; + ; + . + + a ; + "1932-1933"; + "1932-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22568; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Tour"; + 22572; + "Composer"; + ""; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 22576; + "Music Director"; + "1"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 2258; + "Singer"; + "1875-1880s"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22580; + "Music Director"; + ; + ; + ; + . + + a ; + "Tour"; + 22584; + "Journalist"; + ""; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22588; + "Journalist"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22592; + "Author"; + ; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 22596; + "Director"; + ; + . + + a ; + "Tour"; + 226; + "Singer"; + ; + . + + a ; + "Tour"; + 22600; + "Composer"; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22604; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22608; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 2261; + "Singer"; + "she sang together with her brothers"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 22612; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 22616; + "Actor"; + "4"; + ; + . + + a ; + "Tour"; + 22620; + "Actor"; + "5"; + ; + . + + a ; + "Tour"; + 22624; + "Actor"; + "6"; + ; + . + + a ; + "Tour"; + 22628; + "Actor"; + "7"; + ; + . + + a ; + "Tour"; + 22632; + "Actor"; + "8"; + ; + . + + a ; + "Tour"; + 22636; + "Actor"; + "9"; + ; + . + + a ; + "Tour"; + 2264; + "At the end of the opera seasons, Josephine returned to Warsaw where she performed for charities, as her mother had. She gave any income that she made in Poland to charity."; + ; + . + + a ; + "Tour"; + 22640; + "Actor"; + "10"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22644; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22648; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22652; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22656; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22660; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22664; + "Actor"; + "16"; + ; + ; + ; + . + + a ; + "1931-1932"; + "1931-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22668; + "Actor"; + "17"; + ; + ; + . + + a ; + "Tour"; + 2267; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22672; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22676; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1896-07-01"; + "1897-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 22680; + "Actor"; + "3"; + ; + . + + a ; + "1896-07-01"; + "1897-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 22684; + "Actor"; + "4"; + ; + . + + a ; + "1896-07-01"; + "1897-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 22688; + "Actor"; + "5"; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22692; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 22696; + "Actor"; + "7"; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 227; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 2270; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 22700; + "Actor"; + "8"; + ; + . + + a ; + "1898-1899"; + "1898-01-01"^^xsd:date; + "Tour"; + 22704; + "Actor"; + "9"; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22708; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22712; + "Director"; + ""; + "11"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22716; + "Founder"; + ""; + "12"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22720; + "Founder"; + ""; + "13"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 22724; + "Actor"; + "14"; + ; + . + + a ; + "1912-1919"; + "1912-01-01"^^xsd:date; + "Tour"; + 22728; + "Actor"; + "15"; + ; + . + + a ; + "Tour"; + 2273; + ; + . + + a ; + "1929-30"; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22732; + "Actor"; + "16"; + ; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22736; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1904-1906"; + "1904-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22740; + "Singer"; + "2"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22744; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 22748; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22752; + "Singer"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22756; + "Singer"; + "4"; + ; + ; + ; + . + + a ; + "Tour"; + 2276; + ; + . + + a ; + "1912-1913"; + "1913-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22760; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22764; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1917-1918"; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22768; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1918-1919"; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22772; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1919-1920"; + "1919-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22776; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22780; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "1921-1922"; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22784; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1922-1924"; + "1922-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22788; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "Tour"; + 2279; + ; + . + + a ; + "1924-1925"; + "1924-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22792; + "Actor"; + "16"; + ; + ; + . + + a ; + "1926-1927"; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22796; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "Tour"; + 228; + "Singer"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22800; + "Actor"; + "19"; + ; + ; + ; + . + + a ; + "1927-1928"; + "1927-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22804; + "Actor"; + "20"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1929-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 22808; + "Actor"; + "21"; + ; + ; + ; + . + + a ; + "1897"; + "1897-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 22812; + "Other"; + ""; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-04"^^xsd:date; + "Printed Media"; + "Tour"; + 22816; + "Author"; + ; + ; + ; + . + + a ; + "Tour"; + 2282; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-04"^^xsd:date; + "Printed Media"; + "Tour"; + 22820; + "Author"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22824; + "Author"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22828; + "Author"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22832; + "Author"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22836; + "Author"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22840; + "Author"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22844; + ""; + ; + ; + ; + . + + a ; + "from 1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 22848; + "Author"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 2285; + "Singer"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22852; + ""; + "1"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 22856; + ""; + "2"; + ; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1844"; + "Tour"; + 2286; + "Singer"; + "her uncle gave her the job, she left Dresden because of his political trouble"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22860; + ""; + ; + ; + ; + . + + a ; + "1915-01-01"; + "1919-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22864; + ""; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22868; + ""; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22872; + ""; + "1"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22876; + "Prompter"; + "2"; + ; + ; + ; + . + + a ; + "1906-1908"; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22880; + "Actor"; + "3"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22884; + "Actor"; + "4"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22888; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1850"; + "1848"; + "Tour"; + 2289; + "Singer"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 22892; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 22896; + "Actor"; + "7"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + """Opera singer +"""; + "Tour"; + 229; + "Singer"; + "because of invitation of König Ludwig II, after he heard him in Darmstadt, he sang 700 times in Munich, also in all Wagner operas, UA Meistersinger von Nürnberg"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 22900; + "Actor"; + "8"; + ; + ; + . + + a ; + "1913-1919"; + "1913-01-01"^^xsd:date; + "Tour"; + 22904; + "Director"; + "9"; + ; + . + + a ; + "1919-1920"; + "1919-01-01"^^xsd:date; + "Tour"; + 22908; + "Director"; + "10"; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22912; + "Author"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22916; + "Author"; + ; + ; + ; + . + + a ; + "Tour"; + 2292; + "Singer"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22920; + "Author"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22924; + "Author"; + ; + . + + a ; + "Society/Union"; + "Tour"; + 22928; + "Founder"; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22932; + "Other"; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22936; + "Journalist"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22940; + "Journalist"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22944; + "Journalist"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22948; + "Journalist"; + ; + ; + ; + . + + a ; + "1861"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1850"; + "Tour"; + 2295; + "Singer"; + "1853 appointment as Kammersängerin. 1862 resignation from the stage, but again on stage as an actress two years later"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22952; + "Other"; + ; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22956; + "Journalist"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 22960; + "Author"; + "1"; + ; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 22964; + "Other"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22968; + ""; + ; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 22972; + "Journalist"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 22976; + "Journalist"; + ; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1870"; + "Tour"; + 2298; + "Actor"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22980; + "Journalist"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 22984; + "Author"; + "1"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 22988; + "Author"; + "2"; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 22992; + "Founder"; + "3"; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 22996; + "Founder"; + "4"; + ; + ; + ; + . + + a ; + "1879"; + "1879-07-31"^^xsd:date; + "1879-07-01"^^xsd:date; + "Tour"; + 23; + "Actor"; + "summer 1879"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 230; + "Singer"; + ""; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23000; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23004; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Circus"; + "Tour"; + 23008; + "Director"; + "3"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1882"; + "Tour"; + 2301; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1892-1893"; + "1892-01-01"^^xsd:date; + "Tour"; + 23012; + "Actor"; + "4"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 23016; + "Actor"; + "5"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23020; + "Actor"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23024; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23028; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 2303; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 23032; + "Founder"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23036; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23040; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23044; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1921-1925"; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23048; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1921-1925"; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23052; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Media"; + "Tour"; + 23056; + "Actor"; + "6"; + ; + ; + . + + a ; + "Guest"; + 2306; + ; + . + + a ; + "1925-1926"; + "1925-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23060; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1926-1927"; + "1926-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23064; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1927-1928"; + "1927-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23068; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1928-1929"; + "1928-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23072; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23076; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23080; + "Actor"; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 23084; + "Actor"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23088; + "Actor"; + ; + ; + ; + . + + a ; + "Guest"; + 2309; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23092; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23096; + "Actor"; + ; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 231; + ""; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23100; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 23104; + "Actor"; + "4"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23108; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23112; + "Actor"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23116; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Guest"; + 2312; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23120; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1897-1898"; + "1898-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 23124; + "Director"; + "8"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23128; + "Singer"; + "1"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23132; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23136; + "Actor"; + ; + ; + ; + . + + a ; + "1906-1907"; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23140; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 23144; + "Founder"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 23148; + "Actor"; + "1"; + ; + . + + a ; + "Guest"; + 2315; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 23152; + "Actor"; + "2"; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 23156; + "Actor"; + "3"; + ; + ; + . + + a ; + "Tour"; + 23160; + "Actor"; + "4"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23164; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Musical Organization"; + "Tour"; + 23168; + ""; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23172; + ""; + "1"; + ; + ; + ; + . + + a ; + "1887-1888"; + "1887-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23176; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Guest"; + 2318; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23180; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23184; + "Actor"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23188; + "Actor"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23192; + ""; + ; + ; + ; + . + + a ; + "Tour"; + 23196; + "Actor"; + ; + . + + a ; + "Guest "; + "Tour"; + 232; + ""; + ; + . + + a ; + "since 1920"; + "1920-01-01"^^xsd:date; + "Tour"; + 23200; + "Actor"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Other"; + "Tour"; + 23204; + "Singer"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23208; + "Actor"; + "1"; + ; + ; + . + + a ; + "Guest"; + 2321; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 23212; + "Manager"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 23216; + "Actor"; + "2"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23220; + ""; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Kleinkunst"; + "Tour"; + 23224; + "Actor"; + "3"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23228; + "Director"; + "4"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23232; + ""; + ; + ; + ; + . + + a ; + "1926-1930"; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23236; + ""; + "5"; + ; + ; + ; + . + + a ; + """Opera singer +"""; + "Tour"; + 2324; + "Singer"; + "she sing together with her father"; + ; + . + + a ; + "1930-1931"; + "1930-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23240; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Tour"; + 23244; + "Actor"; + "7"; + . + + a ; + "Printed Media"; + "Tour"; + 23248; + ""; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23252; + "Actor"; + "2"; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23256; + "Prompter"; + "3"; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23260; + ""; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23264; + "Actor"; + ; + ; + . + + a ; + "1915-1917"; + "1915-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23268; + "Director"; + "4"; + ; + ; + ; + . + + a ; + "Guest"; + 2327; + "Singer"; + "she sing together with her father"; + ; + ; + . + + a ; + "Tour"; + 23272; + "Director"; + "5"; + ; + . + + a ; + "Tour"; + 23276; + "Director"; + "6"; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 23280; + "Actor"; + "7"; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23284; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 23288; + "Actor"; + "9"; + ; + . + + a ; + "1927-1928"; + "1928-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23292; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1930-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23296; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 233; + ""; + ; + . + + a ; + """Opera singer +"""; + "Tour"; + 2330; + "Singer"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23300; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 23304; + "Actor"; + "2"; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23308; + "Actor"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 23312; + "Actor"; + "1"; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23316; + "Prompter"; + ; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 23320; + "Prompter"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23324; + "Prompter"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23328; + "Prompter"; + ; + ; + ; + . + + a ; + "Tour"; + 2333; + "Singer"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23332; + "Actor"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23336; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23340; + "Director"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23344; + "Actor"; + ; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23348; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23352; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Tour"; + 23356; + "Actor"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 2336; + "Singer"; + "Hermann Levi engaged him in München."; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23360; + "Actor"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23364; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1890-07-02"; + "1890-02-07"^^xsd:date; + "1890-02-07"^^xsd:date; + "Theatre"; + "Permanent"; + 23368; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 23372; + "Actor"; + "6"; + ; + . + + a ; + "Tour"; + 23376; + "Actor"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23380; + "Actor"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23384; + "Actor"; + "7"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23388; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23392; + "Actor"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23396; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 234; + "Other"; + "Musician"; + ""; + ; + . + + a ; + "1880"; + "1990-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23400; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23404; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Until 1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 23408; + "Actor"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23412; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1890-2-1"; + "1891-02-28"^^xsd:date; + "1890-02-01"^^xsd:date; + "Tour"; + 23416; + "Actor"; + "5"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23420; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23424; + "Prompter"; + "2"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23428; + "Actor"; + "3"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23432; + "Actor"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23436; + "Actor"; + "5"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23440; + "Actor"; + "6"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23444; + "Actor"; + "7"; + ; + ; + . + + a ; + "Tour"; + 23448; + "Actor"; + "8"; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23452; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 23456; + "Director"; + "10"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23460; + ""; + "11"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23464; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 23468; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 23472; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23476; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23480; + "Director"; + "16"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23484; + "Actor"; + "17"; + ; + ; + ; + . + + a ; + "1925-1927"; + "1927-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23488; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "1925-1927"; + "1927-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23492; + ""; + "19"; + ; + ; + ; + . + + a ; + "1925-1927"; + "1927-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Amateur"; + "Tour"; + 23496; + "Director"; + "20"; + ; + ; + ; + . + + a ; + "Assistant"; + "Tour"; + 235; + "Assistant of Hans Richter at the first Bayreuther Festspiele"; + ; + ; + . + + a ; + "1928-29"; + "1929-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 23500; + "Actor"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1930-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23504; + "Actor"; + "21"; + ; + ; + ; + . + + a ; + "1930-1931"; + "1930-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23508; + "Actor"; + "22"; + ; + ; + ; + . + + a ; + "1931-1932"; + "1932-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23512; + "Actor"; + "23"; + ; + ; + ; + . + + a ; + "1932-33"; + "1933-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23516; + "Actor"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 23520; + "Manager"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23524; + ""; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23528; + "Singer"; + "1"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23532; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23536; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23540; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23544; + "Actor"; + "5"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 23548; + ""; + "6"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 23552; + "Actor"; + "7"; + ; + . + + a ; + "Tour"; + 23556; + "Actor"; + ; + . + + a ; + "Tour"; + 23560; + "Actor"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23564; + "Prompter"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 23568; + "Founder"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23572; + "Prompter"; + ; + ; + . + + a ; + "Other"; + "Tour"; + 23576; + "Actor"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23580; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 23584; + "Actor"; + "2"; + ; + . + + a ; + "Tour"; + 23588; + "Actor"; + "3"; + ; + . + + a ; + "Tour"; + 23592; + "Actor"; + "4"; + ; + . + + a ; + "Printed Media"; + "Tour"; + 23596; + "Author"; + ; + ; + ; + . + + a ; + "Tour"; + 236; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 23600; + "Author"; + ; + ; + ; + . + + a ; + "Tour"; + 23604; + "Prompter"; + "1"; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23608; + "Prompter"; + "3"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23612; + "Prompter"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23616; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23620; + "Singer"; + "2"; + ; + ; + ; + . + + a ; + "1889-1890"; + "1890-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 23624; + "Actor"; + "3"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Other"; + "Tour"; + 23628; + "Actor"; + "4"; + ; + ; + . + + a ; + "1894-1897"; + "1897-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 23632; + "Actor"; + "5"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 23636; + "Actor"; + "6"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23640; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23644; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1905-1910"; + "1910-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 23648; + "Actor"; + "9"; + ; + . + + a ; + "1905-1910"; + "1910-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 23652; + "Actor"; + "10"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 23656; + "Actor"; + "11"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 23660; + "Actor"; + "12"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23664; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 23668; + "Actor"; + "14"; + ; + . + + a ; + "1912-1914"; + "1914-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 23672; + "Actor"; + "15"; + ; + . + + a ; + "1912-1914"; + "1914-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 23676; + "Actor"; + "16"; + ; + . + + a ; + "1912-1914"; + "1914-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 23680; + "Actor"; + "17"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23684; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23688; + ""; + "19"; + ; + ; + ; + . + + a ; + "Guest"; + 2369; + ; + . + + a ; + "1918-1927"; + "1927-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 23692; + "Actor"; + "20"; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 23696; + "Actor"; + "21"; + ; + . + + a ; + "Tour"; + 237; + "UA of his first opera Agnes Bernauer, promoted by Franz Liszt"; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23700; + "Actor"; + ; + ; + . + + a ; + "Amateur"; + "Tour"; + 23704; + "Actor"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Musical Organization"; + "Tour"; + 23708; + "Singer"; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23712; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1896-1899"; + "1896-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23716; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Guest"; + 2372; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23720; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23724; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 23728; + "Actor"; + ; + . + + a ; + "Tour"; + 23732; + "Actor"; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23736; + "Founder"; + "6"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23740; + "Founder"; + "7"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23744; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23748; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Guest"; + 2375; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23752; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23756; + ""; + "11"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23760; + "Director"; + "12"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23764; + "Director"; + "13"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23768; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23772; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 23776; + ""; + "16"; + ; + ; + ; + . + + a ; + "Guest"; + 2378; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23780; + "Actor"; + "17"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23784; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 23788; + "Actor"; + "2"; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 23792; + "Actor"; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 23796; + "Actor"; + "3"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 238; + "Music Director"; + ""; + ; + ; + . + + a ; + "Tour"; + 23800; + ""; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23804; + "Actor"; + "1"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 23808; + "Actor"; + "2"; + ; + ; + . + + a ; + "Guest"; + 2381; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23812; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23816; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23820; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23824; + "Actor"; + "4"; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23828; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23832; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23836; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Guest"; + 2384; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23840; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23844; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Tour"; + 23848; + "Actor"; + "10"; + ; + . + + a ; + "Tour"; + 23852; + ""; + ; + . + + a ; + "Society/Union"; + "Tour"; + 23856; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23860; + "Director"; + ; + ; + . + + a ; + "Tour"; + 23864; + "Actor"; + ""; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23868; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Guest"; + 2387; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23872; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23876; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Education (Theatre related)"; + "Tour"; + 23880; + "Actor"; + "1"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23884; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 23888; + "Actor"; + "3"; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 23892; + "Actor"; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 23896; + "Actor"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 239; + ""; + ; + . + + a ; + "Guest"; + 2390; + ; + . + + a ; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "between 1887 and 1902"; + "1902-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 23900; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Tour"; + 23916; + "Actor"; + "8"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23920; + "Actor"; + "9"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23924; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Tour"; + 23928; + "Actor"; + "11"; + ; + . + + a ; + "Guest"; + 2393; + ; + . + + a ; + "Tour"; + 23932; + "Actor"; + "12"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 23936; + "Director"; + "13"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 23940; + "Actor"; + "14"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 23944; + "Actor"; + "15"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 23948; + "Actor"; + "16"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23952; + "Director"; + "17"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23956; + "Director"; + "18"; + ; + ; + ; + . + + a ; + "Guest"; + 2396; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23960; + "Director"; + "19"; + ; + ; + ; + . + + a ; + "Media"; + "Tour"; + 23964; + ""; + ; + ; + . + + a ; + "Tour"; + 23968; + "Singer"; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23972; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 23976; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23980; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 23984; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 23988; + "Actor"; + "6"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 2399; + "his father died and he must earn money for the family, so he became chief-conductor at Carltheater"; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 23992; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 23996; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1879"; + "1879-07-31"^^xsd:date; + "1879-07-01"^^xsd:date; + "Tour"; + 24; + "Actor"; + ""; + ; + . + + a ; + "Tour"; + 240; + "Music Director"; + ""; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24000; + "Actor"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24004; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "before 1885"; + "1884-12-31"^^xsd:date; + "1883-04-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 24008; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24012; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "before 1888"; + "1888-12-31"^^xsd:date; + "1883-04-01"^^xsd:date; + "1883 or 1884"; + "1884-12-31"^^xsd:date; + "1883-04-01"^^xsd:date; + "Itinerant"; + 24016; + "Actor"; + "6"; + ; + ; + . + + a ; + "Tour"; + 2402; + ; + ; + . + + a ; + "Permanent"; + 24020; + "Actor"; + "7"; + ; + ; + . + + a ; + "Tour"; + 24024; + "Actor"; + "8"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24028; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24032; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Traveling Company"; + "Itinerant"; + 24036; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "Itinerant"; + 24040; + "Actor"; + "12"; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "after 1891"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Guest"; + 24044; + "Actor"; + "13"; + ; + . + + a ; + "Itinerant"; + 24048; + "Actor"; + "14"; + ; + ; + . + + a ; + "Tour"; + 2405; + "Director"; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "after 1891"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Guest"; + 24052; + "Actor"; + "15"; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "after 1891"; + "1901-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Guest"; + 24056; + "Actor"; + "16"; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Itinerant"; + 24060; + "Actor"; + "17"; + ; + . + + a ; + "1929-30"; + "1930-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24064; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24068; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24072; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 24076; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 2408; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24080; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24084; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24088; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1914-1921"; + "1921-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 24092; + "Actor"; + "7"; + ; + . + + a ; + "1921-1926"; + "1926-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24096; + "Actor"; + "8"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 241; + ""; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24100; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24104; + "Actor"; + "10"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24108; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 2411; + "Music Director"; + ; + ; + . + + a ; + "probably in 1882 oder 1883"; + "1883-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 24112; + "Actor"; + ; + ; + ; + . + + a ; + "probably 1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 24116; + "Actor"; + "1"; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24120; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 24124; + "Actor"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24128; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "between 1891 and 1899"; + "1899-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24132; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "between 1891 and 1899"; + "1899-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24136; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 2414; + ; + ; + . + + a ; + "1900-1909"; + "1909-12-31"^^xsd:date; + "1900-01-03"^^xsd:date; + "Theatre"; + "Permanent"; + 24140; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "between 1909 and 1911"; + "1911-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24144; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "between 1909 and 1911"; + "1911-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24148; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "after March 1917"; + "1917-12-31"^^xsd:date; + "1917-03-01"^^xsd:date; + "Permanent"; + 24152; + "Director"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 24156; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 24160; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 24164; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 24168; + "Actor"; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 2417; + "Music Director"; + ; + ; + . + + a ; + "1911-1912"; + "1912-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24172; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Summer 1912"; + "1912-09-23"^^xsd:date; + "1912-06-24"^^xsd:date; + "Theatre"; + "Permanent"; + 24176; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1912-1913"; + "1913-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24180; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "Beginning of 1915"; + "1915-04-30"^^xsd:date; + "1915-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24188; + "Director"; + "12"; + ; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24192; + "Director"; + "Author"; + "13"; + ; + ; + ; + . + + a ; + "March 1917"; + "1917-03-31"^^xsd:date; + "1917-03-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24196; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 242; + ""; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 2420; + "Teacher (Theatre related)"; + "Manager"; + ; + ; + . + + a ; + "1921-1922"; + "1922-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24200; + "Director"; + "15"; + ; + ; + ; + . + + a ; + "1922-1923"; + "1923-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24204; + "Actor"; + "16"; + ; + ; + ; + . + + a ; + "1923-1924"; + "1924-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24208; + "Actor"; + "17"; + ; + ; + ; + . + + a ; + "Guest"; + 2421; + ; + . + + a ; + "1923-1925"; + "1925-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24212; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 24216; + "Director"; + ; + . + + a ; + "April 1927"; + "1927-12-31"^^xsd:date; + "1927-04-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24220; + "Director"; + "19"; + ; + ; + ; + . + + a ; + "September 1928"; + "1928-09-30"^^xsd:date; + "1928-09-01"^^xsd:date; + "Tour"; + 24224; + "Director"; + "Actor"; + "20"; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24228; + "Actor"; + "21"; + ; + ; + ; + . + + a ; + "1917-20"; + "1920-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24232; + "Singer"; + "2"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 24236; + "Singer"; + "3"; + ; + . + + a ; + "Guest"; + 2424; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24240; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 24244; + "Actor"; + "5"; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Printed Media"; + "Tour"; + 24248; + ; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Tour"; + 24252; + ""; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 24256; + "Journalist"; + ; + . + + a ; + "Tour"; + 24260; + "Author"; + . + + a ; + "9th February 1894"; + "1894-02-09"^^xsd:date; + "1894-02-09"^^xsd:date; + "Theatre"; + "Permanent"; + 24264; + "Author"; + "1"; + ; + ; + ; + . + + a ; + "24th October 1890"; + "1890-10-24"^^xsd:date; + "1890-10-24"^^xsd:date; + "Theatre"; + "Permanent"; + 24268; + "Author"; + "2"; + ; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Tour"; + 2427; + "1931 Kroll-Oper went bankrupt"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24272; + ""; + "3"; + ; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24276; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Tour"; + 24280; + ""; + ; + . + + a ; + "Tour"; + 24284; + "Actor"; + ""; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24288; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Tour"; + 24292; + "Singer"; + "5"; + ; + . + + a ; + "Tour"; + 24296; + "Singer"; + "6"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 243; + ""; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24300; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24304; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24308; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24312; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24316; + "Actor"; + "11"; + ; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "Tour"; + 2432; + "Singer"; + "Tournee in France, Belgium and Holland in 1938 and again in 1950"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24320; + "Actor"; + "12"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Traveling Company"; + "Guest"; + 24324; + "Actor"; + "13"; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 24328; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24332; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24336; + "Actor"; + "16"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24340; + "Actor"; + "17"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24344; + "Actor"; + "18"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24348; + "Actor"; + "19"; + ; + ; + ; + . + + a ; + "Guest"; + 2435; + "Singer"; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 24352; + "Actor"; + "20"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 24356; + "Actor"; + "21"; + ; + ; + ; + . + + a ; + "1927-28"; + "1928-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24360; + "Actor"; + "22"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 24364; + "Actor"; + "23"; + ; + ; + ; + . + + a ; + "Tour"; + 24368; + "Actor"; + ""; + . + + a ; + "Tour"; + 24372; + "Actor"; + "1"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 24376; + "Actor"; + "1"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 2438; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 24380; + "Actor"; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Tour"; + 24384; + "Actor"; + "2"; + ; + . + + a ; + "Tour"; + 24388; + "Actor"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 24392; + "Actor"; + "3"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 24396; + "Actor"; + "4"; + ; + . + + a ; + "Tour"; + 244; + "first conducter"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 24400; + "Actor"; + "5"; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 24404; + "Actor"; + "6"; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24408; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24412; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24416; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Tour"; + 2442; + "Singer"; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24420; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24424; + "Actor"; + "11"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24428; + "Actor"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24432; + "Actor"; + "12"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 24436; + "Actor"; + "13"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24440; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1929-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24444; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "between 1893 and 1894"; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24448; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 2445; + "Singer"; + ; + . + + a ; + "probably 1893 or 1894"; + "Theatre"; + "Permanent"; + 24452; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1894-1897"; + "1897-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24456; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "probably in between 1897 and 1906"; + "probably in between 1897 and 1906"; + "Permanent"; + 24460; + "Actor"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24464; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24468; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 24472; + "Singer"; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24476; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "Tour"; + 2448; + "Singer"; + ; + . + + a ; + "Tour"; + 24480; + "Other"; + ""; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Traveling Company"; + "Itinerant"; + 24484; + "Actor"; + "Singer"; + "1"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24488; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "Tour"; + 24492; + "Other"; + ""; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Kleinkunst"; + "Guest"; + 24496; + "Actor"; + "3"; + ; + ; + . + + a ; + "Tour"; + 245; + "Music Director"; + ""; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 24500; + "Actor"; + ; + ; + . + + a ; + "1903-1905"; + "1905-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24504; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1905-1908"; + "1908-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24508; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Tour"; + 2451; + "Singer"; + ; + . + + a ; + "1908-1910"; + "1910-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24512; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1923-1924"; + "1924-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24516; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "1924-1925"; + "1925-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24520; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1925-1927"; + "1927-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24524; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "1927-1928"; + "1928-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 24528; + "Actor"; + ""; + "10"; + ; + . + + a ; + "1928-1929"; + "1929-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24532; + "Actor"; + ""; + "11"; + ; + ; + ; + . + + a ; + "1929-1930"; + "1930-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 24536; + "Actor"; + "12"; + ; + . + + a ; + "Guest"; + 2454; + "After 1870"; + ; + . + + a ; + "Education (Theatre related)"; + "Tour"; + 24540; + "Other"; + ""; + "0"; + ; + ; + . + + a ; + "Printed Media"; + "Tour"; + 24544; + "Author"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24548; + "Actor"; + "1"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24552; + "Actor"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24556; + "Actor"; + ""; + "2"; + ; + ; + . + + a ; + "1908-1912"; + "1912-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24560; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24564; + "Actor"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24568; + "Founder"; + ; + ; + . + + a ; + "Guest"; + 2457; + "After 1870"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Society/Union"; + "Tour"; + 24572; + "Actor"; + ""; + "5"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24576; + "Actor"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24580; + "Actor"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Company on Tour"; + "Tour"; + 24584; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24588; + "Founder"; + "7"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Theatre"; + "Permanent"; + 24592; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-03"^^xsd:date; + "1899-01-01"^^xsd:date; + "Traveling Company"; + "Tour"; + 24596; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 246; + "Manager"; + "Teacher (Theatre related)"; + "Leader of the Königliche Akademie der Tonkunst in München"; + ; + . + + a ; + "Guest"; + 2460; + "After 1870"; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24600; + "Actor"; + ""; + "2"; + ; + ; + ; + . + + a ; + "Company on Tour"; + "Tour"; + 24604; + "Actor"; + "3"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24608; + "Actor"; + "4"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24612; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24616; + "Actor"; + "6"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24620; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24624; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24628; + "Actor"; + "9"; + ; + ; + ; + . + + a ; + "Guest"; + 2463; + "After 1870"; + ; + . + + a ; + "Tour"; + 24632; + "Other"; + ""; + "1"; + ; + ; + ; + . + + a ; + "Kleinkunst"; + "Tour"; + 24636; + "Director"; + ""; + "2"; + ; + ; + . + + a ; + "Traveling Company"; + "Tour"; + 24640; + "Actor"; + ; + ; + ; + . + + a ; + "Theatre"; + "Permanent"; + 24644; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "Society/Union"; + "Tour"; + 24648; + "Founder"; + "5"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24652; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "Traveling Company"; + "Itinerant"; + 24656; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "Guest"; + 2466; + "After 1870"; + ; + . + + a ; + "before 1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24660; + ""; + ; + ; + . + + a ; + "before 1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24664; + ""; + ; + ; + . + + a ; + "Tour"; + 24668; + ""; + ; + ; + . + + a ; + "before 1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24672; + ""; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24676; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24680; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24684; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24688; + "Actor"; + "4"; + ; + ; + . + + a ; + "Guest"; + 2469; + "Singer"; + "After 1870"; + ; + . + + a ; + "probably between 1879 and 1881"; + "1881-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Itinerant"; + 24692; + "Actor"; + "4"; + ; + ; + . + + a ; + "probably between 1879 and 1881"; + "1881-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Itinerant"; + 24696; + "Actor"; + "5"; + ; + ; + . + + a ; + "probably between 1879 and 1881"; + "1881-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Itinerant"; + 24700; + "Actor"; + "6"; + ; + ; + . + + a ; + "probably between 1879 and 1881"; + "1881-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Itinerant"; + 24704; + "Actor"; + "7"; + ; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 24708; + "Actor"; + "8"; + ; + ; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Itinerant"; + 24712; + "Actor"; + "9"; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24716; + "Actor"; + "10"; + ; + ; + . + + a ; + "Guest"; + 2472; + "Singer"; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24720; + "Actor"; + "11"; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24724; + "Actor"; + "12"; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24728; + "Actor"; + "13"; + ; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 24732; + "Actor"; + "14"; + ; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 24736; + "Actor"; + "15"; + ; + ; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 24740; + "Actor"; + "16"; + ; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24744; + "Actor"; + "17"; + ; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1882-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24748; + "Actor"; + ; + ; + . + + a ; + "Guest"; + 2475; + "Singer"; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1882-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24752; + "Actor"; + "18"; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1882-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 24756; + "Actor"; + "19"; + ; + ; + . + + a ; + "probably 1881 or 1882"; + "1882-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 24760; + "Actor"; + "20"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 24764; + "Actor"; + "21"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 24768; + "Actor"; + "22"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 24772; + "Actor"; + "1"; + ; + ; + . + + a ; + "probably  1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 24776; + "Actor"; + ; + . + + a ; + "Guest"; + 2478; + "Singer"; + ; + ; + . + + a ; + "probably  1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 24780; + "Actor"; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 24784; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "between 1889 and 1892"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 24788; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "between 1889 and 1892"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 24792; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "between 1889 and 1892"; + "1892-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 24796; + "Actor"; + ; + . + + a ; + "between 1889 and 1892"; + "1892-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 24800; + "Actor"; + ; + . + + a ; + "April 1892"; + "1892-04-30"^^xsd:date; + "1892-04-01"^^xsd:date; + "Tour"; + 24804; + ""; + "5"; + ; + ; + ; + . + + a ; + "between 1895 and 1897"; + "1897-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 24808; + ""; + "6"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-03"^^xsd:date; + "Tour"; + 24812; + "Founder"; + "7"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Permanent"; + 24816; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 24824; + "Actor"; + "3"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 24828; + "Actor"; + "4"; + ; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 24832; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "22nd February 1925"; + "1925-02-22"^^xsd:date; + "1925-02-22"^^xsd:date; + "Tour"; + 24836; + "Actor"; + "His last performance"; + ; + ; + . + + a ; + "between 1914 and 1918"; + "1918-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 24840; + "Actor"; + "2"; + ; + ; + . + + a ; + "Tour"; + 24844; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 24848; + "Director"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 24852; + "Actor"; + "2"; + ; + ; + . + + a ; + "3rd June 1889"; + "1889-06-03"^^xsd:date; + "1889-06-03"^^xsd:date; + "Tour"; + 24856; + "Director"; + "3"; + ; + ; + ; + . + + a ; + "24th October 1890"; + "1890-10-24"^^xsd:date; + "1890-10-24"^^xsd:date; + "Tour"; + 24860; + "Director"; + "4"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 24864; + "Actor"; + "5"; + ; + ; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 24868; + "Director"; + ; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 24872; + "Actor"; + "6"; + ; + ; + ; + . + + a ; + "1899"; + "1900-01-02"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 24876; + "Author"; + "Actor"; + "7"; + ; + ; + ; + . + + a ; + "15th October 1902"; + "1902-10-15"^^xsd:date; + "1902-10-15"^^xsd:date; + "Tour"; + 24880; + "Author"; + "8"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 24884; + "Actor"; + "9"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 24888; + "Actor"; + "10"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1907"; + "1907-01-01"^^xsd:date; + "Permanent"; + 24892; + "Actor"; + "Director"; + "1"; + ; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 24896; + "Actor"; + "2"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 24900; + "Actor"; + "3"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 24904; + "Actor"; + "4"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 24908; + "Actor"; + "5"; + ; + . + + a ; + "between 1908 and 1909"; + "1909-07-01"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 24912; + "Actor"; + "1"; + ; + ; + ; + . + + a ; + "1906-1909"; + "1906-01-01"^^xsd:date; + "Guest"; + 24916; + "Actor"; + "2"; + ; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 24924; + "Actor"; + "1"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 24928; + "Author"; + "2"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 24932; + "Author"; + "3"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 24936; + "Author"; + "4"; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 24940; + "Author"; + "5"; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 24944; + ""; + "6"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 24948; + "Author"; + "7"; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + 24952; + "Author"; + "8"; + ; + ; + . + + a ; + "Tour"; + 24956; + "Author"; + "9"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 24960; + "Author"; + "10"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 24964; + "Founder"; + "11"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 24968; + "Director"; + "12"; + ; + ; + . + + a ; + "1876"; + "1876-10-31"^^xsd:date; + "1876-10-01"^^xsd:date; + "Tour"; + 24972; + "Founder"; + "13"; + ; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 24976; + "Actor"; + "14"; + ; + ; + . + + a ; + "1876"; + "1876-10-31"^^xsd:date; + "1876-10-01"^^xsd:date; + "Tour"; + 24980; + "Director"; + "15"; + ; + ; + ; + . + + a ; + "1876"; + "1876-10-31"^^xsd:date; + "1876-10-01"^^xsd:date; + "Tour"; + 24984; + "Author"; + "16"; + ; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 24988; + "Director"; + "17"; + ; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 24992; + "Director"; + "18"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 24996; + "Director"; + "19"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25; + "Actor"; + """Company of Helena Modjeska +"""; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 25000; + "Director"; + "20"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 25004; + "Director"; + "21"; + ; + ; + ; + . + + a ; + "1878"; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 25008; + "Founder"; + "22"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 25012; + "Director"; + "23"; + ; + ; + . + + a ; + "1879"; + "1879-05-31"^^xsd:date; + "1879-05-01"^^xsd:date; + "Tour"; + 25016; + "Director"; + "24"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-05-01"^^xsd:date; + "Tour"; + 25020; + "Manager"; + "25"; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-10-01"^^xsd:date; + "Tour"; + 25024; + "Manager"; + "26"; + ; + . + + a ; + "Tour"; + 25028; + "Director"; + "27"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 25032; + "Founder"; + "28"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25036; + "Director"; + "29"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25040; + "Director"; + "30"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25044; + "Director"; + "31"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25048; + "Director"; + "32"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25052; + "Director"; + "33"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25056; + "Director"; + "34"; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 25060; + "Director"; + "35"; + ; + . + + a ; + "1880"; + "1880-05-01"^^xsd:date; + "Tour"; + 25064; + "Director"; + "36"; + ; + . + + a ; + "1880"; + "1880-07-31"^^xsd:date; + "1880-06-20"^^xsd:date; + "Tour"; + 25068; + "Director"; + "37"; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 25072; + "Director"; + "38"; + ; + . + + a ; + "1880"; + "1880-09-16"^^xsd:date; + "1880-08-03"^^xsd:date; + "Tour"; + 25076; + "Director"; + "39"; + ; + ; + ; + . + + a ; + "Tour"; + 25080; + "Director"; + "40"; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 25084; + "Director"; + "41"; + ; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 25088; + "Director"; + "42"; + ; + ; + ; + . + + a ; + "1881"; + "1881-10-31"^^xsd:date; + "1881-10-01"^^xsd:date; + "Tour"; + 25092; + "Director"; + "43"; + ; + ; + ; + . + + a ; + "1881"; + "1881-10-31"^^xsd:date; + "1881-10-01"^^xsd:date; + "Tour"; + 25096; + "Director"; + "44"; + ; + ; + ; + . + + a ; + "1881"; + "1881-10-31"^^xsd:date; + "1881-10-01"^^xsd:date; + "Tour"; + 25100; + "Director"; + "45"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 25104; + "Director"; + "46"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-10-01"^^xsd:date; + "Tour"; + 25108; + "Director"; + "47"; + ; + . + + a ; + "1883"; + "1883-01-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 25112; + "Director"; + "48"; + ; + ; + . + + a ; + "1883"; + "1883-02-01"^^xsd:date; + "Tour"; + 25116; + "Director"; + "49"; + ; + ; + ; + . + + a ; + "1885"; + "1887-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 25120; + "Director"; + "50"; + ; + ; + ; + . + + a ; + "Tour"; + 25124; + "Director"; + "51"; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 25128; + "Director"; + "52"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 25132; + "Director"; + "53"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 25136; + "Director"; + "54"; + ; + . + + a ; + "Tour"; + 25140; + "Director"; + "55"; + ; + ; + . + + a ; + "Tour"; + 25144; + "Director"; + "56"; + ; + . + + a ; + "1887"; + "1887-07-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "Tour"; + 25148; + "Author"; + "57"; + ; + ; + . + + a ; + "Tour"; + 25152; + "Founder"; + "58"; + ; + ; + ; + . + + a ; + "Tour"; + 25156; + ""; + "59"; + ; + ; + ; + . + + a ; + "1888"; + "1888-07-31"^^xsd:date; + "1888-07-01"^^xsd:date; + "Tour"; + 25160; + "Author"; + "60"; + ; + ; + ; + . + + a ; + "1889"; + "1889-07-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Tour"; + 25164; + "Author"; + "61"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 25168; + "Founder"; + "62"; + ; + ; + . + + a ; + "1890"; + "1890-10-31"^^xsd:date; + "1890-10-01"^^xsd:date; + "Tour"; + 25172; + "Author"; + "63"; + ; + . + + a ; + "1890"; + "1890-10-31"^^xsd:date; + "1890-10-01"^^xsd:date; + "Tour"; + 25176; + "Author"; + "64"; + ; + . + + a ; + "1890"; + "1891-01-31"^^xsd:date; + "1890-10-01"^^xsd:date; + "Tour"; + 25180; + "Manager"; + "65"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 25184; + "Director"; + "66"; + ; + ; + ; + . + + a ; + "Tour"; + 25188; + "Director"; + "67"; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 25192; + "Author"; + "68"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 25196; + "69"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 25200; + ""; + "70"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 25204; + "Director"; + "71"; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-03"^^xsd:date; + "Tour"; + 25208; + "72"; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 25212; + "Author"; + "73"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-12-01"^^xsd:date; + "Tour"; + 25216; + "Author"; + "74"; + ; + ; + ; + . + + a ; + "1903-12-31"; + "Tour"; + 25220; + ""; + "Grand Theatre"; + ; + ; + . + + a ; + "Tour"; + 25224; + "Actor"; + "9"; + ; + . + + a ; + "Tour"; + 25228; + "Actor"; + "10"; + ; + . + + a ; + "Permanent"; + 25232; + "Actor"; + "13"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 25236; + ; + . + + a ; + "Tour"; + 25240; + ; + . + + a ; + "Tour"; + 25244; + ; + ; + ; + . + + a ; + "Tour"; + 25248; + ; + ; + ; + . + + a ; + "Tour"; + 25252; + ; + ; + ; + . + + a ; + "Tour"; + 25256; + ; + ; + ; + . + + a ; + "Tour"; + 25260; + ; + ; + ; + . + + a ; + "Tour"; + 25264; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 25268; + ; + ; + . + + a ; + "Tour"; + 25272; + ; + ; + ; + . + + a ; + "Tour"; + 25276; + ; + ; + ; + . + + a ; + "Tour"; + 25280; + ; + ; + ; + . + + a ; + "Tour"; + 25284; + ; + ; + ; + . + + a ; + "Tour"; + 25288; + ; + ; + ; + . + + a ; + "Tour"; + 25292; + ; + . + + a ; + "Tour"; + 25296; + ; + . + + a ; + "Tour"; + 25300; + ; + ; + ; + . + + a ; + "Tour"; + 25304; + ; + . + + a ; + "Tour"; + 25308; + ; + . + + a ; + "Tour"; + 25312; + ; + . + + a ; + "Tour"; + 25316; + ; + . + + a ; + "Tour"; + 25320; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Itinerant"; + 25324; + "Actor"; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Itinerant"; + 25328; + "Actor"; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Itinerant"; + 25332; + "Actor"; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Itinerant"; + 25336; + "Actor"; + ; + ; + ; + . + + a ; + "before 1902"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "after June 1889"; + "1901-12-31"^^xsd:date; + "1889-07-01"^^xsd:date; + "Itinerant"; + 25340; + "Actor"; + ; + ; + ; + . + + a ; + "after 1901"; + "1925-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Itinerant"; + 25344; + "Actor"; + ; + . + + a ; + "probably 1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Itinerant"; + 25348; + ; + ; + ; + . + + a ; + "Tour"; + 25354; + "Founder"; + ; + ; + . + + a ; + "July 1903"; + "1903-07-31"^^xsd:date; + "1903-07-01"^^xsd:date; + "Tour"; + 25358; + ; + ; + ; + . + + a ; + "After 24th September 1905"; + "1905-09-24"^^xsd:date; + "1905-09-24"^^xsd:date; + "Tour"; + 25363; + "Director"; + ; + . + + a ; + "After 24th September 1905"; + "1905-09-24"^^xsd:date; + "1905-09-24"^^xsd:date; + "Tour"; + 25368; + "Director"; + ; + . + + a ; + "3rd May 1907"; + "1907-05-03"^^xsd:date; + "1907-05-03"^^xsd:date; + "Permanent"; + 25373; + "Director"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "17th September 1909"; + "1909-09-17"^^xsd:date; + "1909-09-17"^^xsd:date; + "Permanent"; + 25378; + "Director"; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 25388; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 25403; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 25413; + "Actor"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Permanent"; + 25418; + "Actor"; + ; + . + + a ; + "December 1866"; + "1866-12-31"^^xsd:date; + "1866-12-01"^^xsd:date; + "December 1866"; + "1866-12-31"^^xsd:date; + "1866-12-01"^^xsd:date; + "Tour"; + 25421; + "Actor"; + ; + ; + . + + a ; + "1866-10-27"^^xsd:date; + "1866-10-27"^^xsd:date; + "Guest"; + 25423; + "Actor"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + 25438; + "Actor"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + 25443; + "Actor"; + ; + ; + . + + a ; + "1930-02-04"^^xsd:date; + "1930-02-04"^^xsd:date; + "1930"; + "1930-02-04"^^xsd:date; + "1930-01-01"^^xsd:date; + "Tour"; + 25448; + "Actor"; + "Pabst Theatre // Lawndale Jewish Theatre Company (Chicago)  he died after a performance at that theatre"; + ; + . + + a ; + "Itinerant"; + 25458; + "Actor"; + ; + ; + . + + a ; + "Itinerant"; + 25463; + "Actor"; + ; + ; + . + + a ; + "Itinerant"; + 25468; + "Actor"; + ; + ; + . + + a ; + "Itinerant"; + 25473; + "Actor"; + ; + ; + . + + a ; + "1912-1913"; + "1913-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 25478; + "Actor"; + "Founder"; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 25483; + "Director"; + "Actor"; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Guest"; + 25488; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Guest"; + 25493; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Guest"; + 25498; + ; + . + + a ; + "beginning of 1917"; + "1917-04-30"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 25503; + ; + . + + a ; + "1930-1931"; + "1931-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 25508; + "Actor"; + ; + . + + a ; + "1931-1932"; + "1932-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Permanent"; + 25513; + "Actor"; + ; + . + + a ; + "1931-1932"; + "1932-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Guest"; + 25518; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 25523; + "Actor"; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "Guest"; + 25524; + "Musician"; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Guest"; + 25529; + "Musician"; + "Gewandhaus"; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Permanent"; + 25534; + "Music Director"; + ; + . + + a ; + "July 1855"; + "1855-07-31"^^xsd:date; + "1855-07-01"^^xsd:date; + "March 1855"; + "1855-03-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Guest"; + 25539; + "Music Director"; + "Composer"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1859-11-30"^^xsd:date; + "1859-11-01"^^xsd:date; + "Permanent"; + 25544; + "Music Director"; + ; + . + + a ; + "March 1861"; + "1861-03-31"^^xsd:date; + "1861-03-01"^^xsd:date; + "Permanent"; + 25549; + "Music Director"; + ; + ; + . + + a ; + "1865-06-10"^^xsd:date; + "1865-06-10"^^xsd:date; + "Permanent"; + 25554; + "Music Director"; + ; + ; + . + + a ; + "1868-06-21"^^xsd:date; + "1868-06-21"^^xsd:date; + "Guest"; + 25559; + "Music Director"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1869-09-22"^^xsd:date; + "1869-09-22"^^xsd:date; + "Guest"; + 25564; + "Music Director"; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "May 1872"; + "1872-05-31"^^xsd:date; + "1872-05-01"^^xsd:date; + "Permanent"; + 25569; + "Founder"; + ; + ; + . + + a ; + "1876-08-17"^^xsd:date; + "1876-08-17"^^xsd:date; + "1876-08-13"^^xsd:date; + "1876-08-13"^^xsd:date; + "Permanent"; + 25574; + "Composer"; + "Music Director"; + ; + ; + . + + a ; + "January 1882"; + "1882-01-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Permanent"; + 25579; + "Composer"; + "Music Director"; + ; + ; + . + + a ; + "1882-07-26"^^xsd:date; + "1882-07-26"^^xsd:date; + "Permanent"; + 25584; + "Music Director"; + "Composer"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25585; + "Musician"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25590; + "Musician"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25604; + "Musician"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25609; + "Musician"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25614; + "Musician"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 25619; + "Musician"; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Permanent"; + 25624; + "Music Director"; + "Director"; + "Other"; + ; + . + + a ; + "probably 1893 or 1894"; + "Guest"; + 25644; + ; + . + + a ; + "probably in between 1900 and 1926"; + "probably in between 1900 and 1926"; + "Tour"; + 25649; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 2565; + "Magician"; + "with Adelaid Herrmann"; + ; + ; + . + + a ; + "Guest"; + 25654; + "Singer"; + ; + . + + a ; + "Tour"; + 25659; + . + + a ; + "Tour"; + 25664; + . + + a ; + "Tour"; + 25669; + . + + a ; + "Tour"; + 25674; + . + + a ; + "Tour"; + 25679; + . + + a ; + "Tour"; + 2568; + "Magician"; + "Independently with his show"; + . + + a ; + "Tour"; + 25684; + . + + a ; + "Tour"; + 25689; + . + + a ; + "Tour"; + 25694; + . + + a ; + "Tour"; + 25699; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Permanent"; + 25704; + "Teacher (Theatre related)"; + "Singer"; + ; + ; + . + + a ; + "between 1850 and 1852"; + "1852-05-31"^^xsd:date; + "1850-09-01"^^xsd:date; + "between 1850 and 1852"; + "1852-05-31"^^xsd:date; + "1850-09-01"^^xsd:date; + "Tour"; + 25709; + "Singer"; + "Tour through the USA with over 150 concerts, including Cuba and Canada."; + ; + . + + a ; + "Tour"; + 2571; + "Magician"; + "Vaudeville, booked by Jesse L. Lasky"; + . + + a ; + "between 1850 and 1852"; + "1852-05-31"^^xsd:date; + "1850-09-01"^^xsd:date; + "between 1850 and 1852"; + "1852-05-31"^^xsd:date; + "1850-09-01"^^xsd:date; + "Tour"; + 25714; + "Singer"; + "Tour through the USA with over 150 concerts, including Cuba and Canada."; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-12-31"^^xsd:date; + "September 1830"; + "1830-09-30"^^xsd:date; + "1830-09-01"^^xsd:date; + "Other"; + 25719; + "Actor"; + "Other"; + "She made her stage debut on 27 November 1930 as a minor role."; + ; + ; + . + + a ; + "between 1902 and 1903"; + "1903-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + 25724; + "Actor"; + ; + . + + a ; + "between 1902 and 1903"; + "1903-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + 25729; + "Actor"; + ; + . + + a ; + "between 1902 and 1903"; + "1903-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 25734; + ; + ; + . + + a ; + "between 1909 and 1911"; + "1911-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 25739; + "Actor"; + ; + ; + . + + a ; + "1879"; + "1879-03-31"^^xsd:date; + "1879-03-01"^^xsd:date; + "Tour"; + 2574; + "Singer"; + "debut at the NY 5. Avenue Theater"; + ; + . + + a ; + "between 1879 and 1882"; + "1882-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Guest"; + 25744; + "Actor"; + ; + . + + a ; + "30th August 1917"; + "1917-08-30"^^xsd:date; + "1917-08-30"^^xsd:date; + "Tour"; + 25749; + ; + ; + . + + a ; + "between 1918 and September 1919"; + "1919-09-30"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 25754; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Guest"; + 25759; + ; + . + + a ; + "Tour"; + 2577; + "Singer"; + ; + ; + . + + a ; + "1841"; + "1841-07-31"^^xsd:date; + "1841-06-01"^^xsd:date; + "1837"; + "1837-01-01"^^xsd:date; + "1837-01-01"^^xsd:date; + "Permanent"; + 25774; + "Singer"; + "Jenny Lind transitioned from an apprentice to a salaried professional actress at the Royal Theatre, with an annual salary of 700 Riksdaler Banco. She went to Paris in July 1841."; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Tour"; + 25779; + "Singer"; + ; + . + + a ; + "between July and December 1844"; + "1844-12-31"^^xsd:date; + "1844-07-06"^^xsd:date; + "between July and December 1844"; + "1844-12-31"^^xsd:date; + "1844-07-06"^^xsd:date; + "Guest"; + 25782; + "Singer"; + ; + . + + a ; + "1845"; + "1845-03-11"^^xsd:date; + "1845-03-11"^^xsd:date; + "1844"; + "1844-12-15"^^xsd:date; + "1844-12-15"^^xsd:date; + "Permanent"; + 25784; + "Singer"; + "with Meyerbeer"; + ; + ; + . + + a ; + "1845"; + "1845-03-15"^^xsd:date; + "1845-03-13"^^xsd:date; + "1845"; + "1845-03-13"^^xsd:date; + "1845-03-13"^^xsd:date; + "Guest"; + 25785; + "Singer"; + "Farewell Concert in Berlin"; + ; + ; + . + + a ; + "1845"; + "1845-03-19"^^xsd:date; + "1845-03-19"^^xsd:date; + "1845"; + "1845-03-19"^^xsd:date; + "1845-03-19"^^xsd:date; + "Guest"; + 25787; + "Singer"; + ; + ; + . + + a ; + "1845"; + "1845-05-06"^^xsd:date; + "1845-05-06"^^xsd:date; + "1845"; + "1845-03-29"^^xsd:date; + "1845-03-29"^^xsd:date; + "Guest"; + 25789; + "Singer"; + ; + ; + . + + a ; + "1845"; + "1845-06-26"^^xsd:date; + "1845-06-26"^^xsd:date; + "1845"; + "1845-05-16"^^xsd:date; + "1845-05-16"^^xsd:date; + "Other"; + 25794; + "Singer"; + ; + . + + a ; + "1845"; + "1845-08-26"^^xsd:date; + "1845-08-26"^^xsd:date; + "1845"; + "1845-08-26"^^xsd:date; + "1845-08-26"^^xsd:date; + "Guest"; + 25795; + "Singer"; + ; + ; + . + + a ; + "1845"; + "1845-09-15"^^xsd:date; + "1845-09-15"^^xsd:date; + "1845"; + "1845-08-29"^^xsd:date; + "1845-08-29"^^xsd:date; + "Other"; + 25799; + "Singer"; + ; + . + + a ; + "Tour"; + 2580; + "Singer"; + ; + ; + . + + a ; + "5th September 1898"; + "1898-09-05"^^xsd:date; + "1898-09-05"^^xsd:date; + "Tour"; + 25804; + "Author"; + "Actor"; + ; + ; + . + + a ; + "28th October 1898"; + "1898-10-28"^^xsd:date; + "1898-10-28"^^xsd:date; + "Tour"; + 25809; + "Actor"; + "Author"; + ; + ; + . + + a ; + "probably between 1907 and 1908"; + "1908-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 25812; + "Actor"; + ; + . + + a ; + "probably between 1907 and 1908"; + "1908-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 25814; + "Actor"; + ; + . + + a ; + "probably between 1907 and 1908"; + "1908-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 25819; + "Actor"; + ; + . + + a ; + "Tour"; + 2583; + "Singer"; + ; + ; + . + + a ; + "June 1909"; + "1909-06-30"^^xsd:date; + "1909-06-01"^^xsd:date; + "Tour"; + 25859; + "Actor"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 2586; + "Singer"; + ; + ; + . + + a ; + "1st July 1909"; + "1909-07-01"^^xsd:date; + "1909-07-01"^^xsd:date; + "1st July 1909"; + "1909-07-01"^^xsd:date; + "1909-07-01"^^xsd:date; + "Guest"; + 25869; + "Actor"; + "He died during the first rehearsal"; + ; + . + + a ; + "1845"; + "1845-10-16"^^xsd:date; + "1845-10-16"^^xsd:date; + "1845"; + "1845-09-24"^^xsd:date; + "1845-09-24"^^xsd:date; + "Other"; + 25874; + "Singer"; + ; + . + + a ; + "1845"; + "1845-11-01"^^xsd:date; + "1845-11-01"^^xsd:date; + "1845"; + "1845-11-01"^^xsd:date; + "1845-11-01"^^xsd:date; + "Other"; + 25879; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-04-02"^^xsd:date; + "1846-04-02"^^xsd:date; + "1845"; + "1845-11-09"^^xsd:date; + "1845-11-09"^^xsd:date; + "Permanent"; + 25884; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-10-10"^^xsd:date; + "1846-10-10"^^xsd:date; + "1846"; + "1846-09-25"^^xsd:date; + "1846-09-25"^^xsd:date; + "Tour"; + 25889; + "Singer"; + ; + . + + a ; + """Pupil +"""; + "Tour"; + 2589; + ; + ; + . + + a ; + "1846"; + "1846-06-02"^^xsd:date; + "1846-06-02"^^xsd:date; + "1846"; + "1846-05-31"^^xsd:date; + "1846-05-31"^^xsd:date; + "Tour"; + 25894; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-04-29"^^xsd:date; + "1846-04-29"^^xsd:date; + "1846"; + "1846-04-29"^^xsd:date; + "1846-04-29"^^xsd:date; + "Other"; + 25904; + "Singer"; + ; + . + + a ; + "1846"; + "1846-05-21"^^xsd:date; + "1846-05-21"^^xsd:date; + "1846"; + "1846-04-22"^^xsd:date; + "1846-04-22"^^xsd:date; + "Guest"; + 25905; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-07-19"^^xsd:date; + "1846-07-19"^^xsd:date; + "1846"; + "1846-03-02"^^xsd:date; + "1846-03-02"^^xsd:date; + "Permanent"; + 25909; + "Singer"; + ; + . + + a ; + "Late January 1846"; + "1846-01-31"^^xsd:date; + "1846-01-15"^^xsd:date; + "Late January 1846"; + "1846-01-31"^^xsd:date; + "1846-01-15"^^xsd:date; + "Other"; + 25914; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-10-19"^^xsd:date; + "1846-10-19"^^xsd:date; + "1846"; + "1846-10-13"^^xsd:date; + "1846-10-13"^^xsd:date; + "Tour"; + 25919; + "Singer"; + ; + . + + a ; + "Tour"; + 2592; + "Singer"; + "Invitation by Anna de la Grange"; + ; + . + + a ; + "1846"; + "1846-12-06"^^xsd:date; + "1846-12-06"^^xsd:date; + "1846"; + "1846-12-06"^^xsd:date; + "1846-12-06"^^xsd:date; + "Tour"; + 25924; + "Singer"; + ; + . + + a ; + "1846"; + "1846-12-05"^^xsd:date; + "1846-12-05"^^xsd:date; + "1846"; + "1846-12-05"^^xsd:date; + "1846-12-05"^^xsd:date; + "Tour"; + 25929; + "Singer"; + ; + . + + a ; + "1846"; + "1846-11-28"^^xsd:date; + "1846-11-28"^^xsd:date; + "1846"; + "1846-11-24"^^xsd:date; + "1846-11-24"^^xsd:date; + "Tour"; + 25934; + "Singer"; + ; + . + + a ; + "1846"; + "1846-11-22"^^xsd:date; + "1846-11-22"^^xsd:date; + "1846"; + "1846-11-11"^^xsd:date; + "1846-11-11"^^xsd:date; + "Tour"; + 25939; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-11-08"^^xsd:date; + "1846-11-08"^^xsd:date; + "1846"; + "1846-10-23"^^xsd:date; + "1846-10-23"^^xsd:date; + "Tour"; + 25944; + "Singer"; + ; + . + + a ; + "Pupil"; + "Tour"; + 2595; + "Heinrich Proch"; + ; + . + + a ; + "1846"; + "1846-07-28"^^xsd:date; + "1846-07-28"^^xsd:date; + "1846"; + "1846-06-22"^^xsd:date; + "1846-06-22"^^xsd:date; + "Tour"; + 25954; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-06-11"^^xsd:date; + "1846-06-11"^^xsd:date; + "1846"; + "1846-06-03"^^xsd:date; + "1846-06-03"^^xsd:date; + "Tour"; + 25959; + "Singer"; + ; + ; + . + + a ; + "1848-12-15"^^xsd:date; + "1848-12-15"^^xsd:date; + "1848-12-15"^^xsd:date; + "1848-12-15"^^xsd:date; + "Guest"; + 25969; + "Singer"; + ; + . + + a ; + "1848-04-12"^^xsd:date; + "1848-04-12"^^xsd:date; + "1847-12-03"^^xsd:date; + "1847-12-03"^^xsd:date; + "Guest"; + 25970; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-25"^^xsd:date; + "1847-09-25"^^xsd:date; + "1847"; + "1847-09-23"^^xsd:date; + "1847-09-21"^^xsd:date; + "Tour"; + 25975; + "Singer"; + ; + . + + a ; + "1847"; + "1848-09-11"^^xsd:date; + "1847-09-11"^^xsd:date; + "1847"; + "1847-08-28"^^xsd:date; + "1847-08-28"^^xsd:date; + "Tour"; + 25976; + "Singer"; + ; + . + + a ; + "1847"; + "1847-08-26"^^xsd:date; + "1847-08-26"^^xsd:date; + "1847"; + "1847-08-26"^^xsd:date; + "1847-08-26"^^xsd:date; + "Tour"; + 25979; + "Singer"; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Tour"; + 2598; + "Singer"; + "Debutee at the berlin court theater"; + ; + ; + . + + a ; + "1847"; + "1847-08-21"^^xsd:date; + "1847-08-21"^^xsd:date; + "1847"; + "1847-05-04"^^xsd:date; + "1847-05-04"^^xsd:date; + "Permanent"; + 25984; + "Singer"; + ; + ; + . + + a ; + "1847"; + "1847-04-08"^^xsd:date; + "1847-04-08"^^xsd:date; + "1847"; + "1847-01-07"^^xsd:date; + "1847-01-07"^^xsd:date; + "Guest"; + 25989; + "Singer"; + ; + ; + . + + a ; + "1846"; + "1846-12-13"^^xsd:date; + "1846-12-13"^^xsd:date; + "1846"; + "1846-12-13"^^xsd:date; + "1846-12-13"^^xsd:date; + "Tour"; + 25995; + "Singer"; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 26; + "Actor"; + ""; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "Tour"; + 260; + "Singer"; + "other source 1842-1845"; + ; + ; + . + + a ; + "1846"; + "1846-12-11"^^xsd:date; + "1846-12-11"^^xsd:date; + "1846"; + "1846-12-09"^^xsd:date; + "1846-12-09"^^xsd:date; + "Tour"; + 26000; + "Singer"; + ; + . + + a ; + "1847"; + "1847-10-20"^^xsd:date; + "1847-10-20"^^xsd:date; + "1847"; + "1847-10-20"^^xsd:date; + "1847-10-20"^^xsd:date; + "Guest"; + 26004; + "Singer"; + ; + ; + . + + a ; + "1847"; + "1847-10-18"^^xsd:date; + "1847-10-18"^^xsd:date; + "1847"; + "1847-10-12"^^xsd:date; + "1847-10-12"^^xsd:date; + "Guest"; + 26009; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 2601; + "Singer"; + ; + . + + a ; + "1847"; + "1847-10-02"^^xsd:date; + "1847-10-02"^^xsd:date; + "1847"; + "1847-10-01"^^xsd:date; + "1847-10-01"^^xsd:date; + "Tour"; + 26014; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-30"^^xsd:date; + "1847-09-30"^^xsd:date; + "1847"; + "1847-09-30"^^xsd:date; + "1847-09-30"^^xsd:date; + "Tour"; + 26019; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-28"^^xsd:date; + "1847-09-28"^^xsd:date; + "1847"; + "1847-09-28"^^xsd:date; + "1847-09-28"^^xsd:date; + "Tour"; + 26024; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-27"^^xsd:date; + "1847-09-27"^^xsd:date; + "1847"; + "1847-09-27"^^xsd:date; + "1847-09-27"^^xsd:date; + "Tour"; + 26029; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-20"^^xsd:date; + "1847-09-20"^^xsd:date; + "1847"; + "1847-09-20"^^xsd:date; + "1847-09-20"^^xsd:date; + "Tour"; + 26034; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-18"^^xsd:date; + "1847-09-18"^^xsd:date; + "1847"; + "1847-09-18"^^xsd:date; + "1847-09-18"^^xsd:date; + "Tour"; + 26039; + "Singer"; + ; + . + + a ; + "Tour"; + 2604; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-17"^^xsd:date; + "1847-09-17"^^xsd:date; + "1847"; + "1847-09-17"^^xsd:date; + "1847-09-17"^^xsd:date; + "Tour"; + 26044; + "Singer"; + ; + . + + a ; + "1847"; + "1847-09-16"^^xsd:date; + "1847-09-16"^^xsd:date; + "1847"; + "1847-09-16"^^xsd:date; + "1847-09-16"^^xsd:date; + "Tour"; + 26049; + "Singer"; + ; + . + + a ; + "1848-11-03"^^xsd:date; + "1848-11-03"^^xsd:date; + "1848-10-30"^^xsd:date; + "1848-10-30"^^xsd:date; + "Tour"; + 26054; + "Singer"; + ; + . + + a ; + "1848-10-27"^^xsd:date; + "1848-10-27"^^xsd:date; + "1848-10-27"^^xsd:date; + "1848-10-27"^^xsd:date; + "Tour"; + 26059; + "Singer"; + ; + . + + a ; + "1848-10-24"^^xsd:date; + "1848-10-27"^^xsd:date; + "1848-10-10"^^xsd:date; + "1848-10-10"^^xsd:date; + "Tour"; + 26064; + "Singer"; + ; + . + + a ; + "1848-10-06"^^xsd:date; + "1848-10-06"^^xsd:date; + "1848-10-02"^^xsd:date; + "1848-10-02"^^xsd:date; + "Tour"; + 26069; + "Singer"; + ; + . + + a ; + "Tour"; + 2607; + "Singer"; + ; + . + + a ; + "1848-09-28"^^xsd:date; + "1848-09-28"^^xsd:date; + "1848-09-25"^^xsd:date; + "1848-09-25"^^xsd:date; + "Tour"; + 26074; + "Singer"; + ; + . + + a ; + "1849-01-23"^^xsd:date; + "1849-01-23"^^xsd:date; + "1849-01-22"^^xsd:date; + "1849-01-20"^^xsd:date; + "Other"; + 26084; + "Singer"; + ; + . + + a ; + "1849-01-06"^^xsd:date; + "1849-01-06"^^xsd:date; + "1849-01-06"^^xsd:date; + "1849-01-06"^^xsd:date; + "Other"; + 26089; + "Singer"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 261; + "Singer"; + "other source 1847-1849"; + ; + ; + . + + a ; + "Tour"; + 2610; + "Singer"; + ; + . + + a ; + "Permanent"; + 26104; + "Impresario"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Permanent"; + 26109; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 26114; + "Impresario"; + "Founder"; + ; + ; + . + + a ; + "1879-07-16"^^xsd:date; + "Permanent"; + 26119; + "Impresario"; + ; + ; + . + + a ; + "1848-09-05"^^xsd:date; + "1848-09-05"^^xsd:date; + "1848-09-05"^^xsd:date; + "1848-09-05"^^xsd:date; + "Tour"; + 26124; + "Singer"; + ; + . + + a ; + "1848-09-07"^^xsd:date; + "1848-09-07"^^xsd:date; + "1848-09-07"^^xsd:date; + "1848-09-07"^^xsd:date; + "Tour"; + 26129; + "Singer"; + ; + . + + a ; + "Guest"; + 2613; + "Singer"; + ; + ; + . + + a ; + "1848-09-11"^^xsd:date; + "1848-09-11"^^xsd:date; + "1848-09-09"^^xsd:date; + "1848-09-09"^^xsd:date; + "Tour"; + 26134; + "Singer"; + ; + . + + a ; + "1848-09-14"^^xsd:date; + "1848-09-14"^^xsd:date; + "1848-09-14"^^xsd:date; + "1848-09-14"^^xsd:date; + "Tour"; + 26139; + "Singer"; + ; + . + + a ; + "1848-09-18"^^xsd:date; + "1848-09-18"^^xsd:date; + "1848-09-18"^^xsd:date; + "1848-09-18"^^xsd:date; + "Tour"; + 26144; + "Singer"; + ; + . + + a ; + "1848-09-20"^^xsd:date; + "1848-09-20"^^xsd:date; + "1848-09-20"^^xsd:date; + "1848-09-20"^^xsd:date; + "Tour"; + 26149; + "Singer"; + ; + . + + a ; + "1848-09-23"^^xsd:date; + "1848-09-23"^^xsd:date; + "1848-09-23"^^xsd:date; + "1848-09-23"^^xsd:date; + "Tour"; + 26154; + "Singer"; + ; + . + + a ; + "1848-11-13"^^xsd:date; + "1848-11-13"^^xsd:date; + "1848-11-13"^^xsd:date; + "1848-11-13"^^xsd:date; + "Tour"; + 26159; + "Singer"; + ; + . + + a ; + "Guest"; + 2616; + "Singer"; + ; + . + + a ; + "1848-11-10"^^xsd:date; + "1848-11-10"^^xsd:date; + "1848-11-10"^^xsd:date; + "1848-11-10"^^xsd:date; + "Tour"; + 26164; + "Singer"; + ; + . + + a ; + "1848-11-08"^^xsd:date; + "1848-11-08"^^xsd:date; + "1848-11-08"^^xsd:date; + "1848-11-08"^^xsd:date; + "Tour"; + 26169; + "Singer"; + ; + . + + a ; + "1848-11-16"^^xsd:date; + "1848-11-16"^^xsd:date; + "1848-11-16"^^xsd:date; + "1848-11-16"^^xsd:date; + "Tour"; + 26174; + "Singer"; + ; + . + + a ; + "1849-05-10"^^xsd:date; + "1849-05-10"^^xsd:date; + "1849-04-26"^^xsd:date; + "1849-04-26"^^xsd:date; + "Guest"; + 26179; + "Singer"; + ; + ; + . + + a ; + "1848-12-28"^^xsd:date; + "1848-12-28"^^xsd:date; + "1848-12-28"^^xsd:date; + "1848-12-28"^^xsd:date; + "Tour"; + 26184; + "Singer"; + ; + . + + a ; + "Guest"; + 2619; + "Singer"; + ; + . + + a ; + "1848-12-21"^^xsd:date; + "1848-12-21"^^xsd:date; + "1848-12-19"^^xsd:date; + "1848-12-19"^^xsd:date; + "Tour"; + 26194; + "Singer"; + ; + . + + a ; + "1848-12-04"^^xsd:date; + "1848-12-04"^^xsd:date; + "1848-12-04"^^xsd:date; + "1848-12-04"^^xsd:date; + "Tour"; + 26195; + "Singer"; + ; + . + + a ; + "1848-12-01"^^xsd:date; + "1848-12-01"^^xsd:date; + "1848-12-01"^^xsd:date; + "1848-12-01"^^xsd:date; + "Tour"; + 26199; + "Singer"; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Tour"; + 262; + "Singer"; + "other source 1850-1852 Stadttheater Breslau"; + ; + ; + . + + a ; + "1848-11-27"^^xsd:date; + "1848-11-27"^^xsd:date; + "1848-11-27"^^xsd:date; + "1848-11-27"^^xsd:date; + "Tour"; + 26204; + "Singer"; + ; + . + + a ; + "1848-11-23"^^xsd:date; + "1848-11-23"^^xsd:date; + "1848-11-23"^^xsd:date; + "1848-11-23"^^xsd:date; + "Tour"; + 26209; + "Singer"; + ; + . + + a ; + "1848-11-18"^^xsd:date; + "1848-11-18"^^xsd:date; + "1848-11-18"^^xsd:date; + "1848-11-18"^^xsd:date; + "Tour"; + 26210; + "Singer"; + ; + . + + a ; + "1849-01-29"^^xsd:date; + "1849-01-29"^^xsd:date; + "1849-01-29"^^xsd:date; + "1849-01-29"^^xsd:date; + "Other"; + 26214; + "Singer"; + "Raise money for Mr. Balfe"; + ; + . + + a ; + "1849-02-21"^^xsd:date; + "1849-02-21"^^xsd:date; + "1849-02-21"^^xsd:date; + "1849-02-21"^^xsd:date; + "Other"; + 26219; + "Singer"; + "Raise money for Mrs/Miss Dulcken"; + ; + . + + a ; + "Guest"; + 2622; + "Singer"; + ; + . + + a ; + "1849-02-13"^^xsd:date; + "1849-02-13"^^xsd:date; + "1849-02-13"^^xsd:date; + "1849-02-13"^^xsd:date; + "Tour"; + 26224; + "Singer"; + ; + . + + a ; + "1849-02-08"^^xsd:date; + "1849-02-08"^^xsd:date; + "1849-02-08"^^xsd:date; + "1849-02-08"^^xsd:date; + "Tour"; + 26229; + "Singer"; + ; + . + + a ; + "1849-02-06"^^xsd:date; + "1849-02-06"^^xsd:date; + "1849-02-06"^^xsd:date; + "1849-02-06"^^xsd:date; + "Tour"; + 26234; + "Singer"; + ; + . + + a ; + "1849-02-02"^^xsd:date; + "1849-02-02"^^xsd:date; + "1849-02-02"^^xsd:date; + "1849-02-02"^^xsd:date; + "Other"; + 26239; + "Singer"; + ; + . + + a ; + "Guest"; + 2625; + "Singer"; + ; + . + + a ; + "1849-02-15"^^xsd:date; + "1849-02-15"^^xsd:date; + "1849-02-15"^^xsd:date; + "1849-02-15"^^xsd:date; + "Tour"; + 26264; + "Singer"; + ; + . + + a ; + "1849-02-26"^^xsd:date; + "1849-02-26"^^xsd:date; + "1849-02-26"^^xsd:date; + "1849-02-26"^^xsd:date; + "Tour"; + 26269; + "Singer"; + ; + . + + a ; + "1849-02-27"^^xsd:date; + "1849-02-27"^^xsd:date; + "1849-02-27"^^xsd:date; + "1849-02-27"^^xsd:date; + "Tour"; + 26274; + "Singer"; + ; + . + + a ; + "1849-03-01"^^xsd:date; + "1849-03-01"^^xsd:date; + "1849-03-01"^^xsd:date; + "1849-03-01"^^xsd:date; + "Tour"; + 26279; + "Singer"; + ; + . + + a ; + "Guest"; + 2628; + "Singer"; + ; + . + + a ; + "1849-03-06"^^xsd:date; + "1849-03-06"^^xsd:date; + "1849-03-06"^^xsd:date; + "1849-03-06"^^xsd:date; + "Tour"; + 26284; + "Singer"; + ; + . + + a ; + "1849-03-08"^^xsd:date; + "1849-03-08"^^xsd:date; + "1849-03-08"^^xsd:date; + "1849-03-08"^^xsd:date; + "Tour"; + 26289; + "Singer"; + ; + . + + a ; + "1849-03-09"^^xsd:date; + "1849-03-09"^^xsd:date; + "1849-03-09"^^xsd:date; + "1849-03-09"^^xsd:date; + "Tour"; + 26294; + "Singer"; + ; + . + + a ; + "1849-03-29"^^xsd:date; + "1849-03-29"^^xsd:date; + "1849-03-29"^^xsd:date; + "1849-03-29"^^xsd:date; + "Tour"; + 26299; + "Singer"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 263; + "Singer"; + "other source 1854"; + ; + ; + . + + a ; + "1849-03-12"^^xsd:date; + "1849-03-12"^^xsd:date; + "1849-03-12"^^xsd:date; + "1849-03-12"^^xsd:date; + "Tour"; + 26304; + "Singer"; + ; + . + + a ; + "1849-03-27"^^xsd:date; + "1849-03-27"^^xsd:date; + "1849-03-27"^^xsd:date; + "1849-03-27"^^xsd:date; + "Tour"; + 26309; + "Singer"; + ; + . + + a ; + "Guest"; + 2631; + "Singer"; + ; + . + + a ; + "1849-03-23"^^xsd:date; + "1849-03-23"^^xsd:date; + "1849-03-23"^^xsd:date; + "1849-03-23"^^xsd:date; + "Tour"; + 26314; + "Singer"; + ; + . + + a ; + "1850-08-19"^^xsd:date; + "1850-08-19"^^xsd:date; + "1850-08-16"^^xsd:date; + "1850-08-16"^^xsd:date; + "Tour"; + 26319; + "Singer"; + ; + . + + a ; + "1850-02-20"^^xsd:date; + "1850-02-20"^^xsd:date; + "1850-02-20"^^xsd:date; + "1850-02-20"^^xsd:date; + "Guest"; + 26324; + "Singer"; + ; + . + + a ; + "1850-02-12"^^xsd:date; + "1850-02-12"^^xsd:date; + "1850-02-12"^^xsd:date; + "1850-02-12"^^xsd:date; + "Guest"; + 26329; + "Singer"; + ; + . + + a ; + "1850-02-07"^^xsd:date; + "1850-02-07"^^xsd:date; + "1850-02-07"^^xsd:date; + "1850-02-07"^^xsd:date; + "Guest"; + 26334; + "Singer"; + ; + . + + a ; + "1850-02-04"^^xsd:date; + "1850-02-04"^^xsd:date; + "1850-02-02"^^xsd:date; + "1850-02-02"^^xsd:date; + "Guest"; + 26339; + "Singer"; + ; + . + + a ; + "Guest"; + 2634; + "Singer"; + ; + . + + a ; + "1850-02-13"^^xsd:date; + "1850-02-13"^^xsd:date; + "1850-01-29"^^xsd:date; + "1850-01-29"^^xsd:date; + "Guest"; + 26344; + "Singer"; + ; + . + + a ; + "1849-12-19"^^xsd:date; + "1849-12-19"^^xsd:date; + "1849-12-19"^^xsd:date; + "1849-12-19"^^xsd:date; + "Guest"; + 26354; + "Singer"; + ; + . + + a ; + "1849-12-31"^^xsd:date; + "1849-11-01"^^xsd:date; + "1849-11-30"^^xsd:date; + "1849-11-01"^^xsd:date; + "Tour"; + 26359; + "Singer"; + ; + . + + a ; + "1850-04-26"^^xsd:date; + "1850-04-26"^^xsd:date; + "1850-04-26"^^xsd:date; + "1850-04-26"^^xsd:date; + "Guest"; + 26364; + "Singer"; + ; + . + + a ; + "1850-02-25"^^xsd:date; + "1850-02-25"^^xsd:date; + "1850-02-25"^^xsd:date; + "1850-02-25"^^xsd:date; + "Guest"; + 26369; + "Singer"; + ; + . + + a ; + "Guest"; + 2637; + "Singer"; + ; + . + + a ; + "1850-02-27"^^xsd:date; + "1850-02-27"^^xsd:date; + "1850-02-27"^^xsd:date; + "1850-02-27"^^xsd:date; + "Guest"; + 26374; + "Singer"; + ; + . + + a ; + "1850-03-18"^^xsd:date; + "1850-03-18"^^xsd:date; + "1850-03-07"^^xsd:date; + "1850-03-07"^^xsd:date; + "Guest"; + 26379; + "Singer"; + ; + . + + a ; + "1850-03-15"^^xsd:date; + "1850-03-15"^^xsd:date; + "1850-03-15"^^xsd:date; + "1850-03-15"^^xsd:date; + "Guest"; + 26389; + "Singer"; + ; + . + + a ; + "1850-03-23"^^xsd:date; + "1850-03-23"^^xsd:date; + "1850-03-21"^^xsd:date; + "1850-03-21"^^xsd:date; + "Guest"; + 26394; + "Singer"; + ; + . + + a ; + "1850-03-26"^^xsd:date; + "1850-03-26"^^xsd:date; + "1850-03-26"^^xsd:date; + "1850-03-26"^^xsd:date; + "Guest"; + 26399; + "Singer"; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 264; + "Singer"; + ; + ; + . + + a ; + "Guest"; + 2640; + "Singer"; + ; + . + + a ; + "1840-04-01"^^xsd:date; + "1850-04-01"^^xsd:date; + "1850-04-01"^^xsd:date; + "1850-04-01"^^xsd:date; + "Guest"; + 26404; + "Singer"; + ; + . + + a ; + "1850-04-20"^^xsd:date; + "1840-04-20"^^xsd:date; + "1850-04-20"^^xsd:date; + "1850-04-20"^^xsd:date; + "Guest"; + 26409; + "Singer"; + ; + . + + a ; + "1850-06-07"^^xsd:date; + "1850-06-07"^^xsd:date; + "1850-05-24"^^xsd:date; + "1850-05-24"^^xsd:date; + "Guest"; + 26414; + "Singer"; + ; + ; + . + + a ; + "1850-06-30"^^xsd:date; + "1850-06-01"^^xsd:date; + "1850-06-30"^^xsd:date; + "1850-06-01"^^xsd:date; + "Guest"; + 26419; + "Singer"; + ; + . + + a ; + "1850-07-04"^^xsd:date; + "1850-07-04"^^xsd:date; + "1850-07-04"^^xsd:date; + "1850-07-04"^^xsd:date; + "Guest"; + 26424; + "Singer"; + ; + . + + a ; + "1850-08-06"^^xsd:date; + "1850-08-06"^^xsd:date; + "1850-08-06"^^xsd:date; + "1850-08-06"^^xsd:date; + "Guest"; + 26429; + "Singer"; + ; + . + + a ; + "Guest"; + 2643; + "Singer"; + ; + . + + a ; + "1850-08-19"^^xsd:date; + "1850-08-19"^^xsd:date; + "1850-08-16"^^xsd:date; + "1850-08-16"^^xsd:date; + "Guest"; + 26434; + "Singer"; + ; + . + + a ; + "between September and October 1850"; + "1850-10-22"^^xsd:date; + "1850-10-02"^^xsd:date; + "between September and October 1850"; + "1850-09-27"^^xsd:date; + "1850-09-01"^^xsd:date; + "Tour"; + 26439; + "Singer"; + ; + . + + a ; + "between October-November 1850"; + "1850-11-08"^^xsd:date; + "1850-10-22"^^xsd:date; + "between October-November 1850"; + "1850-10-22"^^xsd:date; + "1850-10-02"^^xsd:date; + "Tour"; + 26444; + "Singer"; + ; + . + + a ; + "between November and December 1850"; + "1850-12-05"^^xsd:date; + "1850-11-01"^^xsd:date; + "between November and December 1850"; + "1850-11-30"^^xsd:date; + "1850-11-01"^^xsd:date; + "Tour"; + 26449; + "Singer"; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 2645; + "Singer"; + ; + ; + . + + a ; + "December 1850"; + "1850-12-31"^^xsd:date; + "1850-12-01"^^xsd:date; + "December 1850"; + "1850-12-31"^^xsd:date; + "1850-12-01"^^xsd:date; + "Tour"; + 26454; + "Singer"; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Tour"; + 26459; + "Singer"; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Guest"; + "Tour"; + 2646; + "Pieces in German are performed in Warsaw, not very successfully"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Other"; + 26464; + "Singer"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 26474; + "Singer"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 26479; + "Singer"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 26480; + "Singer"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 26484; + "Singer"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 2649; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Guest"; + 26494; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26499; + "Singer"; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + 265; + "Singer"; + ; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26504; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26509; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26514; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26519; + "Singer"; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 2652; + "Director"; + "Tour through Romania"; + ; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26520; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26524; + "Singer"; + ; + . + + a ; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "between March and May 1855"; + "1855-05-31"^^xsd:date; + "1855-03-01"^^xsd:date; + "Tour"; + 26529; + "Singer"; + ; + . + + a ; + "June 1855"; + "1855-06-30"^^xsd:date; + "1855-06-01"^^xsd:date; + "June 1855"; + "1855-06-30"^^xsd:date; + "1855-06-01"^^xsd:date; + "Other"; + 26534; + "Singer"; + ; + . + + a ; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "Tour"; + 26539; + "Singer"; + ; + . + + a ; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "Tour"; + 26544; + "Singer"; + ; + . + + a ; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "between December 1855 and June 1856"; + "1856-06-30"^^xsd:date; + "1855-12-01"^^xsd:date; + "Tour"; + 26549; + "Singer"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 2655; + "Director"; + ; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26551; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26555; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26559; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26564; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26565; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Guest"; + 26570; + "Singer"; + ; + . + + a ; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "between 1857 and 1858"; + "1858-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Other"; + 26574; + "Singer"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Tour"; + 26579; + "Singer"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 2658; + "Director"; + ; + ; + . + + a ; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Guest"; + 26581; + "Singer"; + ; + . + + a ; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "between 1861 and 1862"; + "1862-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Guest"; + 26582; + "Singer"; + ; + . + + a ; + "Fall 1863"; + "1863-12-21"^^xsd:date; + "1863-09-22"^^xsd:date; + "Fall 1863"; + "1863-12-21"^^xsd:date; + "1863-09-22"^^xsd:date; + "Guest"; + 26584; + "Singer"; + ; + . + + a ; + "Fall 1863"; + "1863-12-21"^^xsd:date; + "1863-09-22"^^xsd:date; + "Fall 1863"; + "1863-12-21"^^xsd:date; + "1863-09-22"^^xsd:date; + "Guest"; + 26589; + "Singer"; + ; + . + + a ; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865-01-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Other"; + 26594; + "Singer"; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Guest"; + 26599; + "Singer"; + ; + . + + a ; + "Guest "; + "Tour"; + 266; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Guest"; + 26604; + "Singer"; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Guest"; + 26609; + "Singer"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 2661; + "Director"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Guest"; + 26614; + "Singer"; + ; + . + + a ; + "between 1870 and 1871"; + "1871-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "between 1870 and 1871"; + "1871-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Guest"; + 26617; + "Singer"; + ; + . + + a ; + "between 1870 and 1871"; + "1871-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "between 1870 and 1871"; + "1871-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Guest"; + 26619; + "Singer"; + ; + . + + a ; + "between May and July 1863"; + "1863-07-31"^^xsd:date; + "1863-05-01"^^xsd:date; + "between May and July 1863"; + "1863-07-31"^^xsd:date; + "1863-05-01"^^xsd:date; + "Guest"; + 26624; + "Singer"; + ; + . + + a ; + "May 1873"; + "1873-05-31"^^xsd:date; + "1873-05-01"^^xsd:date; + "May 1873"; + "1873-05-31"^^xsd:date; + "1873-05-01"^^xsd:date; + "Other"; + 26629; + "Singer"; + ; + . + + a ; + "1883-07-23"^^xsd:date; + "1883-07-23"^^xsd:date; + "1883-07-23"^^xsd:date; + "1883-07-23"^^xsd:date; + "Other"; + 26634; + "Singer"; + "Last public appearance"; + ; + . + + a ; + "Summer 1860"; + "1860-09-21"^^xsd:date; + "1860-06-22"^^xsd:date; + "1857-08-15"^^xsd:date; + "1857-08-15"^^xsd:date; + "Permanent"; + 26639; + "Actor"; + "Other"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 2664; + "Director"; + ; + ; + . + + a ; + "The season of 1860/1861"; + "1861-08-31"^^xsd:date; + "1861-05-01"^^xsd:date; + "The season of 1860/1861"; + "1860-10-31"^^xsd:date; + "1860-09-01"^^xsd:date; + "Permanent"; + 26644; + "Actor"; + "The Season of 1860/1861"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-10-01"^^xsd:date; + "October 1861"; + "1861-10-31"^^xsd:date; + "1861-10-01"^^xsd:date; + "Permanent"; + 26649; + "Actor"; + ; + ; + . + + a ; + "between 1861 and 1865"; + "1865-12-31"^^xsd:date; + "1861-06-01"^^xsd:date; + "between 1861 and 1865"; + "1865-12-31"^^xsd:date; + "1861-06-01"^^xsd:date; + "Tour"; + 26654; + "Actor"; + "With Edwin Forrest"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Permanent"; + 26659; + "Manager"; + "Actor"; + "As an Actor from 1870 until 1875"; + ; + ; + . + + a ; + "1874-05-30"^^xsd:date; + "1874-05-30"^^xsd:date; + "1874-05-04"^^xsd:date; + "1874-05-04"^^xsd:date; + "Guest"; + 26664; + "Actor"; + ; + ; + . + + a ; + "Fall 1874"; + "1874-12-21"^^xsd:date; + "1874-09-22"^^xsd:date; + "Fall 1874"; + "1874-12-21"^^xsd:date; + "1874-09-22"^^xsd:date; + "Tour"; + 26669; + "Actor"; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 2667; + "Delegate to the World Zionist Congress"; + ; + . + + a ; + "Fall 1875"; + "1875-09-21"^^xsd:date; + "1875-06-22"^^xsd:date; + "December 1874"; + "1874-12-31"^^xsd:date; + "1874-12-01"^^xsd:date; + "Tour"; + 26674; + "Actor"; + "He toured San Francisco und remained there"; + ; + ; + . + + a ; + "January 1877"; + "1877-01-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "January 1877"; + "1877-01-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 26679; + "Actor"; + ; + . + + a ; + "February 1876"; + "1876-02-29"^^xsd:date; + "1876-02-09"^^xsd:date; + "February 1876"; + "1876-02-09"^^xsd:date; + "1876-02-01"^^xsd:date; + "Tour"; + 26684; + "Actor"; + ; + . + + a ; + "1875-12-12"^^xsd:date; + "1875-12-12"^^xsd:date; + "1875-12-12"^^xsd:date; + "1875-12-12"^^xsd:date; + "Tour"; + 26689; + "Actor"; + ; + ; + . + + a ; + "1881-05-21"^^xsd:date; + "1881-05-21"^^xsd:date; + "1881-04-18"^^xsd:date; + "1881-04-18"^^xsd:date; + "Guest"; + 26694; + "Actor"; + ; + ; + . + + a ; + "March 1880"; + "1880-03-31"^^xsd:date; + "1880-03-01"^^xsd:date; + "March 1880"; + "1880-03-31"^^xsd:date; + "1880-03-01"^^xsd:date; + "Other"; + 26699; + "Actor"; + "benefit"; + ; + . + + a ; + "Guest "; + "Tour"; + 267; + ; + . + + a ; + "Tour"; + 2670; + "Actor"; + "Other"; + ; + . + + a ; + "1884-09-29"^^xsd:date; + "1884-09-29"^^xsd:date; + "1884-09-29"^^xsd:date; + "1884-09-29"^^xsd:date; + "Guest"; + 26704; + "Actor"; + ; + ; + . + + a ; + "-"; + "November 1863"; + "1863-11-30"^^xsd:date; + "1863-11-01"^^xsd:date; + "Other"; + 26709; + "Actor"; + ; + ; + . + + a ; + "1874-09-19"^^xsd:date; + "1874-09-19"^^xsd:date; + "1874-08-10"^^xsd:date; + "1874-08-10"^^xsd:date; + "Guest"; + 26714; + "Actor"; + ; + ; + . + + a ; + "Christmas 1875"; + "1875-12-26"^^xsd:date; + "1875-12-24"^^xsd:date; + "Christmas 1875"; + "1875-12-26"^^xsd:date; + "1875-12-24"^^xsd:date; + "Tour"; + 26719; + "Actor"; + ; + ; + . + + a ; + "between February and March 1876"; + "1876-03-31"^^xsd:date; + "1876-02-01"^^xsd:date; + "between February and March 1876"; + "1876-03-31"^^xsd:date; + "1876-02-01"^^xsd:date; + "Tour"; + 26720; + "Actor"; + ; + . + + a ; + "between March and April 1876"; + "1876-04-02"^^xsd:date; + "1876-03-27"^^xsd:date; + "1876-03-27"^^xsd:date; + "1876-03-27"^^xsd:date; + "Tour"; + 26724; + "Actor"; + ; + . + + a ; + "February 1877"; + "1877-02-28"^^xsd:date; + "1877-02-01"^^xsd:date; + "February 1877"; + "1877-02-28"^^xsd:date; + "1877-02-01"^^xsd:date; + "Tour"; + 26729; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 2673; + "Actor"; + "Touring the Russian Empire. Companies organized by the Kaminskis"; + ; + . + + a ; + "1876-04-27"^^xsd:date; + "1876-04-27"^^xsd:date; + "1876-04-02"^^xsd:date; + "1876-04-02"^^xsd:date; + "Guest"; + 26734; + "Actor"; + ; + ; + . + + a ; + "1878-01-17"^^xsd:date; + "1878-01-17"^^xsd:date; + "1878-01-17"^^xsd:date; + "1878-01-17"^^xsd:date; + "Other"; + 26739; + "Actor"; + ; + ; + . + + a ; + "1878-06-03"^^xsd:date; + "1878-06-03"^^xsd:date; + "1878-06-03"^^xsd:date; + "1878-06-03"^^xsd:date; + "Guest"; + 26744; + "Actor"; + ; + . + + a ; + "1878-09-05"^^xsd:date; + "1878-09-05"^^xsd:date; + "1878-09-05"^^xsd:date; + "1878-09-05"^^xsd:date; + "Guest"; + 26749; + "Actor"; + ; + ; + . + + a ; + "between January and February 1878"; + "1878-02-07"^^xsd:date; + "1878-01-21"^^xsd:date; + "1878-01-21"^^xsd:date; + "1878-01-21"^^xsd:date; + "Guest"; + 26754; + "Actor"; + ; + ; + . + + a ; + "between February and March 1878"; + "1878-03-13"^^xsd:date; + "1878-02-07"^^xsd:date; + "1878-02-07"^^xsd:date; + "1878-02-07"^^xsd:date; + "Guest"; + 26759; + "Actor"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 2676; + "Actor"; + "Tour through the Russian Empire"; + ; + ; + . + + a ; + "for three weeks"; + "1878-05-18"^^xsd:date; + "1878-05-12"^^xsd:date; + "1878-04-22"^^xsd:date; + "1878-04-22"^^xsd:date; + "Guest"; + 26760; + "Actor"; + ; + ; + . + + a ; + "for one week"; + "1878-03-23"^^xsd:date; + "1878-03-20"^^xsd:date; + "1878-03-13"^^xsd:date; + "1878-03-13"^^xsd:date; + "Guest"; + 26764; + "Actor"; + ; + . + + a ; + "1878-05-24"^^xsd:date; + "1878-05-24"^^xsd:date; + "1878-05-22"^^xsd:date; + "1878-05-22"^^xsd:date; + "Guest"; + 26769; + "Actor"; + ; + ; + . + + a ; + "between December 1878 and January 1879"; + "1879-01-31"^^xsd:date; + "1878-12-16"^^xsd:date; + "1878-12-16"^^xsd:date; + "1878-12-16"^^xsd:date; + "Guest"; + 26774; + "Actor"; + ; + ; + . + + a ; + "between February and October 1879"; + "1879-10-31"^^xsd:date; + "1879-02-03"^^xsd:date; + "1879-02-03"^^xsd:date; + "1879-02-03"^^xsd:date; + "Guest"; + 26779; + "Actor"; + ; + ; + . + + a ; + "befor summer 1879"; + "1879-09-21"^^xsd:date; + "1879-01-01"^^xsd:date; + "befor summer 1879"; + "1879-09-21"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 26784; + "Actor"; + ; + . + + a ; + "November 1879"; + "1879-11-30"^^xsd:date; + "1879-11-01"^^xsd:date; + "November 1879"; + "1879-11-30"^^xsd:date; + "1879-11-01"^^xsd:date; + "Tour"; + 26789; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 2679; + "Manager"; + "Several successful tours, managed by her husband"; + ; + . + + a ; + "Chrismas 1879"; + "1879-12-26"^^xsd:date; + "1879-12-24"^^xsd:date; + "Chrismas 1879"; + "1879-12-26"^^xsd:date; + "1879-12-24"^^xsd:date; + "Tour"; + 26794; + "Actor"; + ; + . + + a ; + "The first three months of 1880"; + "1880-03-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "The first three months of 1880"; + "1880-03-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 26799; + "Actor"; + ; + . + + a ; + "Guest "; + "Tour"; + 268; + ; + . + + a ; + "The first three months of 1880"; + "1880-03-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "The first three months of 1880"; + "1880-03-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 26800; + "Actor"; + ; + . + + a ; + "1880-05-31"^^xsd:date; + "1880-05-31"^^xsd:date; + "1880-05-31"^^xsd:date; + "1880-05-31"^^xsd:date; + "Other"; + 26804; + "Actor"; + ; + ; + . + + a ; + "between September and November 1881"; + "1881-11-15"^^xsd:date; + "1881-09-05"^^xsd:date; + "1881-09-05"^^xsd:date; + "1881-09-05"^^xsd:date; + "Guest"; + 26810; + "Actor"; + ; + . + + a ; + "1880-12-11"^^xsd:date; + "1880-12-11"^^xsd:date; + "1880-11-15"^^xsd:date; + "1880-11-15"^^xsd:date; + "Guest"; + 26814; + "Actor"; + ; + ; + . + + a ; + "1881-04-02"^^xsd:date; + "1881-04-02"^^xsd:date; + "1880-12-11"^^xsd:date; + "1880-12-11"^^xsd:date; + "Tour"; + 26816; + "Actor"; + ; + . + + a ; + "between September and November 1881"; + "1881-11-15"^^xsd:date; + "1881-09-01"^^xsd:date; + "September 1881"; + "1881-09-30"^^xsd:date; + "1881-09-01"^^xsd:date; + "Tour"; + 26819; + "Actor"; + ; + . + + a ; + "Tour"; + 2682; + "Other"; + "Seamstress as a young women"; + ; + . + + a ; + "1881-12-31"^^xsd:date; + "1881-12-31"^^xsd:date; + "1881-11-14"^^xsd:date; + "1881-11-14"^^xsd:date; + "Guest"; + 26824; + "Actor"; + ; + ; + . + + a ; + "1882-05-30"^^xsd:date; + "1882-05-30"^^xsd:date; + "1882-01-01"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 26829; + "Actor"; + ; + . + + a ; + "1882-05-31"^^xsd:date; + "1882-05-31"^^xsd:date; + "1882-05-31"^^xsd:date; + "1882-05-31"^^xsd:date; + "Guest"; + 26834; + "Actor"; + ; + ; + . + + a ; + "between September and November 1882"; + "1882-11-13"^^xsd:date; + "1882-09-04"^^xsd:date; + "1882-09-04"^^xsd:date; + "1882-09-04"^^xsd:date; + "Tour"; + 26839; + "Actor"; + ; + . + + a ; + "1882-12-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "1883-11-13"^^xsd:date; + "1882-11-13"^^xsd:date; + "Guest"; + 26844; + "Actor"; + ; + ; + . + + a ; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "Tour"; + 26849; + "Actor"; + ; + . + + a ; + "Tour"; + 2685; + "Actor"; + "Touring the Russian Empire"; + ; + . + + a ; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "Tour"; + 26854; + "Actor"; + "New England"; + . + + a ; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "between December 1882 and April 1883"; + "1883-04-09"^^xsd:date; + "1882-12-09"^^xsd:date; + "Tour"; + 26859; + "Actor"; + ; + . + + a ; + "1883-04-23"^^xsd:date; + "1883-04-23"^^xsd:date; + "1883-04-09"^^xsd:date; + "1883-04-09"^^xsd:date; + "Guest"; + 26864; + "Actor"; + ; + . + + a ; + "1883-05-04"^^xsd:date; + "1883-05-04"^^xsd:date; + "1883-04-29"^^xsd:date; + "1883-04-29"^^xsd:date; + "Other"; + 26869; + "Actor"; + ; + ; + . + + a ; + "1883"; + "1883-12-23"^^xsd:date; + "1883-08-20"^^xsd:date; + "1883-08-20"^^xsd:date; + "1883-08-20"^^xsd:date; + "Guest"; + 26874; + "Actor"; + ; + . + + a ; + "Christmas 1883"; + "1883-12-26"^^xsd:date; + "1883-12-24"^^xsd:date; + "Christmas 1883"; + "1883-12-26"^^xsd:date; + "1883-12-24"^^xsd:date; + "Guest"; + 26879; + "Actor"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 2688; + "Actor"; + ""; + ; + ; + . + + a ; + "between September and November 1882"; + "1882-11-13"^^xsd:date; + "1882-09-04"^^xsd:date; + "between September and November 1882"; + "1882-11-13"^^xsd:date; + "1882-09-04"^^xsd:date; + "Tour"; + 26880; + "Actor"; + ; + . + + a ; + "between September and November 1882"; + "1882-11-13"^^xsd:date; + "1882-09-04"^^xsd:date; + "between September and November 1882"; + "1882-11-13"^^xsd:date; + "1882-09-04"^^xsd:date; + "Tour"; + 26884; + "Actor"; + ; + . + + a ; + "Early January 1884"; + "1884-01-15"^^xsd:date; + "1884-01-01"^^xsd:date; + "Early January 1884"; + "1884-01-15"^^xsd:date; + "1884-01-01"^^xsd:date; + "Guest"; + 26889; + "Actor"; + ; + . + + a ; + "1883-03-29"^^xsd:date; + "1883-03-29"^^xsd:date; + "1883-03-03"^^xsd:date; + "1883-03-03"^^xsd:date; + "Guest"; + 26894; + "Actor"; + ; + ; + . + + a ; + "1883-04-05"^^xsd:date; + "1883-04-05"^^xsd:date; + "1883-04-05"^^xsd:date; + "1883-04-05"^^xsd:date; + "Guest"; + 26899; + "Actor"; + "Novelty Theater"; + ; + . + + a ; + "Guest "; + "Tour"; + 269; + ; + . + + a ; + "Tour"; + 2691; + "Actor"; + "Several successful tours, managed by her husband"; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-01-01"^^xsd:date; + "Guest"; + 26932; + "Dancer"; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843"; + "1843-01-01"^^xsd:date; + "Guest"; + 26937; + "Dancer"; + ; + ; + . + + a ; + "Tour"; + 2694; + "Actor"; + "Alongside her mother"; + . + + a ; + "1843-08-09"^^xsd:date; + "1843-08-09"^^xsd:date; + "Guest"; + 26942; + "Dancer"; + ; + ; + . + + a ; + "August 1843"; + "1843-08-31"^^xsd:date; + "August 1843"; + "1843-08-01"^^xsd:date; + "Guest"; + 26947; + "Dancer"; + ; + ; + . + + a ; + "1843-09-06"^^xsd:date; + "1843-09-06"^^xsd:date; + "Guest"; + 26952; + "Dancer"; + ; + ; + . + + a ; + "Probably October 1843"; + "1843-10-31"^^xsd:date; + "Probably October 1843"; + "1843-10-01"^^xsd:date; + "Guest"; + 26957; + "Dancer"; + ; + . + + a ; + "1844-03-30"^^xsd:date; + "1844-03-30"^^xsd:date; + "Guest"; + 26962; + "Dancer"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844"; + "1844-01-01"^^xsd:date; + "Guest"; + 26967; + "Dancer"; + ; + ; + . + + a ; + "Tour"; + "Tour"; + 2697; + "Actor"; + "Director"; + "Other"; + "Kaminska organized a succession of dramatic companies, Translator"; + ; + . + + a ; + "August 1845"; + "1845-08-31"^^xsd:date; + "August 1845"; + "1845-08-01"^^xsd:date; + "Guest"; + 26972; + "Dancer"; + ; + . + + a ; + "1846-10-10"^^xsd:date; + "1846-10-10"^^xsd:date; + "Guest"; + 26977; + "Dancer"; + ; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Guest"; + 26982; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Guest"; + 26987; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 26992; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 26997; + "Dancer"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 27; + "Actor"; + ""; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 270; + ; + . + + a ; + "Tour"; + 2700; + "Director"; + "Actor"; + ; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 27002; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 27007; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 27012; + "Dancer"; + ; + . + + a ; + "December 1851"; + "1851-12-31"^^xsd:date; + "1851-12-01"^^xsd:date; + "August 1851"; + "1851-08-31"^^xsd:date; + "1851-08-01"^^xsd:date; + "Tour"; + 27017; + "Dancer"; + ; + . + + a ; + "January 1852"; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1851-12-29"^^xsd:date; + "Guest"; + 27022; + "Dancer"; + ; + ; + . + + a ; + "May 1852"; + "1852-05-31"^^xsd:date; + "1852-05-01"^^xsd:date; + "January 1852"; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Tour"; + 27027; + "Dancer"; + "East Coast Tour with ensemble"; + ; + . + + a ; + "Tour"; + 2703; + "Director"; + "Actor"; + ; + ; + . + + a ; + "May 1852"; + "1852-05-31"^^xsd:date; + "1852-05-01"^^xsd:date; + "January 1852"; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Tour"; + 27032; + "Dancer"; + "East Coast Tour with ensemble"; + ; + . + + a ; + "May 1852"; + "1852-05-31"^^xsd:date; + "1852-05-01"^^xsd:date; + "January 1852"; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Tour"; + 27037; + "Dancer"; + "East Coast Tour with ensemble"; + ; + . + + a ; + "May 1852"; + "1852-05-31"^^xsd:date; + "1852-05-01"^^xsd:date; + "January 1852"; + "1852-01-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Tour"; + 27042; + "Dancer"; + "East Coast Tour with ensemble"; + ; + . + + a ; + "1852"; + "1852-05-01"^^xsd:date; + "1852-01-01"^^xsd:date; + "Guest"; + 27047; + "Dancer"; + "Actor"; + "With ensemble"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852"; + "1852-01-01"^^xsd:date; + "Tour"; + 27052; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852"; + "1852-01-01"^^xsd:date; + "Tour"; + 27057; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Tour"; + 2706; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852"; + "1852-01-01"^^xsd:date; + "Tour"; + 27062; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852"; + "1852-01-01"^^xsd:date; + "Tour"; + 27067; + "Dancer"; + "Actor"; + ; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27072; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27077; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27082; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27087; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Tour"; + 2709; + "Director"; + "Actor"; + ; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27092; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27097; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Guest "; + "Tour"; + 271; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27102; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "Winter 1852"; + "1852-03-20"^^xsd:date; + "Winter 1852"; + "1852-12-21"^^xsd:date; + "Tour"; + 27107; + "Dancer"; + "Actor"; + "Tour"; + ; + . + + a ; + "1853-06-16"^^xsd:date; + "1853-05-26"^^xsd:date; + "Tour"; + 27112; + "Dancer"; + "Actor"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + "Tour"; + 27117; + "Dancer"; + "Actor"; + ; + . + + a ; + "Tour"; + 2712; + "Western Europe"; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + "Tour"; + 27122; + "Dancer"; + "Actor"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + "Tour"; + 27127; + "Dancer"; + "Actor"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853"; + "1853-01-01"^^xsd:date; + "Tour"; + 27132; + "Dancer"; + "Actor"; + ; + . + + a ; + "Probably September 1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "1855-08-26"^^xsd:date; + "Tour"; + 27137; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "November 1855"; + "1855-11-30"^^xsd:date; + "1855-11-01"^^xsd:date; + "September 1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "Tour"; + 27142; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "November 1855"; + "1855-11-30"^^xsd:date; + "1855-11-01"^^xsd:date; + "Probably September 1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "Tour"; + 27147; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "Tour"; + 2715; + ; + ; + . + + a ; + "December 1855"; + "1855-12-31"^^xsd:date; + "1855-12-01"^^xsd:date; + "November 1855"; + "1855-11-30"^^xsd:date; + "1855-11-01"^^xsd:date; + "Tour"; + 27152; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "February 1856"; + "1856-02-29"^^xsd:date; + "1856-02-01"^^xsd:date; + "January 1856"; + "1856-01-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 27157; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "1856-02-16"^^xsd:date; + "1856-02-16"^^xsd:date; + "Tour"; + 27162; + "Dancer"; + "Actor"; + "Other"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856"; + "1856-01-01"^^xsd:date; + "Tour"; + 27167; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856"; + "1856-01-01"^^xsd:date; + "Tour"; + 27172; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856"; + "1856-01-01"^^xsd:date; + "Tour"; + 27177; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "Tour"; + 2718; + ; + ; + . + + a ; + "August 1856"; + "1856-08-31"^^xsd:date; + "1856-08-01"^^xsd:date; + "1856-08-07"^^xsd:date; + "Guest"; + 27182; + "Dancer"; + "Actor"; + "Other"; + ; + ; + . + + a ; + "Oktober 1856"; + "1856-10-31"^^xsd:date; + "1856-10-01"^^xsd:date; + "September 1856"; + "1856-09-30"^^xsd:date; + "1856-09-01"^^xsd:date; + "Guest"; + 27187; + "Dancer"; + "Actor"; + "Other"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27192; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27197; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "Guest "; + "Tour"; + 272; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27202; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27207; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "Tour"; + 2721; + ; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27212; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27217; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27227; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27232; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27237; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "Tour"; + 2724; + ; + ; + . + + a ; + "May 1857"; + "1857-05-31"^^xsd:date; + "1857-05-01"^^xsd:date; + "Probably December 1856"; + "1856-12-31"^^xsd:date; + "1856-12-01"^^xsd:date; + "Tour"; + 27242; + "Dancer"; + "Actor"; + "Other"; + "Tour"; + ; + . + + a ; + "Probably 29.7.1857"; + "1857-07-29"^^xsd:date; + "Probably 29.7.1857"; + "1857-07-29"^^xsd:date; + "Guest"; + 27247; + "Other"; + ; + . + + a ; + "Probably 1857 31.07.1857"; + "1857-07-31"^^xsd:date; + "Probably 1857 31.07.1857"; + "1857-07-31"^^xsd:date; + "Guest"; + 27252; + "Other"; + ; + . + + a ; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "August 1857"; + "1857-08-01"^^xsd:date; + "Guest"; + 27257; + "Other"; + ; + . + + a ; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27262; + "Other"; + ; + . + + a ; + "August 1857"; + "1857-08-31"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27267; + "Other"; + ; + . + + a ; + "Tour"; + 2727; + ; + . + + a ; + "December 1857"; + "1857-12-31"^^xsd:date; + "1857-12-01"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27272; + "Other"; + ; + . + + a ; + "December 1857"; + "1857-12-31"^^xsd:date; + "1857-12-01"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27277; + "Other"; + ; + . + + a ; + "December 1857"; + "1857-12-31"^^xsd:date; + "1857-12-01"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27282; + "Other"; + ; + . + + a ; + "December 1857"; + "1857-12-31"^^xsd:date; + "1857-12-01"^^xsd:date; + "August 1857"; + "1857-08-31"^^xsd:date; + "1857-08-01"^^xsd:date; + "Guest"; + 27287; + "Other"; + ; + . + + a ; + "Probably December 1857"; + "1857-12-31"^^xsd:date; + "Probably December 1857"; + "1857-12-01"^^xsd:date; + "Guest"; + 27292; + "Other"; + ; + ; + . + + a ; + "Probably 1858"; + "1858-12-31"^^xsd:date; + "Probably 1858"; + "1858-01-01"^^xsd:date; + "Guest"; + 27297; + "Other"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 273; + ; + ; + . + + a ; + "Tour"; + 2730; + "In Russian Theater"; + ; + . + + a ; + "November 1858"; + "1858-11-30"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27302; + "Other"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27307; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27312; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27317; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27322; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27327; + "Other"; + "Tour"; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 2733; + "Director"; + "Actor"; + ""; + ; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27332; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27337; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27342; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27347; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27352; + "Other"; + "Tour"; + ; + . + + a ; + "Till 4.10.1859"; + "1859-10-04"^^xsd:date; + "November 1858"; + "1858-11-30"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 27357; + "Other"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Tour"; + 2736; + "Director"; + ""; + ; + ; + . + + a ; + "1859-12-15"^^xsd:date; + "1859-12-15"^^xsd:date; + "Tour"; + 27362; + "Other"; + ; + . + + a ; + "April 1860"; + "1860-04-30"^^xsd:date; + "December 1859"; + "Tour"; + 27367; + "Other"; + ; + . + + a ; + "April 1860"; + "1860-04-30"^^xsd:date; + "December 1859"; + "Tour"; + 27372; + "Other"; + ; + . + + a ; + "1856"; + "1856"; + "Other"; + 27374; + "Actor"; + ; + . + + a ; + "May 1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "April 1891"; + "1891-04-30"^^xsd:date; + "1891-04-01"^^xsd:date; + "Tour"; + 27379; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1817"; + "1817-12-31"^^xsd:date; + "1817-03-08"^^xsd:date; + "1817-02-12"^^xsd:date; + "1817-02-12"^^xsd:date; + "Other"; + 27384; + "Actor"; + ; + ; + . + + a ; + "between 1817 and 13. Jan. 1821"; + "1821-01-13"^^xsd:date; + "1817-01-01"^^xsd:date; + "between 1817 and 13. Jan. 1821"; + "1821-01-13"^^xsd:date; + "1817-01-01"^^xsd:date; + "Other"; + 27389; + "Actor"; + "was in the Theatre Royal Drury Lane London"; + ; + . + + a ; + "1938"; + "1938-12-31"^^xsd:date; + "1938-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 2739; + "Collaborations with companies in Poland (e.g. Vilner Trupe) and Yiddish companies abroad."; + ; + . + + a ; + "1813"; + "1813-12-31"^^xsd:date; + "1813-01-01"^^xsd:date; + "1813"; + "1813-12-31"^^xsd:date; + "1813-01-01"^^xsd:date; + "Other"; + 27394; + "Actor"; + "as an amateur in a wretched little theatre in Pancras Street, Tottenham Court Road."; + ; + . + + a ; + "1813-12-13"^^xsd:date; + "1813-12-13"^^xsd:date; + "1813-12-13"^^xsd:date; + "1813-12-13"^^xsd:date; + "Other"; + 27399; + "Actor"; + "under the management of Mr. Penley"; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Guest "; + "Tour"; + 274; + ; + ; + . + + a ; + "between 1813 and 1814"; + "1814-12-31"^^xsd:date; + "1813-01-01"^^xsd:date; + "between 1813 and 1814"; + "1814-12-31"^^xsd:date; + "1813-01-01"^^xsd:date; + "Other"; + 27404; + "Actor"; + "was in the theatre in Deptford"; + ; + . + + a ; + "1814"; + "1814-12-31"^^xsd:date; + "1814-01-01"^^xsd:date; + "1814"; + "1814-12-31"^^xsd:date; + "1814-01-01"^^xsd:date; + "Tour"; + 27409; + "Actor"; + ; + . + + a ; + "1814"; + "1814-12-31"^^xsd:date; + "1814-01-01"^^xsd:date; + "1814"; + "1814-12-31"^^xsd:date; + "1814-01-01"^^xsd:date; + "Tour"; + 27414; + "Actor"; + ; + . + + a ; + "summer 1815"; + "1815-09-22"^^xsd:date; + "1815-06-22"^^xsd:date; + "summer 1815"; + "1815-09-22"^^xsd:date; + "1815-06-22"^^xsd:date; + "Permanent"; + 27419; + "Actor"; + "Worthing"; + ; + . + + a ; + "Tour"; + 2742; + "Reestablished Varshever Yiddisher Kunst-teater"; + ; + ; + . + + a ; + "until season 1815/16"; + "1816-09-30"^^xsd:date; + "1816-01-01"^^xsd:date; + "1815-10-18"^^xsd:date; + "1815-10-18"^^xsd:date; + "Permanent"; + 27424; + "Actor"; + ; + . + + a ; + "between 1816 and 1817"; + "1817-12-31"^^xsd:date; + "1816-01-01"^^xsd:date; + "1816"; + "1816-12-31"^^xsd:date; + "1816-01-01"^^xsd:date; + "Permanent"; + 27429; + "Manager"; + "Actor"; + "Worthing"; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + "Guest"; + 27434; + "Actor"; + ; + . + + a ; + "1831"; + "1831-12-31"^^xsd:date; + "1831-01-01"^^xsd:date; + "Permanent"; + 27439; + "Manager"; + ; + ; + . + + a ; + "1852-11-19"^^xsd:date; + "1852-11-19"^^xsd:date; + "1852-11-19"^^xsd:date; + "1852-11-19"^^xsd:date; + "Other"; + 27444; + "Actor"; + ; + ; + . + + a ; + "Pupil, in theater training"; + "Tour"; + 2745; + ; + . + + a ; + "1821-07-06"^^xsd:date; + "1821-07-06"^^xsd:date; + "1821-07-06"^^xsd:date; + "1821-07-06"^^xsd:date; + "Other"; + 27454; + "Actor"; + ; + ; + . + + a ; + "1821-10-05"^^xsd:date; + "1821-10-05"^^xsd:date; + "1821-10-05"^^xsd:date; + "1821-10-05"^^xsd:date; + "Other"; + 27459; + "Actor"; + ; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "Other"; + 27464; + "Actor"; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + "Guest"; + 27469; + "Actor"; + "at Drury Lane"; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Guest"; + 27474; + "Actor"; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Guest"; + 27479; + "Actor"; + ; + . + + a ; + "Tour"; + 2748; + "Actor"; + "Amateur Yiddish theater"; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 27484; + "Director"; + ; + ; + . + + a ; + "1917"; + "1918-08-31"^^xsd:date; + "Other"; + 27489; + "Director"; + ; + ; + . + + a ; + "1919-07-01"^^xsd:date; + "1919-07-01"^^xsd:date; + "Guest"; + 27494; + "Other"; + "Journalist"; + ; + ; + . + + a ; + "Permanent"; + 27495; + "Other"; + "Playwright"; + ; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Permanent"; + 27499; + "Other"; + "Playwright"; + ; + ; + ; + . + + a ; + "Tour"; + 275; + "Teacher (Theatre related)"; + ; + . + + a ; + "1930-12-31"^^xsd:date; + "1930-12-31"^^xsd:date; + "1923-09-01"^^xsd:date; + "1923-09-01"^^xsd:date; + "Permanent"; + 27504; + "Director"; + ; + ; + . + + a ; + "1923-09-01"^^xsd:date; + "1923-09-01"^^xsd:date; + "Guest"; + 27505; + "Other"; + ; + ; + . + + a ; + "1923-09-01"^^xsd:date; + "1923-09-01"^^xsd:date; + "Permanent"; + 27509; + "Other"; + ; + ; + . + + a ; + "Tour"; + 2751; + "Actor"; + ; + . + + a ; + "First half of 1931"; + "1931-06-30"^^xsd:date; + "1931-01-01"^^xsd:date; + "Permanent"; + 27514; + "Other"; + ; + ; + . + + a ; + "1934-01-01"^^xsd:date; + "Permanent"; + 27519; + "Other"; + ; + ; + . + + a ; + "January of 1939"; + "1939-01-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 27524; + "Other"; + """From +May 1935 till February 1936, he was imprisoned in El Puerto de Santamaría. He +was expelled from PSUC in 1949. He was imprisoned in 1957 and died in Burgos penalty."""; + ; + ; + . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + "Permanent"; + 27529; + "Author"; + ; + ; + ; + . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + "Permanent"; + 27534; + "Author"; + ; + ; + ; + . + + a ; + "1898-02-24"^^xsd:date; + "1898-02-24"^^xsd:date; + "Permanent"; + 27539; + "Author"; + ; + ; + ; + . + + a ; + "Tour"; + 2754; + "Actor"; + "Under the director Dovid Herman"; + ; + ; + . + + a ; + "1907-06-03"^^xsd:date; + "1906-06-03"^^xsd:date; + "Permanent"; + 27544; + "Author"; + ; + ; + . + + a ; + "1907-12-30"^^xsd:date; + "1907-12-30"^^xsd:date; + "Permanent"; + 27549; + "Author"; + ; + ; + . + + a ; + "1908-06-15"^^xsd:date; + "1908-06-15"^^xsd:date; + "Permanent"; + 27554; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Permanent"; + 27559; + "Journalist"; + ; + ; + . + + a ; + "Permanent"; + 27564; + "Author"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Permanent"; + 27569; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 2757; + "Actor"; + "Manager"; + "Tour through German-occupied Europe"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 27570; + "Actor"; + "Director"; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 27574; + "Director"; + ; + ; + . + + a ; + "1896-11-11"^^xsd:date; + "1896-11-11"^^xsd:date; + "1896-02-27"^^xsd:date; + "1896-02-27"^^xsd:date; + "Permanent"; + 27575; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1897-03-12"^^xsd:date; + "1897-03-12"^^xsd:date; + "Permanent"; + 27580; + "Actor"; + "Director"; + ; + ; + . + + a ; + "Permanent"; + 27581; + "Director"; + "Other"; + ; + ; + . + + a ; + "1897-10-18"^^xsd:date; + "1897-10-18"^^xsd:date; + "Permanent"; + 27586; + "Actor"; + ; + ; + . + + a ; + "1897-11-07"^^xsd:date; + "1897-11-07"^^xsd:date; + "1897-11-05"^^xsd:date; + "1897-11-05"^^xsd:date; + "Guest"; + 27589; + "Actor"; + ; + ; + . + + a ; + "1897-11-28"^^xsd:date; + "1897-11-28"^^xsd:date; + "1897-11-20"^^xsd:date; + "1897-11-20"^^xsd:date; + "Permanent"; + 27594; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 27597; + "Actor"; + ; + . + + a ; + "Tour"; + 27599; + "Actor"; + ; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 276; + "Teacher (Theatre related)"; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 2760; + "Actor"; + "Director"; + "Dos Baveglekhe Dramatishe Teater and Di Yunge Bine"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 27600; + "Actor"; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-06"^^xsd:date; + "1898-01-05"^^xsd:date; + "1898-01-05"^^xsd:date; + "Tour"; + 27604; + "Actor"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 27605; + "Actor"; + ; + . + + a ; + "Permanent"; + 27609; + "Founder"; + "Teacher (Theatre related)"; + ; + . + + a ; + "January 1903"; + "1903-01-31"^^xsd:date; + "1903-01-31"^^xsd:date; + "1902-09-01"^^xsd:date; + "1902-09-01"^^xsd:date; + "Permanent"; + 27614; + "Actor"; + ; + ; + ; + . + + a ; + "1904-10-20"^^xsd:date; + "1904-10-20"^^xsd:date; + "Permanent"; + 27619; + "Actor"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-12-31"^^xsd:date; + "1909"; + "1909-01-01"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 27624; + "Actor"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Permanent"; + 27629; + "Other"; + ; + . + + a ; + "Artistic director"; + "Tour"; + 2763; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Permanent"; + 27634; + "Actor"; + "Flor de durazno (film)"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1918-08-05"^^xsd:date; + "1918-08-05"^^xsd:date; + "Permanent"; + 27639; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 27644; + "Director"; + "Actor"; + "Founder"; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Permanent"; + 27649; + "Actor"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 27654; + "Actor"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 27656; + "Actor"; + "Director"; + "Founder"; + ; + ; + . + + a ; + "Artistic director"; + "Tour"; + 2766; + ; + ; + . + + a ; + "Permanent"; + 27660; + "Actor"; + ; + ; + . + + a ; + "1893-08-26"^^xsd:date; + "1893-08-26"^^xsd:date; + "Permanent"; + 27661; + "Actor"; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Permanent"; + 27684; + "Music Director"; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Guest"; + 27689; + "Music Director"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Artistic director"; + "Tour"; + 2769; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Guest"; + 27694; + "Musician"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "August 1907"; + "1907-08-31"^^xsd:date; + "1907-08-01"^^xsd:date; + "Permanent"; + 27699; + "Music Director"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 277; + "Composer"; + "Conductor"; + "Director"; + ""; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 27704; + "Music Director"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 27709; + "Music Director"; + ; + ; + . + + a ; + "Permanent"; + 27714; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 27719; + "Impresario"; + ; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "Tour"; + 2772; + "Tour throughout Europe, visiting displaced person camps"; + ; + . + + a ; + "Permanent"; + 27724; + "Impresario"; + ; + ; + . + + a ; + "Permanent"; + 27729; + "Impresario"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Permanent"; + 27734; + "Impresario"; + ; + ; + . + + a ; + "1943-09-01"^^xsd:date; + "1943-09-01"^^xsd:date; + "1907-08-01"^^xsd:date; + "1907-08-01"^^xsd:date; + "Permanent"; + 27739; + "Founder"; + ; + ; + . + + a ; + "Guest"; + 27744; + "Singer"; + ; + ; + . + + a ; + "Guest"; + 27749; + "Singer"; + ; + ; + . + + a ; + "Pupil"; + "Tour"; + 2775; + "Theater and film schools"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Guest"; + 27754; + "Journalist"; + ; + ; + . + + a ; + "1909"; + "1909-11-30"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 27759; + "Other"; + "Secreatry"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Permanent"; + 27764; + "Other"; + ; + ; + ; + . + + a ; + "Permanent"; + 27769; + "Founder"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 27774; + "Other"; + "Member"; + ; + ; + . + + a ; + "Permanent"; + 27779; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Warsaw"; + "Tour"; + 2778; + "Warsaw Yiddish daily"; + ; + . + + a ; + "1965"; + "1965-12-31"^^xsd:date; + "1965-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-11-01"^^xsd:date; + 27784; + "Author"; + ; + . + + a ; + "1930-09-06"^^xsd:date; + "1930-09-06"^^xsd:date; + "1928-06-08"^^xsd:date; + "1928-06-08"^^xsd:date; + "Permanent"; + 27789; + "Other"; + "Deputy"; + ; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "Permanent"; + 27794; + "Director"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 27799; + "Founder"; + ; + ; + . + + a ; + "Tour"; + 278; + ; + . + + a ; + "1955-12-19"^^xsd:date; + "1955-12-19"^^xsd:date; + "Permanent"; + 27804; + "Other"; + "President"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 27806; + "Author"; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "Permanent"; + 27809; + "Author"; + ; + . + + a ; + "Pupil, Worker"; + "Tour"; + 2781; + ; + ; + . + + a ; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "Permanent"; + 27814; + "Author"; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + 27815; + "Author"; + "Other"; + ; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "Permanent"; + 27816; + "Author"; + "Other"; + ; + ; + . + + a ; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "1956"; + "1956-12-31"^^xsd:date; + "1956-01-01"^^xsd:date; + "Permanent"; + 27819; + "Author"; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 27824; + "Author"; + "Founder"; + """His novels Barrio gris y Oro bajo were +both adapted into films. He wrote the script for Oro bajo (1954) and obtained +the prize Premio Cóndor de Plata. Barrio gris obtained a +golden medal from the Comisión Nacional de Cultura de Argentina."""; + ; + . + + a ; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Permanent"; + 27829; + "Other"; + ; + . + + a ; + "Guest"; + 27834; + "Author"; + "Other"; + "Collaborator"; + ; + ; + . + + a ; + "Guest"; + 27839; + "Author"; + "Other"; + "Collaborator"; + ; + ; + . + + a ; + "Tour"; + 2784; + "Actor"; + ; + . + + a ; + "Permanent"; + 27844; + "Other"; + ; + . + + a ; + "Permanent"; + 27849; + "Other"; + ; + . + + a ; + "Permanent"; + 27854; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 27859; + "Actor"; + "Compañía de Florencio Parravicini- Pablo Podestá y Orfilia Rico"; + ; + ; + ; + . + + a ; + "Permanent"; + 27864; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 27869; + "Actor"; + "Elenco Nacional encabezado por Casaux"; + ; + ; + . + + a ; + "Tour"; + 2787; + "Actor"; + ; + . + + a ; + "Permanent"; + 27874; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 27879; + "Actor"; + ; + ; + . + + a ; + "1944"; + "1944-12-31"^^xsd:date; + "1944-01-01"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Permanent"; + 27884; + "Actor"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Permanent"; + 27889; + "Author"; + ; + ; + . + + a ; + 27894; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Permanent"; + 27899; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Tour"; + 279; + ; + . + + a ; + "Tour"; + 2790; + "Actor"; + ; + . + + a ; + "Permanent"; + 27904; + "Teacher (Theatre related)"; + ; + . + + a ; + "1874-10-12"^^xsd:date; + "1874-10-12"^^xsd:date; + "1864-10-12"^^xsd:date; + "1868-10-12"^^xsd:date; + "Permanent"; + 27909; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Permanent"; + 27914; + "Director"; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Permanent"; + 27919; + "Other"; + "Inspector Nacional de Educación"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Permanent"; + 27922; + "Journalist"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Permanent"; + 27926; + "Journalist"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Permanent"; + 27929; + "Journalist"; + ; + ; + . + + a ; + "Tour"; + 2793; + "Actor"; + "Different Yiddish theaters"; + ; + . + + a ; + "1929-06-27"^^xsd:date; + "1929-06-27"^^xsd:date; + "1885-01-14"^^xsd:date; + "1885-01-14"^^xsd:date; + "Permanent"; + 27934; + "Director"; + ; + ; + . + + a ; + "Permanent"; + 27939; + "Author"; + "\"La monja\" (play)"; + ; + . + + a ; + "1923-07-06"^^xsd:date; + "1923-07-06"^^xsd:date; + 27944; + "Author"; + "\"La divisa punzó\" (play)"; + ; + ; + . + + a ; + "1957"; + "1957-12-31"^^xsd:date; + "1957-01-01"^^xsd:date; + "1953"; + "1953-12-31"^^xsd:date; + "1953-01-01"^^xsd:date; + "Permanent"; + 27949; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1931"; + "1931-01-01"^^xsd:date; + "1931-01-01"^^xsd:date; + "Permanent"; + 27953; + "Founder"; + ; + ; + . + + a ; + "1937-02-22"^^xsd:date; + "1937-02-22"^^xsd:date; + "Permanent"; + 27958; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 2796; + "Singer"; + """first appearance, +sang under his pseudonym Paolo Alberti"""; + ; + . + + a ; + "1937-03-01"^^xsd:date; + "1937-03-01"^^xsd:date; + "Permanent"; + 27963; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "1957"; + "1957-12-31"^^xsd:date; + "1957-12-31"^^xsd:date; + "1937"; + "1937-01-01"^^xsd:date; + "1937-01-01"^^xsd:date; + "Permanent"; + 27968; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "Permanent"; + 27973; + "Manager"; + ; + ; + ; + . + + a ; + "Permanent"; + 27978; + "Other"; + ; + ; + . + + a ; + "1962"; + "1962-01-01"^^xsd:date; + "1962-01-01"^^xsd:date; + "Permanent"; + 27983; + "Other"; + ; + ; + . + + a ; + "Permanent"; + 27988; + "Other"; + ; + ; + . + + a ; + "Tour"; + 2799; + "Singer"; + ; + . + + a ; + 27993; + ; + . + + a ; + "1911-04-30"^^xsd:date; + "1911-04-30"^^xsd:date; + "2017-04-19"^^xsd:date; + "Tour"; + 28; + "Actor"; + ""; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 280; + ; + . + + a ; + "Probably between 1910 and 1922"; + "1922-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Probably between 1910 and 1922"; + "1922-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Permanent"; + 28003; + "Actor"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 28008; + "Actor"; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Guest"; + 28013; + "Other"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Other"; + 28018; + "Actor"; + ; + . + + a ; + "Tour"; + 2802; + "Singer"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Other"; + 28023; + "Actor"; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 28028; + "Actor"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + 28033; + "Actor"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "June 1905"; + "1905-06-30"^^xsd:date; + "1905-06-01"^^xsd:date; + "Permanent"; + 28038; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 28043; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + 28048; + "Director"; + "Manager"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 2805; + "Singer"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "September 1925"; + "1925-09-30"^^xsd:date; + "1925-09-01"^^xsd:date; + "Permanent"; + 28053; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "September 1925"; + "1925-09-30"^^xsd:date; + "1925-09-01"^^xsd:date; + "Permanent"; + 28058; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 28063; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Permanent"; + 28068; + "Director"; + "Manager"; + ; + ; + . + + a ; + "Probably 1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "Permanent"; + 28073; + "Teacher (Theatre related)"; + "Fordham University"; + ; + ; + . + + a ; + "Probably 1941"; + "1941-12-31"^^xsd:date; + "1941-01-01"^^xsd:date; + "Permanent"; + 28078; + "Teacher (Theatre related)"; + "New York Hunter College"; + ; + ; + . + + a ; + "Tour"; + 2808; + "Singer"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 28080; + "Other"; + "Editor"; + ; + ; + . + + a ; + "1904-1909"; + "1909-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904-1909"; + "1909-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Permanent"; + 28085; + "Author"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 28090; + "Author"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Permanent"; + 28095; + "Author"; + ; + ; + . + + a ; + "May 1888"; + "1888-05-31"^^xsd:date; + "1888-05-01"^^xsd:date; + "Tour"; + 281; + ; + . + + a ; + "1921-1924"; + "1924-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Permanent"; + 28100; + "Author"; + ; + ; + . + + a ; + "1924-1927"; + "1927-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Permanent"; + 28105; + "Manager"; + "Director of the Theatre Department"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 2811; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Permanent"; + 28110; + "Manager"; + "Director of the Theatre Department"; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 28115; + "Manager"; + "Director of the Theatre Department"; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Permanent"; + 28120; + "Manager"; + "Impresario"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Permanent"; + 28125; + "Author"; + "Other"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 2814; + ; + . + + a ; + "Between 6th August 1889 and 5th August 1890"; + "1890-08-05"^^xsd:date; + "1889-08-06"^^xsd:date; + "Guest"; + 28150; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 2817; + ; + . + + a ; + "Probably between 1897 and 1900"; + "1900-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + 28180; + "Actor"; + ; + ; + . + + a ; + "30th March 1920"; + "1920-03-30"^^xsd:date; + "1920-03-30"^^xsd:date; + 28185; + "Founder"; + "Author"; + ; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + 28190; + "Founder"; + "Author"; + ; + ; + . + + a ; + 28195; + . + + a ; + "1907-11-24"^^xsd:date; + "1907-11-24"^^xsd:date; + "Tour"; + 282; + "Director"; + "first training with the orchester 23th december 1907"; + ; + . + + a ; + "Guest "; + "Tour"; + 2820; + ; + . + + a ; + 28200; + . + + a ; + "Guest "; + "Guest"; + 2823; + ; + . + + a ; + "Guest"; + 2826; + "Singer"; + ; + ; + . + + a ; + "Between 1909 and 1914"; + "1914-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Between 1909 and 1914"; + "1914-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + 28270; + "Actor"; + ; + ; + . + + a ; + "Probably before June 1905"; + "1905-06-30"^^xsd:date; + "1905-06-01"^^xsd:date; + 28275; + "Actor"; + ; + ; + . + + a ; + "Probably before June 1905"; + "1905-06-30"^^xsd:date; + "1905-06-01"^^xsd:date; + 28280; + "Actor"; + ; + ; + . + + a ; + "Probably before 1905"; + 28285; + "Actor"; + ; + . + + a ; + "Tour"; + 2829; + "Singer"; + "together with his wife"; + ; + ; + . + + a ; + "Probably before June 1905"; + "1905-06-30"^^xsd:date; + "1905-06-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + 28290; + "Director"; + ; + ; + . + + a ; + "Probably before June 1905"; + "1905-06-30"^^xsd:date; + "1905-06-01"^^xsd:date; + 28295; + "Director"; + ; + ; + . + + a ; + "1911-02-21"^^xsd:date; + "1911-02-21"^^xsd:date; + "Tour"; + 283; + "offered managerial post, declined"; + ; + ; + . + + a ; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Permanent"; + 28300; + "Director"; + "Manager"; + ; + ; + . + + a ; + 28305; + . + + a ; + "Tour"; + 2832; + "Singer"; + "together with his wife"; + ; + ; + . + + a ; + "Between 1915 and 1922"; + "1922-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Between 1915 and 1922"; + "1922-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + 28325; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + 28330; + "Founder"; + ; + ; + . + + a ; + "Between 1922 and 1927"; + "1927-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Between 1922 and 1927"; + "1927-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + 28335; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + 28340; + "Actor"; + "Director"; + ; + ; + . + + a ; + "Between 1927 and 1931"; + "1931-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Between 1927 and 1931"; + "1931-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + 28345; + "Impresario"; + ; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Tour"; + 2835; + "Singer"; + ; + ; + . + + a ; + "Between 1931 and 1933"; + "1933-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Between 1931 and 1933"; + "1933-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + 28350; + "Impresario"; + ; + ; + . + + a ; + "Between 1933 and 1937"; + "1937-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Between 1933 and 1937"; + "1937-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 28355; + ; + ; + . + + a ; + "Between 1933 and 1936"; + "1936-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Between 1933 and 1936"; + "1936-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + 28360; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "Between 1936 and 1947"; + "1947-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Between 1936 and 1947"; + "1947-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + 28365; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "Between 1947 and 1959"; + "1959-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "Between 1947 and 1959"; + "1959-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + 28370; + "Impresario"; + "Director"; + ; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + 28375; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Tour"; + 2838; + "Singer"; + ; + . + + a ; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "1952"; + "1952-12-31"^^xsd:date; + "1952-01-01"^^xsd:date; + 28380; + "Director"; + "Journalist"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + 28385; + "Founder"; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + 28390; + "Manager"; + ; + ; + . + + a ; + 28395; + "Manager"; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + "Tour"; + 284; + "Singer"; + ""; + ; + ; + . + + a ; + "1914-03-21/1914-06-20"; + "1914-06-20"^^xsd:date; + "1914-03-21"^^xsd:date; + "1914-03-21/1914-06-20"; + "1914-06-20"^^xsd:date; + "1914-03-21"^^xsd:date; + "Permanent"; + 28404; + "Actor"; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Permanent"; + 28405; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 2841; + "Singer"; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + 28414; + "Actor"; + ; + ; + . + + a ; + "June 1924"; + "1924-06-30"^^xsd:date; + "1924-06-01"^^xsd:date; + "1924-04-14"; + "1924-04-14"^^xsd:date; + "1924-04-14"^^xsd:date; + "Guest"; + 28415; + "Actor"; + ; + ; + . + + a ; + "January 1924"; + "1924-01-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1923-11-19"; + "1923-11-19"^^xsd:date; + "1923-11-19"^^xsd:date; + "Guest"; + 28420; + "Actor"; + ; + ; + . + + a ; + "1946-12-14"; + "1946-12-14"^^xsd:date; + "1946-12-14"^^xsd:date; + "1946-11-18"; + "1946-11-18"^^xsd:date; + "1946-11-18"^^xsd:date; + "Guest"; + 28425; + "Actor"; + ; + ; + . + + a ; + "March 1921"; + "1921-03-31"^^xsd:date; + "1921-03-01"^^xsd:date; + "1920-11-17"; + "1920-11-17"^^xsd:date; + "1920-11-17"^^xsd:date; + "Guest"; + 28430; + "Actor"; + ; + ; + . + + a ; + "1922-01-07"; + "1922-01-07"^^xsd:date; + "1922-01-07"^^xsd:date; + "1921-12-20"; + "1921-12-20"^^xsd:date; + "1921-12-20"^^xsd:date; + "Guest"; + 28435; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 2844; + "Singer"; + ; + . + + a ; + "February 1923"; + "1923-02-28"^^xsd:date; + "1923-02-01"^^xsd:date; + "1922-12-20"; + "1922-12-20"^^xsd:date; + "1922-12-20"^^xsd:date; + "Guest"; + 28440; + "Actor"; + ; + ; + . + + a ; + "April 1924"; + "1924-04-30"^^xsd:date; + "1924-04-01"^^xsd:date; + "1924-03-17"; + "1924-03-17"^^xsd:date; + "1924-03-17"^^xsd:date; + "Guest"; + 28445; + "Actor"; + ; + ; + . + + a ; + "March 1926"; + "1926-03-31"^^xsd:date; + "1926-03-01"^^xsd:date; + "1926-01-25"; + "1926-01-25"^^xsd:date; + "1926-01-25"^^xsd:date; + "Guest"; + 28450; + "Actor"; + ; + ; + . + + a ; + "April 1926"; + "1926-04-30"^^xsd:date; + "1926-04-01"^^xsd:date; + "1926-03-23"; + "1926-03-23"^^xsd:date; + "1926-03-23"^^xsd:date; + "Guest"; + 28455; + "Actor"; + ; + ; + . + + a ; + "November 1927"; + "1927-11-30"^^xsd:date; + "1927-11-01"^^xsd:date; + "November 1927"; + "1927-11-30"^^xsd:date; + "1927-11-01"^^xsd:date; + "Guest"; + 28460; + "Actor"; + ; + ; + . + + a ; + "January 1930"; + "1930-01-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "1929-09-16"; + "1929-09-16"^^xsd:date; + "1929-09-16"^^xsd:date; + "Guest"; + 28465; + "Actor"; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + "Tour"; + 2847; + "Singer"; + ; + . + + a ; + "February 1933"; + "1933-02-28"^^xsd:date; + "1933-02-01"^^xsd:date; + "1933-01-31"; + "1933-01-31"^^xsd:date; + "1933-01-31"^^xsd:date; + "Guest"; + 28470; + "Actor"; + ; + ; + . + + a ; + "1934-09-29"; + "1934-09-29"^^xsd:date; + "1934-09-19"; + "1934-09-19"^^xsd:date; + "1934-09-19"^^xsd:date; + "Guest"; + 28475; + "Actor"; + ; + ; + . + + a ; + "1934-10-20"; + "1934-10-20"^^xsd:date; + "1934-10-20"^^xsd:date; + "1934-10-01"; + "1934-10-01"^^xsd:date; + "1934-10-01"^^xsd:date; + "Guest"; + 28480; + "Actor"; + ; + ; + . + + a ; + "1946-10-05"; + "1946-10-05"^^xsd:date; + "1946-10-05"^^xsd:date; + "1946-09-05"; + "1946-09-05"^^xsd:date; + "1946-09-05"^^xsd:date; + "Guest"; + 28485; + "Actor"; + ; + ; + . + + a ; + "1946-10-19"; + "1946-10-19"^^xsd:date; + "1946-10-19"^^xsd:date; + "1946-10-07"; + "1946-10-07"^^xsd:date; + "1946-10-07"^^xsd:date; + "Guest"; + 28490; + "Actor"; + ; + ; + . + + a ; + "1946-11-16"; + "1946-11-16"^^xsd:date; + "1946-11-16"^^xsd:date; + "1946-10-21"; + "1946-10-21"^^xsd:date; + "1946-10-21"^^xsd:date; + "Guest"; + 28495; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 285; + "Singer"; + ; + ; + . + + a ; + "1838"; + "1838-12-01"^^xsd:date; + "1838-12-01"^^xsd:date; + "May 1836 tDe1838"; + "1836-05-31"^^xsd:date; + "1836-05-01"^^xsd:date; + "Tour"; + 2850; + "Singer"; + ; + . + + a ; + "1946-12-14"; + "1946-12-14"^^xsd:date; + "1946-12-14"^^xsd:date; + "1946-11-18"; + "1946-11-18"^^xsd:date; + "1946-11-18"^^xsd:date; + "Guest"; + 28500; + "Actor"; + ; + ; + . + + a ; + "1958-03-09"; + "1958-03-09"^^xsd:date; + "1958-03-09"^^xsd:date; + "1958-02-03"; + "1958-02-03"^^xsd:date; + "1958-02-03"^^xsd:date; + "Guest"; + 28505; + "Actor"; + ; + ; + . + + a ; + "November 1930"; + "1930-11-30"^^xsd:date; + "1930-11-01"^^xsd:date; + "1930-10-06"; + "1930-10-06"^^xsd:date; + "1930-10-06"^^xsd:date; + "Guest"; + 28510; + "Actor"; + ; + ; + . + + a ; + "1961-05-13"; + "1961-05-13"^^xsd:date; + "1961-05-13"^^xsd:date; + "1961-01-23"; + "1961-01-23"^^xsd:date; + "1961-01-23"^^xsd:date; + "Guest"; + 28515; + "Actor"; + ; + ; + . + + a ; + "May 1930"; + "1930-05-31"^^xsd:date; + "1930-05-01"^^xsd:date; + "1930-04-21"; + "1930-04-21"^^xsd:date; + "1930-04-21"^^xsd:date; + "Guest"; + 28525; + "Actor"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "Tour"; + 2853; + "Singer"; + ; + ; + . + + a ; + "March 1931"; + "1931-03-31"^^xsd:date; + "1931-03-01"^^xsd:date; + "1931-01-26"; + "1931-01-26"^^xsd:date; + "1931-01-26"^^xsd:date; + "Guest"; + 28530; + "Actor"; + ; + ; + . + + a ; + "May 1936"; + "1936-05-31"^^xsd:date; + "1936-05-01"^^xsd:date; + "1936-03-30"; + "1936-03-30"^^xsd:date; + "1936-03-30"^^xsd:date; + "Guest"; + 28535; + "Actor"; + ; + ; + . + + a ; + "1961-01-21"; + "1961-01-21"^^xsd:date; + "1961-01-21"^^xsd:date; + "1959-11-05"; + "1959-11-05"^^xsd:date; + "1959-11-05"^^xsd:date; + "Guest"; + 28540; + "Actor"; + ; + ; + . + + a ; + "July 1928"; + "1928-07-31"^^xsd:date; + "1928-07-01"^^xsd:date; + "1928-05-28"; + "1928-05-28"^^xsd:date; + "1928-05-28"^^xsd:date; + "Guest"; + 28543; + "Actor"; + ; + ; + . + + a ; + "1967-12-17"; + "1967-12-17"^^xsd:date; + "1967-12-17"^^xsd:date; + "1967-10-19"; + "1967-10-19"^^xsd:date; + "1967-10-19"^^xsd:date; + "Guest"; + 28545; + "Actor"; + "Director"; + "Other"; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 28550; + "Singer"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Permanent"; + 28555; + "Singer"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 2856; + "Singer"; + ; + . + + a ; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + 28560; + "Singer"; + ; + . + + a ; + "Autumn 1837"; + "1837-12-23"^^xsd:date; + "1837-09-24"^^xsd:date; + "Guest"; + 28565; + "Singer"; + ; + . + + a ; + "Autumn 1837"; + "1837-12-23"^^xsd:date; + "1837-09-24"^^xsd:date; + "Guest"; + 28570; + "Singer"; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "Tour"; + 28575; + "Singer"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Permanent"; + 28580; + "Singer"; + ; + . + + a ; + 28585; + "Singer"; + ; + ; + . + + a ; + 28589; + . + + a ; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "Tour"; + 2859; + "Singer"; + ; + ; + . + + a ; + 28592; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + 286; + "Singer"; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Tour"; + 2862; + "Singer"; + "In the summer of 1844 she fell ill with tuberculosis but recovered."; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Tour"; + 2865; + "Singer"; + "In the summer of 1844 she fell ill with tuberculosis but recovered."; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + 2868; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 287; + "Teacher (Theatre related)"; + ; + . + + a ; + "May 1848"; + "1848-05-31"^^xsd:date; + "1848-05-01"^^xsd:date; + "April 1846 "; + "1846-04-30"^^xsd:date; + "1846-04-01"^^xsd:date; + "Tour"; + 2871; + "Singer"; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Tour"; + 2874; + "Singer"; + ; + ; + . + + a ; + "May 1851 till July 1853"; + "1853-07-01"^^xsd:date; + "1851-05-01"^^xsd:date; + "Tour"; + 2877; + "Singer"; + ; + . + + a ; + "Tour"; + 288; + "Actor"; + "toured with The Diamond Express and appeared at the Royal Variety Performance"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 2880; + "Singer"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 2883; + "Singer"; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 2886; + "Singer"; + ; + . + + a ; + "Tour"; + 2889; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 289; + "Appearance"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 2892; + "Singer"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 2895; + "Singer"; + ; + . + + a ; + "Tour"; + 2898; + "Singer"; + ; + . + + a ; + "October 1912"; + "1912-10-31"^^xsd:date; + "1912-10-01"^^xsd:date; + "2030-09-19"^^xsd:date; + "Tour"; + 29; + "Actor"; + ""; + ; + ; + . + + a ; + "Tour"; + 290; + "Appearance"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 2904; + "Other"; + "Journalist"; + ""; + ; + ; + . + + a ; + "1877-11-17"^^xsd:date; + "1877-11-17"^^xsd:date; + "Tour"; + 2907; + "Other"; + "Journalist"; + ""; + ; + ; + . + + a ; + "Tour"; + 291; + "Appearance"; + ; + . + + a ; + "1879-03-08"^^xsd:date; + "1879-03-08"^^xsd:date; + "Tour"; + 2910; + "Other"; + "Journalist"; + ""; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Permanent"; + 2913; + "Actor"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 2916; + "Actor"; + ; + ; + . + + a ; + "-"; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Permanent"; + 2919; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 292; + "Actor"; + "singing Molly Darling"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + 2928; + "Actor"; + ; + . + + a ; + "Performer"; + "Tour"; + 293; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 2937; + "Actor"; + ; + . + + a ; + "Tour"; + 294; + "Actor"; + "member of the Ada Rehan Company"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 2940; + "Actor"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 2943; + "Actor"; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Motherhood"; + "Tour"; + 2946; + ; + . + + a ; + "-"; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Permanent"; + 2949; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 295; + "Actor"; + ""; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + 2952; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 296; + "Actor"; + ""; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 2964; + "Actor"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 2967; + ; + . + + a ; + "Opera performer"; + "Tour"; + 297; + ""; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "December 1893"; + "1893-12-31"^^xsd:date; + "1893-12-01"^^xsd:date; + "Tour"; + 2970; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Permanent"; + 2973; + "Actor"; + "Director"; + "Founder"; + "Starts a company in the Teatro da Rua dos Condes"; + ; + ; + ; + . + + a ; + "1896 - 1897"; + "1897-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "just for 3 Months between 1896 and 1897"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 2976; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 298; + "Actor"; + ""; + ; + . + + a ; + "December 1897"; + "1897-12-31"^^xsd:date; + "1897-12-01"^^xsd:date; + "May 1897"; + "1897-05-31"^^xsd:date; + "1897-05-01"^^xsd:date; + "Entrepreneur"; + "Tour"; + 2982; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "-"; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Permanent"; + 2985; + "Actor"; + ; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Winter 1899"; + "1900-03-31"^^xsd:date; + "1899-11-21"^^xsd:date; + "Entrepreneur"; + "Tour"; + 2988; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "Tour"; + 299; + "Actor"; + ""; + ; + . + + a ; + "1901"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Entrepreneur"; + "Tour"; + 2991; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1901"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Entrepreneur"; + "Tour"; + 2994; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1901"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Entrepreneur"; + "Tour"; + 2997; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 3; + "Singer"; + ""; + ; + ; + . + + a ; + "2024-02-19"^^xsd:date; + "Tour"; + 30; + "Actor"; + ""; + ; + ; + . + + a ; + "Tour"; + 300; + "Actor"; + "with Daniel Frohman’s acting group"; + ; + . + + a ; + "-"; + "1903-12-31"^^xsd:date; + "2024-09-17"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 3003; + "Actor"; + ; + ; + ; + . + + a ; + "1922 (probably)"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Entrepreneur"; + "Tour"; + 3006; + "Director"; + "Director"; + ; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "November 1908"; + "1908-11-30"^^xsd:date; + "1908-11-01"^^xsd:date; + "Tour"; + 3009; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 301; + "Actor"; + "Desdemona in Othello"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 3012; + "Actor"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 3015; + "Actor"; + ; + ; + . + + a ; + "-"; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 3018; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Winter 1912"; + "1913-03-22"^^xsd:date; + "1912-12-21"^^xsd:date; + "Tour"; + 3021; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 3024; + "Actor"; + ; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 3027; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 3030; + "Director"; + ; + ; + . + + a ; + "1844"; + "1844-07-05"^^xsd:date; + "1844-07-05"^^xsd:date; + "1842"; + "1842-07-01"^^xsd:date; + "1842-07-01"^^xsd:date; + "Permanent"; + 304; + "Singer"; + "with an annual salary of 700 Riksdaler Banco"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Permanent"; + 305; + "Singer"; + "member of the Royal Swedish Music Academy in Stockholm and appointment as court singer"; + ; + ; + ; + . + + a ; + "Last week in Nov. 1844"; + "1844-11-30"^^xsd:date; + "1844-11-24"^^xsd:date; + "Last week in Nov. 1844"; + "1844-11-30"^^xsd:date; + "1844-11-24"^^xsd:date; + "Guest "; + "Guest"; + 307; + "Singer"; + "with Meyerbeer; Private performance, debut at the Royal House of Berlin"; + ; + . + + a ; + "1848"; + "1848-08-24"^^xsd:date; + "1848-08-24"^^xsd:date; + "1848"; + "1848-05-04"^^xsd:date; + "1848-05-04"^^xsd:date; + "Permanent"; + 309; + "Singer"; + ; + ; + . + + a ; + "May 1915"; + "1915-05-31"^^xsd:date; + "1915-05-01"^^xsd:date; + "2024-12-19"^^xsd:date; + "Tour"; + 31; + "Actor"; + ""; + ; + ; + . + + a ; + "1852"; + "1852-05-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1850"; + "1850-09-01"^^xsd:date; + "1850-08-21"^^xsd:date; + "Tour"; + 310; + "Singer"; + "Tour through the USA with over 150 concerts, including Cuba and Canada. USA-Tour was organised by P.T. Barnum. Lind left England on 21 August 1850 and arrived on 1 September 1850 in New York."; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 3102; + "Singer"; + """he left Paris Opera when Gailhard left. during his time there he didn't go on tour anytime. Studies at Konservatorium in Paris because of recommendation of the director of the Paris Opera Pierre Gailhard, later studies at Pariser Konservatorium with Edmond Duvernoy his debut in Paris 1880 he sang together with Nellie Melba. +"""; + ; + ; + . + + a ; + "Tour"; + 3105; + "Singer"; + ; + . + + a ; + "Tour"; + 3108; + "Singer"; + ; + . + + a ; + "Tour"; + 311; + "Composer"; + "Music Director"; + ""; + ; + ; + . + + a ; + "Tour"; + 3111; + "Singer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 3114; + "Singer"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 3117; + "Singer"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 312; + "Music Director"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 3120; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 3123; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 3126; + "Singer"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3129; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 313; + "Music Director"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 3132; + "Singer"; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Tour"; + 3135; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Tour"; + 3138; + "with the Oskar-Braun-Operettengesellschaft"; + ; + ; + . + + a ; + "Tour"; + 314; + "Actor"; + ""; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 3141; + ; + . + + a ; + "Tour"; + 3144; + "Singer"; + "Debut on December 14, 1888 "; + ; + ; + . + + a ; + "Tour"; + 3147; + "Singer"; + "Summer tour of the Great Opera Houses of Europe."; + ; + . + + a ; + "Tour"; + 315; + "Actor"; + ; + . + + a ; + "1890-12-26"^^xsd:date; + "Tour"; + 3150; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 3153; + "Studies at Lobkowicz Konservatorium in Wien with Mathilde Marchesi de Castrone"; + ; + ; + . + + a ; + "Tour"; + 3156; + "Singer"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3159; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 316; + "Actor"; + ; + . + + a ; + "Tour"; + 3162; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 3165; + "Singer"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 3168; + "Singer"; + ; + ; + . + + a ; + "Intendant"; + "Tour"; + 317; + ; + ; + . + + a ; + "Tour"; + 3171; + "Singer"; + "She sang together with Enrico Caruso in UA of La Fanciulla del West in New York at Metropolitan Opera."; + ; + ; + . + + a ; + "Tour"; + 3174; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 3177; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 318; + "Director"; + ; + ; + . + + a ; + "Tour"; + 3180; + ; + . + + a ; + "Tour"; + 3183; + ; + . + + a ; + "Tour"; + 3186; + "Composer"; + ; + ; + . + + a ; + "Tour"; + 3189; + "Composer"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 319; + "Circus Performer"; + "1905-1908 or 10, “Leamy Ladies” troupe (named for their manager, Edward Leamy), touring Europe as well as performing with the Barnum&Bailey Circus in the U.S"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 3192; + "Director"; + ; + ; + . + + a ; + "June 1916"; + "1916-06-30"^^xsd:date; + "1916-06-01"^^xsd:date; + "2025-05-19"^^xsd:date; + "Tour"; + 32; + "Actor"; + ""; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 320; + "1911- around 1914. she worked in vaudeville"; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Tour"; + 321; + "Circus Performer"; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Tour"; + 322; + "Singer"; + ""; + ; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Tour"; + 323; + "Singer"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 324; + "Singer"; + ; + ; + . + + a ; + "1876-08-17"^^xsd:date; + "1876-08-17"^^xsd:date; + "Tour"; + 325; + "Singer"; + "UA Ring des Nibelungen"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 326; + "Singer"; + ""; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 327; + "Singer"; + ""; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 328; + "Singer"; + "guest until 1901"; + ; + . + + a ; + "Tour"; + 329; + "Singer"; + ""; + ; + ; + . + + a ; + "May 1917"; + "1917-05-31"^^xsd:date; + "1917-05-01"^^xsd:date; + "Tour"; + 33; + "Actor"; + ""; + ; + ; + . + + a ; + "Tour"; + 330; + "Singer"; + ; + . + + a ; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Writer and Dramaturg"; + "Permanent"; + 3306; + "Other"; + "Author"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Permanent"; + 3309; + "Other"; + ; + ; + . + + a ; + "Tour"; + 331; + "Singer"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Writer"; + "Permanent"; + 3312; + "Other"; + "Approval of her book Jazmín del país as ideal for schools. First edition of the book in 1929. Approval was later"; + ; + ; + . + + a ; + "Tour"; + 332; + "Singer"; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 333; + "Singer"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 3336; + "Actor"; + "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 3339; + "Actor"; + "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + ; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 334; + "Singer"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 3342; + "Actor"; + "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "-"; + "Tour"; + 3345; + "Actor"; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3348; + "Actor"; + "First tour in Brazil "; + ; + . + + a ; + "Tour"; + 335; + "Singer"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3351; + "Actor"; + "First tour in Brazil "; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3354; + "Actor"; + "First tour in Brazil "; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 3357; + "Actor"; + ; + ; + ; + . + + a ; + "1839-12-15"^^xsd:date; + "1839-12-15"^^xsd:date; + "Tour"; + 336; + "Actor"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 3360; + "Actor"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 3363; + "Actor"; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 3366; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 3369; + "Actor"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 337; + "Actor"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 3372; + "Actor"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 3375; + "Actor"; + "Stays in Brazil after that working with Pascoal Segreto Company. Starts to work as playwriter with the Brazilian writer Cardoso Meneses."; + ; + ; + . + + a ; + "Tour"; + 3378; + "Actor"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 338; + "Actor"; + ; + . + + a ; + "Tour"; + 3381; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 3384; + "Director"; + ; + . + + a ; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 3387; + "Actor"; + "Luíz Galhardo Theater Company. With this company he made a tour in Brazil (1916)"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 339; + "Actor"; + ; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 3390; + "Other"; + "President of the theatrical workers union"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 3393; + "Sociedade Teatral Ltd.. Hired by Antônio de Macedo"; + ; + ; + . + + a ; + "Tour"; + 3396; + "Actor"; + "Colaborated with Antônio de Macedo"; + ; + . + + a ; + "1920s"; + "1929-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 3399; + "Actor"; + "Colaborated with Antônio de Macedo"; + ; + . + + a ; + "October 1917"; + "1917-10-31"^^xsd:date; + "1917-10-01"^^xsd:date; + "2013-10-19"^^xsd:date; + "Tour"; + 34; + "Actor"; + ""; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 340; + "Actor"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 3402; + "Actor"; + "Colaborated with Antônio de Macedo"; + ; + . + + a ; + "1920s"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 3405; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 3408; + "He works with José Clímaco’s company in Éden Teatro and with Companhia Portuguesa de Revistas of Jorge Grave in Politeama"; + ; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 341; + "Actor"; + ; + . + + a ; + "1930s"; + "1939-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Tour"; + 3411; + "Actor"; + "Grande Companhia de Opereta"; + ; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 3414; + "Actor"; + "Last travel to Brazil"; + ; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "Tour"; + 3417; + "Actor"; + ; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 342; + "Actor"; + ; + . + + a ; + "1940s"; + "1949-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "Tour"; + 3420; + "Actor"; + ; + ; + ; + . + + a ; + "Early 1952"; + "1850-03-31"^^xsd:date; + "1952-01-01"^^xsd:date; + "Mid 1920s"; + "1929-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Permanent"; + 3423; + "Actor"; + "Founder"; + ; + ; + ; + . + + a ; + "17th January 1844"; + "1844-01-17"^^xsd:date; + "1844-01-17"^^xsd:date; + "Permanent"; + 3426; + "Singer"; + "with the Companhia Lyrica Italiana"; + ; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Guest"; + 3429; + "Singer"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 343; + "Actor"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 3432; + "Teacher (Theatre related)"; + "She stoped to work at the theatre and started to work as a private singer teacher at home."; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Permanent"; + 3435; + "Singer"; + ; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 3438; + "Singer"; + "Actor"; + ; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 344; + "Actor"; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Singer and Actress"; + "Permanent"; + 3441; + "Singer"; + "Actor"; + ; + ; + ; + . + + a ; + "January 1868"; + "1868-01-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Singer and Actress"; + "Permanent"; + 3444; + "Singer"; + "Actor"; + ; + ; + ; + . + + a ; + "February 1870"; + "1870-02-28"^^xsd:date; + "1870-02-01"^^xsd:date; + "Singer and Actress"; + "Permanent"; + 3447; + "Singer"; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 345; + "Musician"; + "Singer"; + ""; + ; + . + + a ; + "May 1869"; + "1869-05-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Singer and Actress"; + "Permanent"; + 3450; + "Singer"; + "Actor"; + "With Sociedade Particular do Ginásio do Comércio (at this time her husband's theater company returned to the city of Rio Grande and the actress was no longer part of the company) after June she worked in the Alves Meira Theatre Company."; + ; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + 3453; + "Singer"; + "Actor"; + """(at this year, the company also performed in Pelotas city) +She and Bartholomeu Magalhães gone to Rio Grande to work at the Raymundo’s Company also called as Sociedade Dramática Empresária. They were based on Teatro Sete de Setembro."""; + ; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Guest"; + 3456; + "Singer"; + "Actor"; + ; + ; + . + + a ; + "probably in 1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 3459; + "Actor"; + "She worked in different theatres of the city and different companies. "; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 346; + "Singer"; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 3462; + "Actor"; + ; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 3465; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 347; + "Singer"; + "shortly after her arrival she already broke the contract"; + ; + ; + . + + a ; + "Tour"; + 3471; + "Actor"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 3474; + "Actor"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + 3477; + "Actor"; + "She worked with the José Antônio do Vale’s dramatic company"; + ; + ; + ; + . + + a ; + "Tour"; + 348; + "Singer"; + ""; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 3480; + "Actor"; + ; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 3483; + "Actor"; + "With the Associação Dramática Empresária. There are newspaper reports that state that the actress moved from Rio de Janeiro in 1878, but it is not clear where she went, why, and when exactly she returned."; + ; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 3486; + "Actor"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 3489; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 349; + "Singer"; + ""; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 3492; + "Actor"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 3495; + "Actor"; + ; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 3498; + "Actor"; + ; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 35; + "Singer"; + ""; + ; + . + + a ; + "Tour"; + 350; + "Singer"; + ""; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 3501; + "Actor"; + "Take part of a theatrical society the Compania Dramática in the Teatro São Luiz"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 3504; + "Actor"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 3507; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 351; + "Singer"; + ""; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 3510; + "Actor"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 3516; + "Director"; + "She worked as director with Lima Penante in the Manuela Lucci theater company"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 3519; + "Actor"; + "Impresario"; + "Last time that she worked with her theatre company with Lima Penante"; + ; + ; + . + + a ; + "Tour"; + 352; + "Singer"; + ""; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 3522; + "Actor"; + "She worked with the Eden-Teatro company"; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 3525; + "Actor"; + ""; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 3528; + "Actor"; + "Founder"; + "She started her own company."; + ; + ; + . + + a ; + "Tour"; + 353; + "Singer"; + ""; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Wax flower store owner"; + "Tour"; + 3531; + "She stopped with the theatrical business and opened a wax flower store on the old Rua do Comercio in the city of São Paulo"; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 3534; + "Other"; + "He moved to the country site of São Paulo where he lived until returning to Porto. Tobacco store owner"; + ; + . + + a ; + "Tour"; + 354; + "Singer"; + ""; + ; + . + + a ; + "Tour"; + 355; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 356; + "Singer"; + ""; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 357; + "Singer"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Tour"; + 358; + "Singer"; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 359; + "Singer"; + ; + . + + a ; + "Tour"; + 36; + "Teacher (Theatre related)"; + ""; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 360; + "Singer"; + ; + . + + a ; + "Other"; + "Tour"; + 3600; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Other"; + "Tour"; + 3603; + ; + ; + . + + a ; + "Other"; + 3606; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + 3609; + "Musician"; + "Conductor"; + ; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 361; + "Singer"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "between 1830 and 1853"; + "1853-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "Other"; + "Other"; + 3612; + "Musician"; + ; + ; + . + + a ; + "between 1853 and 1856"; + "1856-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Other"; + "Other"; + 3615; + "Musician"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 3618; + "Other"; + "as a Conductor"; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Tour"; + 362; + "Singer"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 363; + "Singer"; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 364; + "Singer"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 365; + "Singer"; + ; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 366; + "Singer"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 367; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 3677; + "Actor"; + "Singer"; + ; + . + + a ; + "Opera singer (soprano)"; + "Tour"; + 368; + ""; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 3680; + "Actor"; + "Singer"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Singer and Actress"; + "Tour"; + 3683; + ; + . + + a ; + "Singer and Actress"; + "Tour"; + 3686; + "Vaudeville Star"; + ; + . + + a ; + "Study and as performer"; + "Tour"; + 3689; + ; + ; + . + + a ; + "Tour"; + 369; + "Singer"; + ; + . + + a ; + "Performer"; + "Tour"; + 3692; + "provincial theatres in Romania"; + ; + . + + a ; + "Tour"; + 3695; + "Dancer"; + "Other"; + "1900 World Fair in Paris, and then took his own productions to Berlin, Vienna, Budapest and London."; + ; + . + + a ; + "worked for film production companies"; + "Tour"; + 3698; + ""; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 37; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Tour"; + 370; + "Singer"; + ; + . + + a ; + "worked for film production company"; + "Tour"; + 3701; + "Wrote and directed three films: Das Gespenst von Clyde, In Nacht und Eis, and Das Mirakel."; + ; + ; + . + + a ; + "Filming"; + "Tour"; + 3704; + "made one more film, Der Excentric-Club for Projektions-AG Union (PAGU)"; + ; + . + + a ; + "Filming"; + "Tour"; + 3707; + "The Money God"; + ; + ; + . + + a ; + "Tour"; + 371; + "Singer"; + ; + . + + a ; + "Filming"; + "Tour"; + 3710; + "Ontmaskerd ('Unmasked')"; + ; + . + + a ; + "Tour"; + 3713; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 3716; + "Actor"; + """Tour in Europe, especially in Warsaw, Poland Yiddish theatres in Europe"""; + ; + . + + a ; + "Tour"; + 3719; + "Actor"; + "She concentrated on the English-lenguage stage"; + ; + . + + a ; + "Tour"; + 372; + "Singer"; + ; + . + + a ; + "Tour"; + 3722; + "Actor"; + "The Benny Goodman Story"; + ; + . + + a ; + "Tour"; + 3725; + "Actor"; + "Last stage appearance, Isaac Beshevis Singer‘s In My Father‘s Court"; + ; + . + + a ; + "1819 (during six weeks)"; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + "1819 (during six weeks)"; + "1819-12-31"^^xsd:date; + "1819-01-01"^^xsd:date; + "Tour"; + 3728; + "Actor"; + "Worked with Sir Henry Irving"; + ; + ; + ; + . + + a ; + "Tour"; + 373; + "Singer"; + ; + . + + a ; + "-"; + "Summer 1822"; + "1822-09-23"^^xsd:date; + "1822-06-24"^^xsd:date; + "Tour"; + 3731; + "Actor"; + "Circuit in England, Ireland and Scotland"; + ; + ; + . + + a ; + "1825"; + "1825-12-31"^^xsd:date; + "1825-01-01"^^xsd:date; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "Tour"; + 3737; + "Actor"; + "Theatre with the manager Mr. Robert William Elliston"; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 374; + "Singer"; + ; + . + + a ; + "-"; + "December 1825"; + "1825-12-31"^^xsd:date; + "1825-12-01"^^xsd:date; + "Tour"; + 3740; + "Actor"; + "Stamford Circuit theatres at Newark and Grantham"; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "September 1827"; + "1827-09-30"^^xsd:date; + "1827-09-01"^^xsd:date; + "Tour"; + 3743; + "Actor"; + ; + ; + . + + a ; + "-"; + "December 1825"; + "1825-12-31"^^xsd:date; + "1825-12-01"^^xsd:date; + "Tour"; + 3746; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Tour"; + 3749; + "Actor"; + "Tour around South and West of US"; + ; + . + + a ; + "January 1867"; + "1867-01-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 375; + "Singer"; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Tour"; + 3752; + "Actor"; + "Varied experience in New York, performing in three or four theatres."; + ; + . + + a ; + "-"; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 3755; + "Actor"; + ""; + ; + ; + . + + a ; + "-"; + "Winter 1840"; + "1840-12-31"^^xsd:date; + "1840-12-01"^^xsd:date; + "Tour"; + 3758; + "Actor"; + "Winter 1840. Due to non-payment of salaries for the season at the Park Theatre, they created a company and occupied the Franklin Theatre"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 376; + "Singer"; + ; + . + + a ; + "March 1828"; + "1828-03-31"^^xsd:date; + "1828-03-01"^^xsd:date; + "Tour"; + 3761; + "Actor"; + "Made her New York debut in The Spoiled Child at the Bowery Theatre"; + ; + ; + . + + a ; + "Tour"; + 3764; + "Actor"; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "March 1828"; + "1828-03-31"^^xsd:date; + "1828-03-01"^^xsd:date; + "Tour"; + 3767; + "Actor"; + """Tour in diferente cities in the US Including Bowery Theatre (NY) and Chestnut Street Theatre in Philadelphia."""; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 377; + "Singer"; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "March 1828"; + "1828-03-31"^^xsd:date; + "1828-03-01"^^xsd:date; + "Tour"; + 3770; + "Actor"; + """Tour in diferente cities in the US Including Bowery Theatre (NY) and Chestnut Street Theatre in Philadelphia."""; + ; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "November 1830"; + "1830-11-30"^^xsd:date; + "1830-11-01"^^xsd:date; + "Tour"; + 3773; + "Actor"; + """Tour with the hole family in Jamaica She went with the company to Jamaica in a partnership with Mr. Jones."""; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Tour"; + 3776; + "Actor"; + "Member of the stock company in the Bowery Theatre"; + ; + ; + . + + a ; + "Tour"; + 3779; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 378; + "Singer"; + ; + . + + a ; + "Tour"; + 3782; + "Actor"; + ; + ; + . + + a ; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + "Apprenticeship"; + "Tour"; + 3785; + ; + ; + . + + a ; + "Tour"; + 3788; + "Actor"; + ; + . + + a ; + "Tour"; + 379; + "Singer"; + ; + . + + a ; + "Tour"; + 3791; + "Actor"; + ; + . + + a ; + "Tour"; + 3794; + "Actor"; + ; + . + + a ; + "Tour"; + 3797; + "Actor"; + ; + . + + a ; + "Tour"; + 38; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 380; + "Singer"; + ; + . + + a ; + "Tour"; + 3800; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 3803; + "Actor"; + "She worked there when the Park was closed"; + ; + . + + a ; + "Tour"; + 3806; + "Actor"; + "She worked there when the Park was closed"; + ; + . + + a ; + "Tour"; + 3809; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 381; + "Singer"; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3812; + "Actor"; + "After the married with John Drew"; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3815; + "Actor"; + ""; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3818; + "Actor"; + ""; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 382; + "Singer"; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3821; + "Actor"; + ""; + ; + . + + a ; + "1857"; + "1857-03-31"^^xsd:date; + "1857-03-01"^^xsd:date; + "Tour"; + 3824; + "Actor"; + "with Mr. Bower‘s Company"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 3827; + "Actor"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 383; + "Singer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 3830; + "Manager"; + "Actor"; + ; + ; + . + + a ; + "1872-04-21"^^xsd:date; + "1872-04-21"^^xsd:date; + "1872-04-21"^^xsd:date; + "Guest"; + "Tour"; + 3833; + ; + ; + . + + a ; + "1878-12-05"^^xsd:date; + "1878-12-05"^^xsd:date; + "1878-12-05"^^xsd:date; + "Guest"; + "Tour"; + 3836; + ; + ; + . + + a ; + "1880-04-27"^^xsd:date; + "1880-04-27"^^xsd:date; + "1880-04-27"^^xsd:date; + "Guest"; + "Tour"; + 3839; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 384; + "Singer"; + ; + . + + a ; + "1879-01-31"^^xsd:date; + "1879-01-31"^^xsd:date; + "Guest"; + "Tour"; + 3842; + ; + ; + . + + a ; + "1879-05-01"^^xsd:date; + "1879-05-01"^^xsd:date; + "Guest"; + "Tour"; + 3845; + ; + ; + . + + a ; + "1879-05-30"^^xsd:date; + "1879-05-30"^^xsd:date; + "1879-05-30"^^xsd:date; + "Guest"; + "Tour"; + 3848; + ; + ; + . + + a ; + "Tour"; + 385; + "Actor"; + "debut"; + ; + ; + . + + a ; + "1879-09-19"^^xsd:date; + "1879-09-19"^^xsd:date; + "1879-09-19"^^xsd:date; + "Guest"; + "Tour"; + 3851; + ; + ; + . + + a ; + "1879-12-28"^^xsd:date; + "1879-12-28"^^xsd:date; + "1879-12-28"^^xsd:date; + "Guest"; + "Tour"; + 3854; + ; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1880-04-25"^^xsd:date; + "1880-04-25"^^xsd:date; + "Guest"; + "Tour"; + 3857; + ; + ; + . + + a ; + "Tour"; + 386; + "Actor"; + ""; + ; + ; + . + + a ; + "1882-01-07"^^xsd:date; + "1882-01-07"^^xsd:date; + "1882-01-07"^^xsd:date; + "Guest"; + "Tour"; + 3860; + ; + ; + . + + a ; + "1888-02-03"^^xsd:date; + "1888-02-03"^^xsd:date; + "1888-02-03"^^xsd:date; + "Guest"; + "Tour"; + 3863; + ; + ; + . + + a ; + "1888-04-19"^^xsd:date; + "1888-04-19"^^xsd:date; + "1888-04-19"^^xsd:date; + "Guest"; + "Tour"; + 3866; + ; + ; + . + + a ; + "1890-08-15"^^xsd:date; + "1890-08-15"^^xsd:date; + "1890-08-15"^^xsd:date; + "Guest"; + "Tour"; + 3869; + ; + ; + . + + a ; + "Tour"; + 387; + "Actor"; + ; + . + + a ; + "0"; + "2000-12-31"^^xsd:date; + "2000-01-01"^^xsd:date; + "1879-05-28"^^xsd:date; + "Guest"; + "Tour"; + 3872; + ; + ; + . + + a ; + "1879-09-17"^^xsd:date; + "1879-09-17"^^xsd:date; + "1879-09-17"^^xsd:date; + "Guest"; + "Tour"; + 3875; + ; + ; + . + + a ; + "1879-11-30"^^xsd:date; + "1879-11-30"^^xsd:date; + "Guest"; + "Tour"; + 3878; + ; + ; + . + + a ; + "1853-11-22"^^xsd:date; + "1853-11-22"^^xsd:date; + "Tour"; + 388; + "Actor"; + ; + . + + a ; + "1880-04-22"^^xsd:date; + "1880-04-22"^^xsd:date; + "1880-04-22"^^xsd:date; + "Guest"; + "Tour"; + 3881; + ; + ; + . + + a ; + "1881-12-20"^^xsd:date; + "1881-12-20"^^xsd:date; + "1881-12-20"^^xsd:date; + "Guest"; + "Tour"; + 3884; + ; + ; + . + + a ; + "1888-04-17"^^xsd:date; + "1888-04-17"^^xsd:date; + "1888-04-17"^^xsd:date; + "Guest"; + "Tour"; + 3887; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 389; + "Manager"; + """First women ever in this position +"""; + ; + . + + a ; + "1890-08-12"^^xsd:date; + "1890-08-12"^^xsd:date; + "1890-08-12"^^xsd:date; + "Guest"; + "Tour"; + 3890; + ; + ; + . + + a ; + "1891-02-13"^^xsd:date; + "1891-02-13"^^xsd:date; + "1891-02-13"^^xsd:date; + "Guest"; + "Tour"; + 3893; + ; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1880-04-20"^^xsd:date; + "1880-04-20"^^xsd:date; + "Guest"; + "Tour"; + 3896; + ; + ; + . + + a ; + "1881-12-15"^^xsd:date; + "1881-12-15"^^xsd:date; + "1881-12-15"^^xsd:date; + "Guest"; + "Tour"; + 3899; + ; + ; + . + + a ; + "Tour"; + 390; + "Manager"; + ""; + ; + ; + . + + a ; + "1888-04-14"^^xsd:date; + "1888-04-14"^^xsd:date; + "1888-04-14"^^xsd:date; + "Guest"; + "Tour"; + 3902; + ; + ; + . + + a ; + "1890-08-09"^^xsd:date; + "1890-08-09"^^xsd:date; + "1890-08-09"^^xsd:date; + "Guest"; + "Tour"; + 3905; + ; + ; + . + + a ; + "1880-04-30"^^xsd:date; + "1880-04-30"^^xsd:date; + "Guest"; + "Tour"; + 3908; + ; + ; + . + + a ; + "Tour"; + 391; + "Actor"; + "Became a traveling actress in the 1860s (due to financial difficulties)"; + . + + a ; + "Tour"; + 392; + "Singer"; + ""; + ; + . + + a ; + "Guest"; + "Tour"; + 3929; + ; + ; + . + + a ; + "Tour"; + 393; + "Singer"; + ; + . + + a ; + "2018-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Guest"; + "Tour"; + 3932; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Guest"; + "Tour"; + 3935; + ; + ; + . + + a ; + "Permanent"; + "Tour"; + 3938; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Tour"; + 394; + "Singer"; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Tour"; + 3947; + "Singer"; + "She worked with her father Rafael and sister Carmella"; + ; + ; + . + + a ; + "Tour"; + 395; + "Actor"; + """Yankev Ber Gimpel (Theatregroup of Max Gimpel), later becoming prima donna +Actress"""; + . + + a ; + "Tour"; + 396; + "Actor"; + "Di Vilde Kenigin, La Belle Hélène"; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-12-01"^^xsd:date; + "1843"; + "1843-08-31"^^xsd:date; + "1843-08-01"^^xsd:date; + "Tour"; + 3968; + "Singer"; + "She worked with her father and sister"; + ; + ; + . + + a ; + "Tour"; + 397; + "Actor"; + "her first English part (title role of Fédora, by Victorien Sardou"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 3971; + "Singer"; + "She worked with her father and sister"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 3974; + "Singer"; + "She worked with her father and sister"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 3977; + "Singer"; + "She worked with her father and sister"; + ; + . + + a ; + "Tour"; + 398; + "Actor"; + ""; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 3980; + "Singer"; + "She worked with her father and sister"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 3983; + "Singer"; + "She worked with her father and sister"; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Permanent"; + 3986; + "Actor"; + ; + ; + ; + . + + a ; + "1850"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3989; + "Actor"; + ; + ; + . + + a ; + "1850"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3992; + "Actor"; + ; + ; + . + + a ; + "1850"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 3995; + "Actor"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 3998; + "Actor"; + ; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 400; + "Actor"; + "Adolph Zukor"; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4001; + "Actor"; + ; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 4004; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 401; + "Actor"; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4010; + "Actor"; + ; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "Tour"; + 4013; + "Actor"; + ; + ; + ; + . + + a ; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 4016; + "Actor"; + ; + . + + a ; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 4019; + "Actor"; + ; + . + + a ; + "Tour"; + 402; + "Actor"; + ; + . + + a ; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 4022; + "Actor"; + ; + . + + a ; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 4025; + "Actor"; + ; + . + + a ; + "1860s"; + "1869-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 4028; + "Actor"; + ; + . + + a ; + "Tour"; + 403; + "Actor"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 4031; + "Actor"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 4034; + "Actor"; + ; + ; + . + + a ; + "188"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4037; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 404; + "Actor"; + "Last stage appearance. She recited the final scene of Louis Untermeyer's poem Heine's Death"; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4040; + "Actor"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 4043; + "Actor"; + "Impresario"; + "Founder"; + ; + ; + ; + . + + a ; + "Tour"; + 405; + "Singer"; + "Movies: In 1923, she performed in Jitta’s Atonement, adapted by George Bernard Shaw from the work of Siegfried Trebitsch."; + . + + a ; + "Tour"; + 406; + "Actor"; + ""; + ; + . + + a ; + "Tour"; + 407; + "Actor"; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 4070; + "Actor"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 4073; + "Manager"; + ; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 4076; + "Manager"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 4079; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 408; + "Actor"; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 4082; + "Manager"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 4085; + "Manager"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 4088; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 409; + "Actor"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 4091; + "Actor"; + ; + . + + a ; + "1869"; + "1869-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Other"; + "Tour"; + 4094; + ; + ; + . + + a ; + "1876"; + "1876-08-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Tour"; + 4097; + "Circus Performer"; + ; + ; + ; + . + + a ; + "Tour"; + 410; + "Actor"; + "Invitation of Ernst von Possart)(Privat plays for König Ludwig II"; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 4100; + "Circus Performer"; + ; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 4103; + "Circus Performer"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4106; + "Circus Performer"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4109; + "Circus Performer"; + ; + ; + . + + a ; + "Tour"; + 411; + "Actor"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4112; + "Circus Performer"; + ; + ; + . + + a ; + "Tour"; + 4115; + "Circus Performer"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 4118; + "Circus Performer"; + ; + ; + . + + a ; + "Tour"; + 412; + "Actor"; + "he followed Ludwig Barnay, who founded this theatre, but broke with him and got a theatre ban for breach of contract, than he went to USA (for tour or for longer?"; + ; + . + + a ; + "1888-11-07"; + "1888-11-07"^^xsd:date; + "1888-11-07"^^xsd:date; + "Tour"; + 4121; + "Circus Performer"; + ; + ; + . + + a ; + "1888-11-07"^^xsd:date; + "1888-11-07"^^xsd:date; + "1884"; + "1884-10-07"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 4124; + "Circus Performer"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 4127; + "Circus Performer"; + ; + ; + . + + a ; + "Tour"; + 413; + "Actor"; + "under the direction of Adolph L’Arronge"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 4130; + "Circus Performer"; + "Founder"; + "Manager"; + ; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 4133; + "Circus Performer"; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Guest"; + 4136; + "Circus Performer"; + "Other"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 4139; + "Circus Performer"; + "Founder"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 414; + "Actor"; + "Invitation of the director Max Burkhardt, appointment to “Imperial and Royal Court Actor”, for this he got a contract of twelve years"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4142; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4145; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4148; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 415; + ""; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4151; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "from 1892"; + "1892-01-01"^^xsd:date; + "Tour"; + 4154; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "from 1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 4157; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 416; + ""; + ; + . + + a ; + "from 1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 4160; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Tour"; + 4163; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 4166; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 4169; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 417; + ""; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 4172; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + 4175; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + ; + . + + a ; + "1902"; + "1902-03-09"^^xsd:date; + "1902-03-09"^^xsd:date; + "1902-02-16"^^xsd:date; + "Tour"; + 4178; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 418; + ""; + ; + . + + a ; + "1902-04-21"^^xsd:date; + "Tour"; + 4181; + "Circus Performer"; + "Founder"; + "Manager"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 4184; + "Circus Performer"; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 4187; + "Circus Performer"; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "1905-08-06"^^xsd:date; + "Tour"; + 4190; + "Circus Performer"; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 4193; + "Circus Performer"; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 4196; + "Circus Performer"; + "Manager"; + "Director"; + ; + ; + ; + . + + a ; + "1908-04-25"^^xsd:date; + "Tour"; + 4199; + "Director"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 420; + "Actor"; + "Member of the Corps de ballet"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 4202; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1908-08-01"^^xsd:date; + "Tour"; + 4205; + "Director"; + "Manager"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 4208; + "Director"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 421; + "Actor"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-09-03"^^xsd:date; + "1910-09-02"^^xsd:date; + "Tour"; + 4211; + "Circus Performer"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1910"; + "1910-08-31"^^xsd:date; + "1910-09-03"^^xsd:date; + "1910-09-02"^^xsd:date; + "Tour"; + 4214; + "Circus Performer"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1910"; + "1901-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 4217; + "Circus Performer"; + "Director"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 422; + "Actor"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 4220; + "Circus Performer"; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Tour"; + 423; + "Actor"; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 424; + "Actor"; + "dismissal due to the theatre’s financial problems"; + ; + . + + a ; + "Tour"; + 425; + "Actor"; + ""; + ; + . + + a ; + "Tour"; + 426; + "Actor"; + ""; + ; + ; + . + + a ; + "Tour"; + 427; + "Singer"; + ""; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 428; + "Singer"; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Permanent"; + 4289; + "Actor"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 429; + "Singer"; + ; + . + + a ; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "1856"; + "1856-12-01"^^xsd:date; + "1856-01-01"^^xsd:date; + "Permanent"; + 4292; + "Director"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Permanent"; + 4295; + "Actor"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Permanent"; + 4298; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 430; + "Singer"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + 4301; + "Actor"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4304; + "Director"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 4307; + "Founder"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "1878-09-11"^^xsd:date; + "1878-09-11"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 431; + "Singer"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 4310; + "Actor"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 4313; + "Founder"; + "Director"; + "Impresario"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + 4316; + "Actor"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 4319; + "Founder"; + ; + ; + . + + a ; + "1878-09-11"^^xsd:date; + "1878-09-11"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 432; + "Singer"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 4322; + "Actor"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Tour"; + 4325; + "Actor"; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Permanent"; + 4328; + "Actor"; + ; + ; + . + + a ; + "1882-08-31"^^xsd:date; + "1882-07-26"^^xsd:date; + "Tour"; + 433; + "Singer"; + ; + ; + . + + a ; + "1878-12-19"^^xsd:date; + "1878-12-19"^^xsd:date; + "1878-12-19"^^xsd:date; + "Guest"; + "Tour"; + 434; + "Singer"; + "Invitation on the recommendation of Richard Wagner"; + ; + ; + . + + a ; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Guest"; + "Tour"; + 435; + "Singer"; + "privat performances for King Ludwig II"; + ; + ; + . + + a ; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Guest"; + "Tour"; + 436; + "Singer"; + "guest engagement"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + "Tour"; + 4364; + "Actor"; + ; + . + + a ; + "1882-08-31"^^xsd:date; + "1882-07-26"^^xsd:date; + "Tour"; + 437; + "Singer"; + "one of the three first Parsifal"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4370; + "Actor"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4373; + "Actor"; + ; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 4376; + "Actor"; + ; + ; + . + + a ; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest"; + "Tour"; + 438; + "Singer"; + "guest engagement"; + ; + ; + . + + a ; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Guest"; + "Tour"; + 439; + "Singer"; + "guest engagement"; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-12-01"^^xsd:date; + "1834"; + "1834-01-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "Tour"; + 44; + "Music Director"; + ""; + ; + ; + . + + a ; + "Tour"; + 440; + "Singer"; + "engaged by Felix Mottl"; + ; + ; + . + + a ; + "Tour"; + 441; + "Singer"; + "guest performance"; + ; + . + + a ; + "Tour"; + 442; + "Singer"; + "guest performance"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "7th January 1885"; + "1885-01-07"^^xsd:date; + "1885-01-07"^^xsd:date; + "Tour"; + 4424; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1929-07-31"^^xsd:date; + "1929-07-31"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 4427; + "Other"; + ; + . + + a ; + "Tour"; + 443; + "Singer"; + "guest performance"; + ; + . + + a ; + "-"; + "1929-07-31"^^xsd:date; + "1929-07-31"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 4439; + "Other"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 444; + "Singer"; + ""; + ; + . + + a ; + "1942"; + "1942-12-31"^^xsd:date; + "1942-01-01"^^xsd:date; + "Tour"; + 445; + "Singer"; + "secretary"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Permanent"; + 446; + "Actor"; + ""; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4463; + "Director"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 4469; + "Director"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + 447; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Permanent"; + 448; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 449; + "Actor"; + ""; + ; + . + + a ; + "August 1837"; + "1937-08-31"^^xsd:date; + "1837-08-01"^^xsd:date; + "April 1837"; + "1837-04-30"^^xsd:date; + "1837-04-01"^^xsd:date; + "Tour"; + 45; + "Music Director"; + ; + ; + . + + a ; + "Tour"; + 450; + "Actor"; + ; + . + + a ; + "Tour"; + 451; + "Actor"; + ; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 452; + "Actor"; + ; + . + + a ; + "Tour"; + 453; + "Actor"; + ; + . + + a ; + "Tour"; + 454; + "Actor"; + ; + . + + a ; + "Tour"; + 456; + "Actor"; + "Jacob Adler’s Yiddish troupe"; + ; + . + + a ; + "Tour"; + 457; + "Actor"; + "Jewish Theatres"; + ; + . + + a ; + "Tour"; + 458; + "Actor"; + "Goldfaden's ill-fated Paris troupe."; + ; + . + + a ; + "Singer and Actress"; + "Tour"; + 459; + ""; + ; + ; + . + + a ; + "August 1837"; + "1837-12-31"^^xsd:date; + "1837-08-01"^^xsd:date; + "Tour"; + 46; + "Music Director"; + "Composer"; + ; + ; + . + + a ; + "Singer and Actress"; + "Tour"; + 460; + "Debut"; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4601; + "Director"; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4604; + "Director"; + ; + ; + . + + a ; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4607; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "Singer and Actress"; + "Tour"; + 461; + "From 1897, Held enjoyed several successes on Broadway, including A Parisian Model (1906–1907)."; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 462; + "Singer"; + "Actor"; + ""; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 4625; + "Director"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 4628; + "Director"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Troupe"; + "Tour"; + 463; + ; + ; + . + + a ; + "Tour"; + 464; + "Actor"; + "Goldfaden's ill-fated Paris troupe"; + ; + . + + a ; + "Tour"; + 465; + "Singer"; + "Actor"; + ""; + ; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 4658; + "Actor"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + 466; + "Singer"; + "Actor"; + "Appearing continuously Ziegfeld-Productions, 1900-1912."; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 4661; + "Other"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4667; + "Actor"; + ; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 467; + "Singer"; + "Actor"; + ; + . + + a ; + "(he stayed util at least three years)"; + "1905-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 4670; + "Actor"; + "Technician"; + ; + ; + ; + . + + a ; + "between 1854 and 1865"; + "1865-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 4676; + "Actor"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 468; + "Singer"; + "Actor"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 469; + "Singer"; + "Actor"; + ; + . + + a ; + "-"; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 4694; + "Actor"; + ; + ; + . + + a ; + "-"; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + 4697; + "Actor"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "1842-10-20"^^xsd:date; + "1842-10-20"^^xsd:date; + "Tour"; + 47; + "Music Director"; + "Composer"; + "UA Fliegender Holländer"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 470; + ; + . + + a ; + "-"; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 4700; + "Actor"; + ; + ; + . + + a ; + "-"; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 4703; + "Actor"; + ; + ; + . + + a ; + "-"; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4709; + "Actor"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 471; + ; + . + + a ; + "-"; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4712; + "Actor"; + ; + ; + . + + a ; + "-"; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 4715; + "Actor"; + ; + ; + . + + a ; + "-"; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 4718; + "Actor"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 472; + ; + . + + a ; + "-"; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + 4727; + "Actor"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 473; + ; + . + + a ; + "-"; + "1884"; + "1884-07-31"^^xsd:date; + "1884-07-01"^^xsd:date; + "Tour"; + 4730; + "Actor"; + ; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 474; + ; + . + + a ; + "-"; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 4742; + "Other"; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 475; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "-"; + "Permanent"; + "Tour"; + 4754; + "Director"; + ; + ; + . + + a ; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Guest"; + "Tour"; + 476; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4766; + "Director"; + "Manager"; + ; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4769; + "Director"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 477; + ; + . + + a ; + "-"; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 4775; + "Director"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 478; + ; + . + + a ; + "-"; + "1886"; + "1886-10-31"^^xsd:date; + "1886-10-01"^^xsd:date; + "Tour"; + 4787; + "Actor"; + ; + ; + . + + a ; + "Guest"; + "Tour"; + 479; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 4790; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 4793; + "Actor"; + "Technician"; + ; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 4796; + "Actor"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 4799; + "Actor"; + ; + ; + ; + . + + a ; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + "Guest"; + 48; + "Musician"; + "first public appearance"; + ; + . + + a ; + "Guest"; + "Tour"; + 480; + ; + . + + a ; + "-"; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + "Tour"; + 4802; + "Actor"; + ; + ; + . + + a ; + "-"; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + "Tour"; + 4805; + "Actor"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 4808; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 481; + "Singer"; + ; + . + + a ; + "-"; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 4811; + "Actor"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 482; + "Singer"; + "or 1913"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + "Tour"; + 4820; + "Actor"; + ; + . + + a ; + "-"; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 4829; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 483; + "Singer"; + "Last recital"; + ; + ; + . + + a ; + "-"; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 4832; + "Actor"; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 4835; + "Actor"; + ; + ; + . + + a ; + "-"; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 4838; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 484; + "Dancer"; + "1833- around 1840. rising up to the première danseuse"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 4841; + "Actor"; + "Director"; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "-"; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 4844; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "-"; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 4847; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 485; + "Dancer"; + ; + . + + a ; + "-"; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 4850; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "-"; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 4853; + "Other"; + ; + ; + . + + a ; + "-"; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Other"; + "Tour"; + 4856; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4859; + "Director"; + "Other"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 486; + "Dancer"; + "touring the provinces of England with her husband George"; + ; + . + + a ; + "-"; + "1916"; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "Tour"; + 4862; + "Actor"; + ; + ; + . + + a ; + "-"; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 4865; + "Actor"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Tour"; + 4868; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 487; + "Dancer"; + "1850- maybe 1856. appearing together with George as a dance act, Chicago and Midwest"; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 4871; + "Actor"; + ; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 4874; + "Director"; + "Actor"; + "Technician"; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 4877; + "Actor"; + "Director"; + "Impresario"; + ; + ; + . + + a ; + "Tour"; + 488; + "Actor"; + "acting company of John Ellsler"; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Tour"; + 4880; + "Director"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Tour"; + 4883; + "Director"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Tour"; + 4886; + "Director"; + ; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 4889; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 489; + "Actor"; + ""; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 4892; + "Director"; + "Actor"; + "Other"; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 4895; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 4898; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "18th August 1836"; + "1836-08-18"^^xsd:date; + "1836-08-18"^^xsd:date; + "Guest"; + 49; + "Musician"; + ; + . + + a ; + "Tour"; + 490; + "Actor"; + "Gilbert’s New York debut in Finesse at the Olympic Theatre"; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 4901; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 4904; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 491; + "Actor"; + "Gilbert’s New York debut in Finesse"; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 4916; + "Director"; + "Actor"; + ; + . + + a ; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Tour"; + 4919; + "Director"; + "Actor"; + ; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 492; + "Actor"; + "touring the U.S., Germany, France and England"; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Tour"; + 4922; + "Director"; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "Tour"; + 4925; + "Director"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Tour"; + 4928; + "Director"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 493; + "Actor"; + "when Daly was without a theatre"; + ; + . + + a ; + "1937"; + "1937-12-31"^^xsd:date; + "1937-01-01"^^xsd:date; + "Tour"; + 4931; + "Director"; + ; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Tour"; + 4934; + "Director"; + ; + ; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4937; + "Founder"; + "Other"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 494; + "Actor"; + ""; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4940; + "Circus Performer"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4943; + "Circus Performer"; + "Manager"; + ; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Guest"; + "Tour"; + 4946; + "Circus Performer"; + ; + . + + a ; + "Permanent"; + "Tour"; + 4949; + "Circus Performer"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 495; + "Actor"; + "debut in 1908, playing a boy in J. Gordin's Mirele Efrosplaying a boy in J. Gordin's play Mirele Efros. The theatre is unknown. "; + ; + . + + a ; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Guest"; + "Tour"; + 4952; + "Circus Performer"; + ; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4955; + "Founder"; + "Manager"; + "Circus Performer"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4958; + "Founder"; + "Director"; + ; + . + + a ; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Tour"; + 496; + "Actor"; + "Founder"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4961; + "Founder"; + "Director"; + "Impresario"; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4964; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4967; + "Founder"; + "Impresario"; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 497; + "Actor"; + "Yiddish theatre companies (David Kessler, Boris Thomashefsky)"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1841"; + "1841-12-31"^^xsd:date; + "1841-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4970; + "Actor"; + ; + ; + . + + a ; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4973; + "Actor"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4976; + "Actor"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4979; + "Actor"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Opera singer (leading soprano)"; + "Tour"; + 498; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "Guest"; + "Tour"; + 4982; + "Actor"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4985; + "Actor"; + ; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 4988; + "Impresario"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 499; + "Singer"; + ; + ; + . + + a ; + "1858-09-15"^^xsd:date; + "1858-09-15"^^xsd:date; + "1852-02-09"^^xsd:date; + "1852-02-09"^^xsd:date; + "Permanent"; + "Tour"; + 4991; + "Manager"; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1858-09-15"^^xsd:date; + "1858-09-15"^^xsd:date; + "Permanent"; + "Tour"; + 4994; + "Manager"; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1858-09-15"^^xsd:date; + "1858-09-15"^^xsd:date; + "Permanent"; + "Tour"; + 4997; + "Manager"; + ; + . + + a ; + "1897"; + "1897-03-22"^^xsd:date; + "1897-03-22"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 5; + "Singer"; + ""; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Tour"; + 500; + "Singer"; + ; + . + + a ; + "1862-08-12"^^xsd:date; + "1862-08-12"^^xsd:date; + "1859"; + "1859-12-31"^^xsd:date; + "1859-12-01"^^xsd:date; + "Permanent"; + "Tour"; + 5000; + "Manager"; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "1862-08-12"^^xsd:date; + "1862-08-12"^^xsd:date; + "Permanent"; + "Tour"; + 5003; + "Manager"; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5006; + "Manager"; + "Director"; + "Founder"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872"; + "1872-01-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Guest"; + "Tour"; + 5009; + "Actor"; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Artistic Director"; + "Tour"; + 501; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Guest"; + "Tour"; + 5012; + "Actor"; + ; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1873"; + "1873-10-31"^^xsd:date; + "1873-10-01"^^xsd:date; + "Permanent"; + "Tour"; + 5015; + "Manager"; + "Director"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5018; + "Manager"; + "Director"; + ; + ; + . + + a ; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Tour"; + 502; + "Singer"; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5021; + "Director"; + ; + ; + . + + a ; + "between 01.02.1883 and 31.12.1882"; + "1882-12-31"^^xsd:date; + "1883-02-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5024; + "Director"; + ; + ; + . + + a ; + "1883-02-01"^^xsd:date; + "1883-02-01"^^xsd:date; + "1882"; + "1882-09-30"^^xsd:date; + "1882-09-01"^^xsd:date; + "Permanent"; + "Tour"; + 5027; + "Manager"; + ; + ; + . + + a ; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Tour"; + 503; + "Singer"; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Other"; + "Tour"; + 5030; + "Other"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5033; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5036; + "Director"; + "Actor"; + ; + ; + . + + a ; + "between 02.01.1887 and 30.12.1888"; + "1888-12-30"^^xsd:date; + "1887-01-02"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5039; + "Director"; + "Actor"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Tour"; + 504; + "Teacher (Theatre related)"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 5042; + "Teacher (Theatre related)"; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 5048; + "Manager"; + ; + ; + . + + a ; + "1939"; + "1939-12-31"^^xsd:date; + "1939-01-01"^^xsd:date; + "Teacher"; + "Tour"; + 505; + ; + . + + a ; + "Tour"; + 506; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 507; + "Actor"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 508; + "Actor"; + ; + . + + a ; + "1868"; + "1868-12-31"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 509; + "Actor"; + ""; + ; + ; + . + + a ; + "-"; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 5096; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 5099; + "Actor"; + ; + ; + . + + a ; + "December 1837"; + "1837-12-31"^^xsd:date; + "1837-12-01"^^xsd:date; + "Guest"; + 51; + "Singer"; + "First time as singer"; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + 510; + "Actor"; + ; + ; + . + + a ; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 5102; + "Actor"; + ; + ; + . + + a ; + "-"; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5105; + "Actor"; + ; + ; + . + + a ; + "-"; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + 5108; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 511; + "Actor"; + ; + . + + a ; + "-"; + "1879"; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5111; + "Actor"; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 5114; + "Actor"; + ; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5117; + "Actor"; + ; + ; + . + + a ; + "1898-02-17"^^xsd:date; + "1898-02-17"^^xsd:date; + "Tour"; + 512; + "Actor"; + ; + . + + a ; + "-"; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Tour"; + 5120; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5123; + "Actor"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5126; + "Actor"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Tour"; + 5129; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 513; + "Actor"; + ""; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5132; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "1898 (probably)"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 5135; + "Actor"; + ; + ; + . + + a ; + "-"; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 5138; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 514; + "Actor"; + ; + . + + a ; + "-"; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 5141; + "Actor"; + ; + ; + . + + a ; + "-"; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 5144; + "Actor"; + ; + ; + . + + a ; + "-"; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Itinerant"; + 5147; + "Actor"; + ; + ; + ; + . + + a ; + "between 01.01.1853 and 01.01.1858"; + "1858-01-01"^^xsd:date; + "1853-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Other"; + "Other"; + 5148; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 515; + "Actor"; + ; + . + + a ; + "between 01.01.1853 and 01.01.1858"; + "1858-01-01"^^xsd:date; + "1855-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Other"; + "Other"; + 5151; + "Actor"; + ; + ; + . + + a ; + "between 01.01.1858 and 11.11.1861"; + "1861-11-11"^^xsd:date; + "1858-01-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5154; + "Actor"; + ; + ; + . + + a ; + "between 01.01.1861 and 11.11.1861"; + "1861-11-11"^^xsd:date; + "1861-01-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5157; + "Actor"; + ; + . + + a ; + "Tour"; + 516; + "Actor"; + ; + . + + a ; + "between 01.01.1861 and 11.11.1861"; + "1861-11-11"^^xsd:date; + "1861-01-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5160; + "Actor"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-15"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-15"^^xsd:date; + "Other"; + "Tour"; + 5163; + "Actor"; + ; + . + + a ; + "between 15.01.1861 and 31.12.1867"; + "1867-12-31"^^xsd:date; + "1863-01-15"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-15"^^xsd:date; + "Tour"; + "Other"; + 5166; + "Actor"; + ; + ; + . + + a ; + "1868"; + "1868-02-17"^^xsd:date; + "1868-02-17"^^xsd:date; + "1868"; + "1868-02-17"^^xsd:date; + "1868-02-17"^^xsd:date; + "Tour"; + "Tour"; + 5169; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 517; + "Actor"; + ; + ; + . + + a ; + "April 1868"; + "1868-04-30"^^xsd:date; + "1868-04-01"^^xsd:date; + "1868"; + "1868-04-30"^^xsd:date; + "1868-04-01"^^xsd:date; + "Tour"; + "Tour"; + 5172; + "Actor"; + ; + ; + . + + a ; + "between August 1869 and June 1870"; + "1870-06-30"^^xsd:date; + "1869-08-01"^^xsd:date; + "1869"; + "1869-08-31"^^xsd:date; + "1869-08-01"^^xsd:date; + "Tour"; + "Tour"; + 5175; + "Actor"; + ; + . + + a ; + "June 1870"; + "1870-06-30"^^xsd:date; + "1870-06-01"^^xsd:date; + "1870"; + "1870-06-30"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5178; + "Actor"; + ; + . + + a ; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Tour"; + 518; + "Actor"; + ; + ; + . + + a ; + "between June 1870 and December 1870"; + "1870-12-31"^^xsd:date; + "1870-06-01"^^xsd:date; + "1870"; + "1870-06-30"^^xsd:date; + "1870-06-01"^^xsd:date; + "Tour"; + "Tour"; + 5181; + "Actor"; + ; + . + + a ; + "December 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + "Tour"; + "Tour"; + 5184; + "Actor"; + ; + . + + a ; + "December 1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-12-01"^^xsd:date; + "Tour"; + "Tour"; + 5187; + "Actor"; + ; + ; + . + + a ; + "-"; + "1817"; + "1817-12-31"^^xsd:date; + "1817-01-01"^^xsd:date; + "Tour"; + 519; + "Actor"; + "debut in David Garrick’s Lilliput"; + ; + ; + . + + a ; + "January 1871"; + "1871-01-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "1871"; + "1871-01-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5190; + "Actor"; + ; + . + + a ; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5193; + "Actor"; + ; + . + + a ; + "between 21.06.1872 and 22.09.1872"; + "1872-09-22"^^xsd:date; + "1872-06-21"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5196; + "Actor"; + ; + . + + a ; + "between 21.06.1872 and 22.091872"; + "1872-09-22"^^xsd:date; + "1872-06-21"^^xsd:date; + "1871"; + "1871-12-31"^^xsd:date; + "1871-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5199; + "Actor"; + ; + . + + a ; + "-"; + "1817"; + "1817-12-31"^^xsd:date; + "1817-01-01"^^xsd:date; + "Guest"; + 520; + "Actor"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-06-21"^^xsd:date; + "Tour"; + "Tour"; + 5202; + "Actor"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1873"; + "1873-08-31"^^xsd:date; + "1873-08-01"^^xsd:date; + "Tour"; + "Tour"; + 5205; + "Actor"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5208; + "Actor"; + ; + . + + a ; + "June 1833"; + "1833-06-30"^^xsd:date; + "1833-06-01"^^xsd:date; + "June 1833"; + "1833-06-30"^^xsd:date; + "1833-06-01"^^xsd:date; + "Guest"; + 521; + "Actor"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5211; + "Actor"; + ; + . + + a ; + "between January 1878 and April 1879"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5214; + "Actor"; + ; + ; + . + + a ; + "between January 1878 and April 1879"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5217; + "Actor"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Tour"; + 522; + "Teacher (Theatre related)"; + "She taught women, who later become celebrity actresses; Fisher would later disparage their talents to the press"; + ; + . + + a ; + "between January 1878 and April 1879"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5220; + "Actor"; + ; + ; + . + + a ; + "between January 1878 and April 1879"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5223; + "Actor"; + ; + . + + a ; + "between January 1878 and April 1879"; + "1879-04-30"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5226; + "Actor"; + ; + . + + a ; + "between 01.05.1879 and 18.04.1880"; + "1880-04-18"^^xsd:date; + "1879-05-01"^^xsd:date; + "1879"; + "1879-05-31"^^xsd:date; + "1879-05-01"^^xsd:date; + "Other"; + "Other"; + 5229; + "Actor"; + ; + ; + . + + a ; + "1880"; + "1880-04-19"^^xsd:date; + "1880-04-19"^^xsd:date; + "1880"; + "1880-04-19"^^xsd:date; + "1880-04-19"^^xsd:date; + "Other"; + "Other"; + 5232; + "Actor"; + ; + ; + . + + a ; + "June 1880"; + "1880-06-30"^^xsd:date; + "1880-06-01"^^xsd:date; + "1880"; + "1880-06-30"^^xsd:date; + "1880-06-01"^^xsd:date; + "other"; + "Other"; + 5235; + "Actor"; + ; + ; + . + + a ; + "between January 1880 and July 1880"; + "1880-07-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1880"; + "1880-07-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Other"; + "Other"; + 5238; + "Actor"; + ; + ; + . + + a ; + "-"; + "1877 or 1878"; + "1878-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 524; + "Actor"; + "Union Square Company of Mrs. John Drew and Augustin Daly"; + ; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-09-30"^^xsd:date; + "1880-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5241; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5244; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5247; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "1889"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + 525; + "Actor"; + "Last performance (August in Daly’s Company)"; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5250; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5253; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "November 1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5256; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "December 1880"; + "1880-12-31"^^xsd:date; + "1880-12-01"^^xsd:date; + "1880"; + "1880-11-30"^^xsd:date; + "1880-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5259; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 526; + "Dancer"; + ""; + ; + . + + a ; + "December 1880"; + "1880-12-31"^^xsd:date; + "1880-12-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-12-01"^^xsd:date; + "Tour"; + "Tour"; + 5262; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "February 1881"; + "1881-02-28"^^xsd:date; + "1881-02-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-12-01"^^xsd:date; + "Tour"; + "Tour"; + 5265; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "March 1881"; + "1881-03-31"^^xsd:date; + "1881-03-01"^^xsd:date; + "March 1881"; + "1881-03-31"^^xsd:date; + "1881-03-01"^^xsd:date; + "Tour"; + "Tour"; + 5268; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 527; + "Dancer"; + ; + ; + . + + a ; + "April 1881"; + "1881-04-30"^^xsd:date; + "1881-04-01"^^xsd:date; + "March 1881"; + "1881-03-31"^^xsd:date; + "1881-03-01"^^xsd:date; + "Tour"; + "Tour"; + 5271; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 01.04.1881 and 26.04.1881"; + "1881-04-26"^^xsd:date; + "1881-04-01"^^xsd:date; + "1881"; + "1881-04-26"^^xsd:date; + "1881-04-01"^^xsd:date; + "Tour"; + "Tour"; + 5274; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5277; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 528; + "Dancer"; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5280; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5283; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5286; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5289; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 529; + "Dancer"; + ; + . + + a ; + "between 26.04.1881 and 26.06.1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "1881"; + "1881-06-26"^^xsd:date; + "1881-04-26"^^xsd:date; + "Tour"; + "Tour"; + 5292; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 26.06.1881 and 28.06.1881"; + "1881-06-28"^^xsd:date; + "1881-06-26"^^xsd:date; + "1881"; + "1881-06-28"^^xsd:date; + "1881-06-26"^^xsd:date; + "Tour"; + "Tour"; + 5298; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "8th May 1839"; + "1839-05-08"^^xsd:date; + "1839-05-08"^^xsd:date; + "Guest"; + 53; + "Singer"; + "first time as an opera singer"; + ; + ; + . + + a ; + "Tour"; + 530; + "Dancer"; + ; + . + + a ; + "between 28.06.1881 amd 30.09.1881"; + "1881-09-30"^^xsd:date; + "1881-06-28"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-06-28"^^xsd:date; + "Tour"; + "Tour"; + 5301; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5304; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5307; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 531; + "Dancer"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5310; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5313; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5316; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5319; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 532; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5322; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5325; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 01.07.1881 and September 30.09.1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5328; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Tour"; + 533; + "Dancer"; + "ballett de corps"; + ; + . + + a ; + "between July 1881 and September 1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "1881"; + "1881-09-30"^^xsd:date; + "1881-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5331; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1881"; + "1881-11-02"^^xsd:date; + "1881-11-02"^^xsd:date; + "1881"; + "1881-10-31"^^xsd:date; + "1881-10-01"^^xsd:date; + "Tour"; + "Tour"; + 5334; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "between 05.11.1881 and 30.11.1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "1881-11-05"^^xsd:date; + "1881-11-05"^^xsd:date; + "Tour"; + "Tour"; + 5337; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 534; + "Dancer"; + ; + . + + a ; + "between 05.11.1881 and 30.11.1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "between 05.11.1881 and 30.11.1881"; + "1881-11-30"^^xsd:date; + "1881-11-05"^^xsd:date; + "Tour"; + "Tour"; + 5340; + "Actor"; + "Manager"; + ; + . + + a ; + "Nov.-Dec.1881"; + "1881-12-31"^^xsd:date; + "1881-11-01"^^xsd:date; + "Nov.-Dec. 1881"; + "1881-12-31"^^xsd:date; + "1881-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5343; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "March 1882"; + "1882-03-31"^^xsd:date; + "1882-03-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-12-18"^^xsd:date; + "Tour"; + "Tour"; + 5346; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "between 01.04.1882 and 08.04.1882"; + "1882-04-08"^^xsd:date; + "1882-04-01"^^xsd:date; + "1882"; + "1882-03-31"^^xsd:date; + "1882-03-01"^^xsd:date; + "Tour"; + "Tour"; + 5349; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 535; + "Singer"; + "also some little opera parts"; + ; + . + + a ; + "between 01.06.1882 and 03.06.1882"; + "1882-06-03"^^xsd:date; + "1882-06-01"^^xsd:date; + "1882"; + "1882-05-31"^^xsd:date; + "1882-04-08"^^xsd:date; + "Tour"; + "Tour"; + 5352; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "between 03.06.1882 and 30.06.1882"; + "1882-06-30"^^xsd:date; + "1882-06-03"^^xsd:date; + "1882"; + "1882-06-30"^^xsd:date; + "1882-06-03"^^xsd:date; + "Tour"; + "Tour"; + 5355; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 23.06.1882 and 30.06.1882"; + "1882-06-30"^^xsd:date; + "1882-06-23"^^xsd:date; + "1882"; + "1882-06-30"^^xsd:date; + "1882-06-23"^^xsd:date; + "Tour"; + "Tour"; + 5358; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 536; + "Singer"; + ; + . + + a ; + "between 01.07.1882 and 20.07.1882"; + "1882-07-20"^^xsd:date; + "1882-07-01"^^xsd:date; + "1882"; + "1882-07-20"^^xsd:date; + "1882-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5361; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 01.08.1882 and 24.08.1882"; + "1882-08-24"^^xsd:date; + "1882-08-01"^^xsd:date; + "1882"; + "1882-07-20"^^xsd:date; + "1882-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5364; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "between September 1882 and November 1882"; + "1882-11-30"^^xsd:date; + "1882-09-01"^^xsd:date; + "1882"; + "1882-09-30"^^xsd:date; + "1882-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5367; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Tour"; + 537; + "Singer"; + ; + . + + a ; + "November 1882"; + "1882-11-30"^^xsd:date; + "1882-11-01"^^xsd:date; + "1882"; + "1882-11-30"^^xsd:date; + "1882-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5370; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between November 1882 and December 1882"; + "1882-12-31"^^xsd:date; + "1882-11-01"^^xsd:date; + "1882"; + "1882-11-30"^^xsd:date; + "1882-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5373; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between November 1882 and December 1882"; + "1882-12-31"^^xsd:date; + "1882-11-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5376; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between January 1883 and February 1883"; + "1883-02-28"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5379; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 538; + "Singer"; + "other source: 1829, invited by Louis Duport, there administrator in Vienna for Domenico Barbaja"; + ; + . + + a ; + "between January 1883 and February 1883"; + "1883-02-28"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-11-01"^^xsd:date; + "Tour"; + "Tour"; + 5382; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "February 1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5385; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "February 1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5388; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "Tour"; + 539; + "Singer"; + "other source: 1829-1831, played together with Franz Wild, got an acting training there."; + ; + ; + . + + a ; + "February 1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883"; + "1883-02-28"^^xsd:date; + "1883-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5391; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 01.02.1883 and 15.03.1883"; + "1883-03-15"^^xsd:date; + "1883-02-01"^^xsd:date; + "1883"; + "1883-03-15"^^xsd:date; + "1883-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5394; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 01.03.1883 and 28.03.1883"; + "1883-03-28"^^xsd:date; + "1883-03-01"^^xsd:date; + "1883"; + "1883-03-28"^^xsd:date; + "1883-03-01"^^xsd:date; + "Tour"; + "Tour"; + 5397; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "8th October 1839"; + "1839-10-08"^^xsd:date; + "1839-10-08"^^xsd:date; + "Permanent"; + 54; + "Singer"; + "her later husband hired her"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 540; + "together with Wilhemine Schröder-Devrient"; + ; + . + + a ; + "1883"; + "1883-04-05"^^xsd:date; + "1883-04-05"^^xsd:date; + "1883"; + "1883-04-04"^^xsd:date; + "1883-04-04"^^xsd:date; + "Tour"; + "Tour"; + 5400; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-05"^^xsd:date; + "Tour"; + "Tour"; + 5403; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5406; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5409; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "Tour"; + 541; + "Singer"; + "under director Ringelhardt"; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5412; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5415; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5418; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 542; + "Singer"; + ; + . + + a ; + "between 11.04.1883 and 30.04.1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "1883"; + "1883-04-30"^^xsd:date; + "1883-04-11"^^xsd:date; + "Tour"; + "Tour"; + 5421; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between July 1883 and October 1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + "1883"; + "1883-10-31"^^xsd:date; + "1883-07-01"^^xsd:date; + "Tour"; + "Tour"; + 5424; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 01.10.1883 and 02.11.1883"; + "1883-11-02"^^xsd:date; + "1883-10-01"^^xsd:date; + "1883"; + "1883-11-02"^^xsd:date; + "1883-10-01"^^xsd:date; + "Tour"; + "Tour"; + 5427; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "1835"; + "1835-12-31"^^xsd:date; + "1835-01-01"^^xsd:date; + """opera singer +"""; + "Tour"; + 543; + "Singer"; + "he followed director Ringelhard"; + ; + ; + . + + a ; + "between 01.10.1883 and 02.11.1883"; + "1883-12-23"^^xsd:date; + "1883-11-02"^^xsd:date; + "1883"; + "1883-12-23"^^xsd:date; + "1883-11-02"^^xsd:date; + "Tour"; + "Tour"; + 5430; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "1884"; + "1884-01-21"^^xsd:date; + "1884-01-21"^^xsd:date; + "1883"; + "1883-12-23"^^xsd:date; + "1883-12-23"^^xsd:date; + "Tour"; + "Tour"; + 5433; + "Actor"; + "Manager"; + ; + ; + ; + . + + a ; + "between 28.01.1884 and 31.12.1888"; + "1888-12-31"^^xsd:date; + "1884-01-28"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-28"^^xsd:date; + "Tour"; + "Tour"; + 5436; + "Actor"; + ; + . + + a ; + "between 28.01.1884 and 31.12.1888"; + "1888-12-31"^^xsd:date; + "1884-01-28"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5439; + "Actor"; + ; + . + + a ; + "Tour"; + 544; + "Singer"; + ; + ; + . + + a ; + "1885"; + "1885-02-14"^^xsd:date; + "1885-02-14"^^xsd:date; + "1885"; + "1885-02-14"^^xsd:date; + "1885-02-14"^^xsd:date; + "Tour"; + "Tour"; + 5442; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5445; + "Actor"; + ; + . + + a ; + "Other"; + "Other"; + 5448; + ; + ; + . + + a ; + "Tour"; + 545; + "Singer"; + ; + . + + a ; + "Other"; + "Tour"; + 5451; + "Other"; + ; + ; + . + + a ; + "October 1902"; + "1902-10-31"^^xsd:date; + "1902-10-01"^^xsd:date; + "1900"; + "1900-08-31"^^xsd:date; + "1900-08-01"^^xsd:date; + "Other"; + "Tour"; + 5454; + "Founder"; + "Impresario"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Other"; + "Tour"; + 5457; + "Other"; + ; + . + + a ; + "Guest "; + "Tour"; + 546; + ; + . + + a ; + ""; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Other"; + "Tour"; + 5460; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "between 1904 and 1906"; + "1906-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Other"; + "Tour"; + 5463; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "between 1906 and 1910"; + "1910-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Other"; + "Tour"; + 5469; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Tour"; + 547; + "Singer"; + "Director"; + "other source 1843"; + ; + . + + a ; + ""; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Other"; + "Tour"; + 5472; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "between 1911 and 1914"; + "1914-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Other"; + "Tour"; + 5475; + "Founder"; + "Manager"; + ; + ; + . + + a ; + ""; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Other"; + "Tour"; + 5478; + "Founder"; + ; + ; + . + + a ; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Tour"; + 548; + "Königsberg"; + . + + a ; + ""; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Other"; + "Tour"; + 5481; + "Founder"; + ; + ; + . + + a ; + ""; + "1930"; + "1930-12-31"^^xsd:date; + "1930-01-01"^^xsd:date; + "Other"; + "Tour"; + 5487; + "Founder"; + ; + ; + . + + a ; + ""; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + 5496; + "Founder"; + ; + . + + a ; + ""; + "1872"; + "1872-05-20"^^xsd:date; + "1872-05-20"^^xsd:date; + "Tour"; + 5499; + "Founder"; + ; + ; + . + + a ; + "Winter 1844/1845"; + "1845-04-30"^^xsd:date; + "1844-11-01"^^xsd:date; + "Winter 1843/1844"; + "1844-04-30"^^xsd:date; + "1843-11-01"^^xsd:date; + "Guest"; + 55; + "Singer"; + ; + . + + a ; + "Tour"; + 550; + "Teacher (Theatre related)"; + "Königsberg"; + . + + a ; + ""; + "1873-06-03"^^xsd:date; + "1873-06-03"^^xsd:date; + "1873"; + "1873-06-03"^^xsd:date; + "1873-06-03"^^xsd:date; + "Tour"; + 5502; + "Actor"; + ; + ; + . + + a ; + ""; + "1906-04-21"^^xsd:date; + "1906-04-21"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 5505; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Other"; + "Tour"; + 5508; + "Circus Performer"; + ; + . + + a ; + "Tour"; + 551; + "Teacher (Theatre related)"; + "Tilsit"; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Guest"; + "Tour"; + 5511; + "Circus Performer"; + ; + ; + . + + a ; + "between 1893 and 1899"; + "1899-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "between 1893 and 1899"; + "1899-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Other"; + "Tour"; + 5514; + "Circus Performer"; + ; + ; + . + + a ; + "1911"; + "1911-06-20"^^xsd:date; + "1911-06-20"^^xsd:date; + "1911"; + "1911-06-20"^^xsd:date; + "1911-01-01"^^xsd:date; + "Tour"; + 5517; + "Circus Performer"; + ; + . + + a ; + "Tour"; + 552; + "Teacher (Theatre related)"; + ""; + ; + . + + a ; + "1899-1900"; + "1900-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Other"; + "Tour"; + 5520; + "Circus Performer"; + ; + . + + a ; + "1914"; + "1914-06-24"^^xsd:date; + "1914-06-24"^^xsd:date; + "1914"; + "1914-06-24"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + 5523; + "Circus Performer"; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5526; + "Circus Performer"; + ; + . + + a ; + ""; + "1920-07-11"^^xsd:date; + "1920"; + "1920-07-11"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 5529; + "Circus Performer"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 553; + ""; + ; + . + + a ; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Other"; + "Tour"; + 5538; + "Founder"; + ; + ; + . + + a ; + "Tour"; + 554; + "Manager"; + ; + ; + . + + a ; + ""; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Other"; + "Tour"; + 5544; + "Manager"; + ; + ; + . + + a ; + "May 1865"; + "1865-05-31"^^xsd:date; + "1865-05-01"^^xsd:date; + "Other"; + "Tour"; + 5547; + "Musician"; + ; + ; + . + + a ; + "1922"; + "1922-12-31"^^xsd:date; + "1922-01-01"^^xsd:date; + "Tour"; + 555; + "Director"; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1865"; + "1865-05-31"^^xsd:date; + "1865-05-01"^^xsd:date; + "Permanent"; + "Tour"; + 5550; + "Musician"; + ; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1865"; + "1865-05-31"^^xsd:date; + "1865-05-01"^^xsd:date; + "Permanent"; + "Tour"; + 5553; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5556; + "Musician"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5559; + "Musician"; + ; + ; + . + + a ; + "Tour"; + 556; + "Singer"; + ""; + ; + ; + . + + a ; + "March 1896"; + "1896-03-30"^^xsd:date; + "1896-03-01"^^xsd:date; + "1891"; + "1891-05-31"^^xsd:date; + "1891-05-01"^^xsd:date; + "Other"; + "Tour"; + 5562; + "Musician"; + ; + ; + . + + a ; + ""; + "1902-02-01"^^xsd:date; + "1902-02-01"^^xsd:date; + "1902"; + "1902-02-01"^^xsd:date; + "1902-02-01"^^xsd:date; + "Other"; + "Tour"; + 5565; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 557; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 558; + "Singer"; + "touring two years through Northern America"; + ; + . + + a ; + "between December 1835 and December 1839"; + "1839-12-31"^^xsd:date; + "1835-12-01"^^xsd:date; + "1831"; + "1831-05-09"^^xsd:date; + "1831-05-09"^^xsd:date; + "Other"; + "Other"; + 5586; + "Musician"; + ; + . + + a ; + "1840"; + "1840-06-02"^^xsd:date; + "1840-06-02"^^xsd:date; + "1840"; + "1840-06-02"^^xsd:date; + "1840-06-02"^^xsd:date; + "Guest"; + "Guest"; + 5589; + "Musician"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 559; + "Singer"; + ""; + ; + ; + . + + a ; + "1853"; + "1853-01-07"^^xsd:date; + "1853-01-07"^^xsd:date; + "1853"; + "1853-01-07"^^xsd:date; + "1853-01-07"^^xsd:date; + "Other"; + "Other"; + 5592; + "Singer"; + ; + . + + a ; + "1855"; + "1855-01-23"^^xsd:date; + "1855-01-23"^^xsd:date; + "1855"; + "1855-01-23"^^xsd:date; + "1855-01-23"^^xsd:date; + "Other"; + "Other"; + 5595; + "Singer"; + ; + ; + . + + a ; + "September 1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5598; + "Singer"; + ; + . + + a ; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Other"; + 56; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 560; + "Singer"; + "sang there in the UA of Salome, Elektra and Der Rosenkavalier"; + ; + . + + a ; + "September 1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "1855"; + "1855-09-30"^^xsd:date; + "1855-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5601; + "Singer"; + ; + . + + a ; + "June 1856"; + "1856-06-30"^^xsd:date; + "1856-06-01"^^xsd:date; + "1856"; + "1856-06-30"^^xsd:date; + "1856-06-01"^^xsd:date; + "Other"; + "Other"; + 5604; + "Singer"; + ; + ; + . + + a ; + "February 1857"; + "1857-02-28"^^xsd:date; + "1857-02-01"^^xsd:date; + "1857"; + "1857-02-28"^^xsd:date; + "1857-02-01"^^xsd:date; + "Tour"; + "Tour"; + 5607; + "Musician"; + ; + . + + a ; + "Guest"; + "Guest"; + 561; + ""; + ; + . + + a ; + "between March 1857 and December 1857"; + "1857-12-31"^^xsd:date; + "1857-03-01"^^xsd:date; + "1857"; + "1857-12-31"^^xsd:date; + "1857-03-01"^^xsd:date; + "Other"; + "Other"; + 5610; + "Singer"; + ; + ; + ; + . + + a ; + "between December 1858 and December 1859"; + "1859-12-31"^^xsd:date; + "1858-12-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Other"; + "Other"; + 5613; + "Singer"; + ; + ; + ; + . + + a ; + "1858 till 1859"; + "1859-12-31"^^xsd:date; + "1858-12-01"^^xsd:date; + "1858"; + "1858-12-31"^^xsd:date; + "1858-12-01"^^xsd:date; + "Other"; + "Other"; + 5616; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-02-16"^^xsd:date; + "1859-02-16"^^xsd:date; + "1859"; + "1859-02-16"^^xsd:date; + "1859-02-16"^^xsd:date; + "Guest"; + "Guest"; + 5619; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 562; + "Teacher (Theatre related)"; + "after her carrier as an opera singer she was a singing teacher in Wien"; + ; + . + + a ; + "1859"; + "1859-04-04"^^xsd:date; + "1859-04-04"^^xsd:date; + "1859"; + "1859-04-04"^^xsd:date; + "1859-04-04"^^xsd:date; + "Guest"; + "Guest"; + 5622; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-04-30"^^xsd:date; + "1859-04-01"^^xsd:date; + "1859"; + "1859-04-30"^^xsd:date; + "1859-04-01"^^xsd:date; + "Other"; + "Other"; + 5625; + "Singer"; + ; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-05-31"^^xsd:date; + "1859"; + "1859-05-31"^^xsd:date; + "1859-04-01"^^xsd:date; + "Other"; + "Other"; + 5628; + "Singer"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Opera singer (bariton)"; + "Tour"; + 563; + ""; + ; + . + + a ; + "1859"; + "1859-10-30"^^xsd:date; + "1859-10-01"^^xsd:date; + "1859"; + "1859-10-30"^^xsd:date; + "1859-10-01"^^xsd:date; + "Other"; + "Other"; + 5631; + "Singer"; + ; + ; + . + + a ; + "1860"; + "1860-07-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1860"; + "1860-07-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Other"; + "Other"; + 5634; + "Founder"; + ; + ; + . + + a ; + "1865"; + "1865-08-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-08-01"^^xsd:date; + "Other"; + "Other"; + 5637; + "Musician"; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 564; + "Singer"; + ; + . + + a ; + "1866"; + "1866-06-30"^^xsd:date; + "1866-06-01"^^xsd:date; + "1865"; + "1865-08-31"^^xsd:date; + "1865-08-01"^^xsd:date; + "Tour"; + "Tour"; + 5640; + "Singer"; + ; + ; + . + + a ; + "1868"; + "1868-07-20"^^xsd:date; + "1868-07-20"^^xsd:date; + "1866"; + "1866-12-31"^^xsd:date; + "1866-07-01"^^xsd:date; + "Other"; + "Other"; + 5643; + "Musician"; + ; + . + + a ; + "1868"; + "1868-09-26"^^xsd:date; + "1868-09-26"^^xsd:date; + "1868"; + "1868-08-31"^^xsd:date; + "1868-08-31"^^xsd:date; + "Other"; + "Other"; + 5646; + "Manager"; + ; + ; + . + + a ; + "between September 1868 and April 1869"; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + "Other"; + 5649; + "Manager"; + ; + ; + ; + . + + a ; + "Tour"; + 565; + "Singer"; + ; + . + + a ; + "April 1869"; + "1869-04-30"^^xsd:date; + "1869-04-01"^^xsd:date; + "1868"; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + "Other"; + 5652; + "Manager"; + ; + ; + ; + . + + a ; + "between May 1869 and June 1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-05-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "Guest"; + "Guest"; + 5655; + "Manager"; + ; + ; + . + + a ; + "between May 1869 and December 1869"; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Other"; + 5658; + "Manager"; + ; + ; + . + + a ; + """Opera singer +"""; + "Tour"; + 566; + "Singer"; + ; + . + + a ; + "between May 1869 and December 1869"; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Other"; + 5661; + "Manager"; + ; + ; + . + + a ; + "between May 1869 and June 1872"; + "1872-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1872-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "Tour"; + "Tour"; + 5664; + "Singer"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "between 1852 and 1853"; + "1853-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5667; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 567; + "Singer"; + ; + . + + a ; + "between 1861 and 1863"; + "1863-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 5670; + "Singer"; + ; + . + + a ; + "3 years"; + "1867-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "1861"; + "1865-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5673; + "Singer"; + ; + ; + . + + a ; + "between 1865 and 1867"; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "between 1865 and 1867"; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5676; + "Singer"; + ; + ; + . + + a ; + "between 1865 and 1867"; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "between 1865 and 1867"; + "1867-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5679; + "Actor"; + ; + . + + a ; + "Tour"; + 568; + "Actor"; + ""; + ; + ; + . + + a ; + "1868-09-26"^^xsd:date; + "1868-09-26"^^xsd:date; + "1868-08-31"^^xsd:date; + "1868-08-31"^^xsd:date; + "Other"; + "Tour"; + 5682; + "Actor"; + ; + ; + ; + . + + a ; + "between May 1869 and June 1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-05-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "Guest"; + "Tour"; + 5685; + "Actor"; + ; + . + + a ; + "between 21.12.1871 and 20.03.1872"; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + "1871"; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + "Tour"; + "Tour"; + 5688; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 569; + "Singer"; + ; + . + + a ; + "between 21.12.1871 and 20.03.1872"; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + "1871"; + "1872-03-20"^^xsd:date; + "1871-12-21"^^xsd:date; + "Tour"; + "Tour"; + 5691; + "Actor"; + ; + ; + . + + a ; + "1871-07-13"^^xsd:date; + "1872-07-13"^^xsd:date; + "1872-07-03"^^xsd:date; + "1872-07-03"^^xsd:date; + "Tour"; + "Tour"; + 5694; + "Actor"; + ; + ; + ; + . + + a ; + "between 14.07.1872 and 20.12.1873"; + "1873-12-20"^^xsd:date; + "1872-07-14"^^xsd:date; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Other"; + "Tour"; + 5697; + "Actor"; + ; + . + + a ; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Other"; + 57; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 570; + "Singer"; + ; + . + + a ; + "between 23.09.1873 and 20.12.1873"; + "1873-12-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Fall 1873"; + "1873-12-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Tour"; + "Tour"; + 5700; + "Actor"; + ; + ; + . + + a ; + "between 23.09.1873 and 20.03.1874"; + "1874-03-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "1873"; + "1874-03-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Tour"; + "Tour"; + 5703; + "Actor"; + ; + . + + a ; + "between 21.03.1874 and 20.06.1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Spring1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5706; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Spring1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5709; + "Actor"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 571; + "Singer"; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5712; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5715; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5718; + "Actor"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 572; + "Singer"; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5721; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5724; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5727; + "Actor"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 573; + "Singer"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5730; + "Actor"; + ; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5733; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5736; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 5739; + "Actor"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 574; + "Singer"; + "her husband Hans Claar was director and actor there"; + ; + ; + . + + a ; + "between 1876 and 1878"; + "1878-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "between 1876 and 1878"; + "1878-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Other"; + "Tour"; + 5742; + "Actor"; + ; + . + + a ; + "1879"; + "1879-05-24"^^xsd:date; + "1879-05-24"^^xsd:date; + "1879"; + "1879-04-14"^^xsd:date; + "1879-04-14"^^xsd:date; + "Other"; + "Tour"; + 5745; + "Actor"; + ; + ; + . + + a ; + "between 01.01.1879 and 20.06.1886"; + "1886-06-20"^^xsd:date; + "1879-01-01"^^xsd:date; + "between 01.01.1879 and 20.06.1886"; + "1880-06-20"^^xsd:date; + "1879-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 5748; + "Actor"; + ; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 575; + "Actor"; + "debut, The Spoiled Child"; + ; + ; + . + + a ; + "between September 1881 and December 1882"; + "1882-12-31"^^xsd:date; + "1881-09-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5751; + "Actor"; + ; + . + + a ; + "Fall 1887"; + "1887-10-31"^^xsd:date; + "1887-09-23"^^xsd:date; + "Summer 1886"; + "1886-09-22"^^xsd:date; + "1886-06-21"^^xsd:date; + "Tour"; + "Tour"; + 5754; + "Actor"; + ; + . + + a ; + "between January 1897 and September 1897"; + "1897-09-30"^^xsd:date; + "1897-01-01"^^xsd:date; + "1887"; + "1887-12-31"^^xsd:date; + "1887-09-23"^^xsd:date; + "Other"; + "Tour"; + 5757; + "Actor"; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 576; + "Actor"; + "1827 or 1828"; + ; + ; + . + + a ; + "between 1865 and 1866"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Guest"; + "Guest"; + 5765; + "Actor"; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Tour"; + 577; + "Actor"; + "Debut on November 30, 1837"; + ; + ; + . + + a ; + "between 1865 and 1866"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5775; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 578; + "Actor"; + ; + . + + a ; + "between September 1868 and April 1869"; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "1868"; + "1868-12-31"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + "Other"; + 5785; + "Actor"; + ; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "Tour"; + 579; + "Actor"; + "condition in his contract: he wanted to play also at the German theatre there"; + ; + . + + a ; + "April 1869"; + "1869-04-30"^^xsd:date; + "1869-04-01"^^xsd:date; + "1868"; + "1869-04-30"^^xsd:date; + "1868-09-01"^^xsd:date; + "Other"; + "Other"; + 5790; + ; + ; + ; + . + + a ; + "between May 1869 and June 1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-05-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "Guest"; + "Guest"; + 5795; + "Actor"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 58; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 580; + "Actor"; + ""; + ; + . + + a ; + "Tour"; + 581; + "Actor"; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 582; + "Actor"; + "Ensemble, influenced by Heinrich Laube he changed to other roles"; + ; + ; + . + + a ; + "Tour"; + 583; + "Actor"; + "live long contract, 1864 cancelled by himself after a disput with Karl August Ludwig Quanter"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Guest "; + "Guest"; + 584; + "Actor"; + "Guest engagements in the 1850th and 1860th to Leipzig, Dresden, Berlin, Potsdam, Weimar, Breslau, Prag, München, Augsburg, Paris, St. Petersburg, Pest, Magdeburg, Schwerin, Nürnberg and Warschau"; + . + + a ; + "Tour"; + 585; + "conducted Tannhäuser"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 586; + "at the Met"; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 587; + "he succeeded his father at the New York Oratorio Society"; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 588; + "he succeeded his father at the New York Oratorio Society"; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Tour"; + 589; + "He succeeded his father as conductor of the New York Symphony Society (later renamed the New York Symphony Orchestra)"; + ; + . + + a ; + "Tour"; + 59; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 590; + "Actor"; + ""; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 591; + "Actor"; + "playing with Barry Sullivan"; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + 592; + "Actor"; + "Playing the roles of Lady Teazle, Countess Leika, Lady Clare and Rosalind, winning a pronounced success in each"; + ; + . + + a ; + "between 23.09.1875 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "between 23.09.1875 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "Tour"; + "Tour"; + 5925; + "Actor"; + ; + . + + a ; + "Tour"; + 593; + "Actor"; + "but soon Coghlan left,being displeased with a part assigned to her in L' Abbe Constantin"; + ; + . + + a ; + "between 23.09.1875 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "between 23.09.1875 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "Tour"; + "Tour"; + 5930; + "Actor"; + ; + . + + a ; + "between 23.09.1875 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "1875"; + "1876-12-31"^^xsd:date; + "1875-09-23"^^xsd:date; + "Other"; + "Other"; + 5935; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 594; + "Actor"; + ""; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5940; + "Actor"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + "Tour"; + 5945; + "Actor"; + ; + . + + a ; + "1892"; + "1892-12-31"^^xsd:date; + "1892-01-01"^^xsd:date; + "Tour"; + 595; + "Actor"; + "Manager"; + ""; + ; + . + + a ; + "between 27.09.1884 and 20.06.1886"; + "1886-06-20"^^xsd:date; + "1884-09-27"^^xsd:date; + "1879-1880"; + "1880-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 5950; + "Actor"; + ; + ; + ; + . + + a ; + "between September 1881 and December 1882"; + "1882-12-31"^^xsd:date; + "1881-09-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-09-01"^^xsd:date; + "Tour"; + "Tour"; + 5955; + "Actor"; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 596; + "Actor"; + ; + . + + a ; + "between 23.09.1887 and 31.10.1887"; + "1887-10-31"^^xsd:date; + "1887-09-23"^^xsd:date; + "Sommer 1886"; + "1886-09-22"^^xsd:date; + "1886-06-21"^^xsd:date; + "Tour"; + "Tour"; + 5960; + "Actor"; + ; + . + + a ; + "between December 1898 and December 1899"; + "1899-12-31"^^xsd:date; + "1898-12-01"^^xsd:date; + "1887"; + "1887-11-01"^^xsd:date; + "1887-09-23"^^xsd:date; + "Other"; + "Permanent"; + 5965; + "Actor"; + ; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 597; + "Actor"; + ; + . + + a ; + "1897-03-06"^^xsd:date; + "1897-03-06"^^xsd:date; + "1897-03-06"^^xsd:date; + "1897-03-06"^^xsd:date; + "Other"; + "Permanent"; + 5970; + "Actor"; + ; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 598; + "Actor"; + ; + ; + . + + a ; + "between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "between 1898 and 1899"; + "1899-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Other"; + "Other"; + 5980; + "Actor"; + ; + ; + . + + a ; + "1900-02-04"^^xsd:date; + "1900-02-04"^^xsd:date; + "1899-11-27"^^xsd:date; + "1899-11-27"^^xsd:date; + "Other"; + "Other"; + 5985; + "Actor"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Tour"; + 599; + "Actor"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 6; + "Singer"; + "she left Vienna because of disagreements with Gustav Mahler (Director"; + ; + ; + . + + a ; + "Tour"; + 60; + "Singer"; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 600; + "Actor"; + ; + . + + a ; + "1918"; + "1918-12-31"^^xsd:date; + "1918-01-01"^^xsd:date; + "Tour"; + 601; + "Director"; + "after Coried changed to the new York metropolitan opera 1907 and the theatre became a bad reputation in the following years. He led it to old gloriosity and was stopped because of the first world war- his money was confiscated."; + ; + . + + a ; + "1901-1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901-1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Other"; + "Other"; + 6015; + "Actor"; + ; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Tour"; + 602; + "Actor"; + "several filmes, last one Foolish Wives still exists"; + ; + . + + a ; + "between 05.04.1904 and 31.07.1904"; + "1904-07-31"^^xsd:date; + "1904-04-05"^^xsd:date; + "1904"; + "1904-07-31"^^xsd:date; + "1904-04-05"^^xsd:date; + "Guest"; + "Guest"; + 6025; + "Actor"; + ; + . + + a ; + "Tour"; + 603; + "Tours with Deutschen Volkstheater Wien"; + ; + ; + . + + a ; + "between August 1904 and December 1906"; + "1906-12-31"^^xsd:date; + "1904-08-01"^^xsd:date; + "1904"; + "1906-12-31"^^xsd:date; + "1904-08-01"^^xsd:date; + "Tour"; + "Tour"; + 6030; + "Actor"; + ; + . + + a ; + "between August 1904 and December 1906"; + "1906-12-31"^^xsd:date; + "1904-08-01"^^xsd:date; + "1904"; + "1906-12-31"^^xsd:date; + "1904-08-01"^^xsd:date; + "Tour"; + "Tour"; + 6035; + "Actor"; + ; + . + + a ; + "Tour"; + 604; + "Tours with Deutschen Volkstheater Wien"; + ; + ; + . + + a ; + "January 1906"; + "1906-01-30"^^xsd:date; + "1906-01-01"^^xsd:date; + "1905-09-21"^^xsd:date; + "1905-09-21"^^xsd:date; + "Other"; + "Other"; + 6040; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 605; + "Guest engagements in Düsseldorf and in Oldenburg (first time at Großherzoglichen Theater in Oldenburg 14th January 1900 as Hamlet, last time 26th november 1911 as Othello)."; + ; + . + + a ; + "Guest "; + "Guest"; + 606; + "Guest engagements in Düsseldorf and in Oldenburg (first time at Großherzoglichen Theater in Oldenburg 14th January 1900 as Hamlet, last time 26th november 1911 as Othello)."; + ; + . + + a ; + "December 1909"; + "1909-12-31"^^xsd:date; + "1909-12-01"^^xsd:date; + "1909-10-26"^^xsd:date; + "1909-10-26"^^xsd:date; + "Other"; + "Other"; + 6065; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 607; + "Actor"; + "For several times he played at Deutsches Theater in St. Petersburg"; + ; + . + + a ; + "November 1910"; + "1910-11-30"^^xsd:date; + "1910-11-01"^^xsd:date; + "1910-08-11"^^xsd:date; + "1910-08-11"^^xsd:date; + "Other"; + "Other"; + 6070; + "Actor"; + ; + ; + . + + a ; + "between 30.01.1912 and 25.02.1912"; + "1912-02-25"^^xsd:date; + "1912-01-30"^^xsd:date; + "1912-01-29"^^xsd:date; + "1912-01-29"^^xsd:date; + "Other"; + "Permanent"; + 6075; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 608; + "Actor"; + "His strongest international relation was to Deutsches Theater in New York, the Irving Place Theatre, with Heinrich Conried as director (first time april 1898 together with Agnes Sorma in Humperndincks Königskinder)"; + ; + . + + a ; + "March 1912"; + "1912-03-31"^^xsd:date; + "1912-03-01"^^xsd:date; + "1912-02-26"^^xsd:date; + "1912-02-26"^^xsd:date; + "Other"; + "Other"; + 6080; + "Actor"; + ; + ; + . + + a ; + "between 04.12.1912 and 31.12.1912"; + "1912-12-31"^^xsd:date; + "1912-12-04"^^xsd:date; + "1912-12-03"^^xsd:date; + "1912-12-03"^^xsd:date; + "Other"; + "Other"; + 6085; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 609; + "Actor"; + "Christians had negotiated a generous holiday arrangement with the Königliches Schauspielhaus Berlin, which allowed him to make guest appearances for more than three months a year. However, it must be to take into account that he needed 14 days of that time for the Bremen-New York ship and back. At least until 1906 he was able to spend several weeks in New York each year. "; + ; + ; + . + + a ; + "1912-12-16"^^xsd:date; + "1912-12-16"^^xsd:date; + "1912-12-16"^^xsd:date; + "1912-12-16"^^xsd:date; + "Other"; + "Other"; + 6090; + "Actor"; + ; + ; + . + + a ; + "March 1913"; + "1913-03-31"^^xsd:date; + "1913-03-01"^^xsd:date; + "1913-01-23"^^xsd:date; + "1913-01-23"^^xsd:date; + "Other"; + "Other"; + 6095; + "Actor"; + ; + ; + . + + a ; + "1925"; + "1925-12-31"^^xsd:date; + "1925-01-01"^^xsd:date; + "Tour"; + 61; + "Singer"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Tour"; + 610; + "Singer"; + "after finishing his lessons - Carl Rosa Opera Company"; + ; + ; + . + + a ; + "June 1914"; + "1914-06-30"^^xsd:date; + "1914-06-01"^^xsd:date; + "1914"; + "1914-05-11"^^xsd:date; + "1914-05-11"^^xsd:date; + "Other"; + "Permanent"; + 6100; + "Actor"; + ; + ; + ; + . + + a ; + "October 1914"; + "1914-10-31"^^xsd:date; + "1914-10-01"^^xsd:date; + "1914-09-05"^^xsd:date; + "1914-09-05"^^xsd:date; + "Other"; + "Other"; + 6105; + "Actor"; + ; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + """Opera singer +"""; + "Tour"; + 611; + "Singer"; + ; + . + + a ; + "between 13.01.1915 and 31.01.1915"; + "1915-01-31"^^xsd:date; + "1915-01-13"^^xsd:date; + "1915-01-12"^^xsd:date; + "1915-01-12"^^xsd:date; + "Other"; + "Permanent"; + 6110; + "Actor"; + ; + ; + ; + . + + a ; + "1902"; + "1892-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 612; + "Singer"; + ; + ; + . + + a ; + ""; + "1921-01-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "1920-11-01"^^xsd:date; + "1920-11-01"^^xsd:date; + "Other"; + "Other"; + 6120; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 613; + "Singer"; + ; + ; + . + + a ; + ""; + "1925-10-31"^^xsd:date; + "1925-10-09"^^xsd:date; + "1925-10-08"^^xsd:date; + "1925-10-08"^^xsd:date; + "Other"; + "Other"; + 6145; + "Actor"; + ; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Opera singer (old)"; + "Tour"; + 615; + "first altistin"; + ; + . + + a ; + ""; + "1926-05-31"^^xsd:date; + "1926-05-01"^^xsd:date; + "1926-04-05"^^xsd:date; + "1926-04-05"^^xsd:date; + "Other"; + "Tour"; + 6150; + "Actor"; + ; + ; + . + + a ; + ""; + "1927-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1926"; + "1927-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + "Other"; + 6155; + "Actor"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Guest "; + "Tour"; + 616; + ; + . + + a ; + ""; + "1927-03-31"^^xsd:date; + "1927-03-01"^^xsd:date; + "1927-01-31"^^xsd:date; + "1927-01-31"^^xsd:date; + "Other"; + "Other"; + 6160; + "Actor"; + ; + ; + . + + a ; + ""; + "1927-12-31"^^xsd:date; + "1927-12-01"^^xsd:date; + "1927-10-11"^^xsd:date; + "1927-10-11"^^xsd:date; + "Other"; + "Other"; + 6165; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 617; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Other"; + "Other"; + 6170; + "Actor"; + "Other"; + ; + ; + . + + a ; + "Guest "; + "Tour"; + 618; + ; + ; + . + + a ; + "between 1865 and 1866"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1865"; + "1866-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Guest"; + "Guest"; + 6180; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 619; + ; + . + + a ; + ""; + "1868-09-26"^^xsd:date; + "1868-09-26"^^xsd:date; + "1868-08-31"^^xsd:date; + "1868-08-31"^^xsd:date; + "Other"; + "Other"; + 6190; + "Actor"; + ; + ; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 62; + "Singer"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 620; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 621; + ; + . + + a ; + ""; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Other"; + 6210; + "Actor"; + ; + ; + . + + a ; + ""; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Other"; + 6215; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 622; + ; + . + + a ; + ""; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Guest"; + "Guest"; + 6220; + "Actor"; + ; + . + + a ; + ""; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Other"; + 6225; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 623; + ; + . + + a ; + ""; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1871-10-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "Tour"; + "Tour"; + 6230; + "Actor"; + ; + ; + . + + a ; + ""; + "1871-11-30"^^xsd:date; + "1871-10-22"^^xsd:date; + "1871"; + "1871-10-31"^^xsd:date; + "1871-10-08"^^xsd:date; + "Tour"; + "Tour"; + 6235; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 624; + ; + . + + a ; + "Winner 1871"; + "1872-03-20"^^xsd:date; + "1872-01-01"^^xsd:date; + "Winner 1871"; + "1871-10-22"^^xsd:date; + "1871-10-08"^^xsd:date; + "Other"; + "Permanent"; + 6240; + "Actor"; + ; + ; + ; + . + + a ; + "Summer 1872"; + "1872-07-13"^^xsd:date; + "1872-07-13"^^xsd:date; + "Summer 1872"; + "1872-07-03"^^xsd:date; + "1872-07-03"^^xsd:date; + "Other"; + "Tour"; + 6245; + "Actor"; + ; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 625; + ; + . + + a ; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Tour"; + "Tour"; + 6250; + "Actor"; + ; + ; + . + + a ; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Tour"; + "Tour"; + 6255; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 626; + ; + . + + a ; + "1872"; + "1873-12-20"^^xsd:date; + "1872-07-14"^^xsd:date; + "Summer 1872"; + "1872-09-22"^^xsd:date; + "1872-07-14"^^xsd:date; + "Other"; + "Other"; + 6260; + "Actor"; + ; + . + + a ; + "Fall 1873"; + "1873-12-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Fall 1873"; + "1873-12-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Tour"; + "Tour"; + 6265; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 627; + ; + . + + a ; + "Fall and Winter  1873"; + "1874-03-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Fall and Winter  1873"; + "1874-03-20"^^xsd:date; + "1873-09-23"^^xsd:date; + "Tour"; + "Tour"; + 6270; + "Actor"; + ; + . + + a ; + "Spring 1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Spring 1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6275; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 628; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Spring 1874"; + "1874-06-20"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6280; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6285; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 629; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6290; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6295; + "Actor"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 63; + "Singer"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest "; + "Tour"; + 630; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6300; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6305; + "Actor"; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "Tour"; + 631; + "Dancer"; + "first engagement"; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6310; + "Actor"; + ; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6315; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 632; + "Dancer"; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6320; + "Actor"; + ; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6325; + "Actor"; + ; + ; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + 633; + "invitation to replace Carlotta Grisi"; + ; + . + + a ; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "between 21.03.1874 and 31.12.1876"; + "1876-12-31"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 6330; + "Actor"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Tour"; + 634; + ""; + ; + . + + a ; + "Tour"; + 635; + "Dancer"; + ""; + ; + . + + a ; + "Tour"; + 636; + ""; + ; + . + + a ; + "Tour"; + 637; + "Singer"; + "first engagement"; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 638; + "Singer"; + ; + . + + a ; + ""; + "1897-09-30"^^xsd:date; + "1897-01-01"^^xsd:date; + "1897"; + "1897-09-30"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6385; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 639; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 64; + "Singer"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 640; + "Singer"; + ; + . + + a ; + "1902-05-31"^^xsd:date; + "1902-05-31"^^xsd:date; + "1900-01-16"^^xsd:date; + "1900-01-16"^^xsd:date; + "Other"; + "Permanent"; + 6400; + "Actor"; + ; + ; + ; + . + + a ; + ""; + "1901-06-29"^^xsd:date; + "1901-06-29"^^xsd:date; + "1901-02-04"^^xsd:date; + "1901-02-04"^^xsd:date; + "Other"; + "Other"; + 6405; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 641; + ; + . + + a ; + ""; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Other"; + "Other"; + 6410; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 642; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6420; + "Actor"; + ; + . + + a ; + ""; + "1904-06-30"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903"; + "1904-06-30"^^xsd:date; + "1903-01-01"^^xsd:date; + "Other"; + "Other"; + 6425; + "Actor"; + ; + . + + a ; + "Guest "; + "Guest"; + 643; + ; + ; + . + + a ; + ""; + "1904-04-30"^^xsd:date; + "1904-04-04"^^xsd:date; + "1904-04-04"^^xsd:date; + "1904-04-04"^^xsd:date; + "Other"; + "Other"; + 6430; + "Actor"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Guest "; + "Guest"; + 644; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Guest "; + "Guest"; + 645; + ; + . + + a ; + ""; + "1907-03-24"^^xsd:date; + "1907-03-24"^^xsd:date; + "1906-10-03"^^xsd:date; + "1906-10-03"^^xsd:date; + "Other"; + "Other"; + 6455; + "Actor"; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Guest "; + "Guest"; + 646; + ; + . + + a ; + ""; + "1907-05-31"^^xsd:date; + "1907-05-31"^^xsd:date; + "1907-05-06"^^xsd:date; + "1907-05-06"^^xsd:date; + "Other"; + "Permanent"; + 6460; + "Actor"; + ; + ; + ; + . + + a ; + ""; + "1907-11-30"^^xsd:date; + "1907-11-30"^^xsd:date; + "1907-08-31"^^xsd:date; + "1907-08-31"^^xsd:date; + "Other"; + "Other"; + 6465; + "Actor"; + ; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 647; + ; + . + + a ; + ""; + "1908-02-17"^^xsd:date; + "1908-03-03"^^xsd:date; + "1908-02-17"^^xsd:date; + "1908-02-17"^^xsd:date; + "Other"; + "Other"; + 6470; + "Actor"; + ; + ; + . + + a ; + "Guest "; + "Guest"; + 648; + ; + . + + a ; + "Guest "; + "Guest"; + 649; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Tour"; + 65; + "Singer"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "Guest "; + "Guest"; + 650; + ; + . + + a ; + "Guest "; + "Guest"; + 651; + ; + . + + a ; + "Guest "; + "Guest"; + 652; + ; + . + + a ; + ""; + "1915-10-31"^^xsd:date; + "1915-10-01"^^xsd:date; + "1915-09-20"^^xsd:date; + "1915-09-20"^^xsd:date; + "Other"; + "Other"; + 6525; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 653; + "Actor"; + ; + ; + . + + a ; + ""; + "1933-05-31"^^xsd:date; + "1922-05-09"^^xsd:date; + "1922-05-08"^^xsd:date; + "1922-05-08"^^xsd:date; + "Other"; + "Other"; + 6535; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 654; + "Actor"; + ; + ; + . + + a ; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "1923"; + "1923-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6540; + "Actor"; + ; + . + + a ; + ""; + "1924-07-05"^^xsd:date; + "1924-07-05"^^xsd:date; + "1924-01-29"^^xsd:date; + "1924-01-29"^^xsd:date; + "Other"; + "Other"; + 6545; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 655; + "Actor"; + ; + ; + . + + a ; + ""; + "1925-06-07"^^xsd:date; + "1925-06-07"^^xsd:date; + "1925-06-01"^^xsd:date; + "1925-06-01"^^xsd:date; + "Other"; + "Other"; + 6550; + "Actor"; + ; + ; + . + + a ; + "1879-04-30"^^xsd:date; + "Tour"; + 656; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 657; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 658; + "Actor"; + ; + ; + . + + a ; + "between May 1869 and June 1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-05-31"^^xsd:date; + "1869-04-01"^^xsd:date; + "Other"; + "Tour"; + 6580; + "Actor"; + ; + ; + . + + a ; + "between May 1869 and December 1869"; + "1869-12-31"^^xsd:date; + "1869-05-01"^^xsd:date; + "1869"; + "1869-06-30"^^xsd:date; + "1869-05-01"^^xsd:date; + "Other"; + "Tour"; + 6585; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 659; + "Actor"; + ; + ; + . + + a ; + "1872"; + "1872-05-04"^^xsd:date; + "1872-05-04"^^xsd:date; + "1872"; + "1872-03-18"^^xsd:date; + "1872-03-18"^^xsd:date; + "Other"; + "Tour"; + 6590; + "Actor"; + ; + ; + . + + a ; + "1872"; + "1872-07-13"^^xsd:date; + "1872-07-13"^^xsd:date; + "1872"; + "1872-07-03"^^xsd:date; + "1872-07-03"^^xsd:date; + "Other"; + "Tour"; + 6595; + "Actor"; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Tour"; + 66; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 660; + "Actor"; + ; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Other"; + "Tour"; + 6600; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Other"; + "Tour"; + 6605; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Other"; + "Tour"; + 6610; + ; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "Other"; + "Tour"; + 6615; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Other"; + "Tour"; + 6620; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Other"; + "Tour"; + 6625; + ; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Other"; + "Tour"; + 6630; + ; + ; + ; + . + + a ; + "1911"; + "1911-12-31"^^xsd:date; + "1911-01-01"^^xsd:date; + "Other"; + "Tour"; + 6635; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Other"; + "Tour"; + 6640; + ; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Other"; + "Tour"; + 6645; + ; + ; + ; + . + + a ; + "Tour"; + 665; + "Director"; + ""; + ; + ; + . + + a ; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Guest"; + "Tour"; + 6650; + "Musician"; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6655; + "Musician"; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "Tour"; + 666; + "Director"; + ; + . + + a ; + "between 1854 and 1855"; + "1854"; + "1854-08-12"^^xsd:date; + "1854-08-12"^^xsd:date; + "Tour"; + "Tour"; + 6660; + "Musician"; + ; + . + + a ; + "between 1854 and 1855"; + "1854-08-12"^^xsd:date; + "1854-08-12"^^xsd:date; + "Tour"; + "Tour"; + 6665; + "Musician"; + ; + . + + a ; + "1823"; + "1823-12-31"^^xsd:date; + "1823-01-01"^^xsd:date; + "Tour"; + 667; + ; + . + + a ; + "between 1855 and 1857"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6670; + "Musician"; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "1857"; + "1857-12-31"^^xsd:date; + "1857-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6675; + "Musician"; + ; + . + + a ; + "Tour"; + 668; + "Director"; + ; + . + + a ; + "between 1872 and 1873"; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6680; + "Musician"; + ; + ; + . + + a ; + "1873"; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6685; + "Musician"; + ; + . + + a ; + "Tour"; + 669; + "Director"; + ; + . + + a ; + "between 1873 and 1874"; + "1873"; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6690; + "Musician"; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6695; + "Musician"; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Tour"; + 67; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 670; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-04-01"^^xsd:date; + "1874"; + "1874-04-30"^^xsd:date; + "1874-04-01"^^xsd:date; + "Tour"; + "Tour"; + 6700; + "Musician"; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-04-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-04-01"^^xsd:date; + "Tour"; + "Tour"; + 6705; + "Musician"; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Tour"; + 671; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-04-01"^^xsd:date; + "Tour"; + "Tour"; + 6710; + "Musician"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6715; + "Musician"; + ; + . + + a ; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Tour"; + 672; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6720; + "Musician"; + ; + . + + a ; + "1875"; + "1875-02-28"^^xsd:date; + "1875-02-01"^^xsd:date; + "Tour"; + "Tour"; + 6725; + "Musician"; + ; + . + + a ; + "May 1834"; + "1834-05-31"^^xsd:date; + "1834-05-01"^^xsd:date; + "Tour"; + 673; + "Director"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-10-01"^^xsd:date; + "1875"; + "1875-10-31"^^xsd:date; + "1875-10-01"^^xsd:date; + "Tour"; + "Tour"; + 6730; + "Musician"; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6735; + "Musician"; + ; + . + + a ; + "May 1834"; + "1834-05-31"^^xsd:date; + "1834-05-01"^^xsd:date; + "Tour"; + 674; + "Director"; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6740; + "Musician"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 6745; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 675; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Other"; + 6750; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "1919"; + "1919-12-31"^^xsd:date; + "1919-01-01"^^xsd:date; + "Other"; + 6755; + "Founder"; + "Manager"; + ; + ; + ; + . + + a ; + "Dezember 1865"; + "1865-12-31"^^xsd:date; + "1865-12-01"^^xsd:date; + "Tour"; + 676; + "Actor"; + ""; + ; + ; + . + + a ; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "1928"; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Other"; + 6760; + "Founder"; + "Manager"; + ; + ; + . + + a ; + "Other"; + 6765; + "Founder"; + "Manager"; + ; + . + + a ; + """Opera singer (old), also actress in play operas +"""; + "Tour"; + 677; + ""; + ; + . + + a ; + "Other"; + "Tour"; + 6770; + "Actor"; + ; + ; + . + + a ; + "Other"; + "Tour"; + 6775; + "Actor"; + ; + . + + a ; + "Tour"; + 678; + "Singer"; + ""; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Other"; + "Tour"; + 6780; + "Actor"; + ; + . + + a ; + "Tour"; + 679; + "Composer"; + ""; + . + + a ; + "1901"; + "1923-01-01"^^xsd:date; + "1901-05-01"^^xsd:date; + "Other"; + "Tour"; + 6790; + "Manager"; + ; + ; + . + + a ; + "Ballett master "; + "Tour"; + 68; + ""; + ; + ; + . + + a ; + "Tour"; + 680; + "Manager"; + ""; + . + + a ; + "1923"; + "1923-12-23"^^xsd:date; + "1923-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 6800; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 681; + "Teacher (Theatre related)"; + ""; + . + + a ; + "1940"; + "1940-11-16"^^xsd:date; + "1940-11-16"^^xsd:date; + "1912"; + "1913-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Other"; + "Tour"; + 6810; + "Founder"; + ; + ; + . + + a ; + "1940"; + "1940-11-16"^^xsd:date; + "1940-11-16"^^xsd:date; + "1923"; + "1924-12-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Other"; + "Tour"; + 6815; + "Founder"; + ; + ; + . + + a ; + "Tour"; + 682; + "debuts"; + ; + . + + a ; + "1940"; + "1940-11-16"^^xsd:date; + "1940-11-16"^^xsd:date; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Other"; + "Tour"; + 6820; + "Manager"; + ; + ; + . + + a ; + "1940"; + "1940-11-16"^^xsd:date; + "1940-11-16"^^xsd:date; + "1934"; + "1934-12-31"^^xsd:date; + "1934-01-01"^^xsd:date; + "Other"; + "Tour"; + 6825; + "Agent"; + ; + ; + . + + a ; + "Tour"; + 683; + "Dancer"; + "Contract with impresario Alessandro Lanari: She danced at La Fenice (Venice) and San Carlo (Neapel)"; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Other"; + "Other"; + 6830; + "Actor"; + "Sourcesay the Academy only existed from 1875 onwards"; + ; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "Other"; + "Other"; + 6835; + "Actor"; + ; + . + + a ; + "Tour"; + 684; + "Dancer"; + "Contract with impresario Alessandro Lanari: She danced at La Fenice (Venice) and San Carlo (Neapel)"; + ; + . + + a ; + "1886"; + "1886-12-31"^^xsd:date; + "1886-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Other"; + "Other"; + 6840; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Other"; + "Other"; + 6845; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 685; + "Dancer"; + "Singer"; + "1834 Grisi Carlotta met Jules Perrot and travelled together with him"; + ; + ; + . + + a ; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "1888"; + "1894-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Other"; + "Other"; + 6850; + "Actor"; + ; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1896"; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Other"; + "Other"; + 6855; + "Actor"; + ; + . + + a ; + "Tour"; + 686; + "Dancer"; + "Singer"; + ""; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Other"; + "Other"; + 6860; + "Actor"; + ; + ; + . + + a ; + "between January 1905 and December 1910"; + "1910-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Other"; + "Other"; + 6865; + "Actor"; + ; + . + + a ; + "Tour"; + 687; + "Dancer"; + "Singer"; + ""; + ; + ; + . + + a ; + "between January 1910 and December 1912"; + "1912-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Other"; + "Other"; + 6870; + "Actor"; + ; + ; + . + + a ; + "between January 1912 and December 1918"; + "1918-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Other"; + "Other"; + 6875; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 688; + "Dancer"; + "Singer"; + ""; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Other"; + "Other"; + 6880; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "1931"; + "1931-12-31"^^xsd:date; + "1931-01-01"^^xsd:date; + "Other"; + "Other"; + 6885; + "Founder"; + ; + ; + . + + a ; + "Tour"; + 689; + "Dancer"; + "Singer"; + "Jules Perrot organized her the job"; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "Guest"; + "Guest"; + 6890; + "Musician"; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Guest"; + "Guest"; + 6895; + "Singer"; + ; + . + + a ; + "Ballett master"; + "Tour"; + 69; + ; + ; + . + + a ; + "Tour"; + 690; + "Dancer"; + "because Fanny Elßler was on tour in North America"; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 6900; + "Singer"; + ; + ; + . + + a ; + "between 1880 and 1883"; + "1883-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 6905; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 691; + "Dancer"; + "yearly in guest appearences"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 6910; + "Singer"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6915; + "Singer"; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "1838"; + "1838-12-31"^^xsd:date; + "1838-01-01"^^xsd:date; + "Guest"; + 692; + "Singer"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6920; + "Singer"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6925; + "Singer"; + ; + . + + a ; + "Guest"; + 693; + "Singer"; + "guest tour"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6930; + "Singer"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6935; + "Singer"; + ; + . + + a ; + "Tour"; + 694; + "Singer"; + "debut with “Romeo” in I Capuleti e i Montecchi "; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1890"; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Other"; + "Other"; + 6940; + "Singer"; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 6945; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 695; + "Singer"; + ""; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Other"; + "Other"; + 6950; + "Musician"; + ; + . + + a ; + "Permanent"; + "Permanent"; + 6955; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "Tour"; + 696; + "Singer"; + "tours to London"; + ; + . + + a ; + "Permanent"; + "Permanent"; + 6960; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6965; + "Actor"; + ; + . + + a ; + "Tour"; + 697; + "Singer"; + ""; + ; + . + + a ; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Other"; + "Other"; + 6970; + "Actor"; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Other"; + "Other"; + 6975; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "Tour"; + 698; + "Singer"; + ""; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Other"; + "Other"; + 6980; + "Actor"; + "Manager"; + ; + ; + . + + a ; + "between 1850 and 1859"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1850"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6985; + "Actor"; + ; + . + + a ; + "Tour"; + 699; + "Singer"; + "Not clear if tour or engagement"; + ; + . + + a ; + "between 1850 and 1859"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1850"; + "1859-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 6990; + "Actor"; + ; + . + + a ; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Other"; + 6995; + "Actor"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 7; + "Singer"; + "Between 1905 and 1907 guest engagements at Berliner Hofoper"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Ballett master"; + "Tour"; + 70; + ; + . + + a ; + "Tour"; + 700; + "Singer"; + "Not clear if tour or engagement"; + ; + . + + a ; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1926"; + "1926-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "Tour"; + 7000; + "Singer"; + ; + ; + . + + a ; + "-"; + "-"; + "Tour"; + 7001; + "Actor"; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "-"; + "Tour"; + 7006; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 701; + "Singer"; + "Not clear if tour or engagement"; + ; + . + + a ; + "24th March 1856"; + "1856-03-24"^^xsd:date; + "Permanent"; + "Permanent"; + 7011; + "Actor"; + ; + ; + . + + a ; + "1858"; + "1858-06-03"^^xsd:date; + "1858-01-01"^^xsd:date; + "20th August 1856"; + "1856-08-20"^^xsd:date; + "Permanent"; + "Permanent"; + 7016; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 702; + "Singer"; + """Not clear if tour or engagement +"""; + ; + . + + a ; + "12th September 1863"; + "1863-09-12"^^xsd:date; + "1863-09-12"^^xsd:date; + "3rd June 1856"; + "1858-06-03"^^xsd:date; + "1858-06-03"^^xsd:date; + "Permanent"; + "Permanent"; + 7021; + "Actor"; + ; + ; + ; + . + + a ; + "1863"; + "1863-11-18"^^xsd:date; + "1863-01-01"^^xsd:date; + "1863"; + "1863-11-18"^^xsd:date; + "1863-01-01"^^xsd:date; + "Tour"; + 7026; + ; + ; + ; + . + + a ; + "Tour"; + 703; + "Singer"; + "Not clear if tour or engagement"; + ; + . + + a ; + "18th November 1863"; + "1864-04-15"^^xsd:date; + "1863-11-18"^^xsd:date; + "18th November 1863"; + "1863-11-18"^^xsd:date; + "1863-11-18"^^xsd:date; + "Tour"; + 7031; + "Actor"; + ; + ; + ; + . + + a ; + "-"; + "16th April 1864"; + "1864-04-16"^^xsd:date; + "1864-04-16"^^xsd:date; + "Tour"; + 7036; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 704; + "Singer"; + "last time she sang on stage (again Romeo)"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 7041; + "Actor"; + ; + ; + ; + . + + a ; + "13th March 1867"; + "1867-03-13"^^xsd:date; + "1867-03-13"^^xsd:date; + "13th May 1865"; + "1865-05-13"^^xsd:date; + "1865-05-13"^^xsd:date; + "Permanent"; + "Permanent"; + 7046; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 705; + "Singer"; + "contract with Impresario Lanari"; + ; + . + + a ; + "-"; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Tour"; + 7051; + "Actor"; + ; + ; + ; + . + + a ; + "beginning of 1868"; + "1868-03-15"^^xsd:date; + "1868-01-01"^^xsd:date; + "6th October 1867"; + "1867-10-06"^^xsd:date; + "1867-10-06"^^xsd:date; + "Tour"; + 7056; + "Actor"; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "Tour"; + 706; + "Singer"; + ; + . + + a ; + "Max. 24th July 1868"; + "1868-07-24"^^xsd:date; + "1868-03-16"^^xsd:date; + "16th March 1868"; + "1868-03-16"^^xsd:date; + "1868-03-16"^^xsd:date; + "Tour"; + 7061; + "Actor"; + ; + ; + . + + a ; + "between 19th March 1869 and 20th April 1870"; + "1870-04-20"^^xsd:date; + "1869-03-19"^^xsd:date; + "25th July 1868"; + "1868-07-25"^^xsd:date; + "1868-07-25"^^xsd:date; + "Permanent"; + "Permanent"; + 7066; + "Actor"; + ; + ; + ; + . + + a ; + "September 1831"; + "1831-09-30"^^xsd:date; + "1831-09-01"^^xsd:date; + "Tour"; + 707; + "Singer"; + ; + . + + a ; + "Max. 27th August 1873"; + "1873-08-27"^^xsd:date; + "1870-04-20"^^xsd:date; + "20th April 1870"; + "1870-04-20"^^xsd:date; + "1870-04-20"^^xsd:date; + "Permanent"; + "Permanent"; + 7071; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max. 1st October 1873"; + "1873-10-01"^^xsd:date; + "1873-08-28"^^xsd:date; + "28th August 1873"; + "1873-08-28"^^xsd:date; + "1873-08-28"^^xsd:date; + "Guest"; + "Guest"; + 7076; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Tour"; + 708; + "Singer"; + ""; + ; + ; + . + + a ; + "Max. 20th November 1873"; + "1873-11-20"^^xsd:date; + "1873-10-01"^^xsd:date; + "1st October 1873"; + "1873-10-01"^^xsd:date; + "1873-10-01"^^xsd:date; + "Guest"; + "Guest"; + 7081; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max 7th December 1873"; + "1873-12-07"^^xsd:date; + "1873-11-20"^^xsd:date; + "20th November 1873"; + "1873-11-20"^^xsd:date; + "1873-11-20"^^xsd:date; + "Guest"; + "Guest"; + 7086; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Tour"; + 709; + "Singer"; + ; + ; + . + + a ; + "Max. 12th October 1874"; + "1874-10-12"^^xsd:date; + "1873-12-07"^^xsd:date; + "7th December 1873"; + "1873-12-07"^^xsd:date; + "1873-12-07"^^xsd:date; + "Permanent"; + "Tour"; + 7091; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max. 10th April 1878"; + "1878-04-10"^^xsd:date; + "1874-10-13"^^xsd:date; + "13th October 1874"; + "1874-10-13"^^xsd:date; + "1874-10-13"^^xsd:date; + "Permanent"; + "Tour"; + 7096; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Ballett master"; + "Tour"; + 71; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 710; + "Singer"; + ; + ; + . + + a ; + "Max. 15th April 1890"; + "1890-04-15"^^xsd:date; + "1890-01-01"^^xsd:date; + "11th April 1878"; + "1878-04-11"^^xsd:date; + "1878-04-11"^^xsd:date; + "Permanent"; + "Tour"; + 7101; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max. 8th June 1890"; + "1890-06-08"^^xsd:date; + "1890-04-22"^^xsd:date; + "22nd April 1890"; + "1890-04-22"^^xsd:date; + "1890-04-22"^^xsd:date; + "Tour"; + "Tour"; + 7106; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Tour"; + 711; + "Singer"; + ; + ; + . + + a ; + "Max. 22nd July 1890"; + "1890-07-22"^^xsd:date; + "1890-06-08"^^xsd:date; + "8th June 1890"; + "1890-06-08"^^xsd:date; + "1890-06-08"^^xsd:date; + "Tour"; + "Tour"; + 7111; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max. 27th September 1890"; + "1890-09-27"^^xsd:date; + "1890-07-22"^^xsd:date; + "22nd July 1890"; + "1890-07-22"^^xsd:date; + "1890-07-22"^^xsd:date; + "Tour"; + "Tour"; + 7116; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Tour"; + 712; + "Singer"; + """Grisi sang together with Marietta Alboni at the openening of Covent Garden Opera in Rossinis Semiramide. +"""; + ; + ; + . + + a ; + "Max. 2nd March 1893"; + "1893-03-02"^^xsd:date; + "1890-10-09"^^xsd:date; + "9th October 1890"; + "1890-10-09"^^xsd:date; + "1890-10-09"^^xsd:date; + "Permanent"; + "Tour"; + 7121; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Max. 17th August 1893"; + "1893-08-17"^^xsd:date; + "1893-03-03"^^xsd:date; + "3rd March 1893"; + "1893-03-03"^^xsd:date; + "1893-03-03"^^xsd:date; + "Permanent"; + "Permanent"; + 7126; + "Director"; + ; + ; + . + + a ; + "Tour"; + 713; + "Singer"; + ; + . + + a ; + "Max. 1st April 1894"; + "1894-04-01"^^xsd:date; + "1893-08-18"^^xsd:date; + "18th August 1893"; + "1893-08-18"^^xsd:date; + "1893-08-18"^^xsd:date; + "Permanent"; + "Permanent"; + 7131; + "Director"; + ; + ; + ; + . + + a ; + "Max. 10th October 1895"; + "1895-10-10"^^xsd:date; + "1894-04-02"^^xsd:date; + "2nd April 1894"; + "1894-04-02"^^xsd:date; + "1894-04-02"^^xsd:date; + "Permanent"; + "Permanent"; + 7136; + "Director"; + "Impresario"; + ; + ; + ; + . + + a ; + "Tour"; + 714; + "Singer"; + "Tours to Northern America in autumn"; + ; + . + + a ; + "between 1st January 1896 and 22nd March 1896"; + "1896-03-22"^^xsd:date; + "1896-01-01"^^xsd:date; + "11th October 1895"; + "1895-10-11"^^xsd:date; + "1895-10-11"^^xsd:date; + "Permanent"; + "Permanent"; + 7141; + "Director"; + ; + ; + ; + . + + a ; + "between 13th and 19th September 1896"; + "1896-09-19"^^xsd:date; + "1896-09-13"^^xsd:date; + "23rd March 1896"; + "1896-03-23"^^xsd:date; + "1896-03-23"^^xsd:date; + "Tour"; + 7146; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 715; + "Singer"; + ""; + ; + . + + a ; + "Max. 27th January 1897"; + "1897-01-27"^^xsd:date; + "1896-09-19"^^xsd:date; + "19th September 1896"; + "1896-09-19"^^xsd:date; + "1896-09-19"^^xsd:date; + "Tour"; + 7151; + "Director"; + ; + ; + ; + . + + a ; + "Max. 30th July 1897"; + "1897-07-30"^^xsd:date; + "1897-01-27"^^xsd:date; + "27th January 1897"; + "1897-01-27"^^xsd:date; + "1897-01-27"^^xsd:date; + "Tour"; + 7156; + ; + ; + ; + . + + a ; + "Tour"; + 716; + "Singer"; + "Tours to Northern America in autumn"; + ; + . + + a ; + "31st July 1897"; + "1897-12-31"^^xsd:date; + "1897-07-31"^^xsd:date; + "31st July 1897"; + "1897-07-31"^^xsd:date; + "1897-07-31"^^xsd:date; + "Tour"; + 7161; + ; + ; + ; + . + + a ; + "between 4th October 1899 and 31st December 1899"; + "1899-12-31"^^xsd:date; + "1899-10-04"^^xsd:date; + "7th August 1899"; + "1899-08-07"^^xsd:date; + "1899-08-07"^^xsd:date; + "Tour"; + 7166; + ; + ; + ; + . + + a ; + "Tour"; + 717; + "Singer"; + ; + . + + a ; + "Tour"; + 718; + "Singer"; + ; + . + + a ; + "Tour"; + 719; + "Singer"; + "Last opera singing"; + ; + . + + a ; + "1874"; + "1874-12-31"^^xsd:date; + "1874-01-01"^^xsd:date; + "regularly guest ballett master"; + "Tour"; + 72; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 720; + "Singer"; + """Staatsoper Unter den Linden, Berlin (first time 2nd september 1859) +Permant engagement 1st january 1860 to death 1865"""; + ; + . + + a ; + "1875-04-05"^^xsd:date; + "Tour"; + 721; + "Actor"; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 722; + "Actor"; + ; + ; + . + + a ; + "1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + 723; + "Actor"; + ; + ; + . + + a ; + "1893"; + "1893-12-31"^^xsd:date; + "1893-01-01"^^xsd:date; + "Tour"; + 724; + "Actor"; + "She was appointed court actress in 1890"; + ; + ; + . + + a ; + "Tour"; + 725; + "Actor"; + ""; + ; + . + + a ; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + 726; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 727; + "Actor"; + ; + . + + a ; + "Tour"; + 728; + "Actor"; + "Bernhard Pollini arranged this"; + ; + . + + a ; + "1997"; + "1997-12-31"^^xsd:date; + "1997-01-01"^^xsd:date; + "Tour"; + 729; + "Actor"; + "She left stage because of marriage with Gustav Geiringer. Nothing known about her after 1902. "; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "ballett director"; + "Tour"; + 73; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "Artistic director"; + "Tour"; + 730; + "He quit in a dispute with the Intendant Friedrich Halm in the autumn of 1867"; + ; + . + + a ; + "Tour"; + 731; + "Director"; + ; + ; + . + + a ; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 7316; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 732; + "Director"; + "Break 1875"; + ; + ; + . + + a ; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 7321; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "18th June 1864"; + "1864-06-18"^^xsd:date; + "1864-06-18"^^xsd:date; + "Permanent"; + "Permanent"; + 7326; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 733; + "Singer"; + ; + . + + a ; + "28th July 1868"; + "1868-07-28"^^xsd:date; + "1868-07-28"^^xsd:date; + "August 1867"; + "1867-08-31"^^xsd:date; + "1867-08-01"^^xsd:date; + "Permanent"; + "Permanent"; + 7331; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Tour"; + 7336; + "Actor"; + "Singer"; + ; + . + + a ; + "Tour"; + 734; + "Singer"; + . + + a ; + "Tour"; + 7341; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "21th December 1870"; + "1870-12-21"^^xsd:date; + "1870-12-21"^^xsd:date; + "Permanent"; + "Permanent"; + 7346; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + 735; + "Singer"; + ; + . + + a ; + "26th October 1871"; + "1871-10-26"^^xsd:date; + "1871-10-26"^^xsd:date; + "Permanent"; + "Permanent"; + 7351; + "Founder"; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + "Tour"; + 7356; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "1865"; + "1865-09-30"^^xsd:date; + "1865-09-01"^^xsd:date; + "Tour"; + 736; + "Impresario"; + "He joined an Italian opera company in the autumn of , becoming its impresario. This marked the beginning of his career as one of the most important opera directors of his era."; + ; + . + + a ; + "Middle of March 1872"; + "1872-03-16"^^xsd:date; + "1872-03-10"^^xsd:date; + "Tour"; + "Tour"; + 7361; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "19th March 1872"; + "1872-03-19"^^xsd:date; + "1872-03-19"^^xsd:date; + "Tour"; + "Tour"; + 7366; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 737; + "Director"; + ; + . + + a ; + "24th March 1872"; + "1872-03-30"^^xsd:date; + "1872-03-24"^^xsd:date; + "Tour"; + "Tour"; + 7371; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "14th October 1872"; + "1872-10-14"^^xsd:date; + "1872-10-14"^^xsd:date; + "Permanent"; + "Permanent"; + 7376; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 738; + "Impresario"; + "Impresario of the Italian Opera, 1867 (for some years), Sankt Petersburg and Moskau"; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Tour"; + "Tour"; + 7381; + ; + . + + a ; + "16th January 1873"; + "1873-01-16"^^xsd:date; + "1873-01-16"^^xsd:date; + "Tour"; + "Tour"; + 7386; + ; + ; + ; + . + + a ; + "Tour"; + 739; + "Director"; + ; + ; + . + + a ; + "10th February 1873"; + "1873-03-14"^^xsd:date; + "1873-02-10"^^xsd:date; + "Tour"; + "Tour"; + 7391; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "14th March 1873"; + "1873-03-14"^^xsd:date; + "1873-03-14"^^xsd:date; + "Tour"; + "Tour"; + 7396; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 74; + "Dancer"; + ""; + ; + ; + . + + a ; + "Tour"; + 740; + "Director"; + "From 1876 additional Stadttheater Altona "; + ; + . + + a ; + "17th 03 1873"; + "1873-03-17"^^xsd:date; + "1873-03-17"^^xsd:date; + "Tour"; + "Tour"; + 7401; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "24th March 1873"; + "1873-03-24"^^xsd:date; + "1873-03-24"^^xsd:date; + "Tour"; + "Tour"; + 7406; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 741; + "Director"; + """And from 1894 additional Thalia Theater. +He presented opera four times a week, drama twice, operetta or ballet once and was so successful that he achieved full houses and handsome surpluses. He staged 175 premieres, 51 of them world premieres, and continued as opera director until his death."""; + ; + ; + . + + a ; + "1st April 1873"; + "1873-04-01"^^xsd:date; + "1873-04-01"^^xsd:date; + "Tour"; + "Tour"; + 7411; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "14th April 1873"; + "1873-04-14"^^xsd:date; + "1873-04-14"^^xsd:date; + "Guest"; + "Guest"; + 7416; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 742; + "Actor"; + ; + ; + . + + a ; + "8th May 1873"; + "1873-05-08"^^xsd:date; + "1873-05-08"^^xsd:date; + "Guest"; + "Guest"; + 7421; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "17th June 1876"; + "1876-06-17"^^xsd:date; + "1876-06-17"^^xsd:date; + "12th June 1876"; + "1876-06-12"^^xsd:date; + "1876-06-12"^^xsd:date; + "Guest"; + "Guest"; + 7426; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 743; + "Actor"; + ; + . + + a ; + "26th October 1876"; + "1876-10-26"^^xsd:date; + "1876-10-26"^^xsd:date; + "23th October 1876"; + "1876-10-23"^^xsd:date; + "1876-10-23"^^xsd:date; + "Guest"; + "Guest"; + 7431; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Bteween 12th May and 18th June 1877"; + "1877-06-18"^^xsd:date; + "1877-05-12"^^xsd:date; + "29th January 1877"; + "1877-01-29"^^xsd:date; + "1877-01-29"^^xsd:date; + "Permanent"; + "Permanent"; + 7436; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 744; + "Actor"; + "Prompter"; + "where Schumann followed a bigger opera company, he worked in speaking roles in opera and as an souffleur"; + ; + ; + . + + a ; + "4th November 1877"; + "1877-11-04"^^xsd:date; + "1877-11-04"^^xsd:date; + "28th October 1877"; + "1877-10-28"^^xsd:date; + "1877-10-28"^^xsd:date; + "Guest"; + "Guest"; + 7441; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "21th April 1878"; + "1878-04-21"^^xsd:date; + "1878-04-21"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-12-01"^^xsd:date; + "Tour"; + "Tour"; + 7446; + "Actor"; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 745; + "Actor"; + ; + . + + a ; + "7th June 1878"; + "1878-06-07"^^xsd:date; + "1878-06-07"^^xsd:date; + "1878-04-21"^^xsd:date; + "1878-04-21"^^xsd:date; + "Guest"; + "Guest"; + 7451; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "June 1879"; + "1879-06-02"^^xsd:date; + "1879-06-09"^^xsd:date; + "1879-06-02"^^xsd:date; + "1879-06-02"^^xsd:date; + "Guest"; + "Guest"; + 7456; + "Actor"; + "Singer"; + ; + ; + ; + . + + a ; + "Tour"; + 746; + "Actor"; + ; + . + + a ; + "-"; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 7461; + ; + ; + . + + a ; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "1852"; + "1852-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "Permanent"; + "Permanent"; + 7466; + ; + . + + a ; + "Tour"; + 747; + "Director"; + "which was combined with the theatre in Triest"; + ; + . + + a ; + "-"; + "22nd July 1856"; + "1856-07-22"^^xsd:date; + "Permanent"; + "Permanent"; + 7471; + ; + ; + ; + . + + a ; + "-"; + "1st November 1858"; + "1858-11-01"^^xsd:date; + "1858-11-01"^^xsd:date; + "Tour"; + 7476; + ; + ; + ; + . + + a ; + "Tour"; + 748; + "Director"; + "Theatre director, Laibach (which was combined with the theatre in Triest)"; + ; + . + + a ; + "-"; + "4th September 1859"; + "1859-09-04"^^xsd:date; + "1859-09-04"^^xsd:date; + "Tour"; + 7481; + ; + ; + . + + a ; + "21st October 1859"; + "1859-10-21"^^xsd:date; + "1859-10-21"^^xsd:date; + "1859"; + "1859-09-28"^^xsd:date; + "1859-09-28"^^xsd:date; + "Tour"; + 7486; + ; + ; + . + + a ; + "Tour"; + 749; + "Director"; + "Count Skarbek wanted him for this position"; + ; + . + + a ; + "4th August 1860"; + "1860-08-04"^^xsd:date; + "1860-08-04"^^xsd:date; + "1st January 1860"; + "1860-01-01"^^xsd:date; + "1860-01-01"^^xsd:date; + "Tour"; + 7491; + "Founder"; + "Founder"; + ; + ; + ; + . + + a ; + "July 1860"; + "1860-07-31"^^xsd:date; + "1860-07-01"^^xsd:date; + "February 1860"; + "1860-02-19"^^xsd:date; + "1860-02-01"^^xsd:date; + "Tour"; + 7496; + "Founder"; + "Actor"; + ; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 75; + "Dancer"; + ; + . + + a ; + "Tour"; + 750; + ; + . + + a ; + "30th June 1860"; + "1860-06-30"^^xsd:date; + "1860-06-30"^^xsd:date; + "June 1860"; + "1860-06-30"^^xsd:date; + "1860-06-01"^^xsd:date; + "Tour"; + "Tour"; + 7501; + ; + ; + . + + a ; + "-"; + "1860"; + "1860-12-31"^^xsd:date; + "1860-05-12"^^xsd:date; + "Guest"; + "Guest"; + 7506; + ; + ; + ; + . + + a ; + "Tour"; + 751; + . + + a ; + "-"; + "1861-12-31"^^xsd:date; + "1860 - 1861"; + "1860-01-01"^^xsd:date; + "Tour"; + "Tour"; + 7511; + ; + ; + ; + . + + a ; + "-"; + "1861"; + "1861-01-17"^^xsd:date; + "1861-01-16"^^xsd:date; + "Tour"; + "Tour"; + 7516; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 752; + ; + . + + a ; + "-"; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Tour"; + "Tour"; + 7521; + "Actor"; + ; + ; + . + + a ; + "-"; + "1861"; + "1861-12-31"^^xsd:date; + "1861-01-01"^^xsd:date; + "Guest"; + "Guest"; + 7526; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 753; + "he changed for political reasons from Lemberg to Laibach"; + ; + . + + a ; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 7531; + "Director"; + "Singer"; + ; + ; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1863"; + "1863-12-31"^^xsd:date; + "1863-01-01"^^xsd:date; + "Guest"; + 7536; + "Director"; + ; + ; + ; + . + + a ; + "Tour"; + 754; + "he changed for political reasons from Lemberg to Laibach"; + ; + . + + a ; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Tour"; + 7541; + "Director"; + ; + ; + ; + . + + a ; + "1866"; + "1866-12-31"^^xsd:date; + "1866-01-01"^^xsd:date; + "1864"; + "1864-12-31"^^xsd:date; + "1864-01-01"^^xsd:date; + "Tour"; + 7546; + "Actor"; + ; + ; + ; + . + + a ; + "Tour"; + 755; + "Director"; + ; + ; + . + + a ; + "1858"; + "1858-12-31"^^xsd:date; + "1858-01-01"^^xsd:date; + "Tour"; + 756; + "Director"; + ; + . + + a ; + "1864-03-18"^^xsd:date; + "1864-03-18"^^xsd:date; + "Tour"; + 757; + "Director"; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 758; + "Director"; + "after a stroke he retired into private life"; + ; + . + + a ; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "1872"; + "1872-12-31"^^xsd:date; + "1872-01-01"^^xsd:date; + "Permanent"; + 759; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 76; + "Dancer"; + ; + . + + a ; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-08-01"^^xsd:date; + "Tour"; + 761; + "Actor"; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Permanent"; + 762; + "Actor"; + ; + . + + a ; + "1870"; + "1874-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Permanent"; + 763; + "Actor"; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "study"; + "Tour"; + 764; + "chemistry at the Technical University of Karlsruhe"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + 765; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Tour"; + 766; + ; + ; + . + + a ; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Tour"; + 767; + ; + ; + . + + a ; + "1915"; + "1915-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "Tour"; + 768; + "working with Max Reinhardt"; + ; + ; + . + + a ; + "Engagement"; + "Tour"; + 769; + ; + ; + . + + a ; + "Tour"; + 77; + "Dancer"; + ""; + ; + . + + a ; + "Tour"; + 771; + ; + ; + . + + a ; + "Tour"; + 772; + ; + ; + . + + a ; + "Tour"; + 773; + ; + . + + a ; + "Tour"; + 774; + ; + ; + . + + a ; + "Tour"; + 775; + ; + ; + . + + a ; + "engagement"; + "Tour"; + 776; + "Als 1934 ein Gastspiel in Leipzig von der Reichstheaterkammer wegen ihrer jüdischen Abstammung verboten wurde, erklärte ihr Ehemann seinen Austritt aus dieser Organisation."; + ; + . + + a ; + "Guest"; + "Tour"; + 777; + ; + . + + a ; + "Guest "; + "Tour"; + 778; + ""; + ; + . + + a ; + "Tour"; + 779; + "Sie ging nach Albert Bassermanns Tod 1953 für zwei Jahre an das Stadttheater Göttingen"; + ; + ; + . + + a ; + "Tour"; + 78; + "Dancer"; + ; + . + + a ; + "Tour"; + 780; + "Actor"; + "Max Reinhardts Deutschem Theater"; + ; + ; + . + + a ; + "Tour"; + 781; + . + + a ; + "Tour"; + 782; + ; + . + + a ; + "Tour"; + 783; + ; + . + + a ; + "Tour"; + 784; + ; + . + + a ; + "Tour"; + 785; + "Kortner erfolgreich bei dem Schauspiellehrer Ferdinand Gregori, Vorsprechen, Wiener Akademie für Musik und Darstellende Kunst"; + ; + ; + . + + a ; + "Engagement"; + "Tour"; + 786; + ; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Engagenemt"; + "Tour"; + 787; + "mit Max Reinhardt"; + ; + ; + . + + a ; + "1913"; + "1913-05-31"^^xsd:date; + "1913-05-01"^^xsd:date; + "Tour"; + 788; + "Berthold Viertel engagiert Kortner an die Wiener Volksbühne"; + ; + . + + a ; + "1947"; + "1947-12-31"^^xsd:date; + "1947-01-01"^^xsd:date; + "Tour"; + 789; + "Einladung von Wolfgang Langhoff nach Berlin"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 79; + "Dancer"; + ; + . + + a ; + "Tour"; + 790; + ; + ; + . + + a ; + "1915"; + "1915-10-31"^^xsd:date; + "1915-10-01"^^xsd:date; + "Tour"; + 791; + ; + ; + . + + a ; + "Tour"; + 792; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 793; + ; + . + + a ; + "Tour"; + 794; + ; + . + + a ; + "Tour"; + 795; + . + + a ; + "Tour"; + 796; + ; + . + + a ; + "Studium der Dramatischen Künste"; + "Tour"; + 797; + ; + . + + a ; + "1921"; + "1921-12-31"^^xsd:date; + "1921-01-01"^^xsd:date; + "Writer, Actor, Producer"; + "Tour"; + 798; + ; + ; + . + + a ; + "1929"; + "1929-12-31"^^xsd:date; + "1929-01-01"^^xsd:date; + "Producer"; + "Tour"; + 799; + "Other"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Tour"; + 8; + "Singer"; + ""; + ; + ; + . + + a ; + "Tour"; + 80; + "Dancer"; + ; + . + + a ; + "1948"; + "1948-12-31"^^xsd:date; + "1948-01-01"^^xsd:date; + "Producer"; + "Tour"; + 800; + "Director"; + ; + . + + a ; + "1878 till 1879"; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1878 till 1879"; + "1879-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Other"; + "Other"; + 8070; + "Actor"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "1882"; + "1882-12-31"^^xsd:date; + "1882-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8080; + "Actor"; + ; + ; + ; + . + + a ; + "1887"; + "1887-04-25"^^xsd:date; + "1887-04-25"^^xsd:date; + "1887"; + "1887-04-25"^^xsd:date; + "1887-04-25"^^xsd:date; + "Other"; + "Other"; + 8085; + "Actor"; + ; + ; + ; + . + + a ; + "between October and December 1887"; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "between October and December 1887"; + "1887-12-31"^^xsd:date; + "1887-10-01"^^xsd:date; + "Other"; + "Other"; + 8090; + "Actor"; + ; + ; + ; + . + + a ; + "1888"; + "1888-10-29"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-10-29"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8095; + "Actor"; + ; + . + + a ; + "Tour"; + 81; + "Dancer"; + ; + . + + a ; + "1888"; + "1888-10-29"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-10-29"^^xsd:date; + "1888-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8100; + "Actor"; + ; + . + + a ; + "1888"; + "1888-11-06"^^xsd:date; + "1888-10-29"^^xsd:date; + "1888"; + "1888-10-29"^^xsd:date; + "1888-10-29"^^xsd:date; + "Tour"; + "Tour"; + 8105; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-03"^^xsd:date; + "1888-11-06"^^xsd:date; + "1888"; + "1888-11-06"^^xsd:date; + "1888-11-06"^^xsd:date; + "Tour"; + "Tour"; + 8110; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-03"^^xsd:date; + "1888-11-06"^^xsd:date; + "1888"; + "1888-12-03"^^xsd:date; + "1888-11-06"^^xsd:date; + "Tour"; + "Tour"; + 8115; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-03"^^xsd:date; + "1888-12-03"^^xsd:date; + "Tour"; + "Tour"; + 8120; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8125; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8130; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8135; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8140; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8145; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8150; + "Actor"; + ; + . + + a ; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "1888"; + "1888-12-28"^^xsd:date; + "1888-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8155; + "Actor"; + ; + . + + a ; + "1888 till 1889"; + "1889-01-31"^^xsd:date; + "1888-12-28"^^xsd:date; + "1888 till 1889"; + "1889-01-31"^^xsd:date; + "1888-12-28"^^xsd:date; + "Tour"; + "Tour"; + 8160; + "Actor"; + ; + . + + a ; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8165; + "Actor"; + ; + . + + a ; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8170; + "Actor"; + ; + . + + a ; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8175; + "Actor"; + ; + . + + a ; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "1888 till 1889"; + "1889-02-11"^^xsd:date; + "1888-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8180; + "Actor"; + ; + . + + a ; + "1889"; + "1889-02-21"^^xsd:date; + "1889-02-11"^^xsd:date; + "1889"; + "1889-02-11"^^xsd:date; + "1889-02-11"^^xsd:date; + "Tour"; + "Tour"; + 8185; + "Actor"; + ; + . + + a ; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889"; + "1889-02-21"^^xsd:date; + "1889-02-21"^^xsd:date; + "Tour"; + "Tour"; + 8190; + "Actor"; + ; + . + + a ; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "Tour"; + "Tour"; + 8195; + "Actor"; + ; + . + + a ; + "Tour"; + 82; + "Dancer"; + ; + . + + a ; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "Tour"; + "Tour"; + 8200; + "Actor"; + ; + . + + a ; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "1889"; + "1889-06-20"^^xsd:date; + "1889-02-21"^^xsd:date; + "Tour"; + "Tour"; + 8205; + "Actor"; + ; + . + + a ; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "Tour"; + "Tour"; + 8210; + "Actor"; + ; + . + + a ; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "Tour"; + "Tour"; + 8215; + "Actor"; + ; + . + + a ; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "1889 till 1890"; + "1890-02-01"^^xsd:date; + "1889-06-21"^^xsd:date; + "Tour"; + "Tour"; + 8220; + "Actor"; + ; + . + + a ; + "1890"; + "1890-04-30"^^xsd:date; + "1890-04-01"^^xsd:date; + "1890"; + "1890-02-28"^^xsd:date; + "1890-02-01"^^xsd:date; + "Tour"; + "Tour"; + 8225; + "Actor"; + ; + ; + . + + a ; + "1890"; + "1890-06-20"^^xsd:date; + "1890-04-01"^^xsd:date; + "1890"; + "1890-06-20"^^xsd:date; + "1890-04-01"^^xsd:date; + "Tour"; + "Tour"; + 8230; + "Actor"; + ; + . + + a ; + "September till October 1890"; + "1890-10-10"^^xsd:date; + "1890-09-01"^^xsd:date; + "September 1890"; + "1890-09-30"^^xsd:date; + "1890-09-01"^^xsd:date; + "Tour"; + "Tour"; + 8235; + "Actor"; + ; + ; + . + + a ; + "November 1890 till May 1891"; + "1891-05-31"^^xsd:date; + "1890-11-01"^^xsd:date; + "October 1890"; + "1890-10-31"^^xsd:date; + "1890-10-01"^^xsd:date; + "Tour"; + "Tour"; + 8240; + "Actor"; + ; + . + + a ; + "April 1893"; + "1893-04-30"^^xsd:date; + "1893-04-01"^^xsd:date; + "April 1893"; + "1893-04-30"^^xsd:date; + "1893-04-01"^^xsd:date; + "Tour"; + "Tour"; + 8245; + "Actor"; + ; + . + + a ; + "September 1894"; + "1894-09-30"^^xsd:date; + "1894-09-01"^^xsd:date; + "September 1894"; + "1894-09-30"^^xsd:date; + "1894-09-01"^^xsd:date; + "Tour"; + "Tour"; + 8250; + "Actor"; + ; + . + + a ; + "September 1894 till December 1895"; + "1895-12-31"^^xsd:date; + "1894-09-01"^^xsd:date; + "September 1894 till December 1895"; + "1895-12-31"^^xsd:date; + "1894-09-01"^^xsd:date; + "Other"; + "Other"; + 8255; + "Actor"; + ; + ; + . + + a ; + "1894"; + "1894-11-30"^^xsd:date; + "1894-11-30"^^xsd:date; + "1894"; + "1894-11-30"^^xsd:date; + "1894-11-30"^^xsd:date; + "Tour"; + "Tour"; + 8260; + "Actor"; + ; + . + + a ; + "1895 till 1896"; + "1896-03-09"^^xsd:date; + "1895-12-01"^^xsd:date; + "1895"; + "1895-12-31"^^xsd:date; + "1895-12-01"^^xsd:date; + "Tour"; + "Tour"; + 8265; + "Actor"; + ; + . + + a ; + "1895 till 1896"; + "1896-03-09"^^xsd:date; + "1895-12-01"^^xsd:date; + "1895 till 1896"; + "1896-03-09"^^xsd:date; + "1895-12-01"^^xsd:date; + "Tour"; + "Tour"; + 8270; + "Actor"; + ; + . + + a ; + "1896"; + "1896-03-31"^^xsd:date; + "1896-03-09"^^xsd:date; + "1896"; + "1896-03-09"^^xsd:date; + "1896-03-09"^^xsd:date; + "Other"; + "Other"; + 8275; + "Actor"; + ; + ; + . + + a ; + "1896"; + "1896-09-30"^^xsd:date; + "1896-09-07"^^xsd:date; + "1896"; + "1896-09-07"^^xsd:date; + "1896-09-07"^^xsd:date; + "Tour"; + "Tour"; + 8280; + "Actor"; + ; + ; + . + + a ; + "1896"; + "1896-10-14"^^xsd:date; + "1896-10-14"^^xsd:date; + "1896"; + "1896-10-14"^^xsd:date; + "1896-10-14"^^xsd:date; + "Tour"; + "Tour"; + 8285; + "Actor"; + ; + . + + a ; + "1896"; + "1896-12-23"^^xsd:date; + "1896-12-08"^^xsd:date; + "1896"; + "1896-12-07"^^xsd:date; + "1896-12-07"^^xsd:date; + "Tour"; + "Tour"; + 8290; + "Actor"; + ; + . + + a ; + "1896"; + "1896-12-24"^^xsd:date; + "1896-12-24"^^xsd:date; + "1896"; + "1896-12-24"^^xsd:date; + "1896-12-24"^^xsd:date; + "Tour"; + "Tour"; + 8295; + "Actor"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Tour"; + 83; + "Dancer"; + ; + . + + a ; + "Tour"; + 830; + "start stage career"; + ; + ; + . + + a ; + "1896"; + "1896-12-28"^^xsd:date; + "1896-12-28"^^xsd:date; + "1896"; + "1896-12-28"^^xsd:date; + "1896-12-28"^^xsd:date; + "Tour"; + "Tour"; + 8300; + "Actor"; + ; + . + + a ; + "1897"; + "1897-01-12"^^xsd:date; + "1897-01-12"^^xsd:date; + "1897"; + "1897-01-07"^^xsd:date; + "1897-01-07"^^xsd:date; + "Tour"; + "Tour"; + 8305; + "Actor"; + ; + . + + a ; + "1897"; + "1897-01-25"^^xsd:date; + "1897-01-25"^^xsd:date; + "1897"; + "1897-01-25"^^xsd:date; + "1897-01-25"^^xsd:date; + "Tour"; + "Tour"; + 8310; + "Actor"; + ; + . + + a ; + "1897"; + "1897-02-01"^^xsd:date; + "1897-02-01"^^xsd:date; + "1897"; + "1897-02-01"^^xsd:date; + "1897-02-01"^^xsd:date; + "Tour"; + "Tour"; + 8315; + "Actor"; + ; + . + + a ; + "1897"; + "1897-03-31"^^xsd:date; + "1897-03-08"^^xsd:date; + "1897"; + "1897-03-08"^^xsd:date; + "1897-03-08"^^xsd:date; + "Tour"; + "Tour"; + 8320; + "Actor"; + ; + . + + a ; + "1897"; + "1897-03-31"^^xsd:date; + "1897-03-08"^^xsd:date; + "1897"; + "1897-03-31"^^xsd:date; + "1897-03-08"^^xsd:date; + "Tour"; + "Tour"; + 8325; + "Actor"; + ; + . + + a ; + "Tour"; + 833; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8330; + "Actor"; + ; + . + + a ; + "1902"; + "1902-10-31"^^xsd:date; + "1902-06-21"^^xsd:date; + "1902"; + "1902-10-31"^^xsd:date; + "1902-06-21"^^xsd:date; + "Tour"; + "Tour"; + 8335; + "Actor"; + ; + . + + a ; + "1902"; + "1902-11-30"^^xsd:date; + "1902-09-22"^^xsd:date; + "1902"; + "1902-11-30"^^xsd:date; + "1902-09-22"^^xsd:date; + "Tour"; + "Tour"; + 8340; + "Actor"; + ; + . + + a ; + "1902"; + "1902-11-30"^^xsd:date; + "1902-09-22"^^xsd:date; + "1902"; + "1902-11-30"^^xsd:date; + "1902-09-22"^^xsd:date; + "Tour"; + "Tour"; + 8345; + "Actor"; + ; + . + + a ; + "1902"; + "1902-12-13"^^xsd:date; + "1902-12-13"^^xsd:date; + "1902"; + "1902-12-13"^^xsd:date; + "1902-12-13"^^xsd:date; + "Tour"; + "Tour"; + 8350; + "Actor"; + ; + . + + a ; + "1903 till 1905"; + "1905-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "1903 till 1905"; + "1905-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Other"; + "Other"; + 8355; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 836; + ; + . + + a ; + "1904"; + "1904-10-10"^^xsd:date; + "1904-10-10"^^xsd:date; + "1904"; + "1904-09-19"^^xsd:date; + "1904-09-19"^^xsd:date; + "Tour"; + "Tour"; + 8360; + "Actor"; + ; + ; + . + + a ; + "1904"; + "1904-10-31"^^xsd:date; + "1904-10-15"^^xsd:date; + "1904"; + "1904-10-15"^^xsd:date; + "1904-10-10"^^xsd:date; + "Tour"; + "Tour"; + 8365; + "Actor"; + ; + ; + ; + . + + a ; + "1905"; + "1905-10-16"^^xsd:date; + "1905-09-18"^^xsd:date; + "1905"; + "1905-09-18"^^xsd:date; + "1905-09-18"^^xsd:date; + "Tour"; + "Tour"; + 8370; + "Actor"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "1905"; + "1905-10-16"^^xsd:date; + "1905-10-16"^^xsd:date; + "Tour"; + "Tour"; + 8375; + "Actor"; + ; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "Tour"; + "Tour"; + 8380; + "Actor"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "Tour"; + "Tour"; + 8385; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 839; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-10-16"^^xsd:date; + "Tour"; + "Tour"; + 8390; + "Actor"; + ; + ; + . + + a ; + "1906 till 1907"; + "1907-01-05"^^xsd:date; + "1906-10-15"^^xsd:date; + "1906"; + "1906-10-15"^^xsd:date; + "1906-10-15"^^xsd:date; + "Tour"; + "Tour"; + 8395; + "Actor"; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + "Tour"; + 84; + ; + . + + a ; + "1906 till 1907"; + "1907-01-05"^^xsd:date; + "1906-10-15"^^xsd:date; + "1906 till 1907"; + "1907-01-05"^^xsd:date; + "1906-10-15"^^xsd:date; + "Tour"; + "Tour"; + 8400; + "Actor"; + ; + . + + a ; + "1906 till 1907"; + "1907-01-05"^^xsd:date; + "1906-10-15"^^xsd:date; + "1906 till 1907"; + "1907-01-05"^^xsd:date; + "1906-10-15"^^xsd:date; + "Tour"; + "Tour"; + 8405; + "Actor"; + ; + . + + a ; + "1907"; + "1907-01-31"^^xsd:date; + "1907-01-06"^^xsd:date; + "1907"; + "1907-01-06"^^xsd:date; + "1907-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8410; + "Actor"; + ; + . + + a ; + "1907"; + "1907-03-29"^^xsd:date; + "1907-01-06"^^xsd:date; + "1907"; + "1907-01-31"^^xsd:date; + "1907-01-06"^^xsd:date; + "Tour"; + "Tour"; + 8415; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 842; + ; + . + + a ; + "1907"; + "1907-05-31"^^xsd:date; + "1907-04-22"^^xsd:date; + "1907"; + "1907-04-22"^^xsd:date; + "1907-04-22"^^xsd:date; + "Tour"; + "Tour"; + 8420; + "Actor"; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-12-26"^^xsd:date; + "1908"; + "1908-12-26"^^xsd:date; + "1908-12-26"^^xsd:date; + "Tour"; + "Tour"; + 8425; + "Actor"; + ; + ; + . + + a ; + "1909"; + "1909-11-07"^^xsd:date; + "1909-02-16"^^xsd:date; + "1909"; + "1909-02-15"^^xsd:date; + "1909-02-15"^^xsd:date; + "Tour"; + "Tour"; + 8430; + "Actor"; + ; + . + + a ; + "1910"; + "1910-11-03"^^xsd:date; + "1909-11-08"^^xsd:date; + "1910"; + "1909-11-08"^^xsd:date; + "1909-11-08"^^xsd:date; + "Tour"; + "Tour"; + 8435; + "Actor"; + ; + ; + . + + a ; + "1910"; + "1910-11-13"^^xsd:date; + "1910-11-05"^^xsd:date; + "1910"; + "1910-11-04"^^xsd:date; + "1910-11-04"^^xsd:date; + "Tour"; + "Tour"; + 8440; + "Actor"; + ; + . + + a ; + "1910 till 1911"; + "1911-01-09"^^xsd:date; + "1910-11-15"^^xsd:date; + "1910 till 1911"; + "1910-11-14"^^xsd:date; + "1910-11-14"^^xsd:date; + "Tour"; + "Tour"; + 8445; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 845; + ; + . + + a ; + "1910 till 1911"; + "1911-01-09"^^xsd:date; + "1910-11-15"^^xsd:date; + "1910 till 1911"; + "1911-01-09"^^xsd:date; + "1910-11-15"^^xsd:date; + "Tour"; + "Tour"; + 8450; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-01-10"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8455; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8460; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8465; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8470; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8475; + "Actor"; + ; + . + + a ; + "Tour"; + 848; + ; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8480; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8485; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8490; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8495; + "Actor"; + ; + . + + a ; + "Tour"; + "Tour"; + 85; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8500; + "Actor"; + ; + . + + a ; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "1911"; + "1911-07-31"^^xsd:date; + "1911-01-10"^^xsd:date; + "Tour"; + "Tour"; + 8505; + "Actor"; + ; + . + + a ; + "1920"; + "1920-12-31"^^xsd:date; + "1920-01-01"^^xsd:date; + "Tour"; + 851; + "met with others (see Relationships)"; + ; + . + + a ; + "1911"; + "1911-11-05"^^xsd:date; + "1911-10-30"^^xsd:date; + "1911"; + "1911-10-30"^^xsd:date; + "1911-10-30"^^xsd:date; + "Tour"; + "Tour"; + 8510; + "Actor"; + ; + ; + . + + a ; + "1911 till 1912"; + "1912-05-13"^^xsd:date; + "1911-11-06"^^xsd:date; + "1911"; + "1911-11-06"^^xsd:date; + "1911-11-06"^^xsd:date; + "Tour"; + "Tour"; + 8515; + "Actor"; + ; + ; + . + + a ; + "1912"; + "1912-06-30"^^xsd:date; + "1912-05-15"^^xsd:date; + "1912"; + "1912-05-14"^^xsd:date; + "1912-05-14"^^xsd:date; + "Tour"; + "Tour"; + 8520; + "Actor"; + ; + ; + . + + a ; + "1912"; + "1912-06-30"^^xsd:date; + "1912-05-15"^^xsd:date; + "1912"; + "1912-06-30"^^xsd:date; + "1912-05-15"^^xsd:date; + "Tour"; + "Tour"; + 8525; + "Actor"; + ; + . + + a ; + "1912"; + "1912-09-22"^^xsd:date; + "1912-05-15"^^xsd:date; + "1912"; + "1912-06-30"^^xsd:date; + "1912-05-15"^^xsd:date; + "Tour"; + "Tour"; + 8530; + "Actor"; + ; + . + + a ; + "1912 till 1913"; + "1913-06-11"^^xsd:date; + "1912-09-23"^^xsd:date; + "1912 till 1913"; + "1913-06-11"^^xsd:date; + "1912-09-23"^^xsd:date; + "Tour"; + "Tour"; + 8535; + "Actor"; + ; + . + + a ; + "Tour"; + 854; + "contract with Paramount Pictures"; + ; + . + + a ; + "1912 till 1913"; + "1913-06-11"^^xsd:date; + "1912-09-23"^^xsd:date; + "1912 till 1913"; + "1913-06-11"^^xsd:date; + "1912-09-23"^^xsd:date; + "Tour"; + "Tour"; + 8540; + "Actor"; + ; + . + + a ; + "1913 Summer"; + "1913-09-21"^^xsd:date; + "1913-06-12"^^xsd:date; + "1913 Summer"; + "1913-09-21"^^xsd:date; + "1913-06-12"^^xsd:date; + "Tour"; + "Tour"; + 8545; + "Actor"; + ; + . + + a ; + "between October and December 1913"; + "1913-12-31"^^xsd:date; + "1913-10-01"^^xsd:date; + "between October and December 1913"; + "1913-12-31"^^xsd:date; + "1913-10-01"^^xsd:date; + "Tour"; + "Tour"; + 8550; + "Actor"; + ; + . + + a ; + "between October and December 1913"; + "1913-12-31"^^xsd:date; + "1913-10-01"^^xsd:date; + "between October and December 1913"; + "1913-12-31"^^xsd:date; + "1913-10-01"^^xsd:date; + "Tour"; + "Tour"; + 8555; + "Actor"; + ; + . + + a ; + "January 1914"; + "1914-01-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "January 1914"; + "1914-01-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8560; + "Actor"; + ; + . + + a ; + "1919 Summer"; + "1919-09-22"^^xsd:date; + "1919-06-21"^^xsd:date; + "1919-09-22"^^xsd:date; + "1919-06-21"^^xsd:date; + "Tour"; + "Tour"; + 8565; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 857; + "continued carrer in the service of nazi cinema"; + ; + . + + a ; + "1921 Spring"; + "1921-06-20"^^xsd:date; + "1921-03-21"^^xsd:date; + "1921-06-20"^^xsd:date; + "1921-03-21"^^xsd:date; + "Tour"; + "Tour"; + 8570; + "Actor"; + ; + ; + . + + a ; + "1921"; + "1921-11-28"^^xsd:date; + "1921-11-28"^^xsd:date; + "1921"; + "1921-11-26"^^xsd:date; + "1921-11-26"^^xsd:date; + "Tour"; + "Tour"; + 8575; + "Actor"; + ; + ; + . + + a ; + "January 1923"; + "1923-01-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "January 1923"; + "1923-01-31"^^xsd:date; + "1923-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8580; + "Actor"; + ; + . + + a ; + "between October 1923 and September 1924"; + "1924-09-30"^^xsd:date; + "1923-10-01"^^xsd:date; + "between October 1923 and September 1924"; + "1924-09-30"^^xsd:date; + "1923-10-01"^^xsd:date; + "Tour"; + "Tour"; + 8585; + "Actor"; + ; + . + + a ; + "1921 Spring"; + "1921-06-20"^^xsd:date; + "1921-03-21"^^xsd:date; + "1921-06-20"^^xsd:date; + "1921-03-21"^^xsd:date; + "Tour"; + 8590; + "Actor"; + ; + . + + a ; + ""; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Other"; + "Tour"; + 8595; + ; + . + + a ; + "Tour"; + "Tour"; + 86; + ; + . + + a ; + ""; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Other"; + "Tour"; + 8600; + ; + . + + a ; + ""; + "1844-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "1843"; + "1843-12-31"^^xsd:date; + "1843-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8605; + ; + . + + a ; + ""; + "1848-09-30"^^xsd:date; + "1848-01-01"^^xsd:date; + "1844"; + "1844-12-31"^^xsd:date; + "1844-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8610; + ; + ; + . + + a ; + ""; + "1850-12-31"^^xsd:date; + "1849-11-01"^^xsd:date; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + "Permanent"; + "Tour"; + 8615; + "Music Director"; + ; + ; + . + + a ; + ""; + "1869-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8620; + "Founder"; + "Impresario"; + "Manager"; + ; + ; + ; + . + + a ; + ""; + "1850-09-22"^^xsd:date; + "1850-06-21"^^xsd:date; + "Summer and Fall of 1850"; + "1850-09-22"^^xsd:date; + "1850-06-21"^^xsd:date; + "Other"; + "Tour"; + 8625; + "Music Director"; + ; + ; + ; + . + + a ; + ""; + "1855-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "1850 till 1855"; + "1855-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8630; + "Manager"; + ; + ; + . + + a ; + ""; + "1855-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1850 till 1852"; + "1852-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8635; + "Manager"; + ; + ; + ; + . + + a ; + ""; + "1855-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1850 till 1852"; + "1852-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8640; + "Manager"; + ; + ; + . + + a ; + ""; + "1855-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1850 till 1852"; + "1852-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8645; + "Manager"; + ; + ; + . + + a ; + ""; + "1855-12-31"^^xsd:date; + "1852-01-01"^^xsd:date; + "1850 till 1852"; + "1852-12-31"^^xsd:date; + "1850-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8650; + "Manager"; + ; + ; + . + + a ; + ""; + "1879-12-31"^^xsd:date; + "1879-01-01"^^xsd:date; + "October 1854"; + "1854-10-31"^^xsd:date; + "1854-10-01"^^xsd:date; + "Other"; + "Tour"; + 8655; + "Founder"; + "Manager"; + ; + ; + ; + . + + a ; + ""; + "1873-12-31"^^xsd:date; + "1873-01-01"^^xsd:date; + ""; + "1857-02-25"^^xsd:date; + "1857-02-25"^^xsd:date; + "Other"; + "Tour"; + 8660; + "Founder"; + "Manager"; + ; + ; + . + + a ; + ""; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "1860"; + "1860-12-31"^^xsd:date; + "1860-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8665; + "Manager"; + ; + . + + a ; + ""; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "other"; + "Tour"; + 8670; + "Teacher (Theatre related)"; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8675; + "Actor"; + ; + ; + . + + a ; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917"; + "1917-12-31"^^xsd:date; + "1917-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8680; + ; + ; + . + + a ; + """ 1928"""; + "1928-12-31"^^xsd:date; + "1928-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8685; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1933"; + "1933-12-31"^^xsd:date; + "1933-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8690; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1940"; + "1940-12-31"^^xsd:date; + "1940-01-01"^^xsd:date; + "1936"; + "1936-12-31"^^xsd:date; + "1936-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8695; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + "Tour"; + 87; + ; + . + + a ; + "Permanent"; + "Tour"; + 8700; + "Founder"; + ; + ; + ; + . + + a ; + "Permanent"; + "Tour"; + 8705; + "Other"; + ; + ; + . + + a ; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "1955"; + "1955-12-31"^^xsd:date; + "1955-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8710; + "Director"; + ; + ; + . + + a ; + "1960"; + "1960-12-31"^^xsd:date; + "1960-01-01"^^xsd:date; + "1958"; + "1958-12-31"^^xsd:date; + "1958-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8715; + "Director"; + "Founder"; + ; + ; + . + + a ; + ""; + "1888-12-31"^^xsd:date; + ""; + "1888-01-05"^^xsd:date; + "Guest"; + "Tour"; + 8720; + "Singer"; + ; + ; + . + + a ; + "1890-12-31"^^xsd:date; + "1890-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8725; + "Singer"; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8730; + "Singer"; + ; + ; + . + + a ; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8735; + "Singer"; + ; + ; + . + + a ; + ""; + "1893-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8740; + ; + ; + . + + a ; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8745; + "Singer"; + ; + ; + . + + a ; + "1896-12-31"^^xsd:date; + "1896-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8750; + "Singer"; + ; + ; + . + + a ; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8755; + "Singer"; + ; + ; + . + + a ; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8760; + "Singer"; + ; + ; + . + + a ; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8765; + "Singer"; + ; + ; + . + + a ; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8770; + "Singer"; + ; + ; + . + + a ; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8775; + "Singer"; + ; + ; + . + + a ; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + "Tour"; + 8780; + "Singer"; + ; + ; + . + + a ; + "1902-12-31"^^xsd:date; + ""; + "1902-06-04"^^xsd:date; + "Tour"; + "Tour"; + 8785; + "Singer"; + ; + ; + . + + a ; + ""; + "1928-10-12"^^xsd:date; + ""; + "1922-10-12"^^xsd:date; + "Permanent"; + "Tour"; + 8790; + ; + ; + . + + a ; + ""; + ""; + "1938-01-04"^^xsd:date; + "Permanent"; + "Tour"; + 8795; + "Founder"; + ; + ; + . + + a ; + "1846"; + "1846-12-31"^^xsd:date; + "1846-01-01"^^xsd:date; + "Tour"; + "Tour"; + 88; + "tours through Italy (Mailand, Triest, Vicenza, Bologna and Rom)"; + ; + . + + a ; + ""; + "from 1988"; + "1988-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8800; + "Actor"; + "Circus Performer"; + ; + . + + a ; + ""; + "from 1988"; + "1988-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8805; + "Actor"; + "Circus Performer"; + ; + ; + . + + a ; + "theater conductor"; + "Tour"; + 881; + """He got the job on the recommendation of Richard Wagner, whom he knew because of the Nibelungen-Kanzlei. +He worked there under director Angelo Neumann +"""; + ; + ; + . + + a ; + ""; + "from 1910"; + "1910-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8810; + "Other"; + ; + . + + a ; + ""; + "from 1911"; + "1911-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8815; + "Other"; + ; + . + + a ; + ""; + "from 1915"; + "1915-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8820; + "Actor"; + "Circus Performer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8825; + "Journalist"; + ; + ; + . + + a ; + ""; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 8830; + "Founder"; + "Journalist"; + ; + ; + . + + a ; + ""; + "Permanent"; + "Tour"; + 8835; + "Founder"; + "Director"; + ; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 884; + "The ensemble was founded by Angelo Neumnann"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8840; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Guest"; + "Tour"; + 8845; + "Journalist"; + ; + ; + . + + a ; + ""; + ""; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Tour"; + 8850; + ; + ; + . + + a ; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + "24th October 1847"; + "1847-10-24"^^xsd:date; + "1847-10-24"^^xsd:date; + "Tour"; + 8855; + "Actor"; + "Dancer"; + ; + ; + ; + . + + a ; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + "24th October 1847"; + "1847-10-24"^^xsd:date; + "1847-10-24"^^xsd:date; + "Tour"; + 8860; + "Actor"; + "Dancer"; + ; + ; + ; + . + + a ; + "-"; + "September 1848"; + "1848-09-30"^^xsd:date; + "1848-09-01"^^xsd:date; + "Tour"; + 8865; + "Actor"; + ; + ; + ; + . + + a ; + "1885"; + "1885-12-31"^^xsd:date; + "1885-01-01"^^xsd:date; + "Tour"; + 887; + ; + . + + a ; + "-"; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 8870; + "Actor"; + "Dancer"; + ; + ; + ; + . + + a ; + "-"; + "1851"; + "1851-12-31"^^xsd:date; + "1851-01-01"^^xsd:date; + "Tour"; + 8875; + "Actor"; + "Dancer"; + ; + ; + ; + . + + a ; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "1853"; + "1853-12-31"^^xsd:date; + "1853-01-01"^^xsd:date; + "Tour"; + 8880; + "Actor"; + "Dancer"; + ; + ; + ; + . + + a ; + "-"; + "1855"; + "1855-12-31"^^xsd:date; + "1855-01-01"^^xsd:date; + "Tour"; + 8885; + "Actor"; + "Other"; + ; + ; + . + + a ; + "1867"; + "1867-12-31"^^xsd:date; + "1867-01-01"^^xsd:date; + "1862"; + "1862-12-31"^^xsd:date; + "1862-01-01"^^xsd:date; + "Tour"; + 8890; + "Actor"; + "Impresario"; + "Other"; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 89; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1885"; + "1885-08-31"^^xsd:date; + "1885-08-01"^^xsd:date; + "Tour"; + 890; + ; + . + + a ; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 8900; + "Actor"; + "Other"; + ; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 8910; + "Actor"; + ; + ; + . + + a ; + "1881"; + "1881-12-31"^^xsd:date; + "1881-01-01"^^xsd:date; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "Tour"; + 8915; + "Actor"; + ; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "-"; + "Tour"; + 8920; + "Other"; + ; + ; + . + + a ; + "-"; + "1829"; + "1829-12-31"^^xsd:date; + "1829-01-01"^^xsd:date; + "Tour"; + 8925; + ; + ; + . + + a ; + "1885"; + "1885-11-30"^^xsd:date; + "1885-11-01"^^xsd:date; + "Tour"; + 893; + ; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Tour"; + 8930; + "Director"; + ; + ; + . + + a ; + "1827"; + "1827-12-31"^^xsd:date; + "1827-01-01"^^xsd:date; + "Tour"; + 8935; + "Singer"; + ; + ; + . + + a ; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Guest"; + 8940; + "Singer"; + ; + ; + . + + a ; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "between 1828 and 1829"; + "1829-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "Guest"; + 8945; + "Singer"; + ; + ; + . + + a ; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "Guest"; + 8950; + "Singer"; + ; + . + + a ; + "1832"; + "1832-12-31"^^xsd:date; + "1832-01-01"^^xsd:date; + "1830"; + "1830-12-31"^^xsd:date; + "1830-01-01"^^xsd:date; + "Permanent"; + 8955; + "Singer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Tour"; + 896; + "Guest engagement. Co-conductor under Leopold Damrosch, later under Walter Damrosch"; + ; + . + + a ; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "1833"; + "1833-12-31"^^xsd:date; + "1833-01-01"^^xsd:date; + "Permanent"; + 8960; + "Singer"; + ; + ; + . + + a ; + "1834"; + "1834-12-31"^^xsd:date; + "1834-01-01"^^xsd:date; + "Tour"; + 8965; + "Singer"; + ; + ; + . + + a ; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Tour"; + 8970; + "Singer"; + ; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1842"; + "1842-12-31"^^xsd:date; + "1842-01-01"^^xsd:date; + "Permanent"; + 8975; + "Singer"; + ; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 8980; + "Singer"; + . + + a ; + "Tour"; + 8985; + "Singer"; + ; + . + + a ; + "1998"; + "1998-12-31"^^xsd:date; + "1998-01-01"^^xsd:date; + "Tour"; + 899; + "During his time in New York he had a lot of guest emgagements in several American cities to conducht wagner operas, e.g. 1991 through Invitation of Benjamin Johnson Lang in Boston to performe Parsifal there fort he first time"; + ; + . + + a ; + "Tour"; + 8990; + "Singer"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Direktor, Ensemble"; + "Tour"; + 8997; + "Director"; + ; + . + + a ; + "-"; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + 9; + "Singer"; + ""; + ; + ; + . + + a ; + "1880"; + "1880-12-31"^^xsd:date; + "1880-01-01"^^xsd:date; + "Tour"; + 90; + "Teacher (Theatre related)"; + ; + . + + a ; + "1932"; + "1932-12-31"^^xsd:date; + "1932-01-01"^^xsd:date; + "Singer,Actor"; + "Tour"; + 9002; + "Actor"; + "Singer"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "Salonhumorist, Actor"; + "Tour"; + 9007; + "Actor"; + ; + . + + a ; + "1980"; + "1980-12-31"^^xsd:date; + "1980-01-01"^^xsd:date; + "1950"; + "1950-12-31"^^xsd:date; + "1950-01-01"^^xsd:date; + "Tour"; + 9012; + "Actor"; + ; + . + + a ; + "Tour"; + 902; + "Singer"; + ; + . + + a ; + "1839"; + "1839-12-31"^^xsd:date; + "1839-01-01"^^xsd:date; + "Tour"; + 905; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 908; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 91; + "Singer"; + ""; + ; + ; + . + + a ; + "1840"; + "1840-12-31"^^xsd:date; + "1840-01-01"^^xsd:date; + "Tour"; + 911; + "Singer"; + ; + ; + . + + a ; + "1845"; + "1845-12-31"^^xsd:date; + "1845-01-01"^^xsd:date; + "Tour"; + 914; + "Singer"; + ; + . + + a ; + "1849"; + "1849-12-31"^^xsd:date; + "1849-01-01"^^xsd:date; + "Tour"; + 917; + "Singer"; + ; + . + + a ; + "Tour"; + 92; + "Singer"; + "sang there „The Trompeter von Säckingen“ , worked with the composer Victor Nessler"; + ; + ; + . + + a ; + "1856"; + "1856-12-31"^^xsd:date; + "1856-01-01"^^xsd:date; + "Tour"; + 920; + "Singer"; + ; + . + + a ; + "Between 1868 and 1874"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9266; + "Dancer"; + ; + . + + a ; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9271; + "Circus Performer"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874-03-21"; + "1874-03-21"^^xsd:date; + "Tour"; + "Tour"; + 9276; + "Circus Performer"; + ; + . + + a ; + "1876"; + "1876-12-31"^^xsd:date; + "1876-01-01"^^xsd:date; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9281; + "Circus Performer"; + "Magician"; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9286; + "Circus Performer"; + "Magician"; + ; + . + + a ; + "December 1883 and January 1884"; + "1884-01-31"^^xsd:date; + "1883-12-01"^^xsd:date; + "July 1883"; + "1883-07-31"^^xsd:date; + "1883-07-01"^^xsd:date; + "Tour"; + "Tour"; + 9291; + "Circus Performer"; + "Magician"; + ; + . + + a ; + "September 1886"; + "1886-09-30"^^xsd:date; + "1886-09-01"^^xsd:date; + "January 1884"; + "1884-01-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9296; + "Circus Performer"; + "Magician"; + ; + . + + a ; + "Tour"; + 93; + "Singer"; + ""; + . + + a ; + "1886-09-27"; + "1886-09-27"^^xsd:date; + "1886-09-27"; + "1886-09-27"^^xsd:date; + "Other"; + "Tour"; + 9301; + "Circus Performer"; + "Magician"; + ; + ; + . + + a ; + "1896-12-17"; + "1896-12-17"^^xsd:date; + "Probably 1887"; + "1887-12-31"^^xsd:date; + "1887-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9306; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 9311; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between 1889 and 1891"; + "1889-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "between 1889 and 1891"; + "1891-12-31"^^xsd:date; + "1889-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 9316; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "1891"; + "1891-12-31"^^xsd:date; + "1891-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 9321; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "May 1895"; + "1895-05-31"^^xsd:date; + "1895-05-01"^^xsd:date; + "May 1895"; + "1895-05-31"^^xsd:date; + "1895-05-01"^^xsd:date; + "Guest"; + "Tour"; + 9326; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + ; + . + + a ; + "1897-01-10"; + "1897-01-10"^^xsd:date; + "1897-01-10"; + "1897-01-10"^^xsd:date; + "Guest"; + "Tour"; + 9331; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "1897-01-28"; + "1897-01-28"^^xsd:date; + "1897-01-28"; + "1897-01-28"^^xsd:date; + "Guest"; + "Tour"; + 9336; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "Probably 1899-06-25"; + "1899-06-25"^^xsd:date; + "1897-01-01"; + "1897-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9341; + "Circus Performer"; + "Magician"; + "Dancer"; + ; + . + + a ; + "December 1898"; + "1898-12-31"^^xsd:date; + "1898-12-01"^^xsd:date; + "December 1898"; + "1898-12-31"^^xsd:date; + "1898-12-01"^^xsd:date; + "Guest"; + "Tour"; + 9346; + "Magician"; + "Dancer"; + ; + . + + a ; + "January 1899"; + "1899-01-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "January 1899"; + "1899-01-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9351; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between January 1899 and May 1899"; + "1899-05-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "between January 1899 and May 1899"; + "1899-05-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9356; + "Magician"; + "Dancer"; + ; + ; + . + + a ; + "May 1899"; + "1899-05-31"^^xsd:date; + "1899-05-01"^^xsd:date; + "May 1899"; + "1899-05-31"^^xsd:date; + "1899-05-01"^^xsd:date; + "Guest"; + "Tour"; + 9361; + "Magician"; + "Dancer"; + ; + . + + a ; + "July"; + "1899-07-31"^^xsd:date; + "1899-07-01"^^xsd:date; + "1899-06-25"; + "1899-06-25"^^xsd:date; + "Guest"; + "Tour"; + 9366; + "Magician"; + "Dancer"; + ; + . + + a ; + "August 1899"; + "1899-08-31"^^xsd:date; + "1899-08-01"^^xsd:date; + "August 1899"; + "1899-08-31"^^xsd:date; + "1899-08-01"^^xsd:date; + "Guest"; + "Tour"; + 9371; + "Magician"; + "Dancer"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9376; + "Magician"; + "Dancer"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9381; + "Magician"; + "Dancer"; + ; + ; + . + + a ; + "Between September 1899 and 1900"; + "1900-12-31"^^xsd:date; + "1899-09-01"^^xsd:date; + "between September 1899 and 1900"; + "1900-12-31"^^xsd:date; + "1899-09-01"^^xsd:date; + "Guest"; + "Tour"; + 9386; + "Magician"; + "Dancer"; + ; + . + + a ; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "1899"; + "1899-12-31"^^xsd:date; + "1899-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9391; + "Magician"; + "Dancer"; + ; + ; + . + + a ; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "1900"; + "1900-12-31"^^xsd:date; + "1900-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9396; + "Magician"; + "Dancer"; + ; + . + + a ; + "Tour"; + 94; + "Singer"; + "Königsberg"; + . + + a ; + "17.10.1900"; + "1900-10-17"^^xsd:date; + "17.10.1900"; + "1900-10-17"^^xsd:date; + "Guest"; + "Tour"; + 9401; + "Magician"; + "Dancer"; + ; + . + + a ; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "1901"; + "1901-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9406; + "Magician"; + "Dancer"; + ; + . + + a ; + "1859"; + "1859-12-31"^^xsd:date; + "1859-01-01"^^xsd:date; + "Tour"; + 941; + "Singer"; + "1859 he lost his voice and he regenerated in 1862"; + ; + ; + . + + a ; + "Between 1901 and 1902-06-14"; + "1902-06-14"^^xsd:date; + "1901-01-01"^^xsd:date; + "between 1901 and 1902-06-14"; + "1902-06-14"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9411; + "Magician"; + "Dancer"; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-06-14"^^xsd:date; + "14.06.1902"; + "1902-06-14"^^xsd:date; + "Guest"; + "Tour"; + 9416; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between September 1902 and 1903"; + "1903-12-31"^^xsd:date; + "1902-09-01"^^xsd:date; + "between September 1902 and 1903"; + "1903-12-31"^^xsd:date; + "1902-09-01"^^xsd:date; + "Guest"; + "Tour"; + 9421; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between 1901 and 1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "between 1901 and 1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9426; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between 1901 and 1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "between 1901 and 1903"; + "1903-12-31"^^xsd:date; + "1901-01-01"^^xsd:date; + "Other"; + "Tour"; + 9431; + "Magician"; + "Dancer"; + ; + . + + a ; + "May 1904"; + "1904-05-31"^^xsd:date; + "1904-05-01"^^xsd:date; + "May 1904"; + "1904-05-31"^^xsd:date; + "1904-05-01"^^xsd:date; + "Guest"; + "Tour"; + 9436; + "Magician"; + "Dancer"; + ; + . + + a ; + "1865"; + "1865-12-31"^^xsd:date; + "1865-01-01"^^xsd:date; + "Tour"; + 944; + "Singer"; + """1859 he lost his voice and he regenerated in 1862. +1865 he lost his voice again and got no new contract 1866 in Wien for this reason. +He moved to Wien after retirement"""; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + "Tour"; + 9441; + "Magician"; + "Dancer"; + ; + . + + a ; + "02.01.1906"; + "12.08.1905"; + "1905-08-12"^^xsd:date; + "Tour"; + "Tour"; + 9446; + "Magician"; + "Dancer"; + ; + . + + a ; + ""; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + "Tour"; + 9451; + "Magician"; + "Dancer"; + ; + . + + a ; + "Probably October 1908"; + "1908-10-31"^^xsd:date; + "1908-10-01"^^xsd:date; + "Summer 1908"; + "1908-09-22"^^xsd:date; + "1908-06-21"^^xsd:date; + "Permanent"; + "Tour"; + 9456; + "Magician"; + "Dancer"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9461; + "Magician"; + "Dancer"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9466; + "Magician"; + "Dancer"; + ; + . + + a ; + "Tour"; + 947; + "Director"; + """1865 he lost his voice again and got no new contract 1866 in Wien for this reason. +He moved to Wien after retirement"""; + ; + . + + a ; + "Between 1907 and 1924"; + "1924-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "between 1907 and 1924"; + "1924-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Tour"; + "Tour"; + 9471; + "Magician"; + "Dancer"; + ; + . + + a ; + "Probably October 1908"; + "1908-10-31"^^xsd:date; + "1908-10-01"^^xsd:date; + "Summer 1908"; + "1908-09-22"^^xsd:date; + "1908-06-21"^^xsd:date; + "Tour"; + "Tour"; + 9476; + "Magician"; + "Dancer"; + ; + . + + a ; + "Summer 1908"; + "1908-09-22"^^xsd:date; + "1908-06-21"^^xsd:date; + "Summer 1908"; + "1908-09-22"^^xsd:date; + "1908-06-21"^^xsd:date; + "Tour"; + "Tour"; + 9481; + "Magician"; + "Dancer"; + ; + . + + a ; + "Sep 13"; + "1913-09-30"^^xsd:date; + "1913-09-01"^^xsd:date; + "Sep 13"; + "1913-09-30"^^xsd:date; + "1913-09-01"^^xsd:date; + "Guest"; + "Tour"; + 9486; + "Magician"; + "Dancer"; + ; + . + + a ; + "March 1915"; + "1915-03-31"^^xsd:date; + "1915-03-01"^^xsd:date; + "March 1915"; + "1915-03-31"^^xsd:date; + "1915-03-01"^^xsd:date; + "Guest"; + "Tour"; + 9491; + "Magician"; + "Dancer"; + ; + . + + a ; + "Sep 24"; + "1924-09-30"^^xsd:date; + "1924-09-01"^^xsd:date; + "Sep 24"; + "1924-09-30"^^xsd:date; + "1924-09-01"^^xsd:date; + "Tour"; + "Tour"; + 9496; + "Magician"; + "Dancer"; + ; + . + + a ; + "Tour"; + 95; + "Singer"; + ""; + ; + ; + . + + a ; + "1869"; + "1869-12-31"^^xsd:date; + "1869-01-01"^^xsd:date; + "Tour"; + 950; + "Singer"; + ; + . + + a ; + "Between September 1924 and April 1928"; + "0928-04-30"^^xsd:date; + "1924-09-01"^^xsd:date; + "between September 1924 and April 1928"; + "0928-04-30"^^xsd:date; + "1924-09-01"^^xsd:date; + "Tour"; + "Tour"; + 9501; + "Magician"; + "Dancer"; + ; + . + + a ; + "End of 1927"; + "1927-12-31"^^xsd:date; + "1927-09-01"^^xsd:date; + "End of 1927"; + "1927-12-31"^^xsd:date; + "1927-09-01"^^xsd:date; + "Tour"; + "Tour"; + 9506; + "Magician"; + "Dancer"; + ; + . + + a ; + "28.04.1928"; + "28.04.1928"; + "1928-04-28"^^xsd:date; + "Tour"; + "Tour"; + 9511; + "Magician"; + "Dancer"; + ; + . + + a ; + "Between 1868 and 1874-03-20"; + "1868-01-01"^^xsd:date; + "1868-01-01"^^xsd:date; + "between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 9516; + "Circus Performer"; + ; + . + + a ; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 9521; + "Circus Performer"; + ; + . + + a ; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 9526; + ; + . + + a ; + "1870"; + "1870-12-31"^^xsd:date; + "1870-01-01"^^xsd:date; + "Tour"; + 953; + "Director"; + ; + . + + a ; + "Between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "between 1868 and 1874-03-20"; + "1874-03-20"^^xsd:date; + "1868-01-01"^^xsd:date; + "Tour"; + 9531; + "Circus Performer"; + ; + . + + a ; + "1875"; + "1875-12-31"^^xsd:date; + "1875-01-01"^^xsd:date; + "1874-03-21"^^xsd:date; + "1874-03-21"^^xsd:date; + "Tour"; + 9536; + ; + . + + a ; + "1878"; + "1878-12-31"^^xsd:date; + "1878-01-01"^^xsd:date; + "1877"; + "1877-12-31"^^xsd:date; + "1877-01-01"^^xsd:date; + "Tour"; + 9541; + "Circus Performer"; + "Magician"; + ; + . + + a ; + "Tour"; + 956; + "Teacher (Theatre related)"; + "1876 he moved to Graz to give singing lessons"; + ; + . + + a ; + "1883"; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Permanent"; + 9584; + "Singer"; + ; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1884"; + "1884-12-31"^^xsd:date; + "1884-01-01"^^xsd:date; + "Permanent"; + 9589; + "Singer"; + ; + ; + . + + a ; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Other"; + 9599; + "Composer"; + ; + ; + . + + a ; + "Tour"; + 96; + "Singer"; + ""; + ; + . + + a ; + "1916-12-31"^^xsd:date; + "1916-01-01"^^xsd:date; + "1916-12-30"^^xsd:date; + "1916-01-01"^^xsd:date; + "Other"; + 9604; + "Composer"; + "Instituition: Neues Operetenhaus"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "Tour"; + 9609; + "Singer"; + "Carl Rosa Opera Company - Tour in England"; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Tour"; + 9614; + "Singer"; + "Tour In England"; + ; + ; + . + + a ; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "1897"; + "1897-12-31"^^xsd:date; + "1897-01-01"^^xsd:date; + "Tour"; + 9619; + "Singer"; + "Carl Rosa Opera Company"; + ; + ; + . + + a ; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902"; + "1902-12-31"^^xsd:date; + "1902-01-01"^^xsd:date; + "Tour"; + 9624; + "Singer"; + ; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Permanent"; + 9629; + "Singer"; + ; + ; + . + + a ; + "1907-12-22"^^xsd:date; + "1907-12-22"^^xsd:date; + "1907-04-24"^^xsd:date; + "1907-04-24"^^xsd:date; + "Permanent"; + 9634; + "Singer"; + ; + ; + . + + a ; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "1904"; + "1904-12-31"^^xsd:date; + "1904-01-01"^^xsd:date; + "Guest"; + 9639; + "Singer"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-30"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 9644; + "Singer"; + ; + ; + . + + a ; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 9649; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 9654; + "Singer"; + ; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Guest"; + 9659; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 9664; + "Singer"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9669; + "Singer"; + ; + ; + . + + a ; + "1907"; + "1897-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Guest"; + 9674; + "Singer"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9679; + "Teacher (Theatre related)"; + ; + . + + a ; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907"; + "1907-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "Guest"; + 9684; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 9686; + "Singer"; + ; + ; + . + + a ; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "1905"; + "1905-12-31"^^xsd:date; + "1905-01-01"^^xsd:date; + "Guest"; + 9689; + "Singer"; + ; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 9693; + "Singer"; + ; + . + + a ; + "1914"; + "1914-12-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Guest"; + 9694; + "Singer"; + ; + ; + . + + a ; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1927"; + "1927-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "Tour"; + 9699; + "Singer"; + ; + . + + a ; + "Tour"; + 97; + "Singer"; + ""; + ; + . + + a ; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Guest"; + 9704; + "Singer"; + "Worked with his family"; + ; + ; + . + + a ; + "1828"; + "1828-12-31"^^xsd:date; + "1828-01-01"^^xsd:date; + "1826"; + "1826-12-31"^^xsd:date; + "1826-01-01"^^xsd:date; + "Tour"; + 9709; + "Worked with his family"; + ; + . + + a ; + "1850"; + "1850-12-31"^^xsd:date; + "1850-01-02"^^xsd:date; + "1847"; + "1847-12-31"^^xsd:date; + "1847-01-01"^^xsd:date; + "Permanent"; + 9714; + "Teacher (Theatre related)"; + ; + ; + . + + a ; + "1895"; + "1895-12-31"^^xsd:date; + "1895-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Permanent"; + 9719; + "Worked in Royal Academy of Music"; + ; + . + + a ; + "1883"; + "1883-12-31"^^xsd:date; + "1883-01-01"^^xsd:date; + "Tour"; + 9724; + ; + ; + . + + a ; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + "1836"; + "1836-12-31"^^xsd:date; + "1836-01-01"^^xsd:date; + "Guest"; + 9729; + "Singer"; + ; + ; + . + + a ; + "1837"; + "1837-12-01"^^xsd:date; + "1837-01-01"^^xsd:date; + "1837"; + "1837-12-31"^^xsd:date; + "1837-01-01"^^xsd:date; + "Guest"; + 9734; + "Singer"; + "worked in Teatro Sociale"; + ; + . + + a ; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "1848"; + "1848-12-31"^^xsd:date; + "1848-01-01"^^xsd:date; + "Guest"; + 9739; + "Singer"; + ; + . + + a ; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "1913"; + "1913-12-31"^^xsd:date; + "1913-01-01"^^xsd:date; + "Guest"; + 9744; + "Singer"; + "Worked in Boston Opera"; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9749; + "Singer"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9754; + "Singer"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9759; + "Singer"; + ; + ; + . + + a ; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "1910"; + "1910-12-31"^^xsd:date; + "1910-01-01"^^xsd:date; + "Guest"; + 9764; + "Singer"; + ; + ; + . + + a ; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "1935"; + "1935-12-31"^^xsd:date; + "1935-01-01"^^xsd:date; + "Tour"; + 9769; + "Singer"; + ; + . + + a ; + "Guest"; + 9774; + "Singer"; + ; + . + + a ; + "Guest"; + 9779; + "Singer"; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1894"; + "1894-12-31"^^xsd:date; + "1894-01-01"^^xsd:date; + "Permanent"; + 9789; + "Actor"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest"; + 9794; + "Singer"; + ; + ; + . + + a ; + "1888"; + "1888-12-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "1888"; + "1888-07-31"^^xsd:date; + "1888-01-01"^^xsd:date; + "Guest"; + 9799; + "Singer"; + ; + ; + . + + a ; + "Tour"; + 98; + "Singer"; + ""; + ; + . + + a ; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "1854"; + "1854-12-31"^^xsd:date; + "1854-01-01"^^xsd:date; + "Guest"; + 9804; + "Singer"; + "Hermannstadt/Sibiu Theater"; + ; + . + + a ; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "1898"; + "1898-12-31"^^xsd:date; + "1898-01-01"^^xsd:date; + "Permanent"; + 9814; + "Other"; + "Prompter"; + "Actor"; + ; + ; + . + + a ; + "Permanent"; + 9819; + "Actor"; + ; + ; + ; + . + + a ; + "Permanent"; + 9824; + "Actor"; + ; + ; + ; + . + + a ; + "Permanent"; + 9829; + "Actor"; + ; + . + + a ; + "1903"; + "1903-12-31"^^xsd:date; + "1903-01-01"^^xsd:date; + "Permanent"; + 9834; + "Founder"; + "Actor"; + ; + ; + ; + . + + a ; + "Permanent"; + 9839; + "Actor"; + ; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 9844; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1906"; + "1906-12-31"^^xsd:date; + "1906-01-01"^^xsd:date; + "Permanent"; + 9848; + "Actor"; + ; + ; + . + + a ; + "1924"; + "1924-12-31"^^xsd:date; + "1924-01-01"^^xsd:date; + "1909"; + "1909-12-31"^^xsd:date; + "1909-01-01"^^xsd:date; + "Permanent"; + 9849; + "Founder"; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "1912"; + "1912-12-31"^^xsd:date; + "1912-01-01"^^xsd:date; + "Permanent"; + 9851; + "Director"; + ; + ; + ; + . + + a ; + "1913-12-31"; + "1913-01-01"; + "Guest"; + 9854; + "Founder"; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "1915-12-31"; + "1915-01-01"; + "Guest"; + 9859; + "Actor"; + ; + ; + . + + a ; + "1924-12-31"; + "1914-01-01"; + "Permanent"; + 9863; + "Founder"; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "1918-12-31"; + "1918-01-01"; + "Guest"; + 9868; + "Actor"; + ; + ; + ; + . + + a ; + "1920-12-31"; + "1919-01-01"; + "Guest"; + 9870; + "Actor"; + "Actor"; + ; + ; + ; + . + + a ; + "1921-01-01"; + "1921-01-01"; + "Permanent"; + 9871; + "Founder"; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "1923-01-01"; + "1923-01-01"; + "Permanent"; + 9874; + "Founder"; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1924-12-31"; + "1923-01-01"; + "Guest"; + 9879; + "Actor"; + ; + ; + . + + a ; + "1925-12-31"; + "1925-01-01"; + "Permanent"; + 9884; + "Founder"; + "Actor"; + "Director"; + ; + ; + . + + a ; + "1926-12-31"; + "1926-01-01"; + "Tour"; + 9889; + "Actor"; + ; + ; + . + + a ; + "1927-12-31"; + "1927-01-01"; + "Guest"; + 9894; + "Actor"; + ; + ; + ; + . + + a ; + "1929-12-31"; + "1927-01-01"; + "Guest"; + 9899; + "Actor"; + ; + ; + . + + a ; + "Tour"; + 99; + "Singer"; + ""; + ; + . + + a ; + "1929-12-31"; + "1929-01-01"; + "Permanent"; + 9904; + "Actor"; + ; + ; + . + + a ; + "1930-01-01"; + "1930-01-01"; + "Permanent"; + 9909; + "Actor"; + "Director"; + ; + ; + ; + . + + a ; + "1932-12-31"; + "1930-01-01"; + "Permanent"; + 9914; + "Director"; + ; + ; + . + + a ; + "1932-12-31"; + "1932-01-01"; + "Permanent"; + 9919; + "Director"; + ; + ; + . + + a ; + "1932-01-01"; + "Permanent"; + 9924; + "Director"; + ; + ; + . + + a ; + "1936-01-01"; + "Permanent"; + 9929; + "Director"; + ; + ; + . + + a ; + "Permanent"; + 9934; + "Director"; + ; + ; + . + + a ; + "1939-12-31"; + "1937-01-01"; + "Permanent"; + 9939; + "Actor"; + ; + ; + . + + a ; + "1908"; + "1908-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "Theater actor, silent film actor"; + "Tour"; + 997; + "Actor"; + ; + ; + . + + a ; + "Berisso"; + "South America"; + "Argentina"; + "3436040"; + "ARG-Ber-00"; + -3.48667e1; + -5.78667e1; + "Q668462"; + "https://en.wikipedia.org/wiki/Berisso" . + + a ; + "Chacabuco"; + "South America"; + "Argentina"; + "ARG-Chaca-00"; + "Buenos Aires"; + -3.46417e1; + -6.04739e1; + "Q433734" . + + a ; + "South America"; + "Argentina"; + "3434137"; + "ARG-EntrRios-00"; + "Entre Ríos"; + -3.21e1; + -5.93e1; + "Q44762"; + "https://en.wikipedia.org/wiki/Entre_R%C3%ADos_Province" . + + a ; + "Llavallol"; + "South America"; + "Argentina"; + "3431325"; + "ARG-Llav-00"; + "Gran Buenos Aires"; + -3.47667e1; + -5.83833e1; + "Q3721987"; + "https://en.wikipedia.org/wiki/Llavallol" . + + a ; + "Gmunden"; + "Europe"; + "Austria"; + "AT-Gmun-00"; + 4.79181e1; + 1.37994e1; + "Q430449" . + + a ; + "Klagenfurt"; + "Europe"; + "Austria"; + "2774326"; + "AT-Klag-00"; + 4.66167e1; + 1.43e1; + "Q41753"; + "https://en.wikipedia.org/wiki/Klagenfurt" . + + a ; + "Micheldorf in Oberösterreich"; + "Europe"; + "Austria"; + "2771619"; + "AT-Mich-00"; + 4.78776e1; + 1.41335e1; + "Q661415"; + "https://en.wikipedia.org/wiki/Micheldorf_in_Ober%C3%B6sterreich" . + + a ; + "Ottensheim"; + "Europe"; + "Austria"; + "2769342"; + "AT-Ottensh-00"; + 4.83333e1; + 1.41769e1; + "Q683160"; + "https://en.wikipedia.org/wiki/Ottensheim" . + + a ; + "Rudolfsheim (Vienna)"; + "Europe"; + "Austria"; + "2779138"; + "AT-Rudolf-00"; + 4.81903e1; + 1.63289e1; + "Q617472"; + "https://en.wikipedia.org/wiki/Rudolfsheim" . + + a ; + "St. Lorenz"; + "Europe"; + "Austria"; + "2766591"; + "AT-StLor-00"; + 4.78233e1; + 1.33567e1; + "Q679222"; + "https://en.wikipedia.org/wiki/St._Lorenz_(Austria)" . + + a ; + "Strobl"; + "Europe"; + "Austria"; + "2764121"; + "AT-Strobl-00"; + 4.77167e1; + 1.34667e1; + "Q667278"; + "https://en.wikipedia.org/wiki/Strobl" . + + a ; + "Wiener Neustadt"; + "Europe"; + "Austria"; + "2761353"; + "AT-VIENeu-00"; + 4.78132e1; + 1.62444e1; + "Q131612"; + "https://en.wikipedia.org/wiki/Wiener_Neustadt" . + + a ; + "New Castle"; + "Australia"; + "Australia"; + "AU-NewCast-00"; + -3.29306e1; + 1.51754e2; + "Q57278" . + + a ; + "Albany"; + "Australia"; + "Australia"; + "2077963"; + "AUS-Alb-00"; + -3.50167e1; + 1.17883e2; + "Q704257"; + "https://en.wikipedia.org/wiki/Albany,_Western_Australia" . + + a ; + "Albury"; + "Australia"; + "Australia"; + "AUS-Albu-00"; + -3.60833e1; + 1.46917e2; + "Q331764" . + + a ; + "Castlemaine"; + "Australia"; + "Australia"; + "AUS-Castle-00"; + "Victoria"; + -3.70667e1; + 1.44217e2; + "Q260317"; + "https://en.wikipedia.org/wiki/Castlemaine,_Victoria" . + + a ; + "Charters Towers"; + "Australia"; + "Australia"; + "AUS-Chart-00"; + -2.01e1; + 1.46267e2; + "Q1066838" . + + a ; + "Cooktown"; + "Australia"; + "Australia"; + "AUS-Cook-00"; + -1.54667e1; + 1.4525e2; + "Q1020734" . + + a ; + "Geelong"; + "Australia"; + "Australia"; + "AUS-Geel-00"; + -3.81667e1; + 1.4435e2; + "Q231765"; + "https://en.wikipedia.org/wiki/Geelong" . + + a ; + "Goulburn"; + "Australia"; + "Australia"; + "AUS-Goulb-00"; + -3.47333e1; + 1.49733e2; + "Q605235" . + + a ; + "Gympie"; + "Australia"; + "Australia"; + "AUS-Gymp-00"; + "Queensland"; + -2.61833e1; + 1.52667e2; + "Q1558442" . + + a ; + "Perth"; + "Australia"; + "Australia"; + "2063523"; + "AUS-Pert-00"; + -3.195e1; + 1.1585e2; + "Q3183"; + "https://en.wikipedia.org/wiki/Perth" . + + a ; + "Tasmania"; + "Australia"; + "Australia"; + "AUS-Tasm-00"; + -4.20556e1; + 1.46616e2; + "Q34366" . + + a ; + "Townsville"; + "Australia"; + "Australia"; + "AUS-Townsv-00"; + -1.925e1; + 1.46817e2; + "Q190021" . + + a ; + "Wagga Wagga"; + "Australia"; + "Australia"; + "AUS-Wagg-00"; + -3.51167e1; + 1.47367e2; + "Q459600" . + + a ; + "Ghent"; + "Europe"; + "Belgium"; + "BE-Ghe-00"; + 5.10539e1; + 3.72167e0; + "Q1296"; + "https://en.wikipedia.org/wiki/Ghent" . + + a ; + "Spa"; + "Europe"; + "Belgium"; + "2786318"; + "BE-Spa-00"; + 5.04914e1; + 5.86667e0; + "Q39865"; + "https://en.wikipedia.org/wiki/Spa,_Belgium" . + + a ; + "Europe"; + "Bulgaria"; + "BG-00"; + 4.3e1; + 2.5e1; + "Q219" . + + a ; + "Sofia"; + "Europe"; + "Bulgaria"; + "727011"; + "BG-Sof-00"; + 4.27e1; + 2.333e1; + "Q219"; + "https://en.wikipedia.org/wiki/Sofia" . + + a ; + "Alagoinhas"; + "South America"; + "Brazil"; + "3472766"; + "BR-Alago-00"; + -1.21255e1; + -3.8411e1; + "Q22050101"; + "https://en.wikipedia.org/wiki/Alagoinhas" . + + a ; + "Campinas "; + "South America"; + "Brazil"; + "3467865"; + "BR-Camp-00"; + -2.28997e1; + -4.70567e1; + "Q171617"; + "https://en.wikipedia.org/wiki/Campinas" . + + a ; + "Curitiba"; + "South America"; + "Brazil"; + "3464975"; + "BR-Curt-00"; + -2.54298e1; + -4.92717e1; + "Q4361"; + "https://en.wikipedia.org/wiki/Curitiba" . + + a ; + "South America"; + "Brazil"; + "3457153"; + "BR-MinGer-00"; + "Minas Gerais"; + -1.849e1; + -4.47e1; + "Q39109"; + "https://en.wikipedia.org/wiki/Minas_Gerais" . + + a ; + "Mococa"; + "South America"; + "Brazil"; + "3457025"; + "BR-Moc-00"; + "São Paulo"; + -2.14678e1; + -4.7005e1; + "Q1760484"; + "https://en.wikipedia.org/wiki/Mococa" . + + a ; + "Santos"; + "South America"; + "Brazil"; + "3449433"; + "BR-Santos-00"; + -2.39667e1; + -4.63333e1; + "Q81882"; + "https://en.wikipedia.org/wiki/Santos,_S%C3%A3o_Paulo" . + + a ; + "Santa Catarina"; + "South America"; + "Brazil"; + "3450387"; + "BR-StCat-00"; + -2.727e1; + -5.049e1; + "Q41115"; + "https://en.wikipedia.org/wiki/Santa_Catarina_(state)" . + + a ; + "Valožyn"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-61"; + 5.40833e1; + 2.65167e1; + "Q200876"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Slutsk"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-63"; + 5.30167e1; + 2.755e1; + "Q201243"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Pinsk"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-68"; + 5.21153e1; + 2.61031e1; + "Q204150"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Brantford"; + "North America"; + "Canada"; + "CA-Brandt-00"; + "Ontario"; + 4.31394e1; + -8.026430000000001e1; + "Q34180" . + + a ; + "Saint John"; + "North America"; + "Canada"; + "6138517"; + "CA-StJohn-00"; + "New Brunswick"; + 4.52805e1; + -6.60761e1; + "Q203403"; + "https://en.wikipedia.org/wiki/Saint_John,_New_Brunswick" . + + a ; + "Vancouver"; + "North America"; + "Canada"; + "6173331"; + "CA-Vanc-00"; + 4.9281e1; + -1.23122e2; + "Q24639"; + "https://en.wikipedia.org/wiki/Vancouver" . + + a ; + "Ascona"; + "Europe"; + "Switzerland"; + "2661698"; + "CH-Asc-00"; + 4.615e1; + 8.76667e0; + "Q63992"; + "https://en.wikipedia.org/wiki/Ascona" . + + a ; + "Asia"; + "China"; + "CN-Canton-00"; + "Guangdong"; + 2.3564e1; + 1.1395e2; + "Q15175" . + + a ; + "Guangzhou"; + "Asia"; + "China"; + "CN-Guang-00"; + "Canton"; + 2.31289e1; + 1.13259e2; + "Q16572" . + + a ; + "Hankou (Wuhan)"; + "Asia"; + "China"; + "1808894"; + "CN-Hank-00"; + 3.05812e1; + 1.14273e2; + "Q1208250"; + "https://en.wikipedia.org/wiki/Hankou" . + + a ; + "Europe"; + "8505031"; + "CSL-00"; + "Czechoslovakia"; + 5.00829e1; + 1.44667e1; + "Q33946"; + "https://en.m.wikipedia.org/wiki/Czechoslovakia" . + + a ; + "San Juan"; + "South America"; + "Costa Rica"; + "3621819"; + "CSTR-SanJuan-00"; + 9.957700000000001e0; + -8.40919e1; + "Q3947434"; + "https://en.wikipedia.org/wiki/San_Juan_District,_Tib%C3%A1s" . + + a ; + "Bílina"; + "Europe"; + "Czech Republic"; + "3079348"; + "CZ-Bilin-00"; + 5.05481e1; + 1.37761e1; + "Q518360"; + "https://en.wikipedia.org/wiki/B%C3%ADlina" . + + a ; + "Františkovy Lázne"; + "Europe"; + "Czech Republic"; + "3076136"; + "CZ-Franz-00"; + 5.01206e1; + 1.23519e1; + "Q756581"; + "https://en.wikipedia.org/wiki/Franti%C5%A1kovy_L%C3%A1zn%C4%9B" . + + a ; + "Židlochovice"; + "Europe"; + "Czech Republic"; + "3061472"; + "CZ-GrSeel-00"; + 4.90395e1; + 1.66188e1; + "Q393955"; + "https://en.wikipedia.org/wiki/%C5%BDidlochovice" . + + a ; + "Europe"; + "Czech Republic"; + "3070359"; + "CZ-Mora-00"; + "Moravia"; + 4.95e1; + 1.7e1; + "Q43266"; + "https://en.wikipedia.org/wiki/Moravia" . + + a ; + "Teplice nad Metují"; + "Europe"; + "Czech Republic"; + "3064285"; + "CZ-Wecksels-00"; + 5.0595e1; + 1.6165e1; + "Q280873"; + "https://en.wikipedia.org/wiki/Teplice_nad_Metuj%C3%AD" . + + a ; + "Zbiroh"; + "Europe"; + "Czech Republic"; + "3061780"; + "CZ-Zbi-00"; + 4.98603e1; + 1.37728e1; + "Q168234"; + "https://en.wikipedia.org/wiki/Zbiroh" . + + a ; + "Algiers"; + "North Africa"; + "Algeria"; + "2507480"; + "DZ-00"; + 3.67667e1; + 3.05e0; + "Q3561"; + "https://en.wikipedia.org/wiki/Algiers" . + + a ; + "Cambridge"; + "Europe"; + "England"; + "EN-Cambr-00"; + 5.2205e1; + 1.225e-1; + "Q49111"; + "https://en.wikipedia.org/wiki/Cambridge" . + + a ; + "Chelsea"; + "Europe"; + "England"; + "EN-Chels-00"; + "London"; + 5.14875e1; + -1.684e-1; + "Q743535" . + + a ; + "Cheltenham"; + "Europe"; + "England"; + "EN-Chelt-00"; + 5.19e1; + -2.06667e0; + "Q206988"; + "https://en.wikipedia.org/wiki/Cheltenham" . + + a ; + "Chester"; + "Europe"; + "England"; + "EN-Chest-00"; + 5.31914e1; + -2.89028e0; + "Q170263"; + "https://en.wikipedia.org/wiki/Chester" . + + a ; + "Derby"; + "Europe"; + "England"; + "EN-Derb-00"; + 5.29247e1; + -1.478e0; + "Q43475"; + "https://en.wikipedia.org/wiki/Derby" . + + a ; + "Gloucestershire"; + "Europe"; + "England"; + "EN-Glouc-00"; + 5.1648e1; + 2.529e0; + "Q23165" . + + a ; + "Gloucester"; + "Europe"; + "England"; + "EN-Glouc-01"; + 5.18653e1; + -2.24583e0; + "Q170497"; + "https://en.wikipedia.org/wiki/Gloucester" . + + a ; + "Huddersfield"; + "Europe"; + "England"; + "EN-Hudd-00"; + 5.3645e1; + -1.7798e0; + "Q201812"; + "https://en.wikipedia.org/wiki/Huddersfield" . + + a ; + "Kingston upon Hull"; + "Europe"; + "England"; + "EN-Hull-00"; + 5.37444e1; + -3.325e-1; + "Q128147"; + "https://en.wikipedia.org/wiki/Kingston_upon_Hull" . + + a ; + "Leicester"; + "Europe"; + "England"; + "EN-Leic-00"; + 5.26349e1; + -1.1301e0; + "Q83065"; + "https://en.wikipedia.org/wiki/Leicester" . + + a ; + "Oxford"; + "Europe"; + "England"; + "EN-Oxf-00"; + 5.17519e1; + -1.25778e0; + "Q34217"; + "https://en.wikipedia.org/wiki/Oxford" . + + a ; + "Plymouth"; + "Europe"; + "England"; + "EN-Plym-00"; + 5.03714e1; + -4.14222e0; + "Q43382"; + "https://en.wikipedia.org/wiki/Plymouth" . + + a ; + "Shrewsbury"; + "Europe"; + "England"; + "EN-Shrews-00"; + 5.2708e1; + -2.754e0; + "Q201970"; + "https://en.wikipedia.org/wiki/Shrewsbury" . + + a ; + "Southampton"; + "Europe"; + "England"; + "EN-Southh-00"; + 5.09025e1; + -1.40417e0; + "Q79848"; + "https://en.wikipedia.org/wiki/Southampton" . + + a ; + "Tewkesbury"; + "Europe"; + "England"; + "EN-Tewk-00"; + "Gloucestershire"; + 5.199e1; + -2.16e0; + "Q1000717"; + "https://en.wikipedia.org/wiki/Tewkesbury" . + + a ; + "Wakefield"; + "Europe"; + "England"; + "EN-Wakef-00"; + 5.36825e1; + -1.4975e0; + "Q216638"; + "https://en.wikipedia.org/wiki/Wakefield" . + + a ; + "Wolverhampton"; + "Europe"; + "England"; + "EN-Wolver-00"; + 5.25842e1; + -2.1253e0; + "Q126269"; + "https://en.wikipedia.org/wiki/Wolverhampton" . + + a ; + "Cádiz"; + "Europe"; + "Spain"; + "ES-Cad-00"; + 3.65333e1; + -6.28333e0; + "Q15682"; + "https://de.wikipedia.org/wiki/C%C3%A1diz" . + + a ; + "Europe"; + "Spain"; + "2520308"; + "ES-CanIsl-00"; + "Canary Islands"; + 2.8e1; + -1.575e1; + "Q5813"; + "https://en.wikipedia.org/wiki/Canary_Islands" . + + a ; + "Cervera"; + "Europe"; + "Spain"; + "ES-Cerv-00"; + 4.16656e1; + 1.27111e0; + "Q847011" . + + a ; + "Navalmoral"; + "Europe"; + "Spain"; + "3115641"; + "ES-Nava-00"; + "Castilla la Vieja"; + 4.04597e1; + -4.76639e0; + "Q1632723"; + "https://en.wikipedia.org/wiki/Navalmoral" . + + a ; + "Seville"; + "Europe"; + "Spain"; + "2510911"; + "ES-SEVILLA-00"; + 3.739e1; + -5.99e0; + "Q8717"; + "https://en.wikipedia.org/wiki/Seville" . + + a ; + "Zafra"; + "Europe"; + "Spain"; + "2509377"; + "ES-ZAFRA-00"; + 3.84167e1; + -6.41667e0; + "Q140203"; + "https://en.wikipedia.org/wiki/Zafra" . + + a ; + "Tartu"; + "Europe"; + "Estland"; + "588335"; + "EST-Dorpat-00"; + 5.83667e1; + 2.67167e1; + "Q13972"; + "https://en.wikipedia.org/wiki/Tartu" . + + a ; + "East Asia"; + "EastAsia"; + 2.0e1; + 1.5e2; + "Q27231" . + + a ; + "Europe"; + "Eastern Europe"; + "7729884"; + "EasternEurope"; + 5.3e1; + 2.7e1; + "Q27468"; + "https://en.wikipedia.org/wiki/Eastern_Europe" . + + a ; + "Arras"; + "Europe"; + "France"; + "FR-Arr-00"; + 5.02892e1; + 2.78e0; + "Q131329"; + "https://de.wikipedia.org/wiki/Arras" . + + a ; + "Boulogne-sur-Mer"; + "Europe"; + "France"; + "3031133"; + "FR-BOUL-01"; + 5.07256e1; + 1.61389e0; + "Q81997"; + "https://en.wikipedia.org/wiki/Boulogne-sur-Mer" . + + a ; + "Cagnes-sur-Mer"; + "Europe"; + "France"; + "3029227"; + "FR-CagSM-00"; + 4.36636e1; + 7.14833e0; + "Q193832"; + "https://en.wikipedia.org/wiki/Cagnes-sur-Mer" . + + a ; + "Cherbourg (Cherbourg-en-Cotentin)"; + "Europe"; + "France"; + "3025466"; + "FR-Cherb-00"; + 4.9639e1; + -1.625e0; + "Q3667188"; + "https://en.wikipedia.org/wiki/Cherbourg" . + + a ; + "Ciboure"; + "Europe"; + "France"; + "3024979"; + "FR-Cibo-00"; + 4.33853e1; + -1.66778e0; + "Q235208"; + "https://en.wikipedia.org/wiki/Ciboure" . + + a ; + "Cognac"; + "Europe"; + "France"; + "3024440"; + "FR-Cogn-00"; + 4.56958e1; + -3.29167e-1; + "Q285"; + "https://en.wikipedia.org/wiki/Cognac,_France" . + + a ; + "Le Pouliguen"; + "Europe"; + "France"; + "FR-LePoul-00"; + 4.72778e1; + -2.42917e0; + "https://de.wikipedia.org/wiki/Le_Pouliguen" . + + a ; + "Lembach"; + "Europe"; + "France"; + "3003496"; + "FR-Lemb-00"; + 4.901e1; + 7.79e0; + "Q21323"; + "https://en.wikipedia.org/wiki/Lembach" . + + a ; + "Lille"; + "Europe"; + "France"; + "2998324"; + "FR-Lille-00"; + 5.06319e1; + 3.057e0; + "Q648"; + "https://en.wikipedia.org/wiki/Lille" . + + a ; + "Limoges"; + "Europe"; + "France"; + "FR-Limo-00"; + 4.58344e1; + 1.26167e0 . + + a ; + "Lyon"; + "Europe"; + "France"; + "2996944"; + "FR-Ly-00"; + 4.576e1; + 4.84e0; + "Q456"; + "https://en.wikipedia.org/wiki/Lyon" . + + a ; + "Nantes"; + "Europe"; + "France"; + "2990969"; + "FR-Nant-00"; + 4.72172e1; + -1.55389e0; + "Q12191"; + "https://en.wikipedia.org/wiki/Nantes" . + + a ; + "Le Vésinet, Paris"; + "Europe"; + "France"; + "2998854"; + "FR-Paris-02"; + 4.88923e1; + 2.1331e0; + "Q641607"; + "https://en.wikipedia.org/wiki/Le_V%C3%A9sinet" . + + a ; + "Pujaudran"; + "Europe"; + "France"; + "2985077"; + "FR-Puja-00"; + 4.35917e1; + 1.15e0; + "Q1004015"; + "https://en.wikipedia.org/wiki/Pujaudran" . + + a ; + "La Rochelle"; + "Europe"; + "France"; + "3006787"; + "FR-Roch-00"; + 4.61594e1; + -1.15139e0; + "Q82185"; + "https://en.wikipedia.org/wiki/La_Rochelle" . + + a ; + "Saint-Chinian"; + "Europe"; + "France"; + "2981183"; + "FR-SaintChin-00"; + 4.34219e1; + 2.94694e0; + "Q476063"; + "https://en.wikipedia.org/wiki/Saint-Chinian" . + + a ; + "Saint Genis-Laval"; + "Europe"; + "France"; + "2979985"; + "FR-StGenLav-00"; + 4.5696e1; + 4.793e0; + "Q910089"; + "https://en.wikipedia.org/wiki/Saint-Genis-Laval" . + + a ; + "Saint-Omer"; + "Europe"; + "France"; + "FR-StOm-00"; + 5.07461e1; + 2.2617e0; + "Q208793"; + "https://en.wikipedia.org/wiki/Saint-Omer" . + + a ; + "Ville d´Avray"; + "Europe"; + "France"; + "2968819"; + "FR-VdAvr-00"; + 4.88261e1; + 2.1933e0; + "Q456327"; + "https://en.wikipedia.org/wiki/Ville-d%27Avray" . + + a ; + "Drancy_internment_camp"; + "Europe"; + "France"; + "Fra-DiJeSt-64"; + 2.44528e0; + 4.89258e1; + "Q247958"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Rochdale"; + "Europe"; + "United Kingdom"; + "GB-Roch-00"; + 5.361e1; + -2.16e0; + "Q474605"; + "https://en.wikipedia.org/wiki/Rochdale" . + + a ; + "Anklam"; + "Europe"; + "Germany"; + "2956018"; + "GER-Ankl-00"; + 5.385e1; + 1.36833e1; + "Q488513"; + "https://en.wikipedia.org/wiki/Anklam" . + + a ; + "Bamberg"; + "Europe"; + "Germany"; + "2952984"; + "GER-Bamb-00"; + 4.99e1; + 1.09e1; + "Q3936"; + "https://en.wikipedia.org/wiki/Bamberg" . + + a ; + "Bonn"; + "Europe"; + "Germany"; + "GER-Bonn-00"; + 5.0734e1; + 7.09981e0; + "Q186545"; + "https://de.wikipedia.org/wiki/Bonn" . + + a ; + "Braunschweig"; + "Europe"; + "Germany"; + "GER-Braunsch-00"; + 5.22667e1; + 1.05167e1; + "Q2773"; + "https://en.wikipedia.org/wiki/Braunschweig" . + + a ; + "Dachau"; + "Europe"; + "Germany"; + "2939623"; + "GER-Dach-00"; + 4.82603e1; + 1.14342e1; + "Q7077"; + "https://en.wikipedia.org/wiki/Dachau,_Bavaria" . + + a ; + "Danzig"; + "Europe"; + "Germany"; + "GER-Danz-00"; + 5.44e1; + 1.866e1; + "Q9275784"; + "https://en.wikipedia.org/wiki/Free_City_of_Danzig" . + + a ; + "Dessau"; + "Europe"; + "Germany"; + "2937959"; + "GER-Dess-00"; + 5.18333e1; + 1.225e1; + "Q3828"; + "https://en.wikipedia.org/wiki/Dessau" . + + a ; + "Ebersbach (Döbeln)"; + "Europe"; + "Germany"; + "2933963"; + "GER-Eber-00"; + "Saxony"; + 5.11019e1; + 1.31019e1; + "Q554706"; + "https://en.wikipedia.org/wiki/Ebersbach_(D%C3%B6beln)" . + + a ; + "Ebersdorf"; + "Europe"; + "Germany"; + "GER-Ebersd-00"; + "Thüringen"; + 5.04847e1; + 1.16672e1; + "Q186545"; + "Ebersdorf (Saalburg-Ebersdorf)" . + + a ; + "Elberfeld (Wuppertal)"; + "Europe"; + "Germany"; + "2931276"; + "GER-Elberf-00"; + 5.12572e1; + 7.14917e0; + "Q702259"; + "https://en.wikipedia.org/wiki/Elberfeld" . + + a ; + "Erxleben"; + "Europe"; + "Germany"; + "2929244"; + "GER-Erx-00"; + 5.275e1; + 1.17667e1; + "Q573464"; + "https://en.wikipedia.org/wiki/Erxleben,_B%C3%B6rde" . + + a ; + "Freiburg im Breisgau"; + "Europe"; + "Germany"; + "2925177"; + "GER-Freib-00"; + 4.79833e1; + 7.85e0; + "Q2833"; + "https://en.wikipedia.org/wiki/Freiburg_im_Breisgau" . + + a ; + "Freudenstadt"; + "Europe"; + "Germany"; + "2924894"; + "GER-Freud-00"; + 4.84633e1; + 8.411110000000001e0; + "Q82838"; + "https://en.wikipedia.org/wiki/Freudenstadt" . + + a ; + "Goslar"; + "Europe"; + "Germany"; + "2918840"; + "GER-GOSLAR-00"; + "Lower Saxony"; + 5.19072e1; + 1.043e1; + "Q3896"; + "https://en.wikipedia.org/wiki/Goslar" . + + a ; + "Gießen"; + "Europe"; + "Germany"; + "2920512"; + "GER-Gies-00"; + 5.05872e1; + 8.66972e0; + "Q3874"; + "https://en.wikipedia.org/wiki/Giessen" . + + a ; + "Gilching"; + "Europe"; + "Germany"; + "2920433"; + "GER-Gilch-00"; + 4.81167e1; + 1.13e1; + "Q552131"; + "https://en.wikipedia.org/wiki/Gilching" . + + a ; + "Gmund am Tegernsee"; + "Europe"; + "Germany"; + "2919717"; + "GER-GmTeg-00"; + "Bavaria"; + 4.775e1; + 1.17333e1; + "Q31662"; + "https://en.wikipedia.org/wiki/Gmund_am_Tegernsee" . + + a ; + "Heilbronn"; + "Europe"; + "Germany"; + "2907669 "; + "GER-HN-00"; + "Baden-Württemberg"; + 4.91417e1; + 9.22222e0; + "Q715"; + "https://en.wikipedia.org/wiki/Heilbronn" . + + a ; + "Hanau"; + "Europe"; + "Germany"; + "2911007"; + "GER-Hanau-00"; + "Hessen"; + 5.01328e1; + 8.91694e0; + "Q3802"; + "https://en.wikipedia.org/wiki/Hanau" . + + a ; + "Herrsching am Ammersee"; + "Europe"; + "Germany"; + "2905604"; + "GER-HerschAmm-00"; + "Bavaria"; + 4.8e1; + 1.11833e1; + "Q170020"; + "https://de.wikipedia.org/wiki/Herrsching_am_Ammersee" . + + a ; + "Königswinter"; + "Europe"; + "Germany"; + "2885734"; + "GER-KoenW-00"; + 5.06736e1; + 7.19472e0; + "Q12444"; + "https://en.wikipedia.org/wiki/K%C3%B6nigswinter" . + + a ; + "Kressbronn am Bodensee"; + "Europe"; + "Germany"; + "2884344"; + "GER-Kress"; + 4.75958e1; + 9.6e0; + "Q557658"; + "https://en.wikipedia.org/wiki/Kressbronn_am_Bodensee" . + + a ; + "Münster"; + "Europe"; + "Germany"; + "2867543"; + "GER-Muens-00"; + 5.19625e1; + 7.62556e0; + "Q2742"; + "https://en.wikipedia.org/wiki/M%C3%BCnster" . + + a ; + "Passau"; + "Europe"; + "Germany"; + "2855328"; + "GER-Pass-00"; + 4.85667e1; + 1.34667e1; + "Q4190"; + "https://en.wikipedia.org/wiki/Passau" . + + a ; + "Radebeul"; + "Europe"; + "Germany"; + "2851077"; + "GER-Radeb-00"; + "Saxony"; + 5.11e1; + 1.365e1; + "Q8762"; + "https://en.wikipedia.org/wiki/Radebeul" . + + a ; + "Regensburg"; + "Europe"; + "Germany"; + "GER-Reg-00"; + 4.90153e1; + 1.21018e1; + "Q2978" . + + a ; + "Rostock"; + "Europe"; + "Germany"; + "2844588"; + "GER-Rost-00"; + 5.40882e1; + 1.21347e1; + "Q2861"; + "https://en.wikipedia.org/wiki/Rostock" . + + a ; + "Rottach-Egern"; + "Europe"; + "Germany"; + "2843775"; + "GER-Rott-00"; + 4.76951e1; + 1.17699e1; + "Q504255"; + "https://en.wikipedia.org/wiki/Rottach-Egern" . + + a ; + "Saarbrücken"; + "Europe"; + "Germany"; + "2842647"; + "GER-Saarb-00"; + 4.92327e1; + 6.99619e0; + "Q1724"; + "https://en.wikipedia.org/wiki/Saarbr%C3%BCcken" . + + a ; + "Schwedt an der Oder"; + "Europa"; + "Germany"; + "GER-SchwedtOd-00"; + 5.30556e1; + 1.42878e1; + "https://www.wikidata.org/wiki/Q16008"; + "https://de.wikipedia.org/wiki/Schwedt/Oder" . + + a ; + "Seelze"; + "Europe"; + "Germany"; + "2833641"; + "GER-Seelz-00"; + 5.23961e1; + 9.59806e0; + "Q16052"; + "https://en.wikipedia.org/wiki/Seelze" . + + a ; + "Tettnang"; + "Europe"; + "Germany"; + "2823368"; + "GER-Tettn-00"; + 4.76708e1; + 9.5875e0; + "Q506323"; + "https://en.wikipedia.org/wiki/Tettnang" . + + a ; + "Ulm"; + "Europe"; + "Germany"; + "2820256"; + "GER-Ulm-00"; + 4.84e1; + 9.98333e0; + "Q3012"; + "https://en.wikipedia.org/wiki/Ulm" . + + a ; + "Winsen"; + "Europe"; + "Germany"; + "2807845"; + "GER-Wins-00"; + 5.33651e1; + 1.02091e1; + "Q16000"; + "https://en.wikipedia.org/wiki/Winsen_(Luhe)" . + + a ; + "Athens"; + "Europe"; + "Greece"; + "264371"; + "GR-Athen-00"; + 3.79778e1; + 2.37278e1; + "Q1524"; + "https://en.wikipedia.org/wiki/Athens" . + + a ; + "Albertirsa"; + "Europe"; + "Hungary"; + "3056326"; + "HU-Irsa-00"; + 4.725e1; + 1.96167e1; + "Q578823"; + "https://en.wikipedia.org/wiki/Albertirsa" . + + a ; + "Jakarta"; + "Asia"; + "Indonesia"; + "1642911"; + "IDN-Jaka-00"; + -6.175e0; + 1.06829e2; + "Q3630"; + "https://en.wikipedia.org/wiki/Jakarta" . + + a ; + "Cork"; + "Europe"; + "Ireland"; + "IE-Cork-00"; + 5.18972e1; + -8.47306e0; + "Q36647"; + "https://en.wikipedia.org/wiki/Cork_(city)" . + + a ; + "Grange"; + "Europe"; + "Ireland"; + "IE-Grang-00"; + "County Sligo"; + 5.44e1; + -8.5167e0; + "Q3776988"; + "https://en.wikipedia.org/wiki/Grange,_County_Sligo" . + + a ; + "Sligo County"; + "Europe"; + "Ireland"; + "2961422"; + "IE-SligCounty-00"; + "Limerick"; + 5.425e1; + -8.66667e0; + "Q179325"; + "https://en.wikipedia.org/wiki/County_Sligo" . + + a ; + "Amritsar"; + "Asia"; + "India"; + "1278710"; + "IN-Amr-00"; + "Punjab"; + 3.164e1; + 7.486e1; + "Q48403"; + "https://en.wikipedia.org/wiki/Amritsar" . + + a ; + "Bareilly"; + "East Asia"; + "India"; + "IN-Barei-00"; + 2.83622e1; + 7.942e1; + "Q1797378"; + "https://de.wikipedia.org/wiki/Bareilly" . + + a ; + "Delhi"; + "Asia"; + "India"; + "1273294"; + "IN-Del-00"; + 2.86e1; + 7.72e1; + "Q1353"; + "https://en.wikipedia.org/wiki/Delhi" . + + a ; + "Karnal"; + "East Asia"; + "India"; + "IN-Karn-00"; + 2.96814e1; + 7.69892e1; + "Q256194"; + "https://de.wikipedia.org/wiki/Karnal" . + + a ; + "Gederah"; + "Asia"; + "Israel"; + "ISR-Gad-00"; + 3.18163e1; + 3.4777e1; + "Q921505" . + + a ; + "Blevo"; + "Europe"; + "Italy"; + "3178229"; + "IT-Blevo-00"; + "Lake Como"; + 4.6e1; + 9.26667e0; + "Q15523"; + "https://en.wikipedia.org/wiki/Lake_Como" . + + a ; + "Cagliari"; + "Europe"; + "Italy"; + "2525473"; + "IT-Cagli-00"; + 3.92167e1; + 9.116669999999999e0; + "Q1897"; + "https://en.wikipedia.org/wiki/Cagliari" . + + a ; + "Città di Castello"; + "Europe"; + "ITaly"; + "IT-CitCast-00"; + 4.34667e1; + 1.22333e1; + "Q20413"; + "https://it.wikipedia.org/wiki/Citt%C3%A0_di_Castello" . + + a ; + "Fermo"; + "Europe"; + "Italy"; + "3177099"; + "IT-Fermo-00"; + 4.31667e1; + 1.37167e1; + "Q13139"; + "https://en.wikipedia.org/wiki/Fermo" . + + a ; + "Ferrara"; + "Europe"; + "Italy"; + "3177090"; + "IT-Ferr-00"; + 4.48333e1; + 1.16167e1; + "Q13362"; + "https://en.wikipedia.org/wiki/Ferrara" . + + a ; + "Merano"; + "Europe"; + "Italy"; + "3173577"; + "IT-Meran-00"; + "Trentino"; + 4.66719e1; + 1.11617e1; + "Q131605"; + "https://en.wikipedia.org/wiki/Merano" . + + a ; + "Parma"; + "Europe"; + "Italy"; + "3171457"; + "IT-Parm-00"; + 4.48015e1; + 1.0328e1; + "Q2683"; + "https://en.wikipedia.org/wiki/Parma" . + + a ; + "Pavia"; + "Europe"; + "Italy"; + "3171366"; + "IT-Pavia-00"; + 4.51833e1; + 9.15e0; + "Q6259"; + "https://en.wikipedia.org/wiki/Pavia" . + + a ; + "Varese"; + "Europe"; + "Italy"; + "3164699"; + "IT-Vares-00"; + 4.58167e1; + 8.83333e0; + "Q6285"; + "https://de.wikipedia.org/wiki/Varese" . + + a ; + "Vercelli"; + "Europe"; + "Italy"; + "3164565"; + "IT-Verc-00"; + 4.53167e1; + 8.41667e0; + "Q5990"; + "https://en.wikipedia.org/wiki/Vercelli" . + + a ; + "Voghera"; + "Europe"; + "Italy"; + "3163995"; + "IT-Vogh-00"; + 4.49925e1; + 9.009169999999999e0; + "Q39981"; + "https://en.wikipedia.org/wiki/Voghera" . + + a ; + "Nagasaki"; + "Asia"; + "Japan"; + "JP-Naga-00"; + 3.27447e1; + 1.29874e2; + "Q38234"; + "https://en.wikipedia.org/wiki/Nagasaki" . + + a ; + "Asia"; + "Korea"; + "KR-00"; + 3.83167e1; + 1.27233e2; + "Q18097"; + "https://en.wikipedia.org/wiki/Korea" . + + a ; + "Kandy"; + "Asia"; + "Sri Lanka"; + "LK-Kandy-00"; + 7.29511e0; + 8.06371e1; + "Q203197" . + + a ; + "Nuwara Eliya"; + "Asia"; + "Sri Lanka"; + "LK-NewEll-00"; + 6.97046e0; + 8.077419999999999e1; + "Q1583950" . + + a ; + "Europe"; + "Latvia"; + "LV-00"; + 5.68689e1; + 2.48411e1; + "Q211" . + + a ; + "Liepāja"; + "Europe"; + "Latvia"; + "457954"; + "LV-Libau-00"; + 5.65125e1; + 2.10125e1; + "Q167668"; + "https://en.wikipedia.org/wiki/Liep%C4%81ja" . + + a ; + "Jelgava"; + "Europe"; + "Latvia"; + "459279"; + "LV-Mitau-00"; + 5.665e1; + 2.37125e1; + "Q179830"; + "https://en.wikipedia.org/wiki/Jelgava" . + + a ; + "Trikāta Parish"; + "Europe"; + "Latvia"; + "LV-Trik-00"; + 5.75475e1; + 2.56991e1; + "Q1840703"; + "https://en.wikipedia.org/wiki/Trik%C4%81ta_Parish" . + + a ; + "Europe"; + "Monaco"; + "2993457"; + "MC-00"; + 4.37333e1; + 7.41667e0; + "Q235"; + "https://en.wikipedia.org/wiki/Monaco" . + + a ; + "Mawlamyine"; + "Asia"; + "Myanmar"; + "MM-Mawl-00"; + "Mon State"; + 1.64847e1; + 9.76258e1; + "Q685941" . + + a ; + "South America"; + "Mexico"; + "3521082"; + "MX-Pueb-00"; + "Puebla"; + 1.90036e1; + -9.789109999999999e1; + "Q79923"; + "https://en.wikipedia.org/wiki/Puebla" . + + a ; + "Veracruz"; + "South America"; + "Mexico"; + "3514783"; + "MX-Veracr-00"; + "Veracruz"; + 1.91903e1; + -9.61533e1; + "Q173270"; + "https://en.wikipedia.org/wiki/Veracruz_(city)" . + + a ; + "Middle East"; + ""; + "MiddleEast"; + "Middle East"; + 2.6e1; + 5.0e1; + "Q7204"; + "https://en.wikipedia.org/wiki/Middle_East" . + + a ; + "Hîncești"; + "Europe"; + "Moldova"; + "Mol-DiJeSt-5"; + 4.68258e1; + 2.85936e1; + "Q1141853"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Velp"; + "Europe"; + "Netherlands"; + "2745677"; + "NL-VELP-00"; + "Gelderland"; + 5.19947e1; + 5.97583e0; + "Q2375289"; + "https://en.wikipedia.org/wiki/Velp,_Gelderland" . + + a ; + "Dordrecht"; + "Europe"; + "Netherlands"; + "NLD-Dordr-00"; + 5.17958e1; + 4.67833e0; + "Q26421"; + "https://en.wikipedia.org/wiki/Dordrecht" . + + a ; + "Friesland"; + "Europe"; + "Netherlands"; + "NLD-Friesl-00"; + 5.32014e1; + 5.8e0; + "Q770"; + "https://en.wikipedia.org/wiki/Friesland" . + + a ; + "Haarelm"; + "Europe"; + "Netherlands"; + "NLD-Haarl-00"; + 5.23833e1; + 4.63333e0; + "https://en.wikipedia.org/wiki/Haarlem" . + + a ; + "Leiden"; + "Europe"; + "Netherlands"; + "NLD-Leid-00"; + 5.216e1; + 4.49e0; + "Q43631"; + "https://en.wikipedia.org/wiki/Leiden" . + + a ; + "Utrecht"; + "Europe"; + "Netherlands"; + "NLD-Utre-00"; + 5.20908e1; + 5.12167e0; + "Q776"; + "https://en.wikipedia.org/wiki/Utrecht" . + + a ; + "Europe"; + "Norway"; + "3144096"; + "NOR-00"; + 6.2e1; + 1.0e1; + "Q20"; + "https://en.m.wikipedia.org/wiki/Norway" . + + a ; + "Bergen"; + "Europe"; + "Norway"; + "3161732"; + "NOR-Bergen-00"; + "Vestland"; + 6.038e1; + 5.34e0; + "Q26793"; + "https://en.wikipedia.org/wiki/Bergen" . + + a ; + "Bluff"; + "Oceania"; + "New Zealand"; + "NZ-Bluff-00"; + -4.65992e1; + 1.68344e2; + "Q152028" . + + a ; + "Gisbourn"; + "Oceania"; + "New Zealand"; + "NZ-Gisb-00"; + -3.86625e1; + 1.78018e2 . + + a ; + "Hāwera"; + "Oceania"; + "New Zealand"; + "NZ-Haw-00"; + -3.95894e1; + 1.74284e2; + "Q998452" . + + a ; + "Invercargill"; + "Oceania"; + "New Zealand"; + "NZ-Inv-00"; + -4.64153e1; + 1.68348e2; + "Q31805" . + + a ; + "Lyttelton"; + "Oceania"; + "New Zealand"; + "NZ-Lytt-00"; + -4.36e1; + 1.72717e2; + "Q911909" . + + a ; + "New Plymouth"; + "Oceania"; + "New Zealand"; + "NZ-NewPly-00"; + -3.90556e1; + 1.74075e2; + "Q212984" . + + a ; + "Oamaru"; + "Oceania"; + "New Zealand"; + "NZ-Oam-00"; + -4.50975e1; + 1.70971e2; + "Q4782" . + + a ; + "New Brunswick"; + "North America"; + "USA"; + "5101717"; + "New Brunswick"; + "New Jersey"; + 4.04866e1; + -7.44444e1; + "Q138338"; + "https://en.wikipedia.org/wiki/New_Brunswick,_New_Jersey" . + + a ; + "Bochnia"; + "Europe"; + "Poland"; + "PL-Boch-00"; + 4.99833e1; + 2.04333e1; + "Q815903" . + + a ; + "Garnek"; + "Europe"; + "Poland"; + "3099477"; + "PL-Garn-00"; + 5.08833e1; + 1.945e1; + "Q291250"; + "https://en.wikipedia.org/wiki/Garnek,_Silesian_Voivodeship" . + + a ; + "Głogów"; + "Europe"; + "Poland"; + "3099213"; + "PL-Glog-00"; + 5.16589e1; + 1.60803e1; + "Q66013"; + "https://en.wikipedia.org/wiki/G%C5%82og%C3%B3w" . + + a ; + "Grudziądz"; + "Europe"; + "Poland"; + "3098218"; + "PL-Grudz-00"; + 5.34875e1; + 1.8755e1; + "Q123511"; + "https://en.wikipedia.org/wiki/Grudzi%C4%85dz" . + + a ; + "Lipno"; + "Europe"; + "Poland"; + "3093268"; + "PL-Lipn-00"; + 5.285e1; + 1.91667e1; + "Q324922"; + "https://en.wikipedia.org/wiki/Lipno,_Lipno_County" . + + a ; + "Głubczyce"; + "Europe"; + "Poland"; + "3099174"; + "PL-Loeb-00"; + 5.02e1; + 1.78333e1; + "Q717947"; + "https://en.wikipedia.org/wiki/G%C5%82ubczyce" . + + a ; + "Kwidzyn"; + "Europe"; + "Poland"; + "3094086"; + "PL-Marienw-00"; + 5.37333e1; + 1.89333e1; + "Q326582"; + "https://en.wikipedia.org/wiki/Kwidzyn" . + + a ; + "Nowy Sącz"; + "Europe"; + "Poland"; + "PL-Nowy-00"; + 4.9625e1; + 2.06956e1; + "Q802" . + + a ; + "Posen"; + "Europe"; + "Poland"; + "PL-Posen-00"; + 5.24e1; + 1.69167e1; + "Q268"; + "https://en.wikipedia.org/wiki/Province_of_Posen" . + + a ; + "Przemyśl"; + "Europe"; + "Poland"; + "PL-Prz-00"; + 4.97822e1; + 2.27744e1; + "Q208473" . + + a ; + "Rzeszów"; + "Europe"; + "Poland"; + "PL-Rzes-00"; + 5.00336e1; + 2.20047e1; + "Q598" . + + a ; + "Szprotawa"; + "Europe"; + "Poland"; + "3083632"; + "PL-Sprott-00"; + 5.1565e1; + 1.55375e1; + "Q165066"; + "https://en.wikipedia.org/wiki/Szprotawa" . + + a ; + "Świdnica"; + "Europe"; + "Poland"; + "3084093"; + "PL-Swid-00"; + 5.085e1; + 1.64833e1; + "Q387396"; + "https://en.wikipedia.org/wiki/%C5%9Awidnica" . + + a ; + "Wola"; + "Europe"; + "Poland"; + "755330"; + "PL-Wola-00"; + 5.22333e1; + 2.09572e1; + "Q1020136"; + "https://en.wikipedia.org/wiki/Wola" . + + a ; + "Europe"; + "Prussia"; + "PRU-00"; + "Prussia"; + 5.252e1; + 1.3405e1; + "Q38872" . + + a ; + "Asunción"; + "South America"; + "Paraguay"; + "3439389"; + "PRY-Assunc-00"; + -2.52819e1; + -5.7635e1; + "Q2933"; + "https://en.wikipedia.org/wiki/Asunci%C3%B3n" . + + a ; + "Asia"; + "Palestine"; + "PS-00"; + 3.2e1; + 3.525e1; + "Q23792" . + + a ; + "Algarve"; + "Europe"; + "Portugal"; + "2271989"; + "PT-Alga-00"; + 3.72233e1; + -8.064590000000001e0; + "Q26831"; + "https://en.wikipedia.org/wiki/Algarve" . + + a ; + "Arnoia"; + "Europe"; + "Portugal"; + "PT-Arn-00"; + 4.13671e1; + -8.015890000000001e0; + "Q5049748" . + + a ; + "Braga"; + "Europe"; + "Portugal"; + "2742032"; + "PT-Braga-00"; + 4.155e1; + -8.43e0; + "Q83247"; + "https://en.wikipedia.org/wiki/Braga" . + + a ; + "Cedofeita (Porto)"; + "Europe"; + "Portugal"; + "8012855"; + "PT-Cedof-00"; + 4.11558e1; + -8.623329999999999e0; + "Q1052596"; + "https://en.wikipedia.org/wiki/Cedofeita" . + + a ; + "Foz do Douro (Porto)"; + "Europe"; + "Portugal"; + "2739336"; + "PT-FdD-00"; + 4.11538e1; + -8.67564e0; + "Q1397371"; + "https://en.wikipedia.org/wiki/Foz_do_Douro" . + + a ; + "Europe"; + "Portugal"; + "2737656"; + "PT-Minho-00"; + "Minho"; + 4.18184e1; + -8.4155e0; + "Q512317"; + "https://en.wikipedia.org/wiki/Minho_Province" . + + a ; + "Santa Maria (Tavira)"; + "Europe"; + "Portugal"; + "2262744"; + "PT-StMar-00"; + 3.71166e1; + -7.65e0; + "Q372840"; + "https://en.wikipedia.org/wiki/Tavira" . + + a ; + "Viseu"; + "Europe"; + "Portugal"; + "2732265"; + "PT-Viz-00"; + 4.06576e1; + -7.91452e0; + "Q117676"; + "https://en.wikipedia.org/wiki/Viseu" . + + a ; + "Mszczonów"; + "Europe"; + "Poland"; + "Pol-DiJeSt-121"; + 5.19742e1; + 2.05267e1; + "Q477955"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Otwock"; + "Europe"; + "Poland"; + "Pol-DiJeSt-138"; + 5.21167e1; + 2.12667e1; + "Q745059"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Podgórze"; + "Europe"; + "Poland"; + "Pol-DiJeSt-86"; + 5.00416e1; + 2.00177e1; + "Q2553877"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Biłgoraj"; + "Europe"; + "Poland"; + "Pol-DiJeSt-95"; + 5.055e1; + 2.27333e1; + "Q319445"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Bârlad"; + "Europe"; + "Romania"; + "Rom-DiJeSt-97"; + 4.62167e1; + 2.76667e1; + "Q335868"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Rostov-on-Don"; + "Europe"; + "Russia"; + "Rus-DiJeSt-147"; + 4.72225e1; + 3.971e1; + "Q908"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Dundee"; + "Europe"; + "Scotland"; + "2650752"; + "SCT-Dundee-00"; + 5.64611e1; + -2.96944e0; + "Q123709"; + "https://en.wikipedia.org/wiki/Dundee" . + + a ; + "Inverurie"; + "Europe"; + "Scotland"; + "2646073"; + "SCT-Inv-00"; + 5.728e1; + -2.38e0; + "Q1017537"; + "https://en.wikipedia.org/wiki/Inverurie" . + + a ; + "Perth"; + "Europe"; + "Scotland"; + "SCT-Perth-00"; + 5.63958e1; + -3.43333e0; + "Q203000"; + "https://en.wikipedia.org/wiki/Perth,_Scotland" . + + a ; + "Europe"; + "Sweden"; + "SE-00"; + 6.3e1; + 1.6e1; + "Q34" . + + a ; + "Kalmar"; + "Europe"; + "Scotland"; + "2702261"; + "SE-Kalm-00"; + 5.66614e1; + 1.63628e1; + "Q26345"; + "https://en.wikipedia.org/wiki/Kalmar" . + + a ; + "Europe"; + "Sweden"; + "SE-Livo-00"; + "Livonia"; + 5.78622e1; + 2.59672e1; + "Q183464"; + "https://en.wikipedia.org/wiki/Livonia" . + + a ; + "Slovenj Gradec"; + "Europe"; + "Slovenia"; + "3190536"; + "SL-Wind-00"; + 4.65103e1; + 1.50806e1; + "Q15918"; + "https://en.wikipedia.org/wiki/Slovenj_Gradec" . + + a ; + "Europe"; + "Serbia"; + "SRB-00"; + 4.395e1; + 2.09333e1; + "Q403" . + + a ; + "Europe"; + "Soviet Union"; + "SU-00"; + "Soviet Union"; + 5.58185e1; + 3.7607e1; + "Q15180" . + + a ; + "Pezinok"; + "Europe"; + "Slovakia"; + "3058210"; + "SVK-Pez-00"; + 4.82892e1; + 1.72692e1; + "Q659424"; + "https://en.wikipedia.org/wiki/Pezinok" . + + a ; + "Europe"; + "Scandinavia"; + "Scandinavia"; + 6.3e1; + 1.4e1; + "Q21195"; + "https://en.wikipedia.org/wiki/Scandinavia" . + + a ; + "Berezhany"; + "Europe"; + "Ukraine"; + "UA-Berez-00"; + 4.94458e1; + 2.49361e1; + "Q793424" . + + a ; + "Podolia"; + "Europe"; + "Ukraine"; + "UA-Podo-00"; + 4.93309e1; + 3.18313e1; + "Q171784"; + "https://en.wikipedia.org/wiki/Tulchyn" . + + a ; + "Poltava"; + "Europe"; + "Ukraine"; + "UA-Polt-00"; + 4.95867e1; + 3.45608e1; + "Q156747" . + + a ; + "Yekaterinoslav"; + "Europe"; + "Ukraine"; + "UA-Yekat-00"; + 4.845e1; + 3.49833e1; + "Q49518"; + "https://en.wikipedia.org/wiki/Yekaterinoslav_Governorate" . + + a ; + "Blean"; + "Europe"; + "England (UK)"; + "2655365"; + "UK-Blean-00"; + 5.1307e1; + 1.043e0; + "Q2741069"; + "https://en.wikipedia.org/wiki/Blean" . + + a ; + "Croydon"; + "Europe"; + "England (UK)"; + "2651817"; + "UK-CROY-00"; + "London"; + 5.13727e1; + -1.099e-1; + "Q2213391"; + "https://en.wikipedia.org/wiki/Croydon" . + + a ; + "Caldbeck"; + "Europe"; + "England (UK)"; + "2654034"; + "UK-Caldb-00"; + 5.475e1; + -3.0e0; + "Q2002646"; + "https://en.wikipedia.org/wiki/Caldbeck" . + + a ; + "Europe"; + "United Kingdom"; + "2651716"; + "UK-Cumb-00"; + "Cumberland"; + 5.475e1; + -3.0e0; + "Q23360"; + "https://en.wikipedia.org/wiki/Cumberland" . + + a ; + "Dover"; + "Europe"; + "England (UK)"; + "2651048"; + "UK-Dov-00"; + 5.11274e1; + 1.3122e0; + "Q179224"; + "https://en.wikipedia.org/wiki/Dover" . + + a ; + "Egham"; + "Europe"; + "England (UK)"; + "2650188"; + "UK-Egh-00"; + 5.14289e1; + -5.47778e-1; + "Q746681"; + "https://en.wikipedia.org/wiki/Egham" . + + a ; + "Grantham"; + "Europe"; + "England (UK)"; + "2648208"; + "UK-Granth-00"; + 5.2918e1; + -6.38e-1; + "Q846683"; + "https://en.wikipedia.org/wiki/Grantham" . + + a ; + "Greenwich"; + "Europe"; + "United Kingdom"; + "UK-Greenw-00"; + "London"; + 5.14813e1; + -8.069e-3; + "Q179385" . + + a ; + "Lancashire"; + "Europe"; + "England (UK)"; + "2644974"; + "UK-Lanc-00"; + 5.38e1; + -2.6e0; + "Q23077"; + "https://en.wikipedia.org/wiki/Lancashire" . + + a ; + "Leytonstone"; + "Europe"; + "England (UK)"; + "6692921"; + "UK-Lyton-00"; + 5.1569e1; + 1.0e-2; + "Q1368969"; + "https://en.wikipedia.org/wiki/Leytonstone" . + + a ; + "Stratford"; + "Europe"; + "England (UK)"; + "2636714"; + "UK-STRATFORD-00"; + "London"; + 5.15423e1; + -2.56e-3; + "Q676136"; + "https://en.wikipedia.org/wiki/Stratford,_London" . + + a ; + "Shoreham-by-Sea"; + "Europe"; + "England (UK)"; + "2637916"; + "UK-ShorSea-00"; + 5.0834e1; + -2.73e-1; + "Q770599"; + "https://en.wikipedia.org/wiki/Shoreham-by-Sea" . + + a ; + "Stamford"; + "Europe"; + "England (UK)"; + "2637104"; + "UK-Stamf-00"; + 5.26528e1; + -4.83611e-1; + "Q1000662"; + "https://en.wikipedia.org/wiki/Stamford,_Lincolnshire" . + + a ; + "Twickenham"; + "Europe"; + "England (UK)"; + "2635308"; + "UK-Twick-00"; + 5.1449e1; + -3.37e-1; + "Q1143278"; + "https://en.wikipedia.org/wiki/Twickenham" . + + a ; + "Europe"; + "Wales (UK)"; + "2634895"; + "UK-Wales-00"; + 5.23e1; + -3.6e0; + "Q25"; + "https://en.wikipedia.org/wiki/Wales" . + + a ; + "Weymouth"; + "Europe"; + "United Kingdom"; + "UK-Weym-00"; + "Dorset"; + 5.06097e1; + -2.45472e0; + "Q661619"; + "https://en.wikipedia.org/wiki/Weymouth,_Dorset" . + + a ; + "Winchester"; + "Europe"; + "England (UK)"; + "2633858"; + "UK-Winch-00"; + 5.10632e1; + -1.308e0; + "Q172157"; + "https://en.wikipedia.org/wiki/Winchester" . + + a ; + "Windsor"; + "Europe"; + "England (UK)"; + "2633842"; + "UK-Windsor-00"; + 5.148e1; + -6.13056e-1; + "Q464955"; + "https://en.wikipedia.org/wiki/Windsor,_Berkshire" . + + a ; + "North America"; + "USA"; + "5551752"; + "USA-AZ-00"; + "Arizona"; + 3.42744e1; + -1.1166e2; + "Q816"; + "https://en.wikipedia.org/wiki/Arizona" . + + a ; + "Adrian"; + "North America"; + "USA"; + "4983811"; + "USA-Adria-00"; + "Michigan"; + 4.18963e1; + -8.40377e1; + "Q372304"; + "https://en.wikipedia.org/wiki/Adrian,_Michigan" . + + a ; + "North America"; + "USA"; + "USA-Alabama-00"; + "Alabama"; + 3.27917e1; + -8.68308e1; + "Q173"; + "https://en.wikipedia.org/wiki/Alabama" . + + a ; + "Albuquerque"; + "North America"; + "USA"; + "5454711"; + "USA-Albuq-00"; + "New Mexico"; + 3.50844e1; + -1.0665e2; + "Q34804"; + "https://en.wikipedia.org/wiki/Albuquerque,_New_Mexico" . + + a ; + "Anderson"; + "North America"; + "USA"; + "4917592"; + "USA-Anders-00"; + "Indiana"; + 4.01055e1; + -8.56888e1; + "Q491461"; + "https://en.wikipedia.org/wiki/Anderson,_Indiana" . + + a ; + "Ashland"; + "North America"; + "USA"; + "5146055"; + "USA-Ash-00"; + "Ohio"; + 4.0875e1; + -8.2318e1; + "Q725573"; + "https://en.wikipedia.org/wiki/Ashland,_Ohio" . + + a ; + "Ashland"; + "North America"; + "USA"; + "USA-AshW-00"; + "Wisconsin"; + 4.659e1; + -9.088e1; + "Q725594" . + + a ; + "Bangor"; + "North America"; + "USA"; + "4957280"; + "USA-Bang-00"; + "Maine"; + 4.4803e1; + -6.87675e1; + "Q327012"; + "https://en.wikipedia.org/wiki/Bangor,_Maine" . + + a ; + "Battle Creek"; + "North America"; + "USA"; + "4985153"; + "USA-BatCre-00"; + "Michigan"; + 4.23122e1; + -8.52041e1; + "Q810998"; + "https://en.wikipedia.org/wiki/Battle_Creek,_Michigan" . + + a ; + "Beaumont"; + "North America"; + "USA"; + "4672989"; + "USA-Beau-00"; + "Texas"; + 3.008e1; + -9.41266e1; + "Q128282"; + "https://en.wikipedia.org/wiki/Beaumont,_Texas" . + + a ; + "Bellingham"; + "North America"; + "USA"; + "5786899"; + "USA-Bellin-00"; + "Washington"; + 4.875e1; + -1.22483e2; + "Q430267"; + "https://en.wikipedia.org/wiki/Bellingham,_Washington" . + + a ; + "Benton Harbor"; + "North America"; + "USA"; + "4985711"; + "USA-Ben-Harb-00"; + "Michigan"; + 4.21166e1; + -8.64541e1; + "Q818338"; + "https://en.wikipedia.org/wiki/Benton_Harbor,_Michigan" . + + a ; + "Bennington"; + "North America"; + "USA"; + "5233742"; + "USA-Benn-00"; + "Vermont"; + 4.28911e1; + -7.3208e1; + "Q817921"; + "https://en.wikipedia.org/wiki/Bennington,_Vermont" . + + a ; + "Bloomington"; + "North America"; + "USA"; + "USA-Bloom-00"; + "Indiana"; + 3.91622e1; + -8.65292e1; + "Q490385" . + + a ; + "Bluefield"; + "North America"; + "USA"; + "4799622"; + "USA-Bluef-00"; + "West Virginia"; + 3.72622e1; + -8.12186e1; + "Q885991"; + "https://en.wikipedia.org/wiki/Bluefield,_West_Virginia" . + + a ; + "Boise"; + "North America"; + "USA"; + "5586437"; + "USA-Boise-00"; + "Idaho"; + 4.36158e1; + -1.16202e2; + "Q35775"; + "https://en.wikipedia.org/wiki/Boise,_Idaho" . + + a ; + "Bowery"; + "North America"; + "USA"; + "USA-Bow-00"; + "New York"; + 4.07199e1; + -7.399420000000001e1; + "Q785788" . + + a ; + "Bradford"; + "North America"; + "USA"; + "USA-Bradf-00"; + "Pennsylvania"; + 4.19592e1; + -7.86447e1; + "Q662409" . + + a ; + "Brattleboro"; + "North America"; + "USA"; + "5234141"; + "USA-Brattle-00"; + "Vermont"; + 4.285e1; + -7.25822e1; + "Q899813"; + "https://en.wikipedia.org/wiki/Brattleboro,_Vermont" . + + a ; + "Glendale"; + "North America"; + "USA"; + "5352423"; + "USA-CA-05"; + "California"; + 3.41461e1; + -1.18255e2; + "Q485716"; + "https://en.wikipedia.org/wiki/Glendale,_California" . + + a ; + "Manhattan Beach"; + "North America"; + "USA"; + "5370082"; + "USA-CA-07"; + "California"; + 3.389e1; + -1.1841e2; + "Q568610"; + "https://en.wikipedia.org/wiki/Manhattan_Beach,_California" . + + a ; + "Norwich"; + "North America"; + "USA"; + "USA-CNorw-00"; + "Connecticut"; + 4.15503e1; + -7.208750000000001e1; + "Q631402" . + + a ; + "Ridgefield"; + "North America"; + "USA"; + "4841463"; + "USA-CT-01"; + "Connecticut"; + 4.13053e1; + -7.35014e1; + "Q753930"; + "https://en.wikipedia.org/wiki/Ridgefield,_Connecticut" . + + a ; + "Cairo"; + "North America"; + "USA"; + "4234985"; + "USA-Cairo-00"; + "Illinois"; + 3.7013e1; + -8.91802e1; + "Q575306"; + "https://en.wikipedia.org/wiki/Cairo,_Illinois" . + + a ; + "Camden"; + "North America"; + "USA"; + "4501018"; + "USA-Camd-00"; + "New Jersey"; + 3.99369e1; + -7.51061e1; + "Q138367"; + "https://en.wikipedia.org/wiki/Camden,_New_Jersey" . + + a ; + "Charlottesville"; + "North America"; + "USA"; + "4752031"; + "USA-CharVil-00"; + "Virginia"; + 3.80299e1; + -7.8479e1; + "Q123766"; + "https://en.wikipedia.org/wiki/Charlottesville,_Virginia" . + + a ; + "Charleston"; + "North America"; + "USA"; + "4801859"; + "USA-Charlest-00"; + "West Virginia"; + 3.83498e1; + -8.16326e1; + "Q44564"; + "https://en.wikipedia.org/wiki/Charleston,_West_Virginia" . + + a ; + "Colfax"; + "North America"; + "USA"; + "5790554"; + "USA-Colf-00"; + "Washington"; + 4.68833e1; + -1.17367e2; + "Q1509984"; + "https://en.wikipedia.org/wiki/Colfax,_Washington" . + + a ; + "North America"; + "USA"; + "USA-Colorado-00"; + "Colorado"; + 3.9e1; + -1.055e2; + "Q1261" . + + a ; + "Columbia"; + "North America"; + "USA"; + "USA-Columb-00"; + "South Carolina"; + 3.40006e1; + -8.10347e1; + "Q38453"; + "https://en.wikipedia.org/wiki/Columbia,_South_Carolina" . + + a ; + "Corning"; + "North America"; + "USA"; + "5113760"; + "USA-Corn-00"; + "New York"; + 4.2148e1; + -7.70569e1; + "Q576395"; + "https://en.wikipedia.org/wiki/Corning,_New_York" . + + a ; + "Crawfordsville"; + "North America"; + "USA"; + "USA-Crawdf-00"; + "Indiana"; + 4.00388e1; + -8.68968e1; + "Q986629" . + + a ; + "Cripple Creek"; + "North America"; + "USA"; + "5418552"; + "USA-CriCre-00"; + "Colorado"; + 3.87483e1; + -1.05175e2; + "Q117605"; + "https://en.wikipedia.org/wiki/Cripple_Creek,_Colorado" . + + a ; + "Crookston"; + "North America"; + "USA"; + "5023465"; + "USA-Crook-00"; + "Minnesota"; + 4.77747e1; + -9.66063e1; + "Q1626913"; + "https://en.wikipedia.org/wiki/Crookston,_Minnesota" . + + a ; + "Crown King"; + "North America"; + "USA"; + "5291754"; + "USA-CrownK-00"; + "Arizona"; + 3.42056e1; + -1.12339e2; + "Q748161"; + "https://en.wikipedia.org/wiki/Crown_King,_Arizona" . + + a ; + "Dowagiac"; + "North America"; + "USA"; + "4991111"; + "USA-Dowag-00"; + "Michigan"; + 4.19841e1; + -8.61086e1; + "Q2298596"; + "https://en.wikipedia.org/wiki/Dowagiac,_Michigan" . + + a ; + "East Saginaw"; + "North America"; + "USA"; + "USA-ESagi-00"; + "Michigan"; + 4.3419e1; + -8.3947e1; + "Q719" . + + a ; + "East Liverpool"; + "North America"; + "USA"; + "5152709"; + "USA-EasLiv-00"; + "Ohio"; + 4.06286e1; + -8.05719e1; + "Q998893"; + "https://en.wikipedia.org/wiki/East_Liverpool,_Ohio" . + + a ; + "North America"; + "USA"; + "USA-EastCoast"; + "East Coast"; + 4.07128e1; + -7.4006e1; + "Q4268"; + "https://en.wikipedia.org/wiki/East_Coast_of_the_United_States" . + + a ; + "Elgin"; + "North America"; + "USA"; + "USA-Elg-00"; + "Illinois"; + 4.20383e1; + -8.83228e1; + "Q499887"; + "https://en.wikipedia.org/wiki/Elgin,_Illinois" . + + a ; + "Ellicottville"; + "North America"; + "USA"; + "5116418"; + "USA-Ellic-00"; + "New York"; + 4.22751e1; + -7.86728e1; + "Q5365314"; + "https://en.wikipedia.org/wiki/Ellicottville,_New_York" . + + a ; + "Everett"; + "North America"; + "USA"; + "5793933"; + "USA-Ever-00"; + "Washington"; + 4.79791e1; + -1.22202e2; + "Q392599"; + "https://en.wikipedia.org/wiki/Everett,_Washington" . + + a ; + "Flint"; + "North America"; + "USA"; + "4992982"; + "USA-Flint-00"; + "Michigan"; + 4.30188e1; + -8.369329999999999e1; + "Q490584"; + "https://en.wikipedia.org/wiki/Flint,_Michigan" . + + a ; + "Fond du Lac"; + "North America"; + "USA"; + "USA-FondL-00"; + "Wisconsin"; + 4.37751e1; + -8.84449e1; + "Q985584" . + + a ; + "Galesburg"; + "North America"; + "USA"; + "USA-Galesb-00"; + "Illinois"; + 4.09478e1; + -9.03711e1; + "Q782574" . + + a ; + "North America"; + "USA"; + "USA-Georgia"; + "Georgia"; + 3.26833e1; + -8.341670000000001e1; + "Q1428"; + "https://en.wikipedia.org/wiki/Georgia_(U.S._state)" . + + a ; + "Gloversville"; + "North America"; + "USA"; + "5118743"; + "USA-Glover-00"; + "New York"; + 4.305e1; + -7.434999999999999e1; + "Q1380511"; + "https://en.wikipedia.org/wiki/Gloversville,_New_York" . + + a ; + "Grand Forks"; + "North America"; + "USA"; + "USA-GrFork-00"; + "North Dakota"; + 4.79253e1; + -9.70325e1; + "Q34144" . + + a ; + "Grand Junction"; + "North America"; + "USA"; + "5423573"; + "USA-GraJun-00"; + "Colorado"; + 3.90877e1; + -1.08568e2; + "Q989903"; + "https://en.wikipedia.org/wiki/Grand_Junction,_Colorado" . + + a ; + "Green Bay"; + "North America"; + "USA"; + "USA-GreB-00"; + "Wisconsin "; + 4.45133e1; + -8.80158e1; + "Q47430" . + + a ; + "Greensburg"; + "North America"; + "USA"; + "5192029"; + "USA-GreBur-00"; + "Pennsylvania"; + 4.02977e1; + -7.954219999999999e1; + "Q734974"; + "https://en.wikipedia.org/wiki/Greensburg,_Pennsylvania" . + + a ; + "Greeley"; + "North America"; + "USA"; + "USA-Greel-00"; + "Colorado"; + 4.0415e1; + -1.04724e2; + "Q94274" . + + a ; + "Halifax"; + "North America"; + "Canada"; + "5969424"; + "USA-Hali-00"; + "Nova Scotia"; + 4.46475e1; + -6.35905e1; + "Q2141"; + "https://en.wikipedia.org/wiki/Halifax,_Nova_Scotia" . + + a ; + "Hanniball"; + "North America"; + "USA"; + "USA-Hanb-00"; + "Missouri"; + 3.97042e1; + -9.13775e1 . + + a ; + "Hancock"; + "North America"; + "USA"; + "4995201"; + "USA-Hanc-00"; + "Michigan"; + 4.71266e1; + -8.85847e1; + "Q12435"; + "https://en.wikipedia.org/wiki/Hancock,_Michigan" . + + a ; + "Hanford"; + "North America"; + "USA"; + "5355180"; + "USA-Hanf-00"; + "California"; + 3.63263e1; + -1.19637e2; + "Q375185"; + "https://en.wikipedia.org/wiki/Hanford,_California" . + + a ; + "Hastings"; + "North America"; + "USA"; + "USA-Hast-00"; + "Nebraska"; + 4.05883e1; + -9.83914e1; + "Q959512" . + + a ; + "Hoquiam"; + "North America"; + "USA"; + "5797693"; + "USA-Hoqui-00"; + "Washington"; + 4.69875e1; + -1.23891e2; + "Q990621"; + "https://en.wikipedia.org/wiki/Hoquiam,_Washington" . + + a ; + "Hornell"; + "North America"; + "USA"; + "5121283"; + "USA-Horn-00"; + "New York"; + 4.23166e1; + -7.76666e1; + "Q1378011"; + "https://en.wikipedia.org/wiki/Hornell,_New_York" . + + a ; + "Iowa City"; + "North America"; + "USA"; + "4862034"; + "USA-IowCit-00"; + "Iowa"; + 4.16208e1; + -9.149469999999999e1; + "Q487977"; + "https://en.wikipedia.org/wiki/Iowa_City,_Iowa" . + + a ; + "Ishpeming"; + "North America"; + "USA"; + "4997281"; + "USA-Ishp-00"; + "Michigan"; + 4.64925e1; + -8.76675e1; + "Q2432500"; + "https://en.wikipedia.org/wiki/Ishpeming,_Michigan" . + + a ; + "Jamestown"; + "North America"; + "USA"; + "USA-JamesNY-00"; + "New York"; + 4.20956e1; + -7.923860000000001e1; + "Q983861"; + "https://en.wikipedia.org/wiki/Jamestown,_New_York" . + + a ; + "Jamestown"; + "North America"; + "USA"; + "USA-Jamest-00"; + "North Dakota"; + 4.69056e1; + -9.870310000000001e1; + "Q1052658" . + + a ; + "Johnstown"; + "North America"; + "USa"; + "USA-JohnstNY-00"; + "New York"; + 4.30072e1; + -7.437220000000001e1; + "Q1377991" . + + a ; + "Joliet"; + "North America"; + "USA"; + "4898015"; + "USA-Joliet-00"; + "Illinois"; + 4.15297e1; + -8.80727e1; + "Q40345"; + "https://en.wikipedia.org/wiki/Joliet,_Illinois" . + + a ; + "Joplin"; + "North America"; + "USA"; + "4392768"; + "USA-Jopl-00"; + "Missouri"; + 3.70841e1; + -9.451300000000001e1; + "Q317865"; + "https://en.wikipedia.org/wiki/Joplin,_Missouri" . + + a ; + "Kane"; + "North America"; + "USA"; + "5195728"; + "USA-Kane-00"; + "Pennsylvania"; + 4.16616e1; + -7.881019999999999e1; + "Q1185000"; + "https://en.wikipedia.org/wiki/Kane,_Pennsylvania" . + + a ; + "Keokuk"; + "North America"; + "USA"; + "USA-Keok-00"; + "Iowa"; + 4.04025e1; + -9.13944e1; + "Q732549" . + + a ; + "Lafayette"; + "North America"; + "USA"; + "USA-LafayI-00"; + "Indiana"; + 4.04006e1; + -8.687860000000001e1; + "Q166481"; + "https://en.wikipedia.org/wiki/Lafayette,_Indiana" . + + a ; + "Las Vegas"; + "North America"; + "USA"; + "USA-LasVNM-00"; + "New Mexico"; + 3.56042e1; + -1.05223e2; + "Q676171"; + "https://en.wikipedia.org/wiki/Las_Vegas,_New_Mexico" . + + a ; + "Latrobe"; + "North America"; + "USA"; + "5197227"; + "USA-Latro-00"; + "Pennsylvania"; + 4.0315e1; + -7.93811e1; + "Q969307"; + "https://en.wikipedia.org/wiki/Latrobe,_Pennsylvania" . + + a ; + "Lawrence"; + "North America"; + "USA"; + "USA-LawrK-00"; + "Kansas"; + 3.896e1; + -9.52533e1; + "Q493840" . + + a ; + "Lawrence"; + "North America"; + "USA"; + "USA-LawrM-00"; + "Massachusetts"; + 4.27069e1; + -7.11636e1; + "Q49163" . + + a ; + "Little Falls"; + "North America"; + "USA"; + "5034970"; + "USA-LitFall-00"; + "Minnesota"; + 4.59861e1; + -9.43586e1; + "Q1903165"; + "https://en.wikipedia.org/wiki/Little_Falls,_Minnesota" . + + a ; + "Logan"; + "North America"; + "USA"; + "5777544"; + "USA-Logan-00"; + "Utah"; + 4.17638e1; + -1.11872e2; + "Q482657"; + "https://en.wikipedia.org/wiki/Logan,_Utah" . + + a ; + "Lynchburg"; + "North America"; + "USA"; + "4771075"; + "USA-Lynch-00"; + "Virginia"; + 3.74036e1; + -7.917e1; + "Q844012"; + "https://en.wikipedia.org/wiki/Lynchburg,_Virginia" . + + a ; + "Lenox"; + "North America"; + "USA"; + "4941853"; + "USA-MA-00"; + "Massachusetts"; + 4.23564e1; + -7.328530000000001e1; + "Q2076362"; + "https://en.wikipedia.org/wiki/Lenox,_Massachusetts" . + + a ; + "Concord"; + "North America"; + "USA"; + "4933743"; + "USA-MA-01"; + "Massachusetts"; + 4.24603e1; + -7.13494e1; + "Q523240"; + "https://en.wikipedia.org/wiki/Concord,_Massachusetts" . + + a ; + "Marietta"; + "North America"; + "USA"; + "USA-MarOh-00"; + "Ohio"; + 3.94208e1; + -8.145059999999999e1; + "Q985482" . + + a ; + "Marietta"; + "North America"; + "USA"; + "4207783"; + "USA-Marie-00"; + "Georgia"; + 3.39533e1; + -8.45406e1; + "Q852684"; + "https://en.wikipedia.org/wiki/Marietta,_Georgia" . + + a ; + "Marinette"; + "North America"; + "USA"; + "USA-MarinW-00"; + "Wisconsin"; + 4.50886e1; + -8.762690000000001e1; + "Q1013700" . + + a ; + "Marion"; + "North America"; + "USA"; + "5161902"; + "USA-Mario"; + "Ohio"; + 4.062e1; + -8.31263e1; + "Q985636"; + "https://en.wikipedia.org/wiki/Marion,_Ohio" . + + a ; + "Meadville"; + "North America"; + "USA"; + "5200644"; + "USA-Meadv-00"; + "Pennsylvania"; + 4.165e1; + -8.015000000000001e1; + "Q1010225"; + "https://en.wikipedia.org/wiki/Meadville,_Pennsylvania" . + + a ; + "Miami"; + "North America"; + "USA"; + "4164138"; + "USA-Miami-00"; + "Florida"; + 2.57878e1; + -8.02242e1; + "Q8652"; + "https://en.wikipedia.org/wiki/Miami" . + + a ; + "Michigan City"; + "North America"; + "USA"; + "4923531"; + "USA-MichCity-00"; + "Indiana"; + 4.17344e1; + -8.6873e1; + "Q989282"; + "https://en.wikipedia.org/wiki/Michigan_City,_Indiana" . + + a ; + "North America"; + "USA"; + "USA-Midwestern"; + "Midwestern"; + 4.18781e1; + -8.76298e1; + "Q186545"; + "https://en.wikipedia.org/wiki/Midwestern_United_States" . + + a ; + "Miles City"; + "North America"; + "USA"; + "5666176"; + "USA-MilCit-00"; + "Montana"; + 4.64083e1; + -1.0584e2; + "Q960167"; + "https://en.wikipedia.org/wiki/Miles_City,_Montana" . + + a ; + "North America"; + "USA"; + "USA-Miss"; + "Mississippi"; + 3.27833e1; + -8.963330000000001e1; + "Q1494"; + "https://en.wikipedia.org/wiki/Mississippi" . + + a ; + "Hell Gate (Missoula)"; + "North America"; + "USA"; + "5656931"; + "USA-MtEastMis-00"; + "Montana"; + 4.688e1; + -1.1408e2; + "Q5706571"; + "https://en.wikipedia.org/wiki/Hell_Gate,_Montana" . + + a ; + "Newark-on-Trent"; + "Europe"; + "United Kingdom"; + "USA-NATr-00"; + 5.30772e1; + -8.08889e-1; + "Q49940"; + "https://en.wikipedia.org/wiki/Newark-on-Trent" . + + a ; + "Palisades Park"; + "North America"; + "USA"; + "5102369"; + "USA-NJ-01"; + "New Jersey"; + 4.08469e1; + -7.39969e1; + "Q509764"; + "https://de.wikipedia.org/wiki/Palisades_Park" . + + a ; + "Montclair"; + "North America"; + "USA"; + "5101334"; + "USA-NJ-02"; + "New Jersey"; + 4.08426e1; + -7.42013e1; + "Q678437"; + "https://en.wikipedia.org/wiki/Montclair,_New_Jersey" . + + a ; + "New Philadelphia"; + "North America"; + "USA"; + "5164390"; + "USA-NPhila-00"; + "Ohio"; + 4.04916e1; + -8.144110000000001e1; + "Q1000241"; + "https://en.wikipedia.org/wiki/New_Philadelphia,_Ohio" . + + a ; + "Amityville"; + "North America"; + "USA"; + "5107140"; + "USA-NY-01"; + "New York"; + 4.06717e1; + -7.341500000000001e1; + "Q472509"; + "https://en.wikipedia.org/wiki/Amityville,_New_York" . + + a ; + "Harrison"; + "North America"; + "USA"; + "5120095"; + "USA-NY-03"; + "New York"; + 4.10069e1; + -7.371810000000001e1; + "Q3476507"; + "https://en.wikipedia.org/wiki/Harrison,_New_York" . + + a ; + "Nebraska City"; + "North America"; + "USA"; + "5073661"; + "USA-NebraCit-00"; + "Nebraska"; + 4.06758e1; + -9.58616e1; + "Q286025"; + "https://en.wikipedia.org/wiki/Nebraska_City,_Nebraska" . + + a ; + "Nevada City"; + "North America"; + "USA"; + "USA-NevCity-00"; + "California"; + 3.92614e1; + -1.21019e2; + "Q667268"; + "https://en.wikipedia.org/wiki/Nevada_City,_California" . + + a ; + "New Bedford"; + "North America"; + "USA"; + "USA-NewBed-00"; + "Massachusetts"; + 4.16361e1; + -7.093470000000001e1; + "Q49147" . + + a ; + "New England"; + "North America"; + "USA"; + "USA-NewEngl-00"; + 4.42056e1; + -7.03064e1; + "Q18389"; + "https://en.wikipedia.org/wiki/New_England" . + + a ; + "Newport News"; + "North America"; + "USA"; + "USA-NewNews-00"; + "Virginia"; + 3.70708e1; + -7.648439999999999e1; + "Q335017" . + + a ; + "Newtown"; + "North America"; + "USA"; + "USA-Newt-00"; + "Connecticut"; + 4.13983e1; + -7.32931e1; + "Q738356" . + + a ; + "Norwalk"; + "North America"; + "USA"; + "5165101"; + "USA-Norwa-00"; + "Ohio"; + 4.12444e1; + -8.26088e1; + "Q388091"; + "https://en.wikipedia.org/wiki/Norwalk,_Ohio" . + + a ; + "Middletown"; + "North America"; + "USA"; + "USA-OMiddl-00"; + "Ohio"; + 3.95061e1; + -8.43758e1; + "Q985515" . + + a ; + "Portsmouth"; + "North America"; + "USA"; + "4521816"; + "USA-Ohio-01"; + "Ohio"; + 3.87431e1; + -8.296559999999999e1; + "Q685335"; + "https://en.wikipedia.org/wiki/Portsmouth,_Ohio" . + + a ; + "Oklahoma City"; + "North America"; + "USA"; + "4544349"; + "USA-OklaCit-00"; + "Oklahoma"; + 3.54686e1; + -9.75213e1; + "Q34863"; + "https://en.wikipedia.org/wiki/Oklahoma_City" . + + a ; + "Olean"; + "North America"; + "USA"; + "5129780"; + "USA-Olea"; + "New York"; + 4.20825e1; + -7.84308e1; + "Q630963"; + "https://en.wikipedia.org/wiki/Olean,_New_York" . + + a ; + "Olympia"; + "North America"; + "USA"; + "5805687"; + "USA-Olymp-00"; + "Washington"; + 4.70377e1; + -1.22901e2; + "Q42735"; + "https://en.wikipedia.org/wiki/Olympia,_Washington" . + + a ; + "Paducah"; + "North America"; + "USA"; + "4048662"; + "USA-Paduc-00"; + "Kentucky"; + 3.70722e1; + -8.86275e1; + "Q984377"; + "https://en.wikipedia.org/wiki/Paducah,_Kentucky" . + + a ; + "Paris"; + "North America"; + "USA"; + "USA-Paris-00"; + "Kentucky"; + 3.82064e1; + -8.42578e1; + "Q3181341" . + + a ; + "Parkersburg"; + "North America"; + "USA"; + "4817641"; + "USA-Parkers-00"; + "West Virginia"; + 3.92661e1; + -8.154219999999999e1; + "Q329485"; + "https://en.wikipedia.org/wiki/Parkersburg,_West_Virginia" . + + a ; + "Pendleton"; + "North America"; + "USA"; + "5745380"; + "USA-Pendl-00"; + "Oregon"; + 4.56755e1; + -1.1882e2; + "Q944507"; + "https://en.wikipedia.org/wiki/Pendleton,_Oregon" . + + a ; + "Pocatello"; + "North America"; + "USA"; + "5604045"; + "USA-Pocat-00"; + "Idaho"; + 4.28622e1; + -1.12451e2; + "Q320729"; + "https://en.wikipedia.org/wiki/Pocatello,_Idaho" . + + a ; + "Pomona"; + "North America"; + "USA"; + "5384170"; + "USA-Pomo-00"; + "California"; + 3.40608e1; + -1.17756e2; + "Q486868"; + "https://en.wikipedia.org/wiki/Pomona,_California" . + + a ; + "Portland"; + "North America"; + "USA"; + "USA-PortlM-00"; + "Maine"; + 4.366e1; + -7.0255e1; + "Q49201"; + "https://en.wikipedia.org/wiki/Portland,_Maine" . + + a ; + "Provo"; + "North America"; + "USA"; + "5780026"; + "USA-Provo-00"; + "Utah"; + 4.02444e1; + -1.11661e2; + "Q23443"; + "https://en.wikipedia.org/wiki/Provo,_Utah" . + + a ; + "Reading"; + "North America"; + "USA"; + "USA-Read-00"; + "Pennsylvania"; + 4.03417e1; + -7.592610000000001e1; + "Q237896" . + + a ; + "Reno"; + "North America"; + "USA"; + "USA-Reno-00"; + "Nevada"; + 3.95269e1; + -1.19822e2; + "Q49225" . + + a ; + "Sandusky"; + "North America"; + "USA"; + "5170691"; + "USA-Sand-00"; + "Ohio"; + 4.14467e1; + -8.270910000000001e1; + "Q608207"; + "https://en.wikipedia.org/wiki/Sandusky,_Ohio" . + + a ; + "Santa Rosa"; + "North America"; + "USA"; + "USA-SantRos-00"; + "California"; + 3.84486e1; + -1.22705e2; + "Q212991"; + "https://en.wikipedia.org/wiki/Santa_Rosa,_California" . + + a ; + "Selma"; + "North America"; + "USA"; + "4089114"; + "USA-Selm-00"; + "Alabama"; + 3.24163e1; + -8.70247e1; + "Q79941"; + "https://en.wikipedia.org/wiki/Selma,_Alabama" . + + a ; + "Sharon"; + "North America"; + "USA"; + "5211683"; + "USA-Shar-00"; + "Pennsylvania"; + 4.123e1; + -8.04988e1; + "Q1184891"; + "https://en.wikipedia.org/wiki/Sharon,_Pennsylvania" . + + a ; + "Shreveport"; + "North America"; + "USA"; + "4341513"; + "USA-Shreve-00"; + "Louisiana"; + 3.24638e1; + -9.37944e1; + "Q80517"; + "https://en.wikipedia.org/wiki/Shreveport,_Louisiana" . + + a ; + "North America"; + "USA"; + "USA-SouthCarolina"; + "South Carolina"; + 3.395e1; + -8.095e1; + "Q1456"; + "https://en.wikipedia.org/wiki/South_Carolina" . + + a ; + "Staunton"; + "North America"; + "USA"; + "4787440"; + "USA-Stau-00"; + "Virginia"; + 3.8158e1; + -7.90763e1; + "Q502250"; + "https://en.wikipedia.org/wiki/Staunton,_Virginia" . + + a ; + "Steubenville"; + "North America"; + "USA"; + "5173048"; + "USA-Steuben-00"; + "Ohio"; + 4.03652e1; + -8.063330000000001e1; + "Q986432"; + "https://en.wikipedia.org/wiki/Steubenville,_Ohio" . + + a ; + "Superior"; + "North America"; + "USA"; + "USA-Sup-00"; + "Wisconsin"; + 4.67192e1; + -9.21028e1; + "Q984577" . + + a ; + "Texarkana"; + "North America"; + "USA"; + "USA-Texark-00"; + "Texas"; + 3.34761e1; + -9.41083e1; + "Q844020" . + + a ; + "Towanda"; + "North America"; + "USA"; + "5215859"; + "USA-Tow-00"; + "Pennsylvania"; + 4.17702e1; + -7.64466e1; + "Q671662"; + "https://en.wikipedia.org/wiki/Towanda,_Pennsylvania" . + + a ; + "Trinidad"; + "North America"; + "USA"; + "USA-Tri-00"; + "California"; + 4.10592e1; + -1.24143e2; + "Q2051249" . + + a ; + "Van Wert"; + "North America"; + "USA"; + "5175079"; + "USA-VanWer-00"; + "Ohio"; + 4.08677e1; + -8.45972e1; + "Q1012164"; + "https://en.wikipedia.org/wiki/Van_Wert,_Ohio" . + + a ; + "Vincennes"; + "North America"; + "USA"; + "USA-Vinc-00"; + "Indiana"; + 3.86783e1; + -8.751609999999999e1; + "Q585857" . + + a ; + "Montvale"; + "North America"; + "USA"; + "4773757"; + "USA-Virg-00"; + "Virginia"; + 3.73883e1; + -7.97283e1; + "Q6022880"; + "https://en.wikipedia.org/wiki/Montvale,_Virginia" . + + a ; + "Walla Walla"; + "North America"; + "USA"; + "5814916"; + "USA-WalWal-00"; + "Washington"; + 4.6065e1; + -1.1833e2; + "Q222338"; + "https://en.wikipedia.org/wiki/Walla_Walla,_Washington" . + + a ; + "Warren"; + "North America"; + "USA"; + "USA-WarPens-00"; + "Pennsylvania"; + 4.18442e1; + -7.91425e1; + "Q1184834" . + + a ; + "Waverly"; + "North America"; + "USA"; + "5143435"; + "USA-Wav-00"; + "New York"; + 4.20052e1; + -7.65377e1; + "Q3460878"; + "https://en.wikipedia.org/wiki/Waverly,_Tioga_County,_New_York" . + + a ; + "Wichita"; + "North America"; + "USA"; + "4281730"; + "USA-Wichi-00"; + "Kansas"; + 3.76888e1; + -9.73361e1; + "Q49266"; + "https://en.wikipedia.org/wiki/Wichita,_Kansas" . + + a ; + "Yakima"; + "North America"; + "USA"; + "5816605"; + "USA-Yaki-00"; + "Washington"; + 4.66019e1; + -1.20506e2; + "Q499203"; + "https://en.wikipedia.org/wiki/Yakima,_Washington" . + + a ; + "York"; + "North America"; + "USA"; + "USA-YorkP-00"; + "Pennsylvania"; + 3.99628e1; + -7.67281e1; + "Q821105"; + "https://en.wikipedia.org/wiki/York,_Pennsylvania" . + + a ; + "Ypsilanti"; + "North America"; + "USA"; + "5015688"; + "USA-Ypsi-00"; + "Michigan"; + 4.22427e1; + -8.36183e1; + "Q1021681"; + "https://en.wikipedia.org/wiki/Ypsilanti,_Michigan" . + + a ; + "Fairmount"; + "North America"; + "USA"; + "USa-FairmI-00"; + "Indiana"; + 4.04178e1; + -8.56489e1; + "Q1022764" . + + a ; + "Zabolotivka"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-114"; + 4.88864e1; + 2.58378e1; + "Q4182537"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Pereiaslav"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-132"; + 5.0065e1; + 3.1445e1; + "Q639839"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Bilhorod-Dnistrovskyi"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-137"; + 4.61939e1; + 3.03411e1; + "Q672990"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Nizhyn"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-149"; + 5.10474e1; + 3.18861e1; + "Q952457"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Mohyliv-Podilskyi"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-153"; + 4.845e1; + 2.77833e1; + "Q997469"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kherson"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-22"; + 4.66425e1; + 3.2625e1; + "Q156732"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Konotop"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-33"; + 5.12375e1; + 3.32083e1; + "Q162083"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Smila"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-79"; + 4.92167e1; + 3.18667e1; + "Q219595"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Zvenyhorodka"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-80"; + 4.90833e1; + 3.09667e1; + "Q219836"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kobeliaky"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-88"; + 4.91474e1; + 3.42e1; + "Q269538"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Haiphong"; + "Asia"; + "Vietnam"; + "1581298"; + "VN-Haiph-00"; + 2.085e1; + 1.06683e2; + "Q72818"; + "https://en.wikipedia.org/wiki/Haiphong" . + + a ; + "Bloemfontein"; + "Africa"; + "South Africa"; + "ZA-BFN-00"; + -2.91198e1; + 2.62248e1; + "Q37701"; + "https://en.wikipedia.org/wiki/Bloemfontein" . + + a ; + "Kimberley"; + "Africa"; + "South Africa"; + "990930"; + "ZA-Kimber-00"; + -2.87322e1; + 2.47623e1; + "Q125905"; + "https://en.wikipedia.org/wiki/Kimberley,_Northern_Cape" . + + a ; + "Oudtshoorn"; + "Africa"; + "South Africa"; + "ZA-Outd-00"; + -3.358e1; + 2.219e1; + "Q951049"; + "https://en.wikipedia.org/wiki/Oudtshoorn" . + + a ; + 1007; + "Theatre"; + ""; + "Woltersdorff-Theater" . + + a ; + 101; + ""; + "Mozarteum"; + . + + a ; + 1010; + "Theatre"; + ""; + "Herminia-Theater" . + + a ; + 1013; + "Theatre"; + ""; + "Ring-Theater"; + . + + a ; + 1019; + "Theatre"; + ""; + "Volkstheater" . + + a ; + 1025; + "Printed Media"; + ""; + "Freie Presse" . + + a ; + 1028; + "Theatre"; + ""; + "McVickers Theater" . + + a ; + 1031; + "Theatre"; + ""; + "Deutsches Stadttheater" . + + a ; + 1034; + "Education (Theatre related)"; + ""; + "Theaterschule" . + + a ; + 1037; + "Company"; + ""; + "Florindo Joaquim da Silva’s dramacompany" . + + a ; + 104; + "Theatre"; + ""; + "Harmonie Theatre in Vienna"; + . + + a ; + 1040; + "Company"; + ""; + "French company" . + + a ; + 1049; + "Company"; + ""; + "Souza Bastos Theatre Company" . + + a ; + 105; + "Company"; + ""; + "Kellogg Opera Company" . + + a ; + 1052; + "Theatre"; + ""; + "Teatro Dom Affonso" . + + a ; + 1055; + ""; + "Parque Fluminense" . + + a ; + 1058; + "Company"; + ""; + "Cinira Polonio’s theatre company" . + + a ; + 1065; + ""; + ""; + "New Yorks Stadt Theatre" . + + a ; + 107; + "Theatre"; + ""; + "Deutsches Theater in Pest"; + . + + a ; + 1074; + ""; + "Royal Theatrical Fund" . + + a ; + 1089; + ""; + ""; + "Royal Theatre" . + + a ; + 1092; + ""; + ""; + "Standard Theatre"; + . + + a ; + 1104; + "Education (Theatre related)"; + ""; + "School of Art" . + + a ; + 1107; + ""; + ""; + "Temperance Hall, Quessn´Theatre" . + + a ; + 1113; + ""; + ""; + "Corinthian Theatre; Hindu Theatre; Theater Royal" . + + a ; + 1119; + ""; + ""; + "Concordia Club" . + + a ; + 1122; + ""; + ""; + "Theatre, German Teutonia Club" . + + a ; + 1125; + "Theatre"; + ""; + "Schoolroom stage of the barracks" . + + a ; + 1128; + ""; + ""; + "Rangoon Theatre" . + + a ; + 1131; + ""; + "Geelong" . + + a ; + 1134; + ""; + ""; + "Theatre; Musik Hall of Honolulu Library" . + + a ; + 1146; + ""; + "Pantages House" . + + a ; + 1149; + ""; + ""; + "Lois stock Theatre" . + + a ; + 1152; + ""; + ""; + "Arcade Theatre" . + + a ; + 1158; + ""; + "Pantages Playhouse" . + + a ; + 1164; + ""; + "Chicago World's Fair" . + + a ; + 1167; + "Other"; + ""; + "Huber's Dime Museum" . + + a ; + 117; + "Education (Theatre related)"; + ""; + "Curtis Institute in Philadelphia"; + . + + a ; + 1170; + "Circus"; + ""; + "Orpheum vaudeville circuit" . + + a ; + 1173; + ""; + ""; + "the Society of American Magicians" . + + a ; + 1176; + "Company"; + ""; + "magic company Martinka & Co." . + + a ; + 1179; + ""; + "Páginas de España/ El Diario Español" . + + a ; + 1182; + ""; + "Hanover Square concert" . + + a ; + 1185; + ""; + ""; + "Soho Theatre" . + + a ; + 1218; + ""; + "Howard Glover concert" . + + a ; + 1221; + ""; + ""; + "Sadlers Wells Theatre" . + + a ; + 124; + "Media"; + ""; + "Metro-Goldwyn-Mayer Studios" . + + a ; + 1242; + "Company"; + ""; + "English Opera Company under Henry Manley" . + + a ; + 1245; + "Company"; + ""; + "Grand English Opera Company" . + + a ; + 1248; + "Company"; + ""; + "Mary Ann Pyne" . + + a ; + 1251; + "Other"; + ""; + "Woods Museum and Metropolitan" . + + a ; + 1260; + "Company"; + ""; + "Lingards company" . + + a ; + 1266; + ""; + "St. George’s Chapel" . + + a ; + 129; + "Theatre"; + ""; + "Oper am Boulevard in Belgrad"; + . + + a ; + 130; + "Theatre"; + ""; + "Serbisches Nationaltheater in Novi Sad"; + . + + a ; + 1310; + ""; + "F. A. T" . + + a ; + 1320; + ""; + ""; + "Certain Theatre" . + + a ; + 1325; + ""; + ""; + "Lina Edwin ´s theatre" . + + a ; + 133; + "Company"; + ""; + "New York Fifth Avenue Theatre company"; + . + + a ; + 1330; + ""; + ""; + "Stetson´s theatre" . + + a ; + 1335; + ""; + ""; + "St. Louis theatre" . + + a ; + 134; + "Company"; + ""; + "A. M. Palmer's company" . + + a ; + 1340; + "Company"; + ""; + "Templeton and Co." . + + a ; + 1345; + "Other"; + ""; + "St. Paul´church" . + + a ; + 1350; + ""; + "old Lyceum Theatre" . + + a ; + 1365; + "Company"; + ""; + "James K. Hackett Company" . + + a ; + 137; + "Company"; + ""; + "Astor Theatre, Boston"; + . + + a ; + 1400; + ""; + ""; + "Henry Millers Theatre" . + + a ; + 1405; + ""; + ""; + "Ritz Theatre" . + + a ; + 141; + "Theatre"; + ""; + "Halévys Oper" . + + a ; + 1420; + ""; + ""; + "Cort Theatre" . + + a ; + 1425; + ""; + ""; + "Cosmopolitan Theatre" . + + a ; + 1440; + "Company"; + ""; + "Howson English Opera Company" . + + a ; + 1445; + ""; + ""; + "Union Square Theatre/" . + + a ; + 145; + "Theatre"; + ""; + "Rice’s Theatre Chicago"; + . + + a ; + 1450; + ""; + ""; + "Braga Junior Theatre company" . + + a ; + 146; + "Company"; + ""; + "stock companies of Chicago"; + . + + a ; + 1460; + ""; + ""; + "Dias Braga theatre company" . + + a ; + 1465; + "Theatre"; + ""; + "Phênix Dramática and Teatro Apollo (maybe also others)" . + + a ; + 1475; + "Company"; + ""; + "Tomba theatre company" . + + a ; + 1485; + "Company"; + ""; + "Braga Junior Theater company" . + + a ; + 149; + "Theatre"; + ""; + "William E. Burton’s Chambers Street Theatre" . + + a ; + 1490; + "Company"; + ""; + "Dramatical Company Dias Braga" . + + a ; + 1495; + ""; + "Carneval production" . + + a ; + 1500; + "Company"; + ""; + "Grupo dos Farofas" . + + a ; + 1510; + "Company"; + ""; + "Taveira company" . + + a ; + 1520; + "Theatre"; + ""; + "Empresa TeatralFluminense" . + + a ; + 1525; + "Company"; + ""; + "Empreza Paschoal Segreto" . + + a ; + 1535; + ""; + "Boston Jubilee Festival" . + + a ; + 1545; + "Circus"; + ""; + "Orpheum Circuit Consolidated (later Orpheum Circuit Inc.)" . + + a ; + 155; + "Theatre"; + ""; + "Daly's Fifth Avenue Theatre" . + + a ; + 1550; + "Company"; + ""; + "merged with vaudeville circuits" . + + a ; + 1555; + "Company"; + ""; + "merged with the Keith-Albee Circuit" . + + a ; + 156; + "Theatre"; + ""; + "Mrs. John Drew's Arch Street Theatre of Philadelphia"; + . + + a ; + 1600; + ""; + ""; + "Strampfer -Theater" . + + a ; + 161; + "Theatre"; + ""; + "Nemetti Theatre" . + + a ; + 1615; + ""; + "Vaudeville Managers Association" . + + a ; + 162; + "Theatre"; + ""; + "Herald Square Theatre" . + + a ; + 1630; + ""; + ""; + "Martin Beck Theater" . + + a ; + 1635; + "Company"; + ""; + "Radio-Keith-Orpheum (RKO)" . + + a ; + 164; + "Media"; + ""; + "Metro Pictures" . + + a ; + 1640; + "Company"; + ""; + "DOyly Carte Opera Company" . + + a ; + 165; + "Theatre"; + ""; + "Theater Passau" . + + a ; + 1650; + "Company"; + ""; + "Fifth Avenue Theatre company" . + + a ; + 1655; + "Company"; + ""; + "Madison Square Theatre company" . + + a ; + 1665; + ""; + "Rollins College" . + + a ; + 167; + "Theatre"; + ""; + "Großherzogliches Hoftheater in Darmstadt"; + . + + a ; + 1675; + "Theatre"; + ""; + "Italian Opera" . + + a ; + 1680; + ""; + "Curtis Institute" . + + a ; + 1685; + "Education (Theatre related)"; + ""; + "Juilliard School of Music" . + + a ; + 169; + "Theatre"; + ""; + "Münchner Hofheater"; + . + + a ; + 170; + "Education (Theatre related)"; + ""; + "Königliche Akademie der Tonkunst" . + + a ; + 1700; + ""; + ""; + "Forrest Theatre" . + + a ; + 1705; + ""; + "Vaudeville Establishment" . + + a ; + 1710; + ""; + "Amateur Night" . + + a ; + 1715; + ""; + "Ziegfeld Follies" . + + a ; + 172; + ""; + "Großherzoglich Badische Hofkapelle Karlsruhe"; + . + + a ; + 1726; + "Company"; + ""; + "Jacintho Sen." . + + a ; + 1731; + "Theatre"; + ""; + "Teatro de Santa Theresa" . + + a ; + 1741; + "Company"; + ""; + "Florindo Joaquim da Silva Theatre Company" . + + a ; + 1771; + "Company"; + ""; + "Joaquim Heleodoro’sTheater Company" . + + a ; + 1776; + "Company"; + ""; + "Furtado Coelho Theater Company" . + + a ; + 1781; + "Company"; + ""; + "Bernardo Joaquim Correa Theatre Company" . + + a ; + 1786; + "Theatre"; + ""; + "Teatro Francês (Eldorado)" . + + a ; + 1791; + "Theatre"; + ""; + "Teatro Lírico Fluminense" . + + a ; + 1801; + "Company"; + ""; + "Vasques Theatre Company " . + + a ; + 1811; + "Company"; + ""; + "Heller Theater Company (Companhia Phênix Dramática)" . + + a ; + 182; + "Theatre"; + ""; + "Stadttheater Breslau"; + . + + a ; + 1831; + "Theatre"; + ""; + "Teatro Santa Isabel" . + + a ; + 1846; + "Company"; + ""; + "New Heller Theater Company (Eden-Teatro)" . + + a ; + 185; + "Theatre"; + ""; + "Hoftheater Bernburg"; + . + + a ; + 1851; + ""; + "Recreio Dramático" . + + a ; + 1856; + "Company"; + ""; + "Sociedade Empresaria Garrido & C." . + + a ; + 186; + "Theatre"; + ""; + "Stadttheater Magdeburg"; + . + + a ; + 1866; + "Company"; + ""; + "Campanhia de Operas Cômicas, Operetas e Mágicas" . + + a ; + 187; + "Theatre"; + ""; + "Palace Theatre of Varieties" . + + a ; + 1876; + "Company"; + ""; + "Companhia de Operetas Mágicas e Revistas" . + + a ; + 1881; + "Company"; + ""; + "Companhia Infantil (empresa Palmerino & Co.)" . + + a ; + 189; + ""; + "Koster & Bial’s" . + + a ; + 1891; + "Company"; + ""; + "Empresa Nazareth & C." . + + a ; + 1896; + "Company"; + ""; + "Companhia de Operetas, Mágicas e Revistas" . + + a ; + 190; + "Company"; + ""; + "Ada Rehan Company" . + + a ; + 1906; + "Company"; + ""; + "Companhia Infantil" . + + a ; + 1911; + "Company"; + ""; + "Grande Companhia de Operetas e Revistas Silva Pinto" . + + a ; + 192; + "Company"; + ""; + "Modjeska’s repertory company" . + + a ; + 1921; + "Casino"; + ""; + "Casino de la Rue Cadet" . + + a ; + 194; + "Theatre"; + ""; + "Alhambra Theatre Belfast"; + . + + a ; + 1941; + ""; + ""; + "Théâtre Variétés" . + + a ; + 1946; + ""; + ""; + "Lina Edwins Theater" . + + a ; + 195; + "Musical Organization"; + ""; + "Oxford Music Hall" . + + a ; + 1966; + ""; + ""; + "Memphis Theatre" . + + a ; + 197; + "Education (Theatre related)"; + ""; + "Royal Swedish Music Academy in Stockholm"; + . + + a ; + 198; + "Theatre"; + ""; + "Nürnberger Theater"; + . + + a ; + 1986; + ""; + ""; + "Natioal Theatre " . + + a ; + 199; + "Circus"; + ""; + "Ringling Brothers Circus" . + + a ; + 200; + "Theatre"; + ""; + "Wiener Staatsoper" . + + a ; + 2006; + ""; + ""; + "Manphis Theatre" . + + a ; + 202; + ""; + ""; + "Theater Augsburg" . + + a ; + 2036; + "Theatre"; + ""; + "Gran Opera Hause"; + . + + a ; + 204; + "Theatre"; + ""; + "Theater Pest" . + + a ; + 205; + "Education (Theatre related)"; + ""; + "Royal Conservatory Leipzig" . + + a ; + 2061; + ""; + ""; + "Eagle Theatre" . + + a ; + 207; + "Theatre"; + "of Angelo Neumann"; + "Wagner Opera Company" . + + a ; + 208; + "Theatre"; + ""; + "New American Opera Company" . + + a ; + 210; + "Company"; + ""; + "Gustav Heinrichs Company" . + + a ; + 2106; + ""; + ""; + "Alcazar Lyrique / Théâtre Lyrique Français"; + . + + a ; + 2111; + ""; + "Café Cantante" . + + a ; + 2116; + ""; + ""; + "Théâtre Montansier" . + + a ; + 212; + "Theatre"; + ""; + "The Castle Square Opera Company" . + + a ; + 2121; + "Theatre"; + ""; + "Teatro Francês (Salle São Januário)" . + + a ; + 2126; + "Company"; + ""; + "Compagnie Française" . + + a ; + 2131; + ""; + "Café Cantante leaded by Léon DHôte" . + + a ; + 2136; + "Company"; + ""; + "Folies Parisiennes" . + + a ; + 2156; + ""; + "Bouffes Fluminenses" . + + a ; + 216; + ""; + ""; + "Stadttheater zu Stettin" . + + a ; + 2171; + "Theatre"; + ""; + "Teatro Ginásio" . + + a ; + 218; + ""; + ""; + "Theater zu Brünn" . + + a ; + 219; + ""; + ""; + "Landestheater Graz" . + + a ; + 222; + ""; + ""; + "Vereinigte deutsche Theater in Pesth-Ofen" . + + a ; + 223; + ""; + ""; + "Königlich-Städtisches Theater in Brünn" . + + a ; + 2231; + "Theatre"; + ""; + "Teatro Franco-Argentino" . + + a ; + 224; + ""; + ""; + "Landwirtschaftliches Theater in Graz" . + + a ; + 225; + ""; + ""; + "Stadttheater Krakau" . + + a ; + 226; + ""; + ""; + "Städtisches Theater Olmütz" . + + a ; + 227; + "Theatre"; + "heutiges Gärtnerplatztheater"; + "Aktien-Volkstheater"; + . + + a ; + 228; + ""; + ""; + "Stadttheater Aachen" . + + a ; + 2285; + ""; + ""; + "Marlowe Theatre" . + + a ; + 229; + ""; + ""; + "Vereinigten Stadttheater von Rostock und Stralsund" . + + a ; + 2290; + ""; + ""; + "Palmer’s Theatre" . + + a ; + 2295; + ""; + ""; + "Old Star Theatre" . + + a ; + 231; + ""; + ""; + "Stadttheater Lübeck" . + + a ; + 234; + ""; + ""; + "Charles Street Theatre in Baltimore" . + + a ; + 235; + "Theatre"; + ""; + "Lviv Polish Theatre Opera" . + + a ; + 236; + ""; + ""; + "Skarbeck Theatre in Lemberg" . + + a ; + 2360; + ""; + "Lincoln Park" . + + a ; + 2365; + "Company"; + ""; + "summer" . + + a ; + 237; + ""; + ""; + "Rumanian Imperial Theatre in Bucharest" . + + a ; + 2370; + "Company"; + ""; + "Spring" . + + a ; + 241; + ""; + ""; + "Boris Tomashefsky’s National Theater" . + + a ; + 243; + ""; + ""; + "Jolson Theatre" . + + a ; + 2430; + ""; + ""; + "Castle Garden Theatre" . + + a ; + 244; + ""; + ""; + "Miner’s Bowery Theatre Manhattan" . + + a ; + 2445; + ""; + ""; + "Great Theatre of Santa Anna" . + + a ; + 245; + ""; + ""; + "Sulkowskitheater in Matzleinsdorf" . + + a ; + 246; + ""; + ""; + "Neues Stadttheater Leipzig" . + + a ; + 248; + ""; + ""; + "Berliner Theater" . + + a ; + 249; + "Theatre"; + ""; + "Aktientheater, Heilbronn"; + . + + a ; + 2490; + "Theatre"; + ""; + "Conductor at the Imperial Opera, Vienna" . + + a ; + 251; + ""; + "Comödienhaus Frankfurt" . + + a ; + 2510; + "Company"; + ""; + "“CarliCa ren Mar del Plata”" . + + a ; + 2515; + "Company"; + ""; + "“Chaco”" . + + a ; + 2535; + "Theatre"; + ""; + "Teatro Nacional Cervantes" . + + a ; + 2540; + "Company"; + ""; + "Museo de Teatro" . + + a ; + 2550; + "Theatre"; + ""; + "Teatro General San Martín" . + + a ; + 256; + ""; + "Wiener Konzerthaus" . + + a ; + 2565; + ""; + "Comedia Nacional" . + + a ; + 2570; + "Theatre"; + ""; + "Real Theatro de San Carlos" . + + a ; + 2585; + ""; + "Royal Court of Lisbon" . + + a ; + 2590; + ""; + ""; + "Aquarium Theatre" . + + a ; + 2595; + ""; + ""; + "Imperial Theatre" . + + a ; + 2600; + "Theatre"; + ""; + "Paris Opera" . + + a ; + 2610; + ""; + "Volstrung" . + + a ; + 2615; + ""; + "La Scala" . + + a ; + 2635; + ""; + ""; + "Real Theatre of Lisboa" . + + a ; + 264; + "Musical Organization"; + ""; + "Weber’s Music Hall" . + + a ; + 2640; + ""; + "Royal Portuguese Palace" . + + a ; + 2645; + ""; + "Palacio de Oriente en España" . + + a ; + 265; + ""; + ""; + "New York Theatre" . + + a ; + 2650; + "Theatre"; + ""; + "Casa del Teatro, Teatro Nacional, Teatro Presidente Alvear" . + + a ; + 2655; + "Company"; + ""; + "Circo Porteño" . + + a ; + 266; + ""; + ""; + "New Theatre New York" . + + a ; + 2660; + ""; + "Owner of his photography shop where he used to make portraits" . + + a ; + 2665; + ""; + "Owner of a local, where there was a newspaper: El Norte" . + + a ; + 2670; + "Company"; + ""; + "Itinerant actor in diverse companies" . + + a ; + 2675; + ""; + ""; + "The actress works in several theaters in the city" . + + a ; + 2680; + ""; + "English Teacher" . + + a ; + 2695; + ""; + "University Leipzig" . + + a ; + 2705; + "Theatre"; + ""; + "Teatro La Fenice" . + + a ; + 271; + "Company"; + ""; + "Mrs. John Wood company" . + + a ; + 2710; + "Theatre"; + ""; + "Teatro Carcano" . + + a ; + 2715; + "Theatre"; + ""; + "Teatro alla Scala" . + + a ; + 2722; + ""; + "HollyWood" . + + a ; + 273; + "Company"; + ""; + "Annie Russell’s Company" . + + a ; + 274; + "Company"; + ""; + "Lewis Baker’s company" . + + a ; + 2746; + ""; + "Lyceum Theatre on Fourteenth Street" . + + a ; + 277; + "Theatre"; + ""; + "Chicago Civic Opera" . + + a ; + 278; + ""; + "Chicago Musical College" . + + a ; + 2786; + ""; + "Lyceum" . + + a ; + 280; + ""; + ""; + "Hoftheater Dresden"; + . + + a ; + 281; + ""; + ""; + "„altes“ Burgtheater am Michaelerplatz, Vienna" . + + a ; + 285; + ""; + ""; + "Ständisches Theater Prag" . + + a ; + 286; + "Theatre"; + ""; + "Oper in Pest" . + + a ; + 287; + "Theatre"; + ""; + "Oper in Ofen (Buda)" . + + a ; + 288; + ""; + ""; + "Kölner Theater" . + + a ; + 289; + "Theatre"; + ""; + "Damrosch Opera Company" . + + a ; + 291; + ""; + ""; + "Theater Regensburg" . + + a ; + 2911; + "Education (Theatre related)"; + ""; + "Soho Academy"; + . + + a ; + 2916; + ""; + "U.S.-Tour" . + + a ; + 292; + ""; + ""; + "Landestheater Salzburg" . + + a ; + 2921; + ""; + "Folies Bergère and other French cities" . + + a ; + 293; + "Theatre"; + ""; + "German Theater Lemberg" . + + a ; + 2935; + ""; + "Santa Fe Rosario Street" . + + a ; + 294; + "Musical Organization"; + ""; + "New York Symphony Orchestra" . + + a ; + 295; + "Company"; + ""; + "Lydia Thompson’s company" . + + a ; + 2955; + "Theatre"; + ""; + "Teatro Olimpo de La Plata" . + + a ; + 296; + "Company"; + ""; + "Abbey Wallack Company" . + + a ; + 297; + ""; + ""; + "Stadttheater Krefeld" . + + a ; + 2975; + "Theatre"; + ""; + "Teatro Ideal" . + + a ; + 2980; + "Theatre"; + ""; + "Teatro 25 de Mayo" . + + a ; + 2995; + "Company"; + ""; + "Companía de “Cómicos de la lengua”" . + + a ; + 3005; + ""; + "Petray Brothers" . + + a ; + 302; + ""; + ""; + "Deutsches Theater in St. Petersburg" . + + a ; + 3025; + "Company"; + ""; + "Companía Dramática Rioplatense (Dir: Alfredo Duhau)" . + + a ; + 3045; + "Company"; + ""; + "Compañía Argentina de Comedias (Dir: Argentino Gómez)" . + + a ; + 305; + "Theatre"; + ""; + "Opera National de Paris" . + + a ; + 3050; + "Company"; + ""; + "Compañía Dramática Argentina de La garra" . + + a ; + 3055; + "Company"; + ""; + "Compañía Argentina de Dramas y Comedias" . + + a ; + 306; + "Theatre"; + ""; + "Teatro el Circo" . + + a ; + 3060; + "Company"; + ""; + "Compañía Argentina de Sainetes y Comedias" . + + a ; + 3065; + "Company"; + ""; + "Compañía Argentina de Comedia Paulina Singerman" . + + a ; + 3070; + "Company"; + ""; + "Compañía Nacional de Comedias y Gran Gignol" . + + a ; + 3075; + ""; + "César y Pepe Ratti" . + + a ; + 3086; + "Theatre"; + ""; + "Friedrich-Wilhelmstädtisches Theater" . + + a ; + 3091; + "Theatre"; + ""; + """Hannover Stadttheater +""" . + + a ; + 3096; + ""; + ""; + """Wilhelm-Theater Magdenburg +""" . + + a ; + 310; + "Theatre"; + ""; + "Teatro Costanzi in Rom" . + + a ; + 3101; + ""; + ""; + "Carl Schultze-Theater Hamburg" . + + a ; + 3105; + "Theatre"; + ""; + "Residenztheater Dresden"; + . + + a ; + 3110; + "Theatre"; + ""; + "Montis Operettentheater Berlin" . + + a ; + 3115; + ""; + ""; + "Gärtnerplatztheater München"; + . + + a ; + 312; + "Theatre"; + ""; + "Teatro Regio di Parma" . + + a ; + 3120; + "Theatre"; + ""; + "Staatstheater Wiesbaden" . + + a ; + 3125; + "Education (Theatre related)"; + ""; + "Sternsches Konservatorium" . + + a ; + 3130; + "Education (Theatre related)"; + ""; + "Konservatorium Köln" . + + a ; + 314; + "Company"; + ""; + "Schiller Vaudeville Company" . + + a ; + 3140; + "Society/Union"; + ""; + "Academia de Artes y Ciencias Cinematográficas" . + + a ; + 3165; + ""; + "Café Concert, Rivadavia 1200" . + + a ; + 3170; + ""; + "Café Royal Keller" . + + a ; + 3180; + ""; + "Cine Capitol" . + + a ; + 3185; + ""; + "Circo Corrado" . + + a ; + 319; + "Theatre"; + ""; + "Teatro Nuovo" . + + a ; + 3190; + ""; + "Comisión Nacional de Cultura del Ministerio de Justicia e Instrucción Pública" . + + a ; + 3195; + ""; + "Consejo Consultivo de Autores, Actores y Empresarios" . + + a ; + 3200; + ""; + "El Fogón de Montevideo" . + + a ; + 3205; + ""; + ""; + "High-Life Theatre" . + + a ; + 321; + "Society/Union"; + ""; + "Società d'industria e belle arti" . + + a ; + 3210; + "Other"; + ""; + "Hotel Royal" . + + a ; + 3215; + ""; + "Filmex" . + + a ; + 3225; + ""; + "National Exhibition of Milano" . + + a ; + 3230; + ""; + "National Exhibition of Turin" . + + a ; + 3260; + ""; + "Salon Centro Gallego" . + + a ; + 327; + "Education (Theatre related)"; + ""; + "Singing school Vienna" . + + a ; + 3280; + "Theatre"; + ""; + "Teatro Cómico" . + + a ; + 3285; + "Theatre"; + ""; + "Teatro Corrientes" . + + a ; + 3295; + "Theatre"; + ""; + "Teatro Eslava" . + + a ; + 3310; + "Theatre"; + ""; + "Teatro Lara" . + + a ; + 3315; + "Theatre"; + ""; + "Teatro Lyrico" . + + a ; + 3320; + "Theatre"; + ""; + "Teatro Metrópoli" . + + a ; + 3340; + "Theatre"; + ""; + "Teatro París" . + + a ; + 3345; + "Theatre"; + ""; + "Teatro Porteño" . + + a ; + 3355; + "Theatre"; + ""; + "Teatro Tirso de Molina" . + + a ; + 3360; + "Theatre"; + ""; + "Teatro Tívoli" . + + a ; + 337; + "Company"; + ""; + "Old English Comedy Company" . + + a ; + 3370; + ""; + "Tertulias Los Inmortales" . + + a ; + 3375; + "Media"; + ""; + "Radio Municipal" . + + a ; + 3380; + "Theatre"; + ""; + "Revista de Estudios de Teatro (INET)" . + + a ; + 3390; + ""; + "San Juan de Oporto" . + + a ; + 3395; + ""; + "Sociedad General de Autores" . + + a ; + 3405; + ""; + "Spanish Army" . + + a ; + 3410; + "Theatre"; + ""; + "Talía, Revista de Teatro y arte" . + + a ; + 3430; + "Theatre"; + ""; + "Anuario Teatral" . + + a ; + 3435; + "Company"; + ""; + "Arata-Simari-Franco Company" . + + a ; + 3440; + ""; + "Bambalinas" . + + a ; + 346; + "Theatre"; + ""; + "Metropolitan Theatre"; + . + + a ; + 3465; + "Company"; + ""; + "Companhia Israelita de Dramas e Comédias" . + + a ; + 3470; + ""; + "El Mirlo Blanco" . + + a ; + 3475; + ""; + "El Cántaro Roto" . + + a ; + 3485; + ""; + "El imparcial" . + + a ; + 3505; + "Company"; + ""; + "Gran Companhia Alemã Israelita" . + + a ; + 3515; + "Company"; + ""; + "Grande Companhia Israelita H. Starr" . + + a ; + 3520; + "Company"; + ""; + "Guillermo Battaglia Company" . + + a ; + 353; + "Theatre"; + ""; + "Burgtheater Wien" . + + a ; + 3545; + ""; + "La verdad" . + + a ; + 355; + "Theatre"; + ""; + "Lemberger Oper" . + + a ; + 3550; + "Printed Media"; + ""; + "La Patria degl’italiani (newspaper)" . + + a ; + 3555; + ""; + "La república" . + + a ; + 356; + "Theatre"; + ""; + "Stadttheater Altona" . + + a ; + 3570; + "Printed Media"; + ""; + "Mundial Magazine" . + + a ; + 358; + "Theatre"; + ""; + "Theater Riga" . + + a ; + 3580; + "Printed Media"; + ""; + "“Nosotros”, Magazine" . + + a ; + 359; + "Theatre"; + ""; + "Theater Linz" . + + a ; + 3590; + ""; + "Novela gratis" . + + a ; + 3600; + "Printed Media"; + ""; + "Revista Artística (journal)" . + + a ; + 3615; + ""; + "Tribuna de Buenos Aires" . + + a ; + 3620; + "Company"; + ""; + "Walt Disney Company" . + + a ; + 3625; + ""; + "La Femme Chie (Hat shop)" . + + a ; + 3635; + ""; + "Instituto Nacional de Música Festival" . + + a ; + 3640; + ""; + "Victor Records" . + + a ; + 3645; + "Theatre"; + ""; + "Teatro João Caetano" . + + a ; + 3665; + ""; + "Cine Popular" . + + a ; + 3675; + "Media"; + ""; + "Radio Excelsior" . + + a ; + 3680; + "Theatre"; + ""; + "Cine-Teatro Brodway" . + + a ; + 3690; + "Media"; + ""; + "Radio Farroupilha" . + + a ; + 3695; + "Casino"; + ""; + "Cassino Copacabana" . + + a ; + 370; + "Theatre"; + ""; + "Lexington Opera House"; + . + + a ; + 3700; + "Media"; + ""; + "Radio Tupi" . + + a ; + 371; + "Theatre"; + ""; + "Wallner-Theater, Berlin" . + + a ; + 3710; + "Media"; + ""; + "Radio City" . + + a ; + 3720; + "Casino"; + ""; + "Cassino Atlântico" . + + a ; + 3725; + "Media"; + ""; + "Radio Record" . + + a ; + 373; + "Theatre"; + ""; + "Kölner Residenztheater"; + . + + a ; + 3730; + "Theatre"; + ""; + "Teatro Coliseu" . + + a ; + 3740; + ""; + "Cine Trianon" . + + a ; + 3750; + ""; + ""; + "Broadhurst Theatre" . + + a ; + 3755; + "Media"; + ""; + "Radio NBC" . + + a ; + 376; + "Theatre"; + ""; + "Theater am Kurfürstendamm"; + . + + a ; + 377; + "Theatre"; + ""; + "Saltenburg-Bühnen" . + + a ; + 3775; + ""; + ""; + "Colony Club" . + + a ; + 3785; + ""; + ""; + "Paramond Theatre" . + + a ; + 380; + "Theatre"; + ""; + "Stadttheater Göttingen"; + . + + a ; + 3805; + "Casino"; + ""; + "Cassino Icaraí" . + + a ; + 381; + "Education (Theatre related)"; + ""; + "Universität für Musik und darstellende Kunst Wien"; + . + + a ; + 3810; + ""; + ""; + "Nightclub Chez Paree" . + + a ; + 3815; + ""; + "Decca Records" . + + a ; + 382; + "Theatre"; + ""; + "Mannheimer Hof- und Nationaltheaters"; + . + + a ; + 383; + ""; + "Wiener Volksbühne" . + + a ; + 385; + "Theatre"; + ""; + "Albert-Theater"; + . + + a ; + 3850; + ""; + "Cinema Actress and Singer as Freelancer" . + + a ; + 3860; + ""; + "Arrowhead Inn" . + + a ; + 387; + ""; + "Münchner Kammerspiele" . + + a ; + 3870; + ""; + ""; + "Texaco Show Theatre (TV Show)" . + + a ; + 3875; + ""; + "El Rancho Vegas" . + + a ; + 388; + "Company"; + ""; + "Horscheltschen Kinderballetts" . + + a ; + 3880; + ""; + ""; + "Beverly Country Club" . + + a ; + 390; + "Theatre"; + ""; + "Görlitz, State Theatre"; + . + + a ; + 3905; + ""; + "Copa City" . + + a ; + 3910; + ""; + "Hollywood Bowl" . + + a ; + 3915; + "Theatre"; + ""; + "Chicago Theatre" . + + a ; + 392; + "Theatre"; + ""; + "Wanderndes-Wagner-Theater" . + + a ; + 3920; + "Media"; + ""; + "Radio NBC, Tze big show" . + + a ; + 394; + ""; + ""; + "New York Symphony Society" . + + a ; + 3945; + ""; + "Syrup Hadacol caravan" . + + a ; + 3950; + ""; + "Chez Peree" . + + a ; + 396; + "Theatre"; + ""; + "Theater zu Laibach" . + + a ; + 3965; + "Other"; + ""; + "Baker Hotel" . + + a ; + 397; + "Theatre"; + ""; + "Hoftheater Darmstadt" . + + a ; + 3970; + ""; + ""; + "New Palomar Supper Club" . + + a ; + 398; + "Theatre"; + ""; + "Hoftheater Coburg" . + + a ; + 3980; + ""; + ""; + "Easteman Theatre" . + + a ; + 3985; + "Other"; + ""; + "Desert Inn" . + + a ; + 3990; + "Casino"; + ""; + "Casino New Frontier" . + + a ; + 3995; + ""; + ""; + "Tropicana Club" . + + a ; + 4000; + ""; + "The Jimmy Durante Show, NBC Channel" . + + a ; + 4005; + "Theatre"; + ""; + "Teatro Comunale de Ferrara" . + + a ; + 401; + "Theatre"; + ""; + "Theater in der Josefstadt" . + + a ; + 4010; + ""; + ""; + "Prager Interimstheater" . + + a ; + 4011; + "Company"; + ""; + "Companhia Lyrica Italiana" . + + a ; + 4016; + ""; + "Ginásio Dramático Rio Grandense" . + + a ; + 4026; + "Theatre"; + ""; + "Grande Companhia de Opereta" . + + a ; + 403; + "Theatre"; + ""; + "Pythian Theatre" . + + a ; + 4035; + "Theatre"; + ""; + "Teatro Regio" . + + a ; + 404; + "Theatre"; + ""; + "Tribüne, Berlin" . + + a ; + 405; + "Theatre"; + ""; + "Berliner Residenztheater"; + . + + a ; + 4060; + ""; + "Paradossi-Consigli" . + + a ; + 4065; + ""; + "Alfredo de Sanctis" . + + a ; + 409; + "Company"; + ""; + "New York Motion Picture Company"; + . + + a ; + 4095; + ""; + "in collaboration with José López Silva" . + + a ; + 410; + "Company"; + ""; + "Essanay"; + . + + a ; + 4100; + "Company"; + ""; + "Maria Guerrero Theatre Company" . + + a ; + 411; + "Media"; + ""; + "Mutual film"; + . + + a ; + 4110; + "Company"; + ""; + "Eduardo Vitorino Theatre company" . + + a ; + 4115; + "Company"; + ""; + "Carlos d’Oliveira theatre company" . + + a ; + 412; + "Company"; + ""; + "Savage Opera Company" . + + a ; + 4120; + "Theatre"; + ""; + "Teatro Alexandre Herculano" . + + a ; + 4125; + "Company"; + ""; + "Eduardo Brazão Theatre Company" . + + a ; + 413; + "Theatre"; + ""; + "Kurfürsten Oper"; + . + + a ; + 414; + "Theatre"; + ""; + "Komische Oper"; + . + + a ; + 4146; + ""; + "Teacher Education in Theatre" . + + a ; + 415; + "Company"; + ""; + "German Opera Company" . + + a ; + 4156; + ""; + "La Colmena Artística" . + + a ; + 416; + "Theatre"; + ""; + "Hofoper Unter den Linden" . + + a ; + 4161; + ""; + "Casa Peuser" . + + a ; + 4166; + ""; + "Imprenta Peuser" . + + a ; + 4171; + ""; + "La Razón" . + + a ; + 4181; + ""; + "Compañía Sudamericana de Billetes de Banco" . + + a ; + 4186; + "Education (Theatre related)"; + ""; + "Academia de Bellas Artes" . + + a ; + 419; + "Theatre"; + ""; + "Coventgardentheatre"; + . + + a ; + 4191; + ""; + "Librería del Colegio" . + + a ; + 4196; + ""; + "Fray Mocho" . + + a ; + 4211; + ""; + "Aquilino Fernández publishing company" . + + a ; + 4216; + ""; + "Ángel Estrada publishing company" . + + a ; + 423; + "Company"; + ""; + "Gadski's Company" . + + a ; + 4231; + ""; + "Santa Rosa" . + + a ; + 4236; + ""; + "Duarte Guimarães’ Hause" . + + a ; + 424; + "Education (Theatre related)"; + ""; + "Eastman School of Music" . + + a ; + 4241; + ""; + "Philarmônica Portuense" . + + a ; + 4256; + ""; + "Salon Henri Herz" . + + a ; + 4261; + ""; + "Music Hall Dublin" . + + a ; + 4266; + ""; + "Vauxpall Salon" . + + a ; + 427; + "Theatre"; + ""; + "Pilsen Oper"; + . + + a ; + 4271; + ""; + "Palace Garden" . + + a ; + 4276; + ""; + "Orchester of Teatro São Carlos" . + + a ; + 4286; + "Musical Organization"; + ""; + "Arthur Napoleão e Miguez " . + + a ; + 429; + "Theatre"; + ""; + "Bremen Opera"; + . + + a ; + 4296; + ""; + "Camões tricentenary festival" . + + a ; + 430; + "Theatre"; + ""; + "Sondhausen Opera"; + . + + a ; + 4301; + ""; + "Big Festival in Teatro Lírico" . + + a ; + 431; + "Theatre"; + ""; + "Halle Opera"; + . + + a ; + 4311; + "Company"; + ""; + "Arthur Napoleão & Cia. " . + + a ; + 4316; + ""; + "Palácio de Cristal" . + + a ; + 432; + "Theatre"; + ""; + "Basel Opera"; + . + + a ; + 4321; + ""; + "Club dos Diários" . + + a ; + 4326; + ""; + "Club dos Diários (Cassino Fluminense)" . + + a ; + 4331; + ""; + "Cassino Fluminense" . + + a ; + 4336; + ""; + "Company Sampaio Araujo & Comp." . + + a ; + 4340; + ""; + "La Legia (choral society of Liège)" . + + a ; + 4355; + ""; + "Studied with Mathilde Marchesi" . + + a ; + 4360; + ""; + "Théâtre de la Gaîté" . + + a ; + 437; + "Theatre"; + ""; + "Mannheim Oper"; + . + + a ; + 4390; + ""; + "Théâtre Scala" . + + a ; + 4395; + ""; + "Théâtre des Galeries St. Hubert" . + + a ; + 4405; + ""; + "Hermitage Theater" . + + a ; + 4420; + ""; + "Théâtre Royal Français" . + + a ; + 4425; + ""; + "Private Concerts" . + + a ; + 443; + "Education (Theatre related)"; + ""; + "Hillersches Konservatorium"; + . + + a ; + 4430; + ""; + "Ezbekiya Gardens" . + + a ; + 4435; + ""; + "Teutonia Club" . + + a ; + 444; + "Education (Theatre related)"; + "founded by Marchesi, Salvatore"; + "Private Singing School"; + . + + a ; + 4455; + ""; + "Saturday Club Concert" . + + a ; + 4460; + ""; + "Van Ness Theater" . + + a ; + 447; + "Theatre"; + ""; + "Nationaltheater in Oslo"; + . + + a ; + 4470; + ""; + "Christian Science Hall" . + + a ; + 4475; + ""; + "Columbia Phonography Company" . + + a ; + 448; + "Musical Organization"; + ""; + "Concert Hall in Bergen"; + . + + a ; + 4485; + ""; + "Odeon" . + + a ; + 4490; + ""; + "Apollo Club concert" . + + a ; + 4495; + ""; + "Victor Talking Machine Company" . + + a ; + 4500; + ""; + "Homecoming concert" . + + a ; + 4505; + ""; + "Steinway Hall" . + + a ; + 4510; + ""; + "Carnegie Hall" . + + a ; + 4515; + ""; + "Volpe Symphony Orchestra" . + + a ; + 452; + ""; + ""; + "Hoftheaterverbund"; + . + + a ; + 4520; + ""; + "Sings at two private functions" . + + a ; + 4535; + ""; + "Hotel Plaza" . + + a ; + 4540; + ""; + "New Assembly Musicale" . + + a ; + 4545; + ""; + "Professional Women’s League benefit" . + + a ; + 4550; + ""; + "William A. Brady’s Playhouse" . + + a ; + 4555; + ""; + "New York American-Evening Journal Christimas fund benefit" . + + a ; + 4560; + ""; + "Italian earthquake sufferers benefit" . + + a ; + 4565; + ""; + "Century Lyceum" . + + a ; + 457; + "Theatre"; + ""; + "Opéra de Nice"; + . + + a ; + 4575; + ""; + "Théâtre Français" . + + a ; + 458; + "Theatre"; + ""; + "Opernhaus Zürich"; + . + + a ; + 4585; + ""; + "Stadium Orchestra" . + + a ; + 4590; + ""; + "WOR studios" . + + a ; + 4595; + ""; + "Worked in her memoir" . + + a ; + 4608; + ""; + "Le Cassino du Petit Lac"; + . + + a ; + 461; + "Theatre"; + ""; + "Ventadour, Théâtre de la Renaissance"; + . + + a ; + 4612; + ""; + "Arral Blanche Company" . + + a ; + 4620; + ""; + "Opera Queensland"; + . + + a ; + 4624; + ""; + "Sir Henry Irving company" . + + a ; + 4628; + ""; + "Liverpool Theatre" . + + a ; + 4636; + ""; + "Union Square Company of Mrs. John Drew and Augustin Daly" . + + a ; + 4640; + ""; + "Augustin Daly’s Company" . + + a ; + 4644; + ""; + "Fine Arts Academy of Paris" . + + a ; + 466; + ""; + "Chat Noir"; + . + + a ; + 467; + ""; + "Simple"; + . + + a ; + 4672; + ""; + "Robinson's Opera House" . + + a ; + 468; + ""; + ""; + "Wiener Bürgertheater"; + . + + a ; + 470; + "Theatre"; + ""; + "Opéra de Monaco"; + . + + a ; + 471; + "Theatre"; + ""; + "Oper Nizza"; + . + + a ; + 4720; + ""; + "Atlanta De Gives Opera House" . + + a ; + 4728; + ""; + "Union Hall"; + . + + a ; + 474; + "Education (Theatre related)"; + ""; + "Klindworth-Scharwenka Konservatorium"; + . + + a ; + 475; + "Theatre"; + ""; + "Hannover Theater"; + . + + a ; + 4752; + ""; + "Greenwich Theatre" . + + a ; + 476; + "Theatre"; + ""; + "Gotha Hoftheater"; + . + + a ; + 4760; + ""; + "Asociación de Críticos Teatrales" . + + a ; + 4764; + ""; + "Escuela Nacional de Arte Dramático" . + + a ; + 477; + ""; + ""; + "Gesellschaft der Musikfreunde"; + . + + a ; + 4772; + ""; + "Compañía de Guillermo Battaglia" . + + a ; + 478; + "Theatre"; + ""; + "Deutsche Oper in Rotterdam"; + . + + a ; + 4804; + ""; + "Compañía de Orfilia Rico (Dir: Julio Sánchez Gardel)" . + + a ; + 4808; + ""; + "Compañía de Fanny Brenna" . + + a ; + 4816; + ""; + "Compañía Española Concepción Olona" . + + a ; + 4820; + ""; + "Compañía Argentina de Camila Quiroga" . + + a ; + 4824; + ""; + "Compañía El Caracol" . + + a ; + 483; + "Theatre"; + ""; + "Teatro Real de Madrid"; + . + + a ; + 4832; + ""; + "Compañía Nacional" . + + a ; + 4836; + ""; + "Compañía de Héctor Quiroga" . + + a ; + 4840; + ""; + "Compañía de Ermete Novelli y Tina di Lorenzo" . + + a ; + 4844; + ""; + "Compañía Enrique Muiño" . + + a ; + 4856; + ""; + "Compañía de Luis Arata" . + + a ; + 486; + "Education (Theatre related)"; + ""; + "Royal music school"; + . + + a ; + 4860; + ""; + "Compañía de Alfredo Camiña, Marcos Caplán y Enrique Serrano" . + + a ; + 4880; + ""; + "Teatro Novedades" . + + a ; + 4888; + ""; + "Universidad de Buenos Aires" . + + a ; + 4892; + ""; + "Armada Española" . + + a ; + 4896; + ""; + "Cerniowce Theatre in Stanisla" . + + a ; + 490; + "Theatre"; + ""; + "Münchner Künstlertheater"; + . + + a ; + 4912; + "Elliots Academy of Music in Williamsport" . + + a ; + 49140; + "Theatre"; + ""; + "Adler Theatre"; + . + + a ; + 49150; + "Traveling Company"; + ""; + "Adolf Gertner Troupe" . + + a ; + 492; + "Education (Theatre related)"; + ""; + "Deutsche Akademie für Musik und darstellende Kunst in Prag"; + . + + a ; + 4928; + "National Gurad Theater in Virginia City" . + + a ; + 4932; + "Guards Hall in Carson City" . + + a ; + 4936; + "Smiths Academy of Music in Reno" . + + a ; + 4952; + "Opera House in Norfolk" . + + a ; + 4968; + "Hollenbergs Theatre in Memphis" . + + a ; + 4972; + "Allen Opera House, Louisville" . + + a ; + 49740; + "Theatre"; + ""; + "Arthur Hopkins' Theatre" . + + a ; + 498; + "Company"; + ""; + "Herrmanns Company" . + + a ; + 4980; + "Opera House in Lafayette" . + + a ; + 4984; + "Blacks Opera House in Springfield" . + + a ; + 499; + ""; + "Winter Garden"; + . + + a ; + 500; + "Theatre"; + ""; + "Blanche Corelli's Opera Group" . + + a ; + 50090; + "Traveling Company"; + ""; + "Belloy Troupe" . + + a ; + 50110; + "Traveling Company"; + ""; + "Bennie Shoengold Troupe" . + + a ; + 5028; + "Corning Hall in Auburn" . + + a ; + 5032; + "Manchester USA Opera House in Manchester USA" . + + a ; + 5036; + "Walker Theatre in Salt Lake City" . + + a ; + 50470; + "Traveling Company"; + ""; + "Bronstein Troupe" . + + a ; + 50580; + "Kleinkunst"; + ""; + "Bunes Badkhan (Tshizshik)" . + + a ; + 506; + "Theatre"; + ""; + "Teatr Nowosci"; + . + + a ; + 5072; + "Opera House in Elmira" . + + a ; + 5096; + "Grand Theatre in Indianapolis" . + + a ; + 510; + "Company"; + ""; + "Vilner Trupe" . + + a ; + 5116; + "Lewisham Hippodrome" . + + a ; + 51180; + "Theatre"; + ""; + "Chorus of the Lemberg Polish Opera" . + + a ; + 512; + "Theatre"; + ""; + "Krokever Yidish Teater "; + . + + a ; + 513; + "Company"; + ""; + "Artistishe Vinkele" . + + a ; + 5132; + "Regent Theatre (King’s Cross)" . + + a ; + 514; + "Theatre"; + ""; + "Elizeum Theater"; + . + + a ; + 51420; + "Traveling Company"; + ""; + "Cohen Brothers Troupe" . + + a ; + 5156; + "Haynes Music Hall (Springfield)" . + + a ; + 516; + "Theatre"; + ""; + "Varshever Nayer Yidisher Teater"; + . + + a ; + 517; + "Education (Theatre related)"; + ""; + "Vilner Yidisher Teater and drama school" . + + a ; + 5172; + "Grand Opera House (Harrisburg)" . + + a ; + 5176; + "Opera House" . + + a ; + 5184; + "Comstock Opera House (Columbus)" . + + a ; + 5208; + "Masonic Theatre (Nashville)" . + + a ; + 522; + ""; + "Zionist youth farm" . + + a ; + 523; + "Theatre"; + ""; + "Kleynkunst Theater Azazel" . + + a ; + 5236; + "Ralston Hall (Macon)" . + + a ; + 52360; + "Traveling Company"; + ""; + "David Shvartbard Troupe" . + + a ; + 524; + "Company"; + ""; + "Jonas Turkow´s travelling company" . + + a ; + 5240; + "Grand Opera House (Atlanta)" . + + a ; + 5248; + "Academy of Music, Baltimore"; + . + + a ; + 525; + "Company"; + ""; + "Traveling company of Zygmunt Turkow and Ida Kaminska" . + + a ; + 52520; + "Printed Media"; + ""; + "Deutsche presse verwaltung" . + + a ; + 526; + "Kleinkunst"; + ""; + "Yiddish Vaudeville" . + + a ; + 52630; + "Traveling Company"; + ""; + "Deutsch Jüdisches Theater"; + . + + a ; + 5264; + "Park Theatre (Hannibal)" . + + a ; + 52690; + "Society/Union"; + ""; + "di Idishe federatsye far muziḳ un drama" . + + a ; + 52720; + "Printed Media"; + ""; + "Di Tsayt" . + + a ; + 52750; + "Society/Union"; + ""; + "Dos artistishe vinkele" . + + a ; + 5276; + "Duncan-Waller Opera House" . + + a ; + 528; + "Theatre"; + ""; + "Teatro Carcano"; + . + + a ; + 52960; + "Traveling Company"; + ""; + "E. Relkin Troupe" . + + a ; + 530; + "Theatre"; + ""; + "Opera House Odessa"; + . + + a ; + 53000; + "Traveling Company"; + ""; + "Edelhofer Troupe" . + + a ; + 5304; + "Columbia Theatre (Chicago)" . + + a ; + 531; + "Theatre"; + ""; + "Teatro Dal Ferme"; + . + + a ; + 53230; + "Theatre"; + ""; + "Elvings Metropolitan Theatre" . + + a ; + 534; + "Education (Theatre related)"; + ""; + "Conservatorium of Milano"; + . + + a ; + 5341; + "Academy of Music, Allentown" . + + a ; + 53450; + "Company on Tour"; + ""; + "Ester Rukhl Kaminska Troupe" . + + a ; + 53460; + "Traveling Company"; + ""; + "Esther Vaksman Troupe" . + + a ; + 53510; + "Traveling Company"; + ""; + "Fanny Vaksman Troupe" . + + a ; + 5353; + "Academy of Music, Oswego" . + + a ; + 53540; + "Traveling Company"; + ""; + "Feldman Troupe" . + + a ; + 5357; + "Academy of Music, Sioux City"; + . + + a ; + 53590; + "Traveling Company"; + ""; + "Filipesko Troupe" . + + a ; + 536; + "Theatre"; + "In one source called “Agramer Oper”"; + "Zagreb Opera House"; + . + + a ; + 5369; + "Alpha Opera House, Tacoma"; + . + + a ; + 5373; + "Theatre"; + "Avon Theatre, Stockton"; + . + + a ; + 538; + "Theatre"; + ""; + "Neues Theater"; + . + + a ; + 5385; + "Binghamton Opera House" . + + a ; + 5389; + "Bowerstock Opera House, Lawrence" . + + a ; + 5397; + "Bunnell´s Theatre, Newtown" . + + a ; + 5401; + "Burtistheatre, Auburn" . + + a ; + 54090; + "Musical Organization"; + ""; + "Gardetski Quartet" . + + a ; + 5413; + "Columbian Exposition, Chicago" . + + a ; + 5417; + "Columbus Opera House" . + + a ; + 54180; + "Traveling Company"; + ""; + "George Beker Troupe" . + + a ; + 5421; + "Crescent Opera House, Fonddu Lac" . + + a ; + 5425; + "Daly Theater, Manhattan" . + + a ; + 54280; + "Theatre"; + ""; + "Gilmore's Auditorium"; + . + + a ; + 54340; + "Traveling Company"; + ""; + "Glickman and Michalesko Troupe" . + + a ; + 5437; + "Evan´s Opera House, Anaconda" . + + a ; + 54380; + "Traveling Company"; + ""; + "Golubok Troupe" . + + a ; + 544; + "Theatre"; + ""; + "Apollo-Theater, Berlin"; + . + + a ; + 5441; + "Exposition Building, Portland" . + + a ; + 5445; + "Fourteenth Street Theatre, New York" . + + a ; + 5449; + "French´s Opera House, Santa Ana" . + + a ; + 545; + "Theatre"; + ""; + "Metropoltheater"; + . + + a ; + 5461; + "Grand Opera House, Atchison" . + + a ; + 54680; + "Theatre"; + ""; + "Groyse Teater" . + + a ; + 5469; + "Grand Opera House, Dayton" . + + a ; + 54740; + "Traveling Company"; + ""; + "Guzik Troupe" . + + a ; + 54910; + "Traveling Company"; + ""; + "Hart Troupe" . + + a ; + 54920; + "Printed Media"; + ""; + "HaTsfira" . + + a ; + 550; + "Theatre"; + ""; + "Warsaw Theatre"; + . + + a ; + 5501; + "Greely Opera House" . + + a ; + 55010; + "Society/Union"; + ""; + "Hebrew Actors Protective Union" . + + a ; + 5505; + "Green´s Opera House, Vincennes" . + + a ; + 5509; + "Hall´s Opera House, Owensboro" . + + a ; + 5513; + "Hammerstein´s Opera House, New York" . + + a ; + 5533; + "Jacques Opera House, Waterbury" . + + a ; + 5537; + "Keokuk Opera House" . + + a ; + 5541; + "Kerr Opera House, Hastings" . + + a ; + 5549; + "Library Hall, Warren" . + + a ; + 5553; + "Louis Opera House, San Diego" . + + a ; + 5557; + "Lyceum Theater"; + . + + a ; + 5561; + "Lyceum Theatre, Baltimore" . + + a ; + 5565; + "Metropolitan, St. Paul" . + + a ; + 5581; + "Music Hall, Crawfordsville" . + + a ; + 5585; + "Myers Opera House, Janesville" . + + a ; + 55850; + "Printed Media"; + ""; + "Illustrirte Vokh" . + + a ; + 5589; + "New Broadway Theater, Denver" . + + a ; + 559; + "Theatre"; + ""; + "Princes Theatre "; + . + + a ; + 560; + "Musical Organization"; + ""; + "Londoner Palace Music Hall"; + . + + a ; + 5601; + "Newark Grand Opera House" . + + a ; + 56010; + "Traveling Company"; + ""; + "Isidor Hollander Troupe" . + + a ; + 5609; + "Oakland Theatre" . + + a ; + 56090; + "Traveling Company"; + ""; + "Itzik Mendl Bergman Troupe" . + + a ; + 56140; + "Traveling Company"; + ""; + "Jacob Gertner Troupe" . + + a ; + 56150; + "Traveling Company"; + ""; + "Jacob P. Adler troupe" . + + a ; + 5617; + "Omaha Opera House" . + + a ; + 5621; + "Opera House, Brantford" . + + a ; + 56320; + "Traveling Company"; + ""; + "Joseph Kessler Troupe (star tour)" . + + a ; + 5633; + "Opera House, Kansas City" . + + a ; + 5637; + "Opera House, Kearney" . + + a ; + 56390; + "Traveling Company"; + ""; + "Julius Adler and H. Serotsky Troupe" . + + a ; + 5641; + "Opera House, New Bedford" . + + a ; + 56420; + "Traveling Company"; + ""; + "Julius Nathanson Troupe" . + + a ; + 5645; + "Opera House, Oil City" . + + a ; + 5649; + "Opera House, Poughkeepsie" . + + a ; + 5653; + "Opera House, San Bernardino" . + + a ; + 56530; + "Kleinkunst"; + ""; + "Kamer-teater" . + + a ; + 5657; + "Opera House, Youngstown" . + + a ; + 5665; + "Orange Opera House" . + + a ; + 56660; + "Traveling Company"; + ""; + "Keni Lipzin Troupe (star tour)" . + + a ; + 56670; + "Theatre"; + ""; + "Kessler's Lyric Theatre"; + . + + a ; + 56680; + "Traveling Company"; + ""; + "Khayim Abramovitsh Troupe" . + + a ; + 5669; + "Peavey Grand Opera House, Sioux City" . + + a ; + 56690; + "Printed Media"; + ""; + "Kinder Zhurnal (Children's Journal)" . + + a ; + 5673; + "Plainfield Theatre" . + + a ; + 5677; + "Price´s Opera House, Atchison" . + + a ; + 5689; + "Stillma Music Hall, Plainfield" . + + a ; + 56930; + "Traveling Company"; + ""; + "Kopilov Troupe" . + + a ; + 56970; + "Traveling Company"; + ""; + "Krause Troupe" . + + a ; + 57030; + "Society/Union"; + ""; + "Kunst vinkl" . + + a ; + 5705; + "Temple Opera House, Duluth" . + + a ; + 5709; + "The Amphitheater Auditorium, Louisville" . + + a ; + 5721; + "Utah Grand Opera House, Salt Lake City" . + + a ; + 5725; + "Theatre"; + "Victoria Theatre, Victoria"; + . + + a ; + 5729; + "Wager Opera House, Bradford" . + + a ; + 5733; + "Warder Grand, Kansas City" . + + a ; + 574; + "Theatre"; + ""; + "Herald Square Theater "; + . + + a ; + 57420; + "Traveling Company"; + ""; + "Lempkovitsh Troupe" . + + a ; + 57470; + "Traveling Company"; + ""; + "Levitan Troupe" . + + a ; + 5748; + "Grand Opera House, Pasadena" . + + a ; + 57510; + "Traveling Company"; + ""; + "Liberesco Troupe" . + + a ; + 5752; + "Opera House in Victoria"; + . + + a ; + 5756; + "Proctor´s Opera House in Bridgeport" . + + a ; + 57570; + "Traveling Company"; + ""; + "Lieberman Theatre" . + + a ; + 5764; + "Horsefield and Woodward touring company" . + + a ; + 57640; + ""; + ""; + "Lira (as drama school)" . + + a ; + 57650; + ""; + ""; + "Lira (as drama society)" . + + a ; + 57660; + "Society/Union"; + ""; + "Lit. Dram. Gesellschaft" . + + a ; + 5768; + "Compton Comedy Company" . + + a ; + 5772; + "Brewster’s Millions company" . + + a ; + 57720; + "Traveling Company"; + ""; + "Littman Troupe" . + + a ; + 5776; + "the Lena Ashwell Players" . + + a ; + 578; + "Casino"; + ""; + "New York Casino"; + . + + a ; + 5780; + "Gertrude Elliott Touring Company" . + + a ; + 57830; + "Theatre"; + ""; + "Lublin Municipal Theatre" . + + a ; + 58000; + "Theatre"; + ""; + "M.D. Waxman Troupe" . + + a ; + 58060; + "Theatre"; + ""; + "Madison Street Theater"; + . + + a ; + 581; + "Printed Media"; + ""; + "Journal O Mosquito"; + . + + a ; + 582; + "Printed Media"; + ""; + "Journal Psitt!!!"; + . + + a ; + 583; + "Printed Media"; + ""; + "Journal O Besouro"; + . + + a ; + 58370; + "Kleinkunst"; + ""; + "Max Gabel Theatre" . + + a ; + 58450; + "Education (Theatre related)"; + ""; + "Mendl Elkin's Children Theatre Studio" . + + a ; + 58600; + "Theatre"; + ""; + "Metropolitan Theatre" . + + a ; + 58650; + "Traveling Company"; + ""; + "Michalesko guest-starring Troupe" . + + a ; + 58720; + "Traveling Company"; + ""; + "Mitelman, Baran and Gizets Troupe" . + + a ; + 58730; + "Traveling Company"; + ""; + "Mitleman Troupe" . + + a ; + 58890; + "Theatre"; + ""; + "Moscow State Jewish Theatre" . + + a ; + 58900; + "Traveling Company"; + ""; + "Moshe Schorr Troupe" . + + a ; + 59230; + "Theatre"; + ""; + "National Opera Warsaw" . + + a ; + 594; + "Theatre"; + ""; + "Teatro Dona Amélia"; + . + + a ; + 596; + "Education (Theatre related)"; + ""; + "Conservatório"; + . + + a ; + 59790; + "Media"; + ""; + "Nordisk Film" . + + a ; + 598; + "Company"; + ""; + "Companhia Aura Abranches"; + . + + a ; + 59800; + "Theatre"; + ""; + "Nord Star Theatre" . + + a ; + 59860; + "Printed Media"; + ""; + "Nowa Gazeta" . + + a ; + 600; + "Theatre"; + ""; + "Teatro Santa Teresa"; + . + + a ; + 60000; + "Theatre"; + ""; + "Olimpic Theatre"; + . + + a ; + 603; + "Company"; + ""; + "Florindo Joaquim da Silva’s drama company" . + + a ; + 605; + "Theatre"; + ""; + "Teatro São José"; + . + + a ; + 608; + "Theatre"; + ""; + "Frankfurter Stadttheater"; + . + + a ; + 609; + "Theatre"; + ""; + "Central-Theater"; + . + + a ; + 60900; + "Theatre"; + ""; + "People's Theater London" . + + a ; + 60930; + "Education (Theatre related)"; + ""; + "Peretz Society Drama studio" . + + a ; + 610; + "Theatre"; + ""; + "Oskar-Braun-Operettengesellschaft" . + + a ; + 611; + "Theatre"; + ""; + "Kurtheater"; + . + + a ; + 61140; + "Society/Union"; + ""; + "Poale Zion (\"Workers of Zion\")" . + + a ; + 612; + "Education (Theatre related)"; + ""; + "Lobkowicz Konservatorium"; + . + + a ; + 613; + "Theatre"; + ""; + "Royal Opera House"; + . + + a ; + 61390; + "Amateur"; + ""; + "Progresiv dramatik klub (Progressive Drama Club)" . + + a ; + 614; + "Theatre"; + ""; + "Metropolitan Theatre"; + . + + a ; + 61420; + "Theatre"; + ""; + "Public Theatre (Folks Theatre)" . + + a ; + 61480; + "Traveling Company"; + ""; + "Rabinovitsh Troupe" . + + a ; + 615; + "Theatre"; + ""; + "Nationaltheater Prag"; + . + + a ; + 61660; + "Traveling Company"; + ""; + "Rappel Troupe" . + + a ; + 617; + "Theatre"; + ""; + "Teatro de São Carlos"; + . + + a ; + 618; + "Theatre"; + ""; + "Teatro de Trindade"; + . + + a ; + 619; + "Education (Theatre related)"; + ""; + "Conservatory Lissabon" . + + a ; + 620; + "Theatre"; + ""; + "Teatro da Sociedade Filo-Dramática"; + . + + a ; + 62040; + "Traveling Company"; + ""; + "Rosenberg and Spivakovski Troupe" . + + a ; + 621; + "Theatre"; + ""; + "Teatro Público"; + . + + a ; + 62280; + "Traveling Company"; + ""; + "Sabsey Troupe" . + + a ; + 62440; + "Traveling Company"; + ""; + "Samolesko Troupe" . + + a ; + 62500; + "Traveling Company"; + ""; + "Sarah Adler Troupe" . + + a ; + 62520; + "Theatre"; + ""; + "Satz Public Theatre" . + + a ; + 62670; + "Traveling Company"; + ""; + "Serotsky and Weissman Troupe" . + + a ; + 628; + "Theatre"; + ""; + "Teatro Santo Antônio"; + . + + a ; + 629; + "Theatre"; + ""; + "Teatro-Circo Cosmopolita" . + + a ; + 62900; + "Traveling Company"; + ""; + "Sniegoff Troupe" . + + a ; + 630; + ""; + ""; + "Sociedade Amadora Dramática Familiar" . + + a ; + 63200; + "Traveling Company"; + ""; + "Spivakovski and Weinstock Troupe" . + + a ; + 63210; + "Traveling Company"; + ""; + "Spivakovski Troupe" . + + a ; + 63220; + "Traveling Company"; + ""; + "Spivakovsky and Sh. Krause Troupe" . + + a ; + 633; + "Company"; + ""; + "J. A. Moniz theatre company" . + + a ; + 63670; + "Musical Organization"; + ""; + "Stein Quartet" . + + a ; + 637; + ""; + "Argentinian Council for Education"; + . + + a ; + 63730; + "Traveling Company"; + ""; + "Stramer Troupe" . + + a ; + 639; + ""; + "El bañista"; + . + + a ; + 640; + ""; + "El Ateneo Artístico"; + . + + a ; + 650; + "Theatre"; + ""; + "Teatro Dona Amélia" . + + a ; + 651; + "Theatre"; + ""; + "Teatro da Rua dos Condes" . + + a ; + 654; + ""; + ""; + "Afonso Taveira Theater Company" . + + a ; + 658; + "Society/Union"; + ""; + "ACTT" . + + a ; + 65910; + "Theatre"; + ""; + "theater Solovtsov" . + + a ; + 660; + ""; + ""; + "Revue Theater Company of Carlos Leal" . + + a ; + 661; + "Company"; + ""; + "José Clímaco’s company" . + + a ; + 662; + "Theatre"; + ""; + "Éden Teatro" . + + a ; + 663; + "Company"; + ""; + "Companhia Portuguesa de Revistas of Jorge Grave in Politeama" . + + a ; + 664; + "Company"; + ""; + "Grande Companhia de Revista " . + + a ; + 66410; + "Theatre"; + ""; + "The Lyceum Theatre" . + + a ; + 66500; + "Theatre"; + ""; + "The Monument-National Theatre" . + + a ; + 66550; + "Theatre"; + ""; + "The Peoples Theatre Detroit" . + + a ; + 66570; + "Theatre"; + ""; + "The Public Theatre" . + + a ; + 66580; + "Theatre"; + ""; + "The Roumanian Opera Company" . + + a ; + 666; + ""; + "Artistas Associados (Parque Mayer)"; + . + + a ; + 66610; + "Theatre"; + ""; + "The Russian State Theatre" . + + a ; + 66650; + "Musical Organization"; + ""; + "The St.Petersburg State Conservatory" . + + a ; + 667; + "Company"; + ""; + "Company Mateus Rosa Ltd" . + + a ; + 66700; + "Company on Tour"; + ""; + "The Vilna Troupe (Azro/Alomis branch)" . + + a ; + 669; + "Company"; + ""; + "Theatrical company of Teatro do Ginásio" . + + a ; + 66970; + "Traveling Company"; + ""; + "Tshistogorski troupe" . + + a ; + 66980; + "Theatre"; + ""; + "Tsimerman Theatre" . + + a ; + 67200; + "Society/Union"; + ""; + "Unzer teater" . + + a ; + 673; + ""; + "Vale do Café"; + . + + a ; + 67370; + "Traveling Company"; + ""; + "Vaynshtoks, Vaynshtayns, and Goldschmidt Troupe" . + + a ; + 67480; + "Company on Tour"; + ""; + "Vikt" . + + a ; + 675; + "Theatre"; + ""; + "Teatro do Comércio" . + + a ; + 67540; + "Theatre"; + ""; + "Vine Court" . + + a ; + 677; + ""; + ""; + "Germano Francisco de Oliveira’s theatre company" . + + a ; + 67720; + "Traveling Company"; + ""; + "Weinstock-Schorr Troupe" . + + a ; + 678; + ""; + "Sociedade Particular do Ginásio do Comércio " . + + a ; + 679; + ""; + ""; + "Alves Meira Theatre Company" . + + a ; + 67950; + "Traveling Company"; + ""; + "Wolgeschaffen Troupe" . + + a ; + 68190; + "Theatre"; + ""; + "Yidishn folks teater" . + + a ; + 682; + "Company"; + ""; + "Empresa do artista Heller company" . + + a ; + 68240; + "Traveling Company"; + ""; + "Yosef Veynshtok and Leon Berger Troupe" . + + a ; + 68290; + "Traveling Company"; + ""; + "Zaslavsky Troupe" . + + a ; + 68310; + "Traveling Company"; + ""; + "Zhitomirski Troupe" . + + a ; + 68330; + "Traveling Company"; + ""; + "Ziegler Troupe" . + + a ; + 68350; + "Printed Media"; + ""; + "Zuntog-blat" . + + a ; + 684; + "Company"; + ""; + "José Antônio do Vale’s dramatic company" . + + a ; + 685; + "Theatre"; + ""; + "Teatro São Luiz" . + + a ; + 68870; + "Theatre"; + ""; + "Gradina Pomul verde"; + . + + a ; + 689; + "Theatre"; + ""; + "Teatro Santa Tereza"; + . + + a ; + 69; + "Theatre"; + ""; + "Folies Bergeres Theaters"; + . + + a ; + 69090; + "Other"; + ""; + "Cantor Yeruchem Hktn" . + + a ; + 69120; + "Traveling Company"; + ""; + "Di yidish-orientalishe Troupe" . + + a ; + 692; + "Company"; + ""; + "Helena Balsemão Company" . + + a ; + 69200; + "Theatre"; + ""; + "Germania Theatre" . + + a ; + 69230; + "Printed Media"; + ""; + "Hador" . + + a ; + 69240; + "Printed Media"; + ""; + "HaMelitz" . + + a ; + 69250; + "Traveling Company"; + ""; + "Hartenshteyn-Spivakovsky's Troupe" . + + a ; + 69260; + "Printed Media"; + ""; + "HaTsofe" . + + a ; + 69280; + "Traveling Company"; + ""; + "Israel Gradner's Troupe" . + + a ; + 69290; + "Theatre"; + ""; + "Jewish Art Theatre (The New Yiddish Theatre)" . + + a ; + 693; + "Other"; + ""; + "Helena Balsemão's wax flower store"; + . + + a ; + 69300; + "Society/Union"; + ""; + "Jewish National Labor Union" . + + a ; + 69310; + "Society/Union"; + ""; + "Khaverah m'sivta haskalah" . + + a ; + 69320; + "Society/Union"; + ""; + "Kiev artists cooperative" . + + a ; + 69360; + "Theatre"; + ""; + "Lateiner's Theatre" . + + a ; + 69380; + "Traveling Company"; + ""; + "Liverpool Troupe" . + + a ; + 69390; + "Media"; + ""; + "Lubin film company" . + + a ; + 69400; + "Company on Tour"; + ""; + "Manchester professional Yiddish Troupe" . + + a ; + 69450; + "Theatre"; + ""; + "Newark theatre" . + + a ; + 69480; + "Kleinkunst"; + ""; + "Princes Club" . + + a ; + 69490; + "Society/Union"; + ""; + "Professional Yiddish Actors Union in Poland" . + + a ; + 69520; + "Amateur"; + ""; + "Samuel Goldenburg’s Drama Club" . + + a ; + 69560; + "Theatre"; + ""; + "Smith Theatre" . + + a ; + 69580; + "Society/Union"; + ""; + "The Actor's Union Local 5" . + + a ; + 69600; + "Printed Media"; + ""; + "Theatre and Art (Zylbercweig)" . + + a ; + 69620; + "Printed Media"; + ""; + "The Bukovina Israelite Folk Page (weekly journal)" . + + a ; + 69724; + "Chamberlain Brown Players" . + + a ; + 69728; + "Kingsway" . + + a ; + 69732; + "Alexander Marsh Shakespearean Company" . + + a ; + 69740; + "Bristol Little Theatre" . + + a ; + 69744; + "Ben Greet Repertory" . + + a ; + 69748; + "Henry Baynton Company" . + + a ; + 69752; + "Royal Theatre"; + . + + a ; + 69764; + "Theatre"; + "Mariinsky" . + + a ; + 69772; + "Society/Union"; + "Young Yiddish" . + + a ; + 69776; + "Printed Media"; + "NOWY DZIENNIK (\"The New Daily\")" . + + a ; + 69780; + "Traveling Company"; + "Wolgeschaffen's troupe" . + + a ; + 69784; + "Society/Union"; + "Actors' union" . + + a ; + 69788; + "Traveling Company"; + "Spivakovski and Fiszon's troupe" . + + a ; + 69792; + "Traveling Company"; + "Moshe Schorr's troupe" . + + a ; + 69796; + "Traveling Company"; + "Jacob Spivakovski" . + + a ; + 69800; + "Theatre"; + "Nowy Theatre" . + + a ; + 69808; + "Company on Tour"; + "Schwartz's troupe" . + + a ; + 69812; + "Traveling Company"; + "Jacob P. Adler's troupe" . + + a ; + 69816; + "Traveling Company"; + "Avraham Fishzon's troupe" . + + a ; + 69828; + "Traveling Company"; + "Lazar Bernstein's troupe" . + + a ; + 69836; + "Traveling Company"; + "Krause's troupe" . + + a ; + 69844; + "Traveling Company"; + "Kopilov's troupe" . + + a ; + 69848; + "Traveling Company"; + "Guzik's troupe" . + + a ; + 69852; + "Society/Union"; + "Kunst vinkl (Artist corner)" . + + a ; + 69864; + "Amateur"; + "Dramatic Arts (Amatuer)" . + + a ; + 69868; + "Traveling Company"; + "The Yiddish literary troupe" . + + a ; + 69872; + "Traveling Company"; + "Yiddish literary troupe" . + + a ; + 69876; + "Theatre"; + "Lublin's municipal theatre" . + + a ; + 69892; + "Traveling Company"; + "Mogulesco" . + + a ; + 69896; + "Traveling Company"; + "Liberesco" . + + a ; + 69900; + "Traveling Company"; + "Berger" . + + a ; + 69904; + "Traveling Company"; + "Hurwitz" . + + a ; + 69908; + "Traveling Company"; + "Mordechai Segalesco" . + + a ; + 69916; + "Traveling Company"; + "Gradner" . + + a ; + 69924; + "Education (Theatre related)"; + "Royal Theatre Drama School" . + + a ; + 69928; + "Media"; + "Nordish Film Company" . + + a ; + 69932; + "Theatre"; + "Satz’s Public Theatre (Folks Theatre)" . + + a ; + 69936; + "Traveling Company"; + "Zhitomirski's Troupe" . + + a ; + 69944; + "Traveling Company"; + "Levitan's Troupe" . + + a ; + 69948; + "Traveling Company"; + "Hart's Troupe" . + + a ; + 69952; + "Traveling Company"; + "Ziegler's Troupe" . + + a ; + 69956; + "Traveling Company"; + "Stramer's Troupe" . + + a ; + 69960; + "Theatre"; + "Russian State Theatre" . + + a ; + 69964; + "Traveling Company"; + "Sam Adler-Meerson troupe" . + + a ; + 69968; + "Traveling Company"; + "Mitleman’s troupe" . + + a ; + 69972; + "Traveling Company"; + "Yiddish Dramatic Theatre (Hirshbein troupe)" . + + a ; + 69976; + "Theatre"; + "Feinman's Artistic Temple (Feinman's Yiddish People's Theatre)" . + + a ; + 69980; + "Traveling Company"; + "Sarah Adler’s troupe" . + + a ; + 69988; + "Traveling Company"; + "Keni Lipzin" . + + a ; + 69996; + "Theatre"; + "Schwartz’s Irving Place Theatre" . + + a ; + 70000; + "Theatre"; + "Arthur Hopkins' English-language theatre" . + + a ; + 70004; + "Theatre"; + "Irving Place Theatre (The New Yiddish Art Theatre)" . + + a ; + 70008; + "Education (Theatre related)"; + "Wurtzburg's university" . + + a ; + 70012; + "Theatre"; + "Polish operetta theatre" . + + a ; + 70016; + "Traveling Company"; + "David Shvartbard's troupe" . + + a ; + 70024; + "Traveling Company"; + "Edelhofer's troupe" . + + a ; + 70028; + "Traveling Company"; + "Goldfaden" . + + a ; + 70032; + "Traveling Company"; + "German-Yiddish" . + + a ; + 70044; + "Company on Tour"; + "Vik't" . + + a ; + 70056; + "Musical Organization"; + "Quartet of Gardetski" . + + a ; + 70060; + "Theatre"; + "The Warsaw governmental opera" . + + a ; + 70064; + "Musical Organization"; + "Rock (stein) quartet" . + + a ; + 70072; + "Traveling Company"; + "Spivakovsky and Sh. Krause's troupe" . + + a ; + 70076; + "Theatre"; + "the Windsor Theatre" . + + a ; + 70080; + "Traveling Company"; + "Mike Thomashefsky's Troupe" . + + a ; + 70084; + "Kleinkunst"; + "Variety with Gabel" . + + a ; + 70088; + "Traveling Company"; + "Thomashefsky's troupe" . + + a ; + 70096; + "Society/Union"; + "The Hebrew Actor's Protective Union of America" . + + a ; + 70100; + "Amateur"; + "Russian amateur productions" . + + a ; + 70104; + "Theatre"; + "Tsimerman's theatre" . + + a ; + 70112; + "Amateur"; + "Amatuer productions" . + + a ; + 70116; + "Traveling Company"; + "the first Yiddish troupe in South Africa." . + + a ; + 70120; + "Printed Media"; + "Kugel's \"Theatre and Arts" . + + a ; + 70128; + "Kleinkunst"; + "A Kamer-Teater" . + + a ; + 70132; + "Society/Union"; + "Theatre Society" . + + a ; + 70136; + "Society/Union"; + "Professional Yiddish Artists Union in Poland" . + + a ; + 70140; + "Education (Theatre related)"; + "the Arbeter Ring camp \"Kinderland" . + + a ; + 70144; + "Society/Union"; + "Unzer Theatre" . + + a ; + 70148; + "Education (Theatre related)"; + "Children's Theatre Studio" . + + a ; + 70152; + "Printed Media"; + "Zuntog blat" . + + a ; + 70156; + "Society/Union"; + "Fraye yidishe folksbine" . + + a ; + 70160; + "Society/Union"; + "Di fraye idishe folks-bihne" . + + a ; + 70164; + "Printed Media"; + "Forward (newspaper)" . + + a ; + 70168; + "Printed Media"; + "Di varhayt" . + + a ; + 70172; + "Printed Media"; + "Der tog" . + + a ; + 70176; + "Society/Union"; + "Poalei Zion movement" . + + a ; + 70180; + "Education (Theatre related)"; + "National Radical Yiddish School" . + + a ; + 70184; + "Education (Theatre related)"; + "Yiddish Teacher's Seminar" . + + a ; + 70188; + "Printed Media"; + "the first Yiddish children's journal in America" . + + a ; + 70192; + "Society/Union"; + "People's Relief\" and Yiddish congress" . + + a ; + 70196; + "Amateur"; + "Progressive Dramatic Club" . + + a ; + 70204; + "Musical Organization"; + "Goldfaden's Chorus" . + + a ; + 70212; + "Theatre"; + "Groyses Theatre" . + + a ; + 70216; + "Printed Media"; + "Tsukunft (Newspaper)" . + + a ; + 70220; + "Printed Media"; + "Ilustrirte vokh (Newspaper)" . + + a ; + 70224; + "Theatre"; + "Yiddish Folks Theatre" . + + a ; + 70228; + "Printed Media"; + "independet Hebrew brochure" . + + a ; + 70232; + "Kleinkunst"; + "Yiddish vaudeville theatres" . + + a ; + 70236; + "Theatre"; + "summer theatre, Second Avenue Theatre" . + + a ; + 70240; + "Theatre"; + "National Theatre, Irving Place Theatre" . + + a ; + 70244; + "Traveling Company"; + "Zakhariah Fishl Filipesko's troupe" . + + a ; + 70248; + "Traveling Company"; + "Segalesko's troupe" . + + a ; + 70252; + "Traveling Company"; + "Akselrad's troupe" . + + a ; + 70256; + "Traveling Company"; + "Cohen brothers' troupe" . + + a ; + 70260; + "Traveling Company"; + "Morris Lieblich's troupe" . + + a ; + 70268; + "Traveling Company"; + "Kompaneyets' operetta troupe" . + + a ; + 70276; + "Theatre"; + "Hall on Manhattan Avenue" . + + a ; + 70280; + "Amateur"; + "Amateurs" . + + a ; + 70288; + "Theatre"; + "Lennox" . + + a ; + 70292; + "Traveling Company"; + "Littman's troupe" . + + a ; + 703; + ""; + "The North-China Daily News" . + + a ; + 70300; + "Traveling Company"; + "Lempkovitsh's troupe" . + + a ; + 70304; + "Traveling Company"; + "Meerson and Sam Adler's troupe" . + + a ; + 70308; + "Traveling Company"; + "Sam Wallerstein's troupe" . + + a ; + 70312; + "Printed Media"; + "Publication Committee of the Lexicon of the Yiddish Theatre." . + + a ; + 70320; + "Traveling Company"; + "Meyerson's troupe" . + + a ; + 70324; + "Company on Tour"; + "Ester Rukhl Kaminska's troupe" . + + a ; + 70328; + "Traveling Company"; + "Adler-Spivakovsky's troupe" . + + a ; + 70332; + "Traveling Company"; + "Segalesco's troupe" . + + a ; + 70336; + "Traveling Company"; + "Yuvelier's troupe" . + + a ; + 70344; + "Amateur"; + "Local Yiddish dramatic circle" . + + a ; + 70348; + "Printed Media"; + "Yidishe tsaytung" . + + a ; + 70352; + "Traveling Company"; + "Fishzon's production" . + + a ; + 70356; + "Traveling Company"; + "Feldman's troupe" . + + a ; + 70360; + "Traveling Company"; + "Meerson's troupe" . + + a ; + 70368; + "Kleinkunst"; + "Folk Singer" . + + a ; + 70372; + "Kleinkunst"; + "Broder Singer" . + + a ; + 70376; + "Traveling Company"; + "Khayim Abramovitsh's troupe" . + + a ; + 70380; + "Traveling Company"; + "Itzik Mendl Bergman's troupe" . + + a ; + 70388; + "Traveling Company"; + "Yosef Veynshtok and Leon Berger's troupe" . + + a ; + 70392; + "Traveling Company"; + "Aba and Leah Kompaneyets' troupe" . + + a ; + 70404; + "concerts" . + + a ; + 70412; + "Society/Union"; + "Freye [folks] bine" . + + a ; + 70416; + "Traveling Company"; + "Elias Glickman's troupe" . + + a ; + 70420; + "Traveling Company"; + "Jacob Gertner's troupe" . + + a ; + 70424; + "Printed Media"; + "Lexicon of Yiddish Theatre" . + + a ; + 70432; + "Society/Union"; + "singing association (\"Hazamir\")" . + + a ; + 70436; + "Printed Media"; + "Yidish tagenblat" . + + a ; + 70440; + "Society/Union"; + "the Jewish Federation of Music and Drama" . + + a ; + 70444; + "Education (Theatre related)"; + "Music school" . + + a ; + 70452; + "Theatre"; + "Kessler's Theatre on Second Avenue" . + + a ; + 70456; + "Theatre"; + "German's Folks Theatre" . + + a ; + 70460; + "Theatre"; + "the Rumanian Opera House" . + + a ; + 70468; + "Traveling Company"; + "Italian opera troupe" . + + a ; + 70472; + "Theatre"; + "Thomashefsky's National Theatre" . + + a ; + 70476; + "Traveling Company"; + "Ukrainian troupe under the direction of E. Relkin" . + + a ; + 70480; + "Theatre"; + "Detroit theatre" . + + a ; + 70484; + "Education (Theatre related)"; + "Hebrew school" . + + a ; + 70488; + "Printed Media"; + "Hatsufah" . + + a ; + 70492; + "Printed Media"; + "Der Fraynd" . + + a ; + 70496; + "Printed Media"; + "Haynt" . + + a ; + 70500; + "Printed Media"; + "Dos varshaver togblat" . + + a ; + 70504; + "Printed Media"; + "Moment" . + + a ; + 70512; + "Society/Union"; + "The Artistic Corner" . + + a ; + 70516; + "Society/Union"; + "the worker's circle" . + + a ; + 70520; + "Traveling Company"; + "George Beker's provincial troupe" . + + a ; + 70524; + "Theatre"; + "Muranov Theatre (Kompaneyets troupe)" . + + a ; + 70528; + "Yiddish provincial troupes" . + + a ; + 70532; + "Russian theatre" . + + a ; + 70536; + "Provincial troupe" . + + a ; + 70540; + "Printed Media"; + "Unzer lebn" . + + a ; + 70544; + "Printed Media"; + "Literarishe bleter" . + + a ; + 70548; + "Printed Media"; + "the Polish Publication Committee of (first volume) the \"Lexicon of the Yiddish Theatre" . + + a ; + 70552; + "Printed Media"; + "Hasif" . + + a ; + 70556; + "Printed Media"; + "HaTzfira" . + + a ; + 70560; + "Printed Media"; + "Dos yudishe vort" . + + a ; + 70564; + "Printed Media"; + "Yud" . + + a ; + 70568; + "Printed Media"; + "the German press department" . + + a ; + 70572; + "Printed Media"; + "Nova Gazetta" . + + a ; + 70580; + "Education (Theatre related)"; + "Vilna gymnasium" . + + a ; + 70584; + "Education (Theatre related)"; + "Yudishe bibliotek" . + + a ; + 70588; + "Society/Union"; + "Arbeter Ring" . + + a ; + 70592; + "Company on Tour"; + "Kaminski troupe" . + + a ; + 70596; + "Theatre"; + "Moscow's Jewish State Theatre" . + + a ; + 70600; + "Traveling Company"; + "Mogulesko's troupe" . + + a ; + 70604; + "Kleinkunst"; + "Zhignitsa'" . + + a ; + 70608; + "Circus"; + "Circus 'Sidali'" . + + a ; + 70616; + "Society/Union"; + "Actors Union, Local 2" . + + a ; + 70620; + "Theatre"; + "Irving Palace Theatre" . + + a ; + 70624; + "Theatre"; + "Art Theatre (Schnitzer's)" . + + a ; + 70628; + "Media"; + "Film production" . + + a ; + 70632; + "Traveling Company"; + "Hollander's troupe" . + + a ; + 70636; + "Traveling Company"; + "Julius Nathanson's troupe" . + + a ; + 70640; + "Traveling Company"; + "Glickman and Michalesko's troupe" . + + a ; + 70644; + "Theatre"; + "Brownsville Lyric Theatre" . + + a ; + 70652; + "Traveling Company"; + "(Israel) Gradner troupe" . + + a ; + 70656; + "Traveling Company"; + "Vaynshtoks, the Vaynshtayns, and Goldschmidt's troupe" . + + a ; + 70660; + "Traveling Company"; + "Tshistogorski's troupe" . + + a ; + 70664; + "Theatre"; + "Victoria"; + . + + a ; + 70672; + "Theatre"; + "Yaakov Ber Gimpel's troupe" . + + a ; + 70676; + "Society/Union"; + "The Yiddish Actor's Union in America" . + + a ; + 70680; + "Pinchas Thomashefsky" . + + a ; + 70684; + "Musical Organization"; + "State conservatory" . + + a ; + 70692; + "Society/Union"; + "the first Yiddish actors' union in America" . + + a ; + 70696; + "Amateur"; + "amatuer groupe" . + + a ; + 707; + "Other"; + ""; + "Parish Church" . + + a ; + 70700; + "Kleinkunst"; + "Yiddish vaudeville theatre" . + + a ; + 70704; + "Kleinkunst"; + "English vaudeville theatre" . + + a ; + 70708; + "Society/Union"; + "Yiddish Actor's Union" . + + a ; + 70712; + "Printed Media"; + "Lexicon of the Yiddish Theatre" . + + a ; + 70716; + "Amateur"; + "amature" . + + a ; + 70724; + "Theatre"; + "Monument National Theatre" . + + a ; + 70732; + "Traveling Company"; + "Gradner's troupe" . + + a ; + 70740; + "Traveling Company"; + "Yiddish-German Theatre" . + + a ; + 70748; + "Traveling Company"; + "Krause-Spivakovski's troupe" . + + a ; + 70752; + "Traveling Company"; + "Bronstein's troupe" . + + a ; + 70756; + "Traveling Company"; + "Sabsey's troupe" . + + a ; + 70760; + "Traveling Company"; + "Kaminska's United Troupe" . + + a ; + 70764; + "Traveling Company"; + "Moshkovich's troupe" . + + a ; + 70768; + "Education (Theatre related)"; + "The dramatic studio of the Peretz Society" . + + a ; + 70772; + "Theatre"; + "First Yiddish state theatre" . + + a ; + 70776; + "Company on Tour"; + "Maurice Schwartz's troupe" . + + a ; + 70780; + "Theatre"; + "Glickman's Palace Theatre" . + + a ; + 70784; + "Society/Union"; + "Lit. Dram. Gezelshaft" . + + a ; + 70788; + "Society/Union"; + "the Yiddish Actors Union" . + + a ; + 70792; + "Kleinkunst"; + "Bunes Badkhan (Tshizshik)," . + + a ; + 70796; + "Theatre"; + "German Thalia Theatre" . + + a ; + 708; + ""; + "St. Andrew's Cathedral" . + + a ; + 70800; + "Traveling Company"; + "Serotsky and Weissman's Yiddish itinerant troupe" . + + a ; + 70804; + "Theatre"; + "Yiddish Pavilion Theatre" . + + a ; + 70808; + "Theatre"; + "Feinman's Kunst-temple (Arts Temple)" . + + a ; + 70812; + "Theatre"; + "Adler's theatre" . + + a ; + 70816; + "Society/Union"; + "The dramatic union" . + + a ; + 70820; + "Theatre"; + "formerly the Roumanian Opera House" . + + a ; + 70828; + "Printed Media"; + "Herald" . + + a ; + 70832; + "Traveling Company"; + "Weinstock-Schorr" . + + a ; + 70836; + "Theatre"; + "Weincourt Theatre" . + + a ; + 70840; + "Amateur"; + "amateur productions from Goldfaden's plays" . + + a ; + 70844; + "Musical Organization"; + "chorus of a Yiddish theatre" . + + a ; + 70848; + "Traveling Company"; + "Vaksman's troupe" . + + a ; + 70852; + "Theatre"; + "Feinman Yiddish Theatre" . + + a ; + 70860; + "Traveling Company"; + "Moshkovitsh's troupe" . + + a ; + 70864; + "Traveling Company"; + "Fannyv Vaksman's troupe" . + + a ; + 70868; + "Theatre"; + "Theater on Grand Street" . + + a ; + 70872; + "Traveling Company"; + "Yosef Vaynshtok's theater company" . + + a ; + 70876; + "Company on Tour"; + "Gimpel's theater company" . + + a ; + 70880; + "Theatre"; + "Dritn Street Theatre" . + + a ; + 70884; + "Theatre"; + "Lenox Theatre" . + + a ; + 70888; + "Theatre"; + "Hopkinson" . + + a ; + 70892; + "Society/Union"; + "Goldfaden Union" . + + a ; + 70896; + "Kleinkunst"; + "Vaudville" . + + a ; + 709; + ""; + ""; + "Singapore Amateur Music Society" . + + a ; + 70900; + "Education (Theatre related)"; + "Goldfaden's dramatic school" . + + a ; + 70908; + "Media"; + "Local cinema" . + + a ; + 70912; + "Traveling Company"; + "Rosenberg and Spivakovski's troupe" . + + a ; + 70916; + "Traveling Company"; + "Spivakovski and Weinstock's troupe" . + + a ; + 70920; + "Theatre"; + "Marinsky's Theatre" . + + a ; + 70928; + "Theatre"; + "El Dorado Theatre" . + + a ; + 70932; + "Traveling Company"; + "Goldfaden troupe" . + + a ; + 70936; + "Traveling Company"; + "Michalesko's guest-starring troupe" . + + a ; + 70940; + "Traveling Company"; + "Yosef Goldshmidt's theatre" . + + a ; + 70944; + "Theatre"; + "M.D. Waxman's theatre" . + + a ; + 70948; + "Theatre"; + "Jacob Silbert's theatre" . + + a ; + 70952; + "Traveling Company"; + "Morris Akselrad's theatre" . + + a ; + 70956; + "Theatre"; + "Warsaw Central Theatre" . + + a ; + 70960; + "Traveling Company"; + "Kompaneyets' theatre" . + + a ; + 70964; + "Traveling Company"; + "Jacob Silbert's tour" . + + a ; + 70980; + "Theatre"; + "Nowvy Theatre" . + + a ; + 70984; + "Theatre"; + "Solovtsov Theatre" . + + a ; + 70988; + "Traveling Company"; + "Julius Adler and H. Serotsky" . + + a ; + 70992; + "Traveling Company"; + "Joseph Kessler" . + + a ; + 70996; + "Printed Media"; + "HaCarmel (periodical)" . + + a ; + 710; + "Other"; + ""; + "Holy Trinity Church" . + + a ; + 71000; + "Traveling Company"; + "Belloy's troupe" . + + a ; + 71004; + "Traveling Company"; + "Rabinovitsh's troupe" . + + a ; + 71008; + "Traveling Company"; + "Meeerson's troupe" . + + a ; + 71012; + "Traveling Company"; + "Sam Adler and Spivakovski's troupe" . + + a ; + 71016; + "Company on Tour"; + "Kaminska's troupe" . + + a ; + 71020; + "Traveling Company"; + "Rappel's troupe" . + + a ; + 71024; + "Traveling Company"; + "Sniegoff's troupe" . + + a ; + 71028; + "Society/Union"; + "Vilna Yiddish Theatre Society" . + + a ; + 71032; + "Company on Tour"; + "Azro's section of the Vilna Troupe" . + + a ; + 71036; + "Theatre"; + "Amphion" . + + a ; + 71040; + "Theatre"; + "Lemberg Polish Opera" . + + a ; + 71044; + "Theatre"; + "Gimpel's Yiddish Theatre" . + + a ; + 71048; + "Theatre"; + "Elving's Theatre" . + + a ; + 71056; + "Traveling Company"; + "Juvelier's guest-starring troupe" . + + a ; + 71064; + "Theatre"; + "Third Street Theatre" . + + a ; + 71068; + "Education (Theatre related)"; + "Konshtat's school" . + + a ; + 71072; + "Traveling Company"; + "Spivakovski's troupe" . + + a ; + 71076; + "Traveling Company"; + "Spivakovski's troupe (Kreuze)" . + + a ; + 71080; + "Traveling Company"; + "Zaslavsky" . + + a ; + 71084; + "Society/Union"; + "the \"first Yiddish artists union\", and the Yiddish cooperative troupes" . + + a ; + 71092; + "Traveling Company"; + "Folks-teater" . + + a ; + 71096; + "Traveling Company"; + "Mitelman, Baran and Gizets" . + + a ; + 711; + ""; + "Masonic" . + + a ; + 71100; + "Traveling Company"; + "Treitler's troupe" . + + a ; + 71108; + "Traveling Company"; + "Golubok's troupe" . + + a ; + 71112; + "Traveling Company"; + "Silbert's troupe" . + + a ; + 71116; + "Kleinkunst"; + "Yiddish vaudeville production" . + + a ; + 71120; + "Traveling Company"; + "Samolesko's troupe" . + + a ; + 71124; + "Society/Union"; + "Local Yiddish dramatic society" . + + a ; + 71136; + "lawyer, notary and judge" . + + a ; + 71140; + "costum house" . + + a ; + 71144; + "Odesky Vyenstnik" . + + a ; + 71148; + "Department of Weights and Measures" . + + a ; + 71156; + "Russian production" . + + a ; + 71160; + "Yiddish theatre" . + + a ; + 71164; + "Madison Street Theatre" . + + a ; + 71168; + "Sigmund Feinman" . + + a ; + 71172; + "Mogulesko and Finkel's troupe" . + + a ; + 71180; + "Amatuer" . + + a ; + 71184; + "Smiferopol State School" . + + a ; + 71188; + "Yisroylic (Newspaper)" . + + a ; + 71192; + "Chutei Zahav (Golden Threads)" . + + a ; + 71196; + "Lebanon Society" . + + a ; + 712; + ""; + "Victorian Choir"; + . + + a ; + 71200; + "Shimon Mark's Garden" . + + a ; + 71204; + "Hotel Weibel" . + + a ; + 71208; + "Lazar Kapedshoy’s" . + + a ; + 71212; + "Goldfaden's Theatre" . + + a ; + 71216; + "Remeslany (Handicraft) Club" . + + a ; + 71220; + "Mariinsky Theatre" . + + a ; + 71228; + "German club" . + + a ; + 71232; + "Odessa Handicraft Workers Club" . + + a ; + 71236; + "Buff Theatre (later renamed El Dorado and now Boguslovski)" . + + a ; + 71240; + "Abraham Goldfaden's Theatre" . + + a ; + 71244; + "probe numer" . + + a ; + 71252; + "Hebrew Dramatic Club" . + + a ; + 71256; + "Fantasy Parisian Theatre" . + + a ; + 71260; + "Jignitsa Theatre" . + + a ; + 71264; + "Minikes Yontev Blat" . + + a ; + 714; + "Other"; + ""; + "English Cathedral"; + . + + a ; + 715; + ""; + ""; + "de Violon de principo Theatre de Milan" . + + a ; + 716; + "Musical Organization"; + ""; + "Municipal Orchestra and Band of Shanghai" . + + a ; + 717; + ""; + ""; + "Queen's Theatre" . + + a ; + 718; + "Musical Organization"; + ""; + "Municipal Orchestra and Band of Shanghai"; + . + + a ; + 71824; + "Kleinkunst"; + "פּאמול ווערדי - Pomul verde" . + + a ; + 71828; + "Printed Media"; + "⁨⁨Di ṿahrhayṭ⁩ - ⁨דיא ווארהייט" . + + a ; + 71832; + "Printed Media"; + "Der Ṭog⁩ - ⁨דער טאג" . + + a ; + 71836; + "Education (Theatre related)"; + "Yidishe Natsionale Radikale Shul" . + + a ; + 71844; + "Printed Media"; + "Di tsukunft- די צוקונפט" . + + a ; + 71848; + "Traveling Company"; + "Mordechai Segalesko Troupe" . + + a ; + 71856; + "Printed Media"; + "Di idishe tsayṭung⁩ - ⁨די אידישע" . + + a ; + 71864; + "Printed Media"; + "Yidishes ṭogblaṭ⁩ - ⁨יידישעס טאגעבלאט⁩⁩" . + + a ; + 71872; + "Theatre"; + "Nord Star\" Theatre" . + + a ; + 71876; + "Printed Media"; + "ha-Dor⁩ - ⁨הדור" . + + a ; + 71880; + "Printed Media"; + "ha-Tsofeh ⁩ - ⁨הצפה" . + + a ; + 71884; + "Printed Media"; + "⁨⁨Der Fraynd⁩ - ⁨דער פֿרײַנד⁩⁩" . + + a ; + 71888; + "Printed Media"; + "Haynṭ⁩ - ⁨היינט⁩⁩" . + + a ; + 71896; + "Printed Media"; + "Der Momenṭ⁩ - ⁨דער מאמענט⁩⁩" . + + a ; + 719; + "Theatre"; + ""; + "Teatro Gymnasio Dramático" . + + a ; + 71900; + "Printed Media"; + "Unzer Leben⁩ - ⁨אונזער לעבען" . + + a ; + 71904; + "Printed Media"; + "Di Tsayt --די צײט" . + + a ; + 71908; + "Printed Media"; + "Literarisze Bleter⁩ - ⁨ליטערארישע בלעטער" . + + a ; + 71916; + "Printed Media"; + "דער יודישער העראלד - The Jewish herald / Jewish herald" . + + a ; + 71920; + "Printed Media"; + "ha-Karmel⁩ - ⁨הכרמל" . + + a ; + 71950; + """Wynberg Town Hall (Cape Town) +""" . + + a ; + 71955; + "Masonic Hall (Cape Town)" . + + a ; + 71972; + "Theatre"; + "Academy of Music, Macon"; + . + + a ; + 71974; + "Traveling Company"; + "Academy of Music, Charleston"; + . + + a ; + 71975; + "Tanzman-Spivakovski troupe" . + + a ; + 72055; + "Theatre"; + "Temple Theatre"; + . + + a ; + 72080; + "Theatre"; + "Oliver Theatre"; + . + + a ; + 721; + ""; + "Shubert Brothers" . + + a ; + 72107; + "Cours d’esthétique appliquée"; + . + + a ; + 72112; + "Stolzenfels Castle" . + + a ; + 72117; + "Neues Palais"; + . + + a ; + 72122; + "Lower Rhine Music Festival" . + + a ; + 72137; + "Reuß-Ebersdorf" . + + a ; + 72142; + "Theatre"; + "Potsdamer Stadttheater"; + . + + a ; + 72147; + "Paris Opera at Salle Le Peletier"; + . + + a ; + 72152; + "Theatre"; + "Victoria Theatre"; + . + + a ; + 72157; + "Hope Chapel"; + . + + a ; + 72162; + "St. James Hall"; + . + + a ; + 72167; + "Adelphi Theatre in Baltimore" . + + a ; + 72172; + "Wiener Hofopern Orchester"; + . + + a ; + 72182; + "Prague’s Vinohrady Theater"; + . + + a ; + 72194; + "Iris de paz (play)" . + + a ; + 72199; + "Compañía de Joaquín Arjona" . + + a ; + 722; + "Theatre"; + ""; + "Companhia Teatro Cassino " . + + a ; + 72204; + "Compañía de Alfredo Maza" . + + a ; + 72209; + "“Empresa nacional” (campaña argentina para valorizar autores nacionales)" . + + a ; + 72214; + "Compañía de María Guerrero" . + + a ; + 72219; + "Consejo Directivo" . + + a ; + 72224; + "PSI Partido Socialista" . + + a ; + 72234; + "Elenco Nacional encabezado por Enrique de Rosas" . + + a ; + 72239; + "Elenco Nacional encabezado por Blanca Podestá" . + + a ; + 72244; + "Elenco Nacional encabezado por Angela Tesada" . + + a ; + 72249; + "Circo Arena" . + + a ; + 72259; + "Periódico Escuela" . + + a ; + 72264; + "Periódico El Pueblo" . + + a ; + 72269; + "Periódico La Vanguardia" . + + a ; + 72274; + "Periódico Nación Catalana" . + + a ; + 72279; + "Periódico de la Acción Socialista" . + + a ; + 72284; + "Federación Socialista de Buenos Aires" . + + a ; + 72289; + "Centro Socialista de Montevideo" . + + a ; + 72294; + "Ministerio de Agricultura y Economía" . + + a ; + 72299; + "Partido Socialista Unificado de Catalonia" . + + a ; + 72309; + "Teatro de la Zarzuela" . + + a ; + 72324; + "Ateneo Hispanoamericano" . + + a ; + 72329; + "Teatro Pasatiempo" . + + a ; + 72349; + "Instituto de Literatura Iberoamericana" . + + a ; + 72359; + "Radio del Estado" . + + a ; + 72364; + "Diario Clarín" . + + a ; + 72369; + "Radio Industry" . + + a ; + 72374; + "Revista “Sudamérica”" . + + a ; + 72379; + "Courriere Française" . + + a ; + 72389; + "Biblioteca Nacional de la República Argentina" . + + a ; + 72399; + "Alma Gallega" . + + a ; + 724; + ""; + ""; + "Braga Junior’s theater company" . + + a ; + 72404; + "Teatro Popular Gallego" . + + a ; + 72409; + "Centro Republicano Español" . + + a ; + 72414; + "Teatro Universitario" . + + a ; + 72419; + "Universidad Popular" . + + a ; + 72424; + "Centro de Choferes de Uruguay" . + + a ; + 72429; + "Teatro Mitre" . + + a ; + 72434; + "Ministerio de Instrucción Pública" . + + a ; + 72464; + "Gruppe Junger Schauspieler" . + + a ; + 72473; + "Fordham University" . + + a ; + 72478; + "New York Hunter College" . + + a ; + 72483; + "Sommertheater (in Schwedt an der Oder)" . + + a ; + 72488; + "Verlag Hesse und Becker" . + + a ; + 72498; + "Sommertheater"; + . + + a ; + 72503; + "Staatliche Schauspielschule"; + . + + a ; + 72508; + "Staatstheater Frankfurt" . + + a ; + 72513; + "Hessisches Landestheater (Darmstadt)" . + + a ; + 72518; + "Städtische Oper"; + . + + a ; + 72523; + "Schauspielhaus Zürich" . + + a ; + 72533; + "Glyndebourne Mozart Festival (England)" . + + a ; + 72538; + "University of Southern California (Los Angeles)" . + + a ; + 72543; + "Bund herrschaftsloser Sozialisten (BhS) (Vienna)" . + + a ; + 72548; + "Theatre Libre" . + + a ; + 72553; + "Odeon Theatre" . + + a ; + 72558; + "Drülbedayii Osmani"; + . + + a ; + 727; + "Company"; + ""; + "Souza Bastos’ company" . + + a ; + 728; + ""; + ""; + "Faria e Sampaio theater company" . + + a ; + 73; + "Theatre"; + ""; + "Königl. Hoftheater in München"; + . + + a ; + 73063; + "Greenwich Village Theatre"; + . + + a ; + 73068; + "Plymouth Theatre"; + . + + a ; + 73073; + "Apollo Theatre"; + . + + a ; + 73078; + "39th Street Theatre"; + . + + a ; + 73083; + "Guild Theatre"; + . + + a ; + 73088; + "Mansfield Theatre"; + . + + a ; + 73093; + "Klaw Theatre"; + . + + a ; + 731; + "Company"; + ""; + "Film Production companies Lux and Pathé Frères" . + + a ; + 73133; + "Erlangers Theatre"; + . + + a ; + 73143; + "Selwyn Theatre"; + . + + a ; + 73148; + "Morosco Theatre"; + . + + a ; + 73153; + "Longacre Theatre"; + . + + a ; + 73158; + "Alvin Theatre"; + . + + a ; + 73163; + "Adelphi Theatre"; + . + + a ; + 73168; + "Music Box Theatre"; + . + + a ; + 73173; + "Broadway Theatre"; + . + + a ; + 73178; + "Phoenix Theatre"; + . + + a ; + 73183; + "Booth Theatre"; + . + + a ; + 73188; + "Ambassador Theatre"; + . + + a ; + 73193; + "Erkenntnis und Befreiung (Newspaper)" . + + a ; + 732; + ""; + "Continental-Kunstfilm of Berlin" . + + a ; + 733; + ""; + "Misu-Film Co." . + + a ; + 735; + ""; + ""; + "Mr. Joe Cowell’s theatre " . + + a ; + 738; + "Other"; + ""; + "Perl Museum" . + + a ; + 739; + "Other"; + ""; + "Albany Museum" . + + a ; + 740; + ""; + "Ludlow & Smith" . + + a ; + 741; + "Circus"; + ""; + "Henry Brown’s Circus" . + + a ; + 742; + ""; + ""; + "Holborn Amphytheatre" . + + a ; + 745; + "Company"; + ""; + "American Company" . + + a ; + 750; + "Company"; + ""; + "Frank Brown Company" . + + a ; + 751; + "Theatre"; + ""; + "Circo-Teatro Podestá" . + + a ; + 755; + ""; + "Tent in Florida Street" . + + a ; + 757; + ""; + "Buckingham Palace" . + + a ; + 758; + "Circus"; + ""; + "Circus Tent" . + + a ; + 760; + ""; + "Private drama association of the city of Vinha do Minho" . + + a ; + 766; + "Theatre"; + ""; + "Teatro Alcázar" . + + a ; + 770; + ""; + ""; + "Petit-Théâtre da Place de la Bastille" . + + a ; + 773; + "Musical Organization"; + ""; + "Alcazar "; + . + + a ; + 776; + ""; + "Bataclan" . + + a ; + 779; + ""; + ""; + "Theatre Louit" . + + a ; + 782; + "Theatre"; + ""; + "Alcazar Lírico Fluminense"; + . + + a ; + 788; + ""; + ""; + "Theatre Fantaisies Parisiennes" . + + a ; + 791; + ""; + "Chatelet " . + + a ; + 797; + ""; + "Folies Dramatiques" . + + a ; + 803; + "Theatre"; + ""; + "Teatro do Príncipe Imperial" . + + a ; + 806; + "Company"; + ""; + "Souza Bastos’ theatre company" . + + a ; + 812; + ""; + "Red Cross" . + + a ; + 815; + "Theatre"; + ""; + "Teatro do Salitre or Variedades" . + + a ; + 818; + "Theatre"; + ""; + "Teatro Dom Fernando" . + + a ; + 833; + "Company"; + ""; + "Companhia Lírica Nacional" . + + a ; + 839; + "Company"; + ""; + "Theatrical Company of Martins Oliveira" . + + a ; + 842; + "Company"; + ""; + "Theatrical Company of Germano" . + + a ; + 845; + "Company"; + ""; + "Companhia Inglesa" . + + a ; + 851; + "Company"; + ""; + "traveling theater companies" . + + a ; + 854; + "Company"; + ""; + "Organizes itinerant theater companies in the provinces" . + + a ; + 857; + "Theatre"; + ""; + "Teatro Dom Afonso" . + + a ; + 860; + "Theatre"; + ""; + "Teatro o Príncipe Real" . + + a ; + 863; + ""; + ""; + "He worked in a public office (not theatre related)" . + + a ; + 872; + "Company"; + ""; + "Free Theatre (name based on André Antoine company)" . + + a ; + 875; + "Education (Theatre related)"; + ""; + "Escola da Arte de Representar" . + + a ; + 88; + "Theatre"; + ""; + "Magdeburger Theatergesellschaft"; + . + + a ; + 881; + "Education (Theatre related)"; + ""; + "Conservatory" . + + a ; + 887; + ""; + "Privet Theacher" . + + a ; + 89; + "Theatre"; + ""; + "Theater Königsberg"; + . + + a ; + 890; + "Theatre"; + ""; + "Rehearses in Porto for the presentation at Teatro da Trindade in Lisbon" . + + a ; + 893; + ""; + "Invicta Film (Cinema)" . + + a ; + 899; + "Theatre"; + ""; + "Teatro Sá da Bandeira" . + + a ; + 90; + "Theatre"; + ""; + "Rigaer Stadttheater"; + . + + a ; + 905; + "Company"; + ""; + "João Grave theater company" . + + a ; + 908; + "Company"; + ""; + "Nova Companhia de Declamação theater company" . + + a ; + 914; + "Company"; + ""; + "Clemente Pinto theatre company" . + + a ; + 920; + "Theatre"; + ""; + "Teatro Maria Victória"; + . + + a ; + 923; + "Company"; + ""; + "Hortense Luz theatre company" . + + a ; + 926; + "Company"; + ""; + "Alves da Cunha Theatre Company" . + + a ; + 929; + "Company"; + ""; + "Rey-Colaço-Robles Monteiro theatre company" . + + a ; + 932; + "Company"; + ""; + "Rey-Colaço-Robles Monteiro theater company" . + + a ; + 935; + "Company"; + ""; + "Erico Braga-Lucília Simões theater company" . + + a ; + 938; + "Company"; + ""; + "Maria das Neves theater company" . + + a ; + 941; + "Theatre"; + ""; + "Companhia Teatral Portuguesa" . + + a ; + 944; + "Company"; + ""; + "“Sociedad Gimnástica”" . + + a ; + 947; + "Company"; + ""; + "Real Circus" . + + a ; + 953; + "Theatre"; + ""; + "Teatro de París" . + + a ; + 959; + ""; + "Plaza del Parque" . + + a ; + 962; + "Company"; + ""; + "Circo Chiarini" . + + a ; + 968; + ""; + "Politeama Humberto Primo" . + + a ; + 971; + ""; + "Politeama Gálvez" . + + a ; + 974; + "Theatre"; + ""; + "Landständische Theater" . + + a ; + 977; + "Theatre"; + ""; + "K.k. priviligiertes Theater" . + + a ; + 980; + "Theatre"; + ""; + "K. städtisches Theater" . + + a ; + 983; + "Theatre"; + ""; + "Großherzogliches Hoftheater" . + + a ; + 99; + "Theatre"; + ""; + "Deutsche Oper in Amsterdam"; + . + + a ; + 995; + "Theatre"; + ""; + "Ständisches Theater" . + + a ; + "ÁlvAug-00"; + "Own"; + "Álvarez"; + "Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbeCar-00"; + "Own"; + "Abesser"; + "Caroline"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbeKar-00"; + "von Abel"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbeMir-00"; + "Own"; + "Abendroth"; + "Mira"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AboBes-00"; + "Own"; + "Abott"; + "Bessie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbrDol-00"; + "Abril"; + "Dolores"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbrIgn-00"; + "Abramowicz"; + "Ignacy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbrMau-00"; + "Abravanel"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AckCha-00"; + "Own"; + "Ackerman"; + "Charlie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdaAdo-00"; + "Own"; + "Adam"; + "Adolphe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdaSuz-00"; + "Own"; + "Adams"; + "Suzanne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeBer-00"; + "Own"; + "Ader"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeCar-00"; + "Own"; + "Adelaide"; + "Carmela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeEmi-00"; + "Own"; + "Adeleide"; + "Emília"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeErn-00"; + "Own"; + "Adeler"; + "Ernesto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeEva-00"; + "Own"; + "Adeler"; + "Eva"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeJoh-00"; + "Own"; + "Adeler"; + "Johannes Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdeMar-00"; + "Own"; + "Adeler"; + "María Inés"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdePau-00"; + "Own"; + "Adeler"; + "Paul Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdiAda-00"; + "Own"; + "Adini"; + "Ada"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlJul-1122"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlJul-1123"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlSar-00"; + "Own"; + "Adler"; + "Sara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlSar-1126"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Sarah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlThe-00"; + "Own"; + "Adler"; + "Therese"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdoWil-00"; + "Own"; + "Adolfi"; + "Wilhelm"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AgrMan-00"; + "Own"; + "Agromayor"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Agusta-00"; + "Own"; + "Irusta"; + "Agustín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AheBri-00"; + "Own"; + "Aherne"; + "Brian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlbIre-00"; + "Alba"; + "Irene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Alblez-00"; + "Own"; + "González"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Albros-00"; + "Own"; + "Ballesteros"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlcCor-00"; + "Alcorta"; + "Cornelia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AleLea-00"; + "Own"; + "Alem"; + "Leandro N."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AleNor-00"; + "Own"; + "Aleandro"; + "Norma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AleSho-00"; + "Aleichem"; + "Sholem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlmAra-00"; + "Own"; + "Almeida"; + "Aracy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlmHar-00"; + "Own"; + "Almeida"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlmJ.-00"; + "Own"; + "Almarcha"; + "J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AloAli-00"; + "Own"; + "Aloisi"; + "Alicia Carlota"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AloCar-00"; + "Own"; + "Aloisi"; + "Carlos Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AloEnr-00"; + "Own"; + "Aloisi"; + "Enrico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AloEnr-01"; + "Own"; + "Aloisi"; + "Enrique José Rinaldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AloSil-00"; + "Own"; + "Aloisi"; + "Silvia Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AltAnn-00"; + "Own"; + "Alt"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AltBor-1144"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Altman"; + "Boris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AlvFra-00"; + "Own"; + "Alves"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlvLuc-00"; + "Own"; + "Alves"; + "Lucio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmaAni-00"; + "Own"; + "Bertani"; + "Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmaBla-00"; + "Own"; + "Amaro"; + "Blanquita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmeDon-00"; + "Own"; + "Ameche"; + "Don"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmeSte-00"; + "Own"; + "Ames"; + "Stephen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmoAle-00"; + "Own"; + "Amodio"; + "Alessandro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AmsJoh-00"; + "Own"; + "Amsler"; + "Johann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Anance-00"; + "Own"; + "France"; + "Anatole"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndAnt-00"; + "Anderes"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndDan-00"; + "Own"; + "Andrews"; + "Dana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndFed-00"; + "Own"; + "Andeirus"; + "Federico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndGeo-00"; + "Own"; + "Andrews"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndJul-00"; + "Andrada"; + "Julio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndLil-00"; + "Own"; + "Andrews"; + "Lily"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndMon-00"; + "Own"; + "Andrieux"; + "Monsieur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AntMac-00"; + "Own"; + "de Macedo"; + "Antônio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Anttta-00"; + "Own"; + "Botta"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ApaMan-00"; + "Aparicio"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AraLui-01"; + "Own"; + "Aragoneses"; + "Luis de Gorbea"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AraMan-00"; + "Own"; + "Aragoneses"; + "Manuel de Gorbea"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AraMar-00"; + "Own"; + "Aragoneses Urquijo"; + "María de la Encarnación"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AraSam-00"; + "Own"; + "Araújo"; + "Sampaio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArcPhy-00"; + "Own"; + "Archibald"; + "Phyllis"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArdRob-00"; + "Own"; + "Ardissone"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AreFra-00"; + "Own"; + "Arellano"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArjJoa-00"; + "Arjona"; + "Joaquín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArkTer-00"; + "Own"; + "Arkel"; + "Teresa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArnEva-00"; + "Own"; + "Arnús"; + "Evaristo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArnGus-00"; + "Own"; + "Arnold"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArnSig-00"; + "Own"; + "Arnoldson"; + "Sigrid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AroCar-00"; + "Own"; + "Arolf"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArtDés-00"; + "Own"; + "Artot"; + "Désirée"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AshPeg-00"; + "Own"; + "Ashcroft"; + "Peggy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AstNan-00"; + "Own"; + "Astor"; + "Nancy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AudEdm-00"; + "Own"; + "Audran"; + "Edmond"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AusJan-00"; + "Own"; + "Goodwin Austin"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AusMar-00"; + "Own"; + "Austerlitz"; + "Marianna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AveLív-00"; + "Own"; + "Avellar"; + "Lívia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AxaRos-00"; + "Own"; + "Axamethy"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AylNel-00"; + "Ayllón"; + "Nelly"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BörIls-00"; + "Own"; + "Börnstein"; + "Ilse"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BötMax-00"; + "Böttcher"; + "Maximilian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BadCes-00"; + "Own"; + "Badiali"; + "Cesare"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BaiLil-00"; + "Own"; + "Bailey"; + "Lilian"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BakMik-00"; + "Own"; + "Bakunin"; + "Mikhail"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalMic-01"; + "Own"; + "Balcon"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalPep-00"; + "Own"; + "Balaguer"; + "Pepe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalWil-00"; + "Own"; + "von Balacz-Bognár"; + "Wilhelmine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BanMau-00"; + "Own"; + "Bandmann"; + "Maurice Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BanTal-00"; + "Own"; + "Bankhead"; + "Tallulah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BanTra-00"; + "Own"; + "Banton"; + "Travis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarAnt-00"; + "Own"; + "Barrientos"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarGeo-00"; + "Own"; + "Barrett"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarJam-00"; + "Own"; + "Barrie"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarJoa-00"; + "Own"; + "Barry"; + "Joan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarJos-00"; + "Own"; + "Barros"; + "Josué"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarLeo-00"; + "Own"; + "Barletta"; + "Leónidas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarLex-00"; + "Own"; + "Barker"; + "Lex"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarMan-00"; + "Barrera"; + "Manuela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarMar-01"; + "Bard"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarPío-00"; + "Own"; + "Baroja"; + "Pío"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarRod-00"; + "Own"; + "Barrie"; + "Rodney"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarSal-00"; + "Own"; + "Bartolozzi"; + "Salvador"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarTho-00"; + "Own"; + "Barry"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarTho-01"; + "Barry"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BasHam-00"; + "Own"; + "Bassett"; + "Hamilton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BatHez-00"; + "Own"; + "Bateman"; + "Hezekiah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BatWal-00"; + "Own"; + "Batchelor"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BauAbr-728"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Baum"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BauCha-00"; + "Own"; + "Baudelaire"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BavLud-00"; + "of Bavaria"; + "King Ludwig I"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BavThe-00"; + "of Bavaria"; + "Queen Therese"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BaxJan-00"; + "Own"; + "Baxter"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeßMar-00"; + "Own"; + "Beßner"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bea-00"; + "Own"; + "Beaconsfield"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeaRog-00"; + "de Beauvoir"; + "Roger"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BebIda-00"; + "Own"; + "Beber"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BecJ-00"; + "Own"; + "Beckwith"; + "J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BedJac-00"; + "Own"; + "Beddington"; + "Jack"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeeLol-00"; + "Own"; + "Beeth"; + "Lola"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BehMah-00"; + "Own"; + "Cooch Behar"; + "Maharajah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeiBer-00"; + "Own"; + "Beit"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeiJoh-00"; + "Own"; + "Beith"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelAdo-00"; + "de Belleyme"; + "Adolphe"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelAle-00"; + "Own"; + "Bell"; + "Alexander Graham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelAug-00"; + "Own"; + "Belguth"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelEle-00"; + "Own"; + "Belmont"; + "Eleanor"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelEmi-00"; + "Own"; + "Belay"; + "Emilie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelGio-00"; + "Belletti"; + "Giovanni"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelKyr-00"; + "Own"; + "Bellew"; + "Kyrle"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelSam-00"; + "Own"; + "Bellachini"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenBer-00"; + "Own"; + "Benda"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenFel-00"; + "Own"; + "Bendowna"; + "Felicja"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenFel-01"; + "Own"; + "Benda"; + "Feliks"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenJóz-00"; + "Own"; + "Bendowa"; + "Józefa"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenJul-00"; + "Benedict"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenLil-00"; + "Own"; + "Bennet"; + "Lilian"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenRob-00"; + "Own"; + "Benchley"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenSzy-00"; + "Own"; + "Benda"; + "Szymon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenTho-00"; + "Own"; + "Bennett"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenWla-00"; + "Own"; + "Benda"; + "Wladyslaw"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Benlas-00"; + "Own"; + "Puértolas"; + "Benita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerAlo-00"; + "Own"; + "Berla"; + "Alois"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerBer-00"; + "Bernstein "; + "Berel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerBus-00"; + "Own"; + "Berkeley"; + "Busby"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerCar-00"; + "Own"; + "Bergmann"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerCha-00"; + "Own"; + "Beriot"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerCha-01"; + "Own"; + "Beresford"; + "Charlie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerEmi-00"; + "Own"; + "Berté"; + "Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerFra-00"; + "Own"; + "Börnstein"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerFra-01"; + "von Berks"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerFra-02"; + "Own"; + "Berstl"; + "Franziska"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerHer-1279"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Berman"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BerJua-00"; + "Own"; + "Berenguer"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerLaz-00"; + "Bernstein"; + "Lazer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerLeo-00"; + "Own"; + "Berg"; + "Leopoldine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerLud-00"; + "Own"; + "Berger"; + "Ludmilla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerNor-00"; + "Berstl"; + "Norbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerNor-01"; + "Berstl"; + "Norbert"; + "male" . + + a ; + "BerRob-00"; + "Own"; + "Bernhardt"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerWil-00"; + "Own"; + "Beresford"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerWil-01"; + "Own"; + "Berstl"; + "Wilhelm"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerYek-1272"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Berkovitsh"; + "Yekhiel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BetFra-00"; + "Own"; + "Betz"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BevRic-00"; + "Own"; + "Beville"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BewAli-00"; + "Own"; + "Bewicke"; + "Alicia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeyAli-00"; + "Own"; + "Raiff Bey"; + "Ali"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeyJac-00"; + "Own"; + "Beyer"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BiaAlf-00"; + "Bianchi"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BiaBia-00"; + "Own"; + "Bianchi"; + "Bianca"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieEdu-00"; + "Own"; + "Bieckert"; + "Edouard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieEug-00"; + "Own"; + "Bieckert"; + "Eugénie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieFan-00"; + "Own"; + "Bieckert"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieGus-00"; + "Own"; + "Bieckert"; + "Gustave"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieJea-00"; + "Own"; + "Bieckert Hirn"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieJoh-00"; + "Own"; + "Bielitz"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieMar-00"; + "Own"; + "Bieckert"; + "Marie Madelaine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BieWen-00"; + "Own"; + "Bielczizky"; + "Wenzel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BilPau-00"; + "Bildt"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bis-00"; + "Own"; + "Bishop"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BisC-00"; + "Own"; + "Bishop"; + "C. R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BisDav-00"; + "Own"; + "Bispham"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bla-00"; + "Own"; + "Admiral Blanc"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaCam-00"; + "Own"; + "Black"; + "Campbell"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaCon-00"; + "Own"; + "Blanes"; + "Consolación"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaGar-00"; + "Own"; + "Black"; + "García"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaJoh-00"; + "Own"; + "Blasel"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaKar-00"; + "Own"; + "Blasel"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BlaWil-00"; + "Own"; + "Blake"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BleLeo-00"; + "Own"; + "Blech"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BliDal-3689"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Blin"; + "Dalburkh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BliSam-00"; + "Blixen"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BloCla-00"; + "Own"; + "Bloodgood"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BloEd-00"; + "Own"; + "Bloom"; + "Ed Bloom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BloMor-00"; + "Own"; + "Blodeck"; + "Moritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BluEli-00"; + "Own"; + "Blume"; + "Elise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BluFri-00"; + "Own"; + "Blum"; + "Fritzi"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BluMax-1344"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Blumenfeld"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Boc-00"; + "Own"; + "Bocage"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BodCar-00"; + "Bodanskie"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BodEli-00"; + "Bodanzky"; + "Elizabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BodHan-00"; + "Bodansky"; + "Hans"; + "male" . + + a ; + "BodIre-00"; + "Bodansky"; + "Irene"; + "female" . + + a ; + "BodRen-00"; + "Bodansky"; + "Renate"; + "female" . + + a ; + "BogFri-00"; + "Own"; + "von Bognár"; + "Friederike"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BolPau-00"; + "Own"; + "Bolos"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BonFlo-00"; + "Bonino"; + "Flor"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BonFra-00"; + "Own"; + "Bonet"; + "Francesc"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BonGer-00"; + "Bonomi"; + "Gerónimo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BonTeo-00"; + "Own"; + "Bonaplata"; + "Teodoro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooAgn-00"; + "Own"; + "Booth"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooAlg-00"; + "Booth"; + "Algernon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooAme-00"; + "Booth"; + "Amelia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooHen-00"; + "Booth"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooJan-00"; + "Booth"; + "Jane"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooJoh-00"; + "Booth"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooJos-00"; + "Booth"; + "Joseph Adrian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooMar-00"; + "Booth"; + "Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooRos-00"; + "Booth"; + "Rosalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BopRau-00"; + "Own"; + "Bopp"; + "Raul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosAda-00"; + "Own"; + "Boshell"; + "Ada"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosAng-00"; + "Own"; + "Bosio"; + "Angelina Bosio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosHei-00"; + "Own"; + "Bossenberger"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosHen-00"; + "Own"; + "von Bose"; + "Henriette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosHer-00"; + "Own"; + "Bosetti"; + "Hermine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BosHob-00"; + "Own"; + "Bosworth"; + "Hobart Bosworth"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BoyI-00"; + "Own"; + "Boyd"; + "Colonel I. H. "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BozOli-00"; + "Own"; + "Bozán"; + "Olinda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BozSof-00"; + "Own"; + "Bozán"; + "Sofía"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BrüAma-00"; + "Own"; + "Brühl"; + "Amalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bra-00"; + "Own"; + "Braga"; + "Junior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bra-01"; + "Own"; + "Bradley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bra-02"; + "Own"; + "Von Brand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Bra-03"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Braga Junior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraAdo-00"; + "Own"; + "Brakl"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraDia-00"; + "Own"; + "Braga"; + "Dias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraEmi-00"; + "Own"; + "Brachvogel"; + "Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraJos-00"; + "Own"; + "Braga"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraLui-00"; + "Own"; + "Braga"; + "Luiz Junior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraMat-00"; + "Brandt"; + "Mathilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraNar-00"; + "Own"; + "Braga"; + "Narciso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraThe-00"; + "Own"; + "von Braunecker-Schäfer"; + "Therese Reichfreiin"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreAne-00"; + "Brener"; + "Aneta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreFan-00"; + "Own"; + "Brenna"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreSho-00"; + "Breen"; + "Sholom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreSho-3697"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Breen"; + "Sholom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BreSof-00"; + "Own"; + "Brehm-Fritsch"; + "Sofie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BriBil-00"; + "Own"; + "Bristow"; + "Billie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BriGeo-00"; + "Own"; + "Bristow"; + "George F. Bristow"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BriPas-00"; + "Own"; + "Brignoli"; + "Pasquale Brignoli"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroDol-00"; + "Own"; + "Dolly-Brown"; + "Dolinda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroEdw-00"; + "Own"; + "Brown"; + "Edward "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroFay-00"; + "Own"; + "Nicholas (Nicholas Brothers)"; + "Fayard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroFra-01"; + "Own"; + "Brown"; + "Frank Henry Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHar-00"; + "Own"; + "Nicholas (Nicholas Brothers)"; + "Harold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHaw-00"; + "Own"; + "Bromley"; + "Haworth"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHen-00"; + "Own"; + "Brown"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHen-01"; + "Own"; + "Brown Jr."; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHen-02"; + "Brougham"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroJes-00"; + "Own"; + "Brown"; + "Jessie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroKet-00"; + "Own"; + "Brown"; + "Ketty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroMar-00"; + "Own"; + "Bronenberg"; + "Marcos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroMor-00"; + "Own"; + "Broda"; + "Moritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroMos-1400"; + "Own"; + ""; + "Broderzon"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "BroPhi-01"; + "Own"; + "Broch"; + "Philipp"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroPro-00"; + "Own"; + "Brown"; + "Professor Brown"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruBea-00"; + "Brubkide"; + "Beatriz"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruBre-00"; + "Own"; + "Brunton"; + "Bressie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruLou-00"; + "Own"; + "Brunton"; + "Louisa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruMur-00"; + "Own"; + "Brunskill"; + "Muriel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruNig-00"; + "Own"; + "Bruce"; + "Nigel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruSig-00"; + "Own"; + "Bruckmann"; + "Sigismond "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BucChr-00"; + "Own"; + "Buchner"; + "Christina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BucJos-00"; + "Own"; + "Buchner"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BucMar-00"; + "Buchanan"; + "Maria"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BulEdu-00"; + "von Bülow"; + "Eduard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BunAlf-00"; + "Bunn"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BurCha-00"; + "Burr"; + "Charles Chauncey"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BurHen-00"; + "Own"; + "Burkhardt"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BurJos-00"; + "Own"; + "Burke"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BurJua-00"; + "Own"; + "Burghi"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BusFerr-00"; + "Busoni"; + "Ferruccio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ButAlf-00"; + "Own"; + "Butt"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Byn-00"; + "Own"; + "Byng"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CórArt-00"; + "Own"; + "Córdova"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CañFer-00"; + "Cañameres"; + "Ferran"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CabAlf-00"; + "Own"; + "Cabel"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CabMan-00"; + "Caba"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CabMar-00"; + "Own"; + "Cabré"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CahCha-01"; + "Own"; + "Cahier"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CaiHum-00"; + "Own"; + "Cairo"; + "Humberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CalEmm-00"; + "Own"; + "Calvé"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CalEnr-00"; + "Own"; + "Calzolari"; + "Enrico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CalJam-00"; + "Own"; + "Caldwell"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CalMme-00"; + "Own"; + "Calve"; + "Mme."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CalSyl-00"; + "Own"; + "Caldas"; + "Sylvio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamAlf-00"; + "Own"; + "Camiña"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamBea-00"; + "Own"; + "Cameron"; + "Beatrice"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamCar-00"; + "Own"; + "Campi"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamCle-00"; + "Own"; + "Campanini"; + "Cleofonte"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamCon-00"; + "Own"; + "Camara"; + "Constanza Pacini de Camara"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamFra-00"; + "Campmany"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CamVin-00"; + "Own"; + "Camp"; + "Vincent"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CanMar-00"; + "Own"; + "Candiani"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CaoJos-00"; + "Own"; + "Cao"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CapMar-00"; + "Own"; + "Caplán"; + "Marcos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarAde-00"; + "Own"; + "Di Carlo"; + "Adelia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarAlb-00"; + "Own"; + "Carre"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarAle-00"; + "Own"; + "Cartwright"; + "Alex. J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarAnn-00"; + "Own"; + "Cary"; + "Annie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarArt-00"; + "Own"; + "Berenguer Carisomo"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarCec-00"; + "Own"; + "Carvalho"; + "Cecilia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarEdu-00"; + "Own"; + "Caruso"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarEdu-01"; + "Own"; + "Carmona"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarEva-00"; + "Own"; + "Carriego"; + "Evaristo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarHug-00"; + "Carlton"; + "Hugh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarJoa-00"; + "Own"; + "Cardoso"; + "Joaquim Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarJub-00"; + "Own"; + "Carvalho"; + "Jubert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarJul-00"; + "Caro"; + "Julio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarKar-00"; + "Own"; + "Ritter von Carro"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarLeo-00"; + "Own"; + "Carvalho"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarLin-00"; + "Own"; + "Cary"; + "Lina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarMad-00"; + "Own"; + "Carroll"; + "Madeleine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarTho-00"; + "Own"; + "Carlyle"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarTra-00"; + "Carlsen"; + "Traute"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarVic-00"; + "Own"; + "Viana de Carvalho"; + "Victorino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Carlba-00"; + "Own"; + "Villalba"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasAnd-00"; + "Casal"; + "Andrea"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasFer-00"; + "Own"; + "Castaldo"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasGui-00"; + "Casali"; + "Guillermo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasJos-01"; + "Own"; + "González Castillo"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasNic-00"; + "Own"; + "Castle"; + "Nick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CatJen-00"; + "Catherin"; + "Jenny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CayGeo-00"; + "Own"; + "Cayman"; + "Georgia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CebRam-00"; + "Cebrián"; + "Ramón"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CelMad-00"; + "Own"; + "Celeste"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChłKar-00"; + "Own"; + "Chłapowski"; + "Karol"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChaCom-00"; + "Own"; + "Chambrum"; + "Comte"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChaEdw-00"; + "Own"; + "Chapman"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChaLou-00"; + "Own"; + "Charlton"; + "Loudon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChaPau-00"; + "Own"; + "Chaloupka"; + "Pauline"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChaRos-00"; + "Own"; + "Chacel"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CheCec-00"; + "Own"; + "Chesterton"; + "Cecil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CheLeo-00"; + "Own"; + "Chenat"; + "Leonie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CheLui-00"; + "Own"; + "Cherubini"; + "Luigi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CheMon-00"; + "Chenal"; + "Mons"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChiPri-00"; + "Own"; + "Chimay"; + "Prince"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChmAda-00"; + "Own"; + "Chmielowski"; + "Adam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChoFry-00"; + "Own"; + "Chopin"; + "Fryderyk Chopin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChrSop-00"; + "Own"; + "Christ"; + "Sophie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ChuFre-00"; + "Own"; + "Church"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CiaTeo-00"; + "Ciacchi"; + "Teobaldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CibBen-00"; + "Own"; + "Cibrián"; + "Benito"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CirJul-00"; + "Own"; + "Cirera"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaAda-00"; + "Own"; + "Clair"; + "Ada"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaAsi-00"; + "Clarke"; + "Asia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaHar-00"; + "Own"; + "Clark"; + "Harry Clark"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaHen-00"; + "Own"; + "Clay"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaHer-00"; + "Own"; + "Claar-Delia"; + "Hermine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaJoh-00"; + "Own"; + "Clark"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaKat-00"; + "Own"; + "Claxton"; + "Kate"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CleArc-00"; + "Own"; + "Cleghorn"; + "Archibald Scott"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CleGeo-00"; + "Own"; + "Clemenceau"; + "Georges"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CliJos-00"; + "Own"; + "Clímaco"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CloSop-00"; + "Own"; + "Cloßegg"; + "Sophie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CobArt-00"; + "Own"; + "Cobalet"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CocCha-00"; + "Own"; + "Cochran"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CodWF-00"; + "Own"; + "Cody"; + "W.F. Cody"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CohHar-00"; + "Own"; + "Cohn"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CoiHen-00"; + "Own"; + "Coit"; + "Henry A. Coit"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ColCar-00"; + "Own"; + "Coletti"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ColOre-00"; + "Own"; + "Coliva"; + "Orestes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ColPau-00"; + "Own"; + "Colson"; + "Pauline Colson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ColRon-00"; + "Own"; + "Colman"; + "Ronald"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConAle-00"; + "Conte"; + "Alejandro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConHar-00"; + "Own"; + "Conway"; + "W. Hart"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConJul-00"; + "Own"; + "Conradi"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConLea-00"; + "Conti"; + "Lea"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConN/A-00"; + "Own"; + "Consigli"; + "N/A"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConRos-00"; + "Own"; + "Contreras"; + "Rosita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ConW-00"; + "Own"; + "Conway"; + "W."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooGar-00"; + "Own"; + "Cooper"; + "Gary"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooGeo-00"; + "Own"; + "Cooper"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooGla-00"; + "Own"; + "Cooper"; + "Gladys"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooJam-00"; + "Own"; + "Cooper"; + "James Fenimore "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooJan-00"; + "Own"; + "Coombs"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CooTho-00"; + "Own"; + "Cooper"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CoqCon-00"; + "Own"; + "Coquelin"; + "Constant Benoît"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CorBer-00"; + "Own"; + "Correa"; + "Bernardo Joaquim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CorJoh-00"; + "Own"; + "Corning"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CorJul-00"; + "Corro"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CorLov-00"; + "Corinth"; + "Lovis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CorMic-00"; + "de Corail"; + "Michel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Cos-00"; + "Own"; + "Junior"; + "Costa Junior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CosMar-00"; + "Own"; + "Costa"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CosSér-00"; + "Own"; + "Corrêa da Costa"; + "Sérgio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CouLeo-00"; + "Own"; + "Couqui"; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CowJos-00"; + "Own"; + "Cowell"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CowJow-00"; + "Own"; + "Cowell"; + "Jow"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CraCar-00"; + "Craelius"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CraPat-00"; + "Craigie"; + "Patrick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CraPat-01"; + "Craigie, Senior"; + "Patrick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CreLai-00"; + "Own"; + "Cregar"; + "Laird"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CriQue-00"; + "Own"; + "Cristina"; + "Queen María Cristina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CubLui-00"; + "Own"; + "Cubas"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CugXav-00"; + "Own"; + "Cugat"; + "Xavier"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CulRol-00"; + "Own"; + "Culver"; + "Roland"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CumIrv-00"; + "Own"; + "Cumming"; + "Irving"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CumJoh-00"; + "Own"; + "Cummins"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CunAma-00"; + "Own"; + "Cunha"; + "Amaro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CunJos-00"; + "Own"; + "Cunha"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CurJos-00"; + "Curtius"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CurLud-00"; + "Curtius"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CurMar-00"; + "Own"; + "Barone del Curto"; + "María Lidia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CurMic-00"; + "Own"; + "Curtiz"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CusCha-00"; + "Own"; + "Cushman"; + "Charlotte"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CzaAda-00"; + "Own"; + "Czabon"; + "Adalbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DíAEmi-00"; + "Own"; + "Díaz"; + "Emilio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DíMFer-00"; + "Own"; + "Díaz de Mendoza"; + "Fernando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DíaMar-00"; + "Own"; + "Díaz"; + "Marujita"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DíaPab-00"; + "Díaz"; + "Pablo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DLeo-00"; + "Own"; + "D."; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DahCon-00"; + "Dahn"; + "Constanze"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DalAla-00"; + "Own"; + "Dale"; + "Alan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DalBea-00"; + "Own"; + "Beauford B."; + "Dale"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DanGeo-00"; + "Daniels"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DanJul-00"; + "Own"; + "Danbe"; + "Jules"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DarRub-00"; + "Own"; + "Darío"; + "Rubén"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavAct-00"; + "Own"; + "Davis"; + "Acton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavED-00"; + "Own"; + "Davies"; + "E.D."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavJoh-00"; + "Own"; + "Davis"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavTho-00"; + "Own"; + "Davies"; + "Thomas E. Davies"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavWil-00"; + "Own"; + "Davidge"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DayBla-00"; + "Own"; + "Dayne"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeBAnt-00"; + "Own"; + "de Bassi"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeFMan-00"; + "Own"; + "de Falla"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeLGreg-00"; + "Own"; + "de Laferrere"; + "Gregorio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeLTeo-00"; + "Own"; + "de las Llanderas"; + "Teodoro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeNRos-00"; + "Own"; + "de Novión"; + "Rosario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeTAnt-00"; + "Own"; + "de Tomaso"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeVLeó-00"; + "Own"; + "de Vedia"; + "Leónidas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeaJos-00"; + "Own"; + "Dealessi"; + "Josefina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DebMad-00"; + "Own"; + "Debriege"; + "Mademoiselle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DecBru-00"; + "Decarli"; + "Bruno"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DegGli-00"; + "Degenstein"; + "Glicke"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelFra-01"; + "Own"; + "Delsarte"; + "François"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelHug-00"; + "Own"; + "del Carril"; + "Hugo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelLeo-00"; + "Own"; + "Delibes"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelMar-00"; + "Delannoy"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DelRal-00"; + "Own"; + "Delmore"; + "Ralph Delmore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DemCec-00"; + "Own"; + "DeMille"; + "Cecil"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DemMar-00"; + "Own"; + "Demini"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DenMar-00"; + "Denker"; + "Marie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Deo-00"; + "Own"; + "Deolinda"; + "Deolinda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DepErn-00"; + "Own"; + "Depas"; + "Ernest"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DesSus-00"; + "Després"; + "Susana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DevDav-00"; + "Own"; + "Devant"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DevMad-00"; + "Own"; + "Devaux"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DiFPe-00"; + "Own"; + "di Filippo"; + "Peppino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Dia-00"; + "Own"; + "Junior"; + "Dias Junior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DieHan-00"; + "Own"; + "Dierhammer"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DieMar-00"; + "Own"; + "Dietrich"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DilLou-00"; + "Own"; + "Dillon"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DipAnd-00"; + "Own"; + "Dippel"; + "Andreas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DisArm-00"; + "Own"; + "Discépolo"; + "Armando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DisEnr-00"; + "Own"; + "Discépolo"; + "Enrique Santos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DisWal-00"; + "Own"; + "Disney"; + "Walt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DomJoh-00"; + "Own"; + "Dominis"; + "John Owen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DonGae-00"; + "Donizetti"; + "Gaetano"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DonMag-00"; + "Own"; + "Donato"; + "Magda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DonRob-00"; + "Own"; + "Donat"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DorEmé-00"; + "Doris"; + "Emé"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DorKät-00"; + "Dorsch"; + "Käthe"; + "female" . + + a ; + "DorMar-00"; + "Own"; + "Doro"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DouSho-00"; + "Own"; + "Douglas"; + "Sholto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DowWal-00"; + "Own"; + "Downey"; + "Wallace"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DraFra-00"; + "Own"; + "Drake"; + "Frances"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DreMax-00"; + "Dreyfus"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Dru-00"; + "Own"; + "Drury"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DruJoh-00"; + "Own"; + "Druten"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DuaUrb-00"; + "Own"; + "Duarte"; + "Urbano"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DucCha-00"; + "Own"; + "Ducommun"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DufJoh-00"; + "Own"; + "Duff"; + "John C. Duff"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DuhAlf-00"; + "Own"; + "Duhau"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DujAle-00"; + "Dujarier"; + "Alexandre Henri"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DukGra-00"; + "Own"; + "Duke of Baden"; + "Grand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DumAle-00"; + "Own"; + "Dumas"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DumJul-00"; + "Own"; + "Dumont-Suvanny"; + "Julie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DupAug-00"; + "Own"; + "Dupont"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DupPau-00"; + "Own"; + "Dupuis"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DurTil-00"; + "Durieux"; + "Tilla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DusEle-00"; + "Own"; + "Duse"; + "Eleanora"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DusLou-00"; + "Own"; + "Dustmann"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EamEmm-00"; + "Own"; + "Eames"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EasRon-00"; + "Own"; + "Easterbrook"; + "Ronald"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EbeOtt-00"; + "Own"; + "Ebersberg"; + "Ottokar Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EchAsu-00"; + "Echeverría"; + "Asunción"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EckCar-00"; + "Own"; + "Eckert"; + "Carl "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdeAsh-00"; + "Own"; + "Eden"; + "Ashley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdeSon-1540"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Edelman"; + "Sonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EdiDuk-00"; + "Own"; + "of Edinburgh"; + "Duke"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdiRob-3688"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Edison"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "EdsTho-00"; + "Own"; + "Edson"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdwGeo-00"; + "Own"; + "Edwards"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EggIva-00"; + "Own"; + "Eggert Hedenblad"; + "Ivar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EigCha-00"; + "Eigenschenk"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EinLiz-00"; + "Einhorn"; + "Liza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElíDel-00"; + "Elías"; + "Delia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElaViv-00"; + "Own"; + "Elaine"; + "Vivian"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElfAda-00"; + "Own"; + "Elflein"; + "Ada"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EllGer-00"; + "Own"; + "Elliott"; + "Gertrude"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EllMax-00"; + "Own"; + "Elliot"; + "Maxine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EllMrs-00"; + "Own"; + "Ellet"; + "Mrs."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElmJoh-00"; + "Own"; + "Elmblad"; + "Johannes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElpJoh-00"; + "Elphinstone"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ElvMau-00"; + "Own"; + "Elvey"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EmmRob-00"; + "Own"; + "Emmet"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EnrHar-00"; + "Own"; + "Enriqueta-Codona"; + "Harriet"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Enrrri-00"; + "Own"; + "Ferri"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EpsJac-00"; + "Own"; + "Epstein"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ErnLou-00"; + "Own"; + "Ernest"; + "Louis Ernest"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EstFer-00"; + "Own"; + "Gutiérrez"; + "Fermín Estrella"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EstJua-00"; + "Estrada"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EstSla-00"; + "Estrin"; + "Slava" . + + a ; + "EttRos-00"; + "Own"; + "Ettinger"; + "Rose"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EysEdm-00"; + "Eysler"; + "Edmund"; + "male" . + + a ; + "FéFra-00"; + "Own"; + "Fétis"; + "Francois-Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FalArm-00"; + "Own"; + "Falconi"; + "Armando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FalEdw-00"; + "Falck"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FarCar-00"; + "Own"; + "Faria"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FarGoe-00"; + "Own"; + "Farren"; + "Goerge"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FarJoh-00"; + "Own"; + "Farrow"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FayAli-00"; + "Own"; + "Faye"; + "Alice"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FecCha-00"; + "Own"; + "Fechter"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FehGat-00"; + "Fehdmer"; + "Gattin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FeiDin-817"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Feinman"; + "Dina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FeiLil-1627"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Feinman"; + "Lili"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FelAnn-00"; + "Fellborg"; + "Anne-Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FenGeo-01"; + "Own"; + "Fentum"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FeoHan-00"; + "Own"; + "Feodor von Milde"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerBro-00"; + "Own"; + "Ferry"; + "Broughty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerCha-00"; + "Own"; + "Fergusson"; + "Charlie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerCon-00"; + "Own"; + "Ferrer"; + "Concepción"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerEdi-00"; + "Own"; + "Fergusson "; + "Edith"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerGui-00"; + "Own"; + "Ferrero"; + "Guillermo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerJam-00"; + "Own"; + "Fergusson"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerLeo-00"; + "Fernández"; + "Leonor"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerMil-00"; + "Own"; + "Fernandes"; + "Millôr"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerSev-00"; + "Own"; + "Fernández"; + "Severo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerSof-00"; + "Fernández"; + "Sofía"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Feroog-00"; + "Own"; + "Moog"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FeuHan-00"; + "Feuchtwang"; + "Hanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FidJos-00"; + "Fiddes"; + "Josephine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FieAle-00"; + "Own"; + "Field"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FieJos-00"; + "Own"; + "Field"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FieM-00"; + "Own"; + "Field"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FiePeg-00"; + "Own"; + "Field"; + "Peggy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FilMar-00"; + "Own"; + "Fillunger"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FinJet-00"; + "Own"; + "Finkenstein"; + "Jettka"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FinMor-700"; + "Own"; + ""; + "Finkel"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Fio-00"; + "Own"; + "Fiorentino "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FisAle-00"; + "Own"; + "Fisher"; + "Alexina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FisJim-00"; + "Own"; + "Fisk"; + "Jim Fisk"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FisMis-00"; + "Own"; + "Fiszon"; + "Misha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FitCly-00"; + "Own"; + "Fitch"; + "Clyde"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FlaKir-00"; + "Flagstad"; + "Kirsten"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FloRob-00"; + "Own"; + "Flores"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FlyErr-00"; + "Own"; + "Flynn"; + "Errol"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FlyTho-00"; + "Own"; + "Flynn"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FlyTom-00"; + "Flynn"; + "Tom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FoeA-00"; + "Own"; + "Foerster"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FolMir-00"; + "Follin"; + "Miriam"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FolNoe-00"; + "Follin"; + "Noel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Fon-00"; + "Own"; + "Fontana"; + "Fontana"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FonAll-00"; + "Own"; + "Fonseca"; + "Alloysio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FonJoa-00"; + "Own"; + "Fontaine"; + "Joan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForC.-00"; + "Own"; + "Forester"; + "C."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForJoh-00"; + "Own"; + "Forster"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForWal-00"; + "Own"; + "Forde"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FouJea-00"; + "Own"; + "Foureaux"; + "Jean-Baptiste"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Fra-00"; + "Own"; + "Francis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraBru-00"; + "Frank"; + "Bruno"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraEsc-00"; + "Own"; + "Fraga Rivadulla"; + "Esclavitud"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraEva-01"; + "Own"; + "Franco"; + "Eva"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraGeo-00"; + "Own"; + "Frank"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraLin-00"; + "Fraser"; + "Lindley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraLud-00"; + "Own"; + "Fränkel"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraMon-00"; + "Own"; + "Franceschi"; + "Monseñor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraMor-00"; + "Own"; + "Frauscher"; + "Moritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FreCar-00"; + "Own"; + "Frédéric"; + "Caroline"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FreErm-00"; + "Own"; + "Frezzolini"; + "Erminia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FreLaz-1681"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Freed"; + "Lazar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FreNic-00"; + "Own"; + "Fregues"; + "Nicolás"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FriEgo-00"; + "Friedell"; + "Egon"; + "male" . + + a ; + "FriJ-00"; + "Own"; + "Friedrich"; + "J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FriMar-00"; + "Own"; + "Frick"; + "Maria Luiza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FriRos-00"; + "Fridman"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FriSof-00"; + "Own"; + "Fridman"; + "Sofia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FryA-00"; + "Own"; + "Fry"; + "A. H. Fry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FryEdw-00"; + "Own"; + "Fry"; + "Edward P. Fry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FryWil-00"; + "Own"; + "Fry"; + "William Henry Fry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FshSta-00"; + "Fshibishevski"; + "Stanislaw"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FugLuc-00"; + "Own"; + "Fugure"; + "Lucien"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FulLoi-00"; + "Own"; + "Fuller"; + "Loie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FurWil-00"; + "Own"; + "Furst"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GámSeb-00"; + "Gámez"; + "Sebastián"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GünJul-00"; + "Günther"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalAnt-00"; + "Galé"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalDel-00"; + "Gallo"; + "Delfín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalHer-00"; + "Own"; + "Galfy"; + "Hermine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalIsa-00"; + "Galé"; + "Isabel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalJos-01"; + "Own"; + "Galé"; + "Josefa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalLui-00"; + "Own"; + "Galhardo"; + "Luíz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalPed-00"; + "Galé"; + "Pedro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GanCre-00"; + "Ganser"; + "Crescentia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarAlb-00"; + "Own"; + "Garcia"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarC-00"; + "Own"; + "Garnsey"; + "C. F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarCes-00"; + "Own"; + "Garnier"; + "Cesar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarEdu-00"; + "Own"; + "Garrido"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarFed-00"; + "Own"; + "Sanchiz"; + "Federico García"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarGre-00"; + "Own"; + "Garson"; + "Greer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarGus-00"; + "Own"; + "Garcia"; + "Gustave"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarMax-00"; + "Garrison"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarPil-00"; + "García"; + "Pilar"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GatAdo-00"; + "Gatien-Arnoult"; + "Adolphe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GauEst-00"; + "Own"; + "Gautier"; + "Estelle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GauThÃ-00"; + "Own"; + "Gautier"; + "Théophile"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GebOtt-00"; + "Gebühr"; + "Otto"; + "male" . + + a ; + "GerAdm-00"; + "Own"; + "Gervais"; + "Admiral"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GerAdo-1753"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gertner"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GerC-00"; + "Own"; + "Gerlick"; + "C. J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GerEte-00"; + "Own"; + "Gerster"; + "Etelka"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GerJea-00"; + "Own"; + "Gerville-Reache"; + "Jeanne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GeyLud-00"; + "Own"; + "Geyer"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GibW-00"; + "Own"; + "Gibson"; + "W. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GieJoh-00"; + "Own"; + "Gielgud"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilBil-00"; + "Own"; + "Gilbert"; + "Billy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilEdw-00"; + "Gilbert"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilEli-00"; + "Gilbert"; + "Elizabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilFra-00"; + "Gillot"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilJoh-00"; + "Own"; + "Gilbert"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilSid-00"; + "Own"; + "Gilliat"; + "Sidney"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GimYaa-1768"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gimpel"; + "Yaakov Ber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GioSil-00"; + "Own"; + "Giovanetti"; + "Silvio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GiuGiu-00"; + "Giusti"; + "Giuseppe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GlaCar-00"; + "Own"; + "Gladys"; + "Carrie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GlaIra-00"; + "Own"; + "Glackens"; + "Ira"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GloEdw-00"; + "Glover"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GluSam-00"; + "Glusberg"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GodGer-00"; + "Own"; + "Godier"; + "Gertrud"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GodPau-00"; + "Own"; + "Goddard"; + "Paulette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GoeCur-00"; + "Goetz"; + "Curt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolAvr-1865"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Golubok"; + "Avraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolBec-00"; + "Own"; + "Goldstein"; + "Becky"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolLei-757"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gold"; + "Leibush"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolLey-1852"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldstein"; + "Leyzer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolMal-00"; + "Goldschmied"; + "Malvina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolMax-3699"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldberg"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GolOtt-00"; + "Goldschmidt"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolRum-00"; + "Own"; + "Goldfaden"; + "Rumania"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolSam-00"; + "Own"; + "Goldwyn"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolSam-01"; + "Goldinburg"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolSer-00"; + "Own"; + "Goldstein"; + "Serke"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolSop-723"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldstein"; + "Sophie (Karp)"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Golar-00"; + "Own"; + "Goldstein"; + "Sara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GomArg-00"; + "Own"; + "Gómez"; + "Argentino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GonBer-00"; + "Own"; + "González Arrili"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GonChi-00"; + "Own"; + "Gonzaga"; + "Chiquinha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GonSan-00"; + "Own"; + "González"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorArt-00"; + "Own"; + "Gordon"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorCor-00"; + "Own"; + "Gordon"; + "Cora"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorJan-00"; + "Own"; + "Gordon"; + "Jan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorMar-00"; + "Own"; + "Gorostiza"; + "Margarita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorMar-01"; + "Goring"; + "Marius"; + "male" . + + a ; + "GotJoh-00"; + "Gottowt"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GouEdm-00"; + "Own"; + "Goulding"; + "Edmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GoyPed-00"; + "Goyena"; + "Pedro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraAni-00"; + "Grander"; + "Anita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraBet-00"; + "Own"; + "Grable"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraCar-00"; + "Own"; + "Grant"; + "Cary"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraEnr-00"; + "Own"; + "Granados"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraEve-00"; + "Own"; + "Gray"; + "Eve"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraFM-00"; + "Own"; + "Gratton"; + "F. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraGen-00"; + "Own"; + "Jr."; + "General"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraIsr-00"; + "Grander"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraJ-00"; + "Grant"; + "J.G."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraJac-00"; + "Own"; + "Grau"; + "Jacob Grau"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraJoa-00"; + "Own"; + "Grave"; + "João"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GreCha-00"; + "Own"; + "Greenwood"; + "Charlotte"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GreEdw-00"; + "Own"; + "Greville"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GreJac-00"; + "Own"; + "Gretillat"; + "Jacques"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gri-00"; + "Own"; + "Griffin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gro-00"; + "Own"; + "Grobien"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroPie-00"; + "Groussac"; + "Pierre"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroRud-00"; + "Grossmann"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroSus-00"; + "Own"; + "Grosso"; + "Susana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GruEmm-00"; + "Own"; + "Grua"; + "Emmy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GueJos-00"; + "Guerrero"; + "Josefa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gui-00"; + "Own"; + "Guiltzou"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiAna-00"; + "Guisti"; + "Ana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiCar-00"; + "Guisti"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiEls-00"; + "Guisti"; + "Elsa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiIné-00"; + "Guisti"; + "Inés"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiLeo-00"; + "Guisti"; + "Leonor"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiLil-00"; + "Guisti"; + "Liliana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiSac-00"; + "Own"; + "Guitry"; + "Sacha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuiYve-00"; + "Own"; + "Guilbert"; + "Yvette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GunFan-00"; + "von Günther"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GunKar-00"; + "von Günther"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GunMad-00"; + "Own"; + "Gunsbourg"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GurJos-00"; + "Gurvich"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GusMax-00"; + "Own"; + "Gusofsky"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GutMil-1949"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gutman"; + "Milani"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GweEdm-00"; + "Own"; + "Gwenn"; + "Edmond"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HérLou-00"; + "Own"; + "Héritte-Viardot"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HörPau-00"; + "Hörbiger"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HRH-00"; + "Own"; + "H."; + "H. R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Haa-00"; + "Own"; + "Von Haase"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HaaKät-00"; + "Haack"; + "Käte"; + "female" . + + a ; + "HagCar-00"; + "Hagemann"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HagCha-00"; + "von Hagn"; + "Charlotte"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Hai-00"; + "Own"; + "Haig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Ham-00"; + "Own"; + "Hampson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HamHar-00"; + "Own"; + "Ham"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarAug-00"; + "Own"; + "Harris"; + "Augustus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarCed-00"; + "Own"; + "Hardwicke"; + "Cedric"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarJoa-00"; + "Own"; + "Harrison"; + "Joan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarOrv-00"; + "Own"; + "Harrold"; + "Orville"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarOsw-00"; + "Own"; + "Harker"; + "Oswald Harker"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarRex-00"; + "Own"; + "Harrison"; + "Rex"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HarTho-00"; + "Harris"; + "Thomas Lake"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HauMar-00"; + "Own"; + "Haupt"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HauMis-00"; + "Hauser"; + "Miska"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HavOli-00"; + "Own"; + "Havilland"; + "Olivia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HawFra-00"; + "Hawks"; + "Francis Lister"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HawNat-00"; + "Own"; + "Hawthorne"; + "Nathaniel Hawthorne"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeaEdi-00"; + "Own"; + "Head"; + "Edith"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HecBen-00"; + "Own"; + "Hecht"; + "Ben"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HegJea-00"; + "Hegner"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeiAnn-00"; + "Own"; + "Heinrich"; + "Annemarie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeiHub-00"; + "Heinich"; + "Hubert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeiMar-00"; + "Own"; + "Heilbronn"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeiMel-00"; + "Own"; + "Heim"; + "Melitta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelAnt-00"; + "Own"; + "Heller"; + "Antônio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelHel-00"; + "Own"; + "Helmut"; + "Helmut"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelJoa-00"; + "Own"; + "Heliodoro"; + "Joaquim Heliodoro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelLil-00"; + "Own"; + "Hellman"; + "Lillian"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HemDav-00"; + "Own"; + "Hempstead"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HenJon-00"; + "Henning"; + "Jonathan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HenPau-00"; + "Own"; + "Henried"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HenRut-00"; + "Own"; + "Henderson"; + "Ruth Henderson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HenSon-00"; + "Own"; + "Henie"; + "Sonja"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerAnn-00"; + "Own"; + "Herschel"; + "Anne"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerFel-00"; + "Own"; + "Herrmann)"; + "Felix Kretschman (later Felix Herrmann)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerFlo-00"; + "Own"; + "Hervé"; + "Florimond"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerGeo-00"; + "Own"; + "Herwegh"; + "Georg"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerGui-00"; + "Herzfeld"; + "Guido"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerMar-00"; + "Own"; + "Herleroy"; + "Marguerite"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerSam-00"; + "Own"; + "Herrmann"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeySop-00"; + "Own"; + "Heyman"; + "Sophie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HieHel-00"; + "Own"; + "Hieser"; + "Helene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HieIda-00"; + "Own"; + "Hiedler"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HieWil-00"; + "Own"; + "Hield"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HilCha-00"; + "Own"; + "Hill"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HilMal-00"; + "Own"; + "Hill"; + "Malter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HinIsa-00"; + "Own"; + "Hinckley"; + "Isabella Hinckley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HinPau-00"; + "Hindemith"; + "Paul"; + "male" . + + a ; + "HirGeo-00"; + "Hirschfeld"; + "Georg"; + "male" . + + a ; + "HirMar-00"; + "Own"; + "Hirn"; + "Marie Madelaine Lugensland"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HirPer-2006"; + "Own"; + ""; + "Hirshbein"; + "Peretz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "HisSam-00"; + "Own"; + "Hischman"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HitAlm-00"; + "Own"; + "Hitchcock"; + "Alma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Hod-00"; + "Own"; + "Hodges"; + "H. C."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HodBra-00"; + "Own"; + "Hodges"; + "Bra."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HoeJos-00"; + "Hoermann"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HofAnt-00"; + "Own"; + "Hoffman"; + "Antonina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/116341890"; + "HofJan-00"; + "Own"; + "https://lccn.loc.gov/n2005074081"; + "https://snaccooperative.org/ark:/99166/w65d8tf9#resources"; + "https://viaf.org/viaf/37664433"; + "https://www.wikidata.org/wiki/Q87272"; + "1896-07-30"^^xsd:date; + "1896-07-30"^^xsd:date; + "1988-06-30"^^xsd:date; + "1988-06-30"^^xsd:date; + "Hofer"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Film Actress"; + ; + . + + a ; + "HogMic-00"; + "Own"; + "Hogan"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HolDr-00"; + "Own"; + "Holmes"; + "Dr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HolGeo-00"; + "Own"; + "Holland"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HolH-00"; + "Own"; + "Hollister"; + "H. R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HolJos-00"; + "Own"; + "Hollmann"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HomOsk-00"; + "Own"; + "Homolka"; + "Oskar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HopBer-00"; + "Own"; + "Hope"; + "Beresford"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HorEdw-00"; + "Own"; + "Horton"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HotLeo-00"; + "Own"; + "D'Hôte"; + "Léon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HouBer-00"; + "Houssay"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HouEdw-00"; + "Own"; + "House"; + "Edward H."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HouGen-00"; + "Own"; + "Houston"; + "General"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HouMáx-00"; + "Own"; + "Hourquet"; + "Máxima Hourquet"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HovHer-00"; + "Own"; + "Hover"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HowBro-00"; + "Own"; + "Howard"; + "Bronson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HowVio-00"; + "Own"; + "Howard"; + "Violet"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HoyCha-00"; + "Own"; + "Hoyt"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HugVic-00"; + "Own"; + "Hugo"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HulJam-00"; + "Own"; + "Hulden"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HulPat-00"; + "Hull"; + "Patrick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HumJes-00"; + "Own"; + "Humphreys"; + "Jeseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HusEdu-00"; + "Husserls"; + "Eduard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HutAlf-00"; + "Own"; + "Hutwell"; + "Alfred S."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HydC-00"; + "Own"; + "Hyde"; + "C. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IbaCar-00"; + "Ibarguren"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IbaNar-00"; + "Own"; + "Ibáñez Menta"; + "Narciso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IbaVic-00"; + "Own"; + "Ibáñez"; + "Vicente Blasco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IffAug-00"; + "Own"; + "Iffert"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IglRaf-00"; + "Own"; + "Iglesias"; + "Rafael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IhlAug-00"; + "Own"; + "Ihle"; + "Auguste"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IhlPet-00"; + "Ihle"; + "Peter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IhmHen-00"; + "Own"; + "Ihman"; + "Henry"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IiKön-00"; + "Own"; + "II"; + "König"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IncRam-00"; + "Own"; + "Inclán"; + "Ramón"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IreNat-00"; + "Own"; + "Iretzkaya"; + "Natalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IriFlo-00"; + "Own"; + "Iriarte"; + "Florencio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IsaNat-00"; + "Own"; + "Isaaconitch"; + "Nathan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IshChr-00"; + "Own"; + "Isherwood"; + "Christopher"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ItuJua-00"; + "Own"; + "Iturigui"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JMei-00"; + "Own"; + "J."; + "Meitl"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JNat-00"; + "Own"; + "Nathan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JacBla-00"; + "Own"; + "Jackson"; + "Black"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JacJac-902"; + "Own"; + ""; + "Jacobs"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "JafCar-00"; + "Jaffé"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JamTho-00"; + "James"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JarGus-00"; + "Own"; + "Jaretzky"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JauJea-00"; + "Own"; + "Jaurés"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JeaIsa-00"; + "Own"; + "Jeans"; + "Isabel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JefBes-00"; + "Own"; + "Jefferson"; + "Bess"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JerMar-00"; + "Jeritza"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JimEnr-00"; + "Own"; + "Jiménez"; + "Don Enrique Romero "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JoaJos-01"; + "Own"; + "Joachim"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JoaMar-00"; + "Own"; + "Joachim"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Joh-00"; + "Own"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JohEdw-00"; + "Johnson"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JohJB-00"; + "Own"; + "Johnson"; + "J.B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JohLou-00"; + "Johansson"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JohWil-00"; + "Own"; + "Johson"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JonBen-00"; + "Jones"; + "Benjamin Naphtali"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JonFre-00"; + "Jone"; + "Fred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JonJoh-00"; + "Jones"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JorGeo-00"; + "Own"; + "Jordan"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JosHof-00"; + "Own"; + "Hofmann"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Joslla-00"; + "Own"; + "Padilla"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JoyJam-00"; + "Own"; + "Joyce"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Jr.Jun-00"; + "Jr."; + "Junius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JuáRog-00"; + "Juárez"; + "Rogelio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Jud-00"; + "Own"; + "Judd"; + "Colonel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Julrsa-00"; + "Own"; + "Traversa"; + "Julio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JunCar-00"; + "Jun."; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JunJos-00"; + "Own"; + "Junior"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JurJor-00"; + "Own"; + "Jury"; + "Jorge Zuhair"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KálEmm-00"; + "Kálmán"; + "Emmerich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KahHei-00"; + "Own"; + "Kahl"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KaiGeo-00"; + "Kaiser"; + "Georg"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KalKin-00"; + "Own"; + "Kalakaua"; + "King"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KalMar-00"; + "Own"; + "Kalergis-Muchanow"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KamAvr-3613"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kaminski"; + "Avraham Yitzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KamEst-3610"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kaminska"; + "Esther-Rukhl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KapI-00"; + "Own"; + "Kapena"; + "I. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KarBor-00"; + "Own"; + "Karloff"; + "Boris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KarEus-00"; + "Karwowski"; + "Eustache"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KarMax-703"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Karp"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KarWil-00"; + "Karczag"; + "Wilhelm"; + "male" . + + a ; + "KatAwa-00"; + "Own"; + "Katsnoshin"; + "Awata Katsnoshin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KatDia-00"; + "Own"; + "Katzman"; + "Diana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KauHer-2100"; + "Own"; + ""; + "Kaufman"; + "Hershl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KayFri-00"; + "Kayßler"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KeaEdm-00"; + "Kean"; + "Edmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KeeJor-00"; + "Own"; + "Keen"; + "Jorge"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KeeJor-01"; + "Own"; + "Keen Barrientos"; + "Jorge Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KeeLau-01"; + "Own"; + "Keene"; + "Laura Keene"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Kel-00"; + "Own"; + "Keller"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelBla-00"; + "Own"; + "Kelleher"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelCla-00"; + "Own"; + "Kellogg"; + "Clara Louise Kellogg"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelFan-00"; + "Kelly"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelHar-00"; + "Own"; + "Kellar"; + "Harry Kellar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelHer-00"; + "Own"; + "Kelsey"; + "Herbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KelMar-00"; + "Own"; + "Kelly"; + "Mary Therese"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KemCha-00"; + "Own"; + "Kemble"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KemFan-00"; + "Own"; + "Kemble"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Ken-00"; + "Own"; + "Kenny"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KenHen-00"; + "Own"; + "Kendall"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KenJud-00"; + "Own"; + "Kenny"; + "Judge"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KerBea-00"; + "Own"; + "Kernic"; + "Beatrice"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KesJ-761"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kessler"; + "J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KieGus-00"; + "Kiepenheuer"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KilQui-00"; + "Own"; + "Kilby"; + "Quincy Kilby"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KinGeo-00"; + "Own"; + "King"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KinLeo-00"; + "Own"; + "Kinskey"; + "Leonid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KirBol-00"; + "Own"; + "Kiralfy"; + "Bolossy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KirEmm-00"; + "Own"; + "Kirch-Moerdes"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KirImr-00"; + "Own"; + "Kiralfy"; + "Imre Kiralfy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KleCes-00"; + "Klein"; + "Cesar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KleLeo-00"; + "von Klenze"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KleOtt-00"; + "Klemperer"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KleRud-00"; + "Klein-Rohden"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KloEri-00"; + "Klossowski"; + "Erich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KniEsm-00"; + "Own"; + "Knight"; + "Esmond"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KniJos-00"; + "Own"; + "Knight"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KoźSta-00"; + "Own"; + "Koźmian"; + "Stanisław"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KobLeo-975"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kobrin"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KoeTil-00"; + "Own"; + "Koenen"; + "Tilly"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KolWal-00"; + "Kollo"; + "Walter"; + "male" . + + a ; + "KorAle-00"; + "Own"; + "Korda"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KorMad-00"; + "Own"; + "Kornfeld"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Kra-00"; + "Own"; + "Von Krause"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraArt-00"; + "Kraußneck"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraGab-00"; + "Own"; + "Krauss"; + "Gabrielle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraJóz-00"; + "Own"; + "Kraszewski"; + "Józef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraMax-00"; + "Own"; + "Kraeme-Helm"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraPhi-KraPhi-967"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Krantz"; + "Philip"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "Kre-00"; + "Own"; + "Von Krencki"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KreFra-00"; + "Own"; + "Krenn"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KreJoh-00"; + "Own"; + "Kretschman"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KreKre-00"; + "Own"; + "Kretschman"; + "Kretschman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KroPet-00"; + "Kropotkin"; + "Peter"; + "male" . + + a ; + "KugHel-00"; + "Own"; + "Kugelmann"; + "Helene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KurMax-3748"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kurtz"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LópIre-00"; + "Own"; + "López Heredia"; + "Irene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LópLuc-00"; + "López"; + "Lucio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "L’aPau-00"; + "Own"; + "L’Allemand"; + "Pauline"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LabFre-00"; + "Lablache"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LabLeo-00"; + "de Laborde"; + "Léon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LabLui-00"; + "Lablache"; + "Luigi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LacAl-00"; + "Own"; + "Lackey"; + "Al Lackey"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LacBen-00"; + "Own"; + "Lacerda"; + "Benedito"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LacCle-00"; + "Own"; + "Lackey"; + "Clever"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LacMig-00"; + "Own"; + "Lacreau"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LacNar-00"; + "Laclau"; + "Narciso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LadCés-00"; + "Own"; + "Ladeira"; + "César"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LadIgn-00"; + "Own"; + "Ladurner"; + "Ignaz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LaeCar-00"; + "Own"; + "Laemmle"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LafMau-00"; + "Own"; + "Lafarge"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LamFer-00"; + "Own"; + "Lamas"; + "Fernando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LamGio-00"; + "Own"; + "Lamperti"; + "Giovanni Battista Lamperti"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LamLib-00"; + "Own"; + "Lamarque"; + "Libertad"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LanFri-00"; + "Own"; + "Lang"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LanG-00"; + "Own"; + "Lanning"; + "G."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LanGus-00"; + "Landauer"; + "Gustav"; + "male" . + + a ; + "LarJea-00"; + "Own"; + "Lardinois"; + "Jean Gregoire"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LarMon-00"; + "Own"; + "Larteur"; + "Monsieur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LasAbe-00"; + "Lastra"; + "Abelardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LasBel-00"; + "Own"; + "Lasky"; + "Bela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LasHul-00"; + "Own"; + "Lashanska"; + "Hulda Lashanska"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LatCés-00"; + "Own"; + "Lattes"; + "César"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LatIze-927"; + "Own"; + "Latayner"; + "Izela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LauCha-00"; + "Own"; + "Laughton"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LauFra-00"; + "Own"; + "Launder"; + "Frank"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LauHar-00"; + "Own"; + "Lauder"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LauJes-00"; + "Own"; + "Laussot"; + "Jessie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LauVic-00"; + "Own"; + "Launay"; + "Victor de Launay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LawGer-00"; + "Own"; + "Lawrence"; + "Gertrude"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LawJel-00"; + "Own"; + "Lawrowskaja"; + "Jelena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeãRit-00"; + "Own"; + "Leão"; + "Rita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LebWil-00"; + "Own"; + "LeBaron"; + "Willian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LedAlp-00"; + "Own"; + "Leduc"; + "Alphonse"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeeAnn-00"; + "Own"; + "Lee"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LefMar-00"; + "Own"; + "Leffler-Burckhard"; + "Martha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LegFat-00"; + "Own"; + "Legrange"; + "Father"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LegMir-00"; + "Own"; + "Legrand"; + "Mirtha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LehFra-00"; + "Lehár"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiEli-00"; + "Own"; + "Leisinger"; + "Elisabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiEri-00"; + "Leinsdorf"; + "Erich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiFra-00"; + "Leigh"; + "Francis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiFri-00"; + "Leider"; + "Frida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiLud-00"; + "Leibinger"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeiViv-00"; + "Own"; + "Leigh"; + "Vivien"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LemLui-00"; + "Own"; + "Lemmi"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/121071146"; + "LeoFra-00"; + "https://isni.org/isni/0000000083655301"; + "Own"; + "https://lccn.loc.gov/no89004077"; + "https://snaccooperative.org/ark:/99166/w6cr6pf6"; + "MGG"; + "https://viaf.org/viaf/24797418/"; + "https://www.wikidata.org/wiki/Q1172149"; + "1864-10-24"^^xsd:date; + "1864-10-24"^^xsd:date; + "1949-02-08"^^xsd:date; + "1949-02-08"^^xsd:date; + "Leoni"; + "Franco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Franco-Leoni.png"; + "https://en.wikipedia.org/wiki/Franco_Leoni#/media/File:Franco-Leoni.png"; + """Opera Composer +"""; + ; + . + + a ; + "LeoFri-00"; + "Own"; + "Leondhardt"; + "Friedericke"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeoGeo-00"; + "Own"; + "Leopold"; + "George Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeoRud-00"; + "Leonhard"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LerMad-00"; + "Own"; + "Leroy"; + "Madam"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LevFre-00"; + "Leveson-Gower"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LewGus-00"; + "Own"; + "Williams"; + "Gus Williams"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LewJef-00"; + "Own"; + "Lewis"; + "Jeffreys"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LewJer-00"; + "Own"; + "Lewis"; + "Jerry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LewRic-00"; + "Own"; + "Lewey"; + "Richard Lewey"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LeyAgn-00"; + "Own"; + "Leydhecker"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LibJac-00"; + "Libert"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LieAlb-00"; + "Lieven"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LieRud-00"; + "Own"; + "Liechtenstein"; + "Rudolph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lik-00"; + "Own"; + "Likelike"; + "Princess"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lil-00"; + "Own"; + "Princess Liliuokalani"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LinNic-00"; + "Lind"; + "Niclas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LipBil-00"; + "Own"; + "Lipscomb"; + "Bill"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LisFer-00"; + "Own"; + "Liszt"; + "Ferenc Liszt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LitArc-00"; + "Own"; + "Little"; + "Archibald John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LitFel-00"; + "Own"; + "Litvinne"; + "Felia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LitWil-00"; + "Own"; + "Little"; + "William John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LlaIgn-00"; + "Own"; + "Llanderas"; + "Ignacio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LlaMar-00"; + "Own"; + "Llanderas"; + "María"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LlaPil-00"; + "Llauch"; + "Pilar"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LloEsp-00"; + "Own"; + "Llopis"; + "Esperanza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LobCha-00"; + "Own"; + "Lobbett"; + "Charls"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LobKon-00"; + "Own"; + "Lobojka"; + "Konstanty"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LobPri-00"; + "Own"; + "Lobanov"; + "Prince"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LocMar-00"; + "Own"; + "Lockwood"; + "Margaret"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LodJoh-00"; + "Own"; + "Loder"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lof-00"; + "Own"; + "Loftus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LomHer-00"; + "Lom"; + "Herbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lon-00"; + "Own"; + "Longden"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LonCha-00"; + "Own"; + "London"; + "Charmian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LonJ.H-00"; + "Own"; + "Long"; + "J.H."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LonJac-00"; + "Own"; + "London"; + "Jack"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LorDom-00"; + "Own"; + "Lorini"; + "Domenico Lorini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LorPet-00"; + "Own"; + "Lorre"; + "Peter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LorRob-00"; + "Own"; + "Loraine"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LosLin-00"; + "Lossen"; + "Lina"; + "female" . + + a ; + "LouisN-00"; + "Own"; + "Louis "; + "N."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LozEmi-00"; + "Lozada"; + "Emilio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaAlo-00"; + "Own"; + "de Oliveira (Bando da Lua)"; + "Aloysio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaHél-00"; + "Own"; + "Jordão Pereira (Bando da Lua)"; + "Hélio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaIrm-00"; + "Own"; + "Ozorio (Bando da Lua)"; + "Irmãos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaIvo-00"; + "Own"; + "Astolfi (Bando da Lua)"; + "Ivo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaNes-00"; + "Own"; + "Amaral (Bando da Lua)"; + "Nestor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LucEle-00"; + "Own"; + "Lucena"; + "Elena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LucRaf-00"; + "Own"; + "Lucci"; + "Rafael "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LudNoa-00"; + "Ludlow"; + "Noah"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Ludfer-00"; + "Own"; + "Schaeffer"; + "Ludovico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugAug-00"; + "Own"; + "López de Gomara Lugones"; + "Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugCam-00"; + "Own"; + "López de Gomara Lugones"; + "Camilo José Tomás Francisco Cristóbal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugJus-00"; + "Own"; + "López de Gomara Lugones"; + "Justo Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugMan-00"; + "Own"; + "López de Gomara Lugones"; + "Manuel Eugenio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugMar-00"; + "Own"; + "López de Gomara Lugones"; + "María de la Encarnación Fortunata"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugMer-00"; + "Own"; + "Lugones"; + "Mercedes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugMer-01"; + "Own"; + "López de Gomara Lugones"; + "Mercedes Encarnación Genoveva Esparta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LugRic-00"; + "Own"; + "López de Gomara Lugones"; + "Ricardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Luiori-00"; + "Own"; + "Amadori"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LukShm-00"; + "Lukatsher"; + "Shmuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lun-00"; + "Own"; + "Lunalila"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuqVir-00"; + "Own"; + "Luque"; + "Virginia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LurYos-3724"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Luria"; + "Dr. Yosef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LusTit-00"; + "Own"; + "Lusiardo"; + "Tito"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Lyt-00"; + "Own"; + "Lytton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MéaMad-00"; + "Own"; + "Méaly"; + "Mademoiselle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MülAle-00"; + "Own"; + "Müller"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MülChr-00"; + "Own"; + "Müller"; + "Christian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MülLeo-00"; + "Müller"; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MülTra-00"; + "Müller"; + "Traugott"; + "male" . + + a ; + "MHer-00"; + "Own"; + "M."; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mac-00"; + "Own"; + "MacDonald"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacAng-00"; + "Own"; + "MacPhail"; + "Angus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacCar-00"; + "Own"; + "Machado"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacCla-00"; + "Mackay"; + "Clarence"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacGis-00"; + "Own"; + "Machado"; + "Gisela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacM-00"; + "Own"; + "Macfarlane"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacWil-00"; + "Own"; + "Macready"; + "William Charles Macready"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MaeFra-00"; + "Own"; + "Maeder"; + "Frank"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MaeFre-00"; + "Own"; + "Maeder"; + "Fred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MaeGas-00"; + "Own"; + "Maeder"; + "Gaspard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MaeJam-00"; + "Own"; + "Maeder"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mag-00"; + "Own"; + "Magrew"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MagPas-00"; + "Own"; + "Magno"; + "Paschoal Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MalArn-00"; + "Own"; + "Malfatti"; + "Arnaldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MalEdu-00"; + "Own"; + "Mallea"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MalHei-00"; + "von Maltzahn"; + "Baron Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MalJam-00"; + "Malmesbury"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MalLui-00"; + "Own"; + "Malpertuit"; + "Luien"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManEdd-00"; + "Own"; + "Mannix"; + "Eddie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManJoa-00"; + "Own"; + "Manén"; + "Joan"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManJoe-00"; + "Own"; + "Mankiewicz"; + "Joe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManJos-732"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mandelkern"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ManLou-3690"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Manne"; + "Louie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ManLuc-00"; + "Mansilla"; + "Lucio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManMar-00"; + "Own"; + "Mannering"; + "Mary"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManRos-00"; + "Own"; + "Manetti"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Manero-00"; + "Own"; + "Romero"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MapHen-00"; + "Own"; + "Mapleson"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarA-00"; + "Own"; + "Marquis"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarAde-00"; + "Martín"; + "Adela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarAnd-00"; + "Martínez"; + "Andrés"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarAnn-00"; + "Own"; + "Maretzek"; + "Anna Maretzek"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarBer-00"; + "Own"; + "Markham"; + "Beryl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarCar-00"; + "Martín"; + "Carmelo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarChr-00"; + "Own"; + "Martin"; + "Chris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarEli-00"; + "Own"; + "Marbury"; + "Elizabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarEmi-00"; + "Mario"; + "Emilio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarFra-00"; + "Own"; + "Arellano"; + "Margot"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarGio-00"; + "Martinelli"; + "Giovanni"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarGlo-00"; + "Own"; + "Sierra"; + "Gloria Martínez"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarGre-00"; + "Own"; + "Sierra"; + "Gregorio Martínez"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarGro-00"; + "Own"; + "Marx"; + "Groucho"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarJea-00"; + "Own"; + "Martin"; + "Jean-Blaise"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarJos-00"; + "Own"; + "Markovitz"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarMad-00"; + "Own"; + "Marguerites"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarMar-00"; + "Own"; + "Martins"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarMar-01"; + "Own"; + "Maria"; + "Marylka"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarMax-01"; + "Marx"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarMax-2402"; + "Own"; + ""; + "Marienhof"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MarMig-00"; + "Own"; + "Martín"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarQue-00"; + "Own"; + "Mario"; + "Queena Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarR-00"; + "Own"; + "Martin"; + "R. Martin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarRap-00"; + "Own"; + "Maretzek"; + "Raphael Maretzek"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarRos-00"; + "Own"; + "Marini"; + "Rosa Marini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarTon-00"; + "Own"; + "Marco"; + "Tony"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarVic-00"; + "Own"; + "Margueritte"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasAug-00"; + "Masson"; + "Auguste"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasEri-00"; + "Own"; + "Maschwitz"; + "Eric"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasF-00"; + "Own"; + "Masini"; + "F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasFri-00"; + "Massary"; + "Fritzi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasJoh-00"; + "Own"; + "Mason"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasRay-00"; + "Own"; + "Massey"; + "Raymond"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MatCha-00"; + "Own"; + "Mathews"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MatMar-00"; + "Matzenauer"; + "Margarete"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MatMs.-00"; + "Own"; + "Mathews"; + "Ms."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MauGeo-00"; + "von Maurer"; + "Georg"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MauJea-00"; + "Own"; + "Maubourg"; + "Jeanne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MaxJoh-00"; + "Own"; + "Maxwell"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayAla-00"; + "Own"; + "May"; + "Alan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayBen-00"; + "Own"; + "Mayr"; + "Benedikt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayEug-00"; + "Own"; + "Mayer"; + "Eugenie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayLou-00"; + "Own"; + "Mayer"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayMan-00"; + "Own"; + "Mayol"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayMar-00"; + "Maya"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MayRob-00"; + "Own"; + "Maywood"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MazAlf-00"; + "Maza"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MazEnr-00"; + "Mazza"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "McaJoy-00"; + "Own"; + "McArden"; + "Joy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "McmG-00"; + "Own"; + "Mcminis"; + "G.R."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeaGeo-00"; + "Own"; + "Meader"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeaHar-00"; + "Own"; + "Mear"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Meck-00"; + "Own"; + "Mecklenburg"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeiLou-00"; + "Own"; + "Meisslinger"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MelGeo-00"; + "Meller"; + "Georges"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MelLau-00"; + "Melchior"; + "Lauritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Men-00"; + "Own"; + "Mendel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MenEle-00"; + "Mendelssohn"; + "Eleonore"; + "female" . + + a ; + "MenEul-00"; + "Own"; + "Mendizábal"; + "Eulalia Mendizábal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MenLon-00"; + "Own"; + "Mendes"; + "Lontine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MenLot-00"; + "Mendes"; + "Lothar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MenWil-00"; + "Mengelberg"; + "Willem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MerCec-00"; + "Own"; + "Merguillier"; + "Cecile"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MerFra-00"; + "Méry"; + "François"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MerRos-00"; + "Own"; + "Méryss"; + "Rose"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MerTit-00"; + "Own"; + "Merello"; + "Tita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MesCus-00"; + "Own"; + "Mesquita"; + "Custódio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MesHen-00"; + "Own"; + "Mesquita"; + "Henrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MetJoh-00"; + "Own"; + "Methua"; + "John Guido"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyCor-00"; + "Own"; + "Meysenheim"; + "Cornelie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeySèb-00"; + "Own"; + "Meysenberg"; + "Sèbastien"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MicSim-00"; + "Own"; + "Michou"; + "Simone Anna Ader"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MigLeo-00"; + "Own"; + "Miguéz"; + "Leopoldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilAgn-00"; + "Own"; + "Mille"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilHen-00"; + "Own"; + "Miller"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilLlu-00"; + "Own"; + "Millet"; + "Lluís"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilNik-00"; + "Own"; + "Miloslavsky"; + "Nikolay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilRay-00"; + "Own"; + "Milland"; + "Ray"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MinMar-00"; + "Own"; + "Minter"; + "Mary"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MioMar-00"; + "Own"; + "Mioland-Carvalho"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MirAur-00"; + "Own"; + "Miranda"; + "Aurora"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MirMar-00"; + "Own"; + "Miranda"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MitAar-2495"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mittelman"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MitWil-00"; + "Own"; + "Mitchell"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MocFra-00"; + "Own"; + "Mocho"; + "Fray"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ModMar-00"; + "Own"; + "Modjeska"; + "Marylka"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ModRud-00"; + "Own"; + "Modrzejewski"; + "Rudolph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MoiAle-00"; + "Moissi"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MolAmy-00"; + "Own"; + "Mollison"; + "Amy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MolJim-00"; + "Own"; + "Mollison"; + "Jim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonIgn-00"; + "Moncada"; + "Ignacio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonIvo-00"; + "Own"; + "Montagu"; + "Ivor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonJoa-00"; + "Own"; + "Montero"; + "Joaquín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonMad-00"; + "Own"; + "Montbazon"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonMad-01"; + "Own"; + "Montrouge"; + "Madame"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonMar-00"; + "Own"; + "Montebello"; + "Marquis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonMon-00"; + "Own"; + "Montrouge"; + "Monsieur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MonRic-00"; + "Own"; + "Montalban"; + "Ricardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mor-00"; + "Own"; + "Morrison"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mor-01"; + "Own"; + "Morse"; + "Captain"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorAar-3747"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Morgenbasser"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MorCar-00"; + "Own"; + "Morganti"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorCla-00"; + "Own"; + "Morris"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorGen-00"; + "Own"; + "Morris"; + "General"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorIda-00"; + "Own"; + "Morin"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorMic-00"; + "Own"; + "Morgen"; + "Michèle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorPau-00"; + "Morgan"; + "Paul"; + "male" . + + a ; + "MorRos-00"; + "Own"; + "Moreno"; + "Rosita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorSav-00"; + "Morton"; + "Savile"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorVin-00"; + "Own"; + "de Moraes"; + "Vinicius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mos-00"; + "Own"; + "Mosenthal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MosCol-00"; + "Own"; + "Mosely"; + "Colonel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MosWil-00"; + "Own"; + "Moscherosch"; + "Wilhem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MotVia-00"; + "Own"; + "Mota"; + "Viana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MouDéc-00"; + "Own"; + "Moura"; + "Décio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MouJan-00"; + "Own"; + "Mount"; + "Jane Mount"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Mow-00"; + "Own"; + "Mowbary"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MowAla-00"; + "Own"; + "Mowbray"; + "Alan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MowMor-00"; + "Own"; + "Morris"; + "Mowbry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MoyWLL-00"; + "Own"; + "Moyne"; + "W.L.Le"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MraHol-00"; + "Own"; + "Holwill"; + "Mra."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MuñPep-00"; + "Own"; + "Muñoz"; + "Pepita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MucSer-00"; + "Own"; + "Muchanow"; + "Sergiusz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MulMar-00"; + "Müller"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MumJoh-00"; + "Own"; + "Mumford"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MurIlm-00"; + "Own"; + "Murska"; + "Ilma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MurJam-00"; + "Own"; + "Murdoch"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MurJoh-00"; + "Murray"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MurP-00"; + "Own"; + "Murray"; + "P. F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MusOsc-00"; + "von Mussinan"; + "Oscar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MuxPer-00"; + "Own"; + "Mux"; + "Perla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MuzEma-00"; + "Own"; + "Muzio"; + "Emanuele Muzio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MycWal-00"; + "Own"; + "Mycroft"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "N.PNPW-00"; + "Own"; + "N.P.Willis"; + "N.P.Willis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NakM-3687"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Nakhamkus"; + "M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "NapAle-00"; + "Own"; + "Napoleão"; + "Alexandre"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NapAlf-00"; + "Own"; + "Napoleão"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NapAnn-00"; + "Own"; + "Napoleão"; + "Annibal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NapBar-00"; + "Own"; + "Naples"; + "Barbaja in Naples"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NatDor-00"; + "Own"; + "Nathan"; + "Dora"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NatRob-00"; + "Own"; + "Nathan"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NavFan-00"; + "Own"; + "Navarro"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NeiMic-00"; + "Own"; + "Neill"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NelBar-00"; + "Own"; + "Nelson"; + "Barry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NelWil-00"; + "Own"; + "Nelson"; + "William Rushton Nelson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NepAlb-00"; + "Own"; + "Nepomuceno"; + "Alberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NerEst-00"; + "Neroslavska"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NetArc-00"; + "Own"; + "Nettlefold"; + "Archibald"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NeuIgn-00"; + "Own"; + "Neufeld"; + "Ignacy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NeuYet-00"; + "Neumann"; + "Yet"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NevMar-00"; + "Own"; + "das Neves"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NewDen-00"; + "Own"; + "Newton"; + "Denbigh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NewHer-00"; + "Own"; + "Newmark"; + "Herbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NewPau-00"; + "Own"; + "Newman"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NewRic-00"; + "Own"; + "Newcombe"; + "Richard S. Newcombe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NewW-00"; + "Own"; + "Newton"; + "W."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicDud-00"; + "Own"; + "Nichols"; + "Dudley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicFan-00"; + "Nicolls"; + "Fanny"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicFri-00"; + "Own"; + "Nicolai"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicJas-00"; + "Nicolls"; + "Jasper"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicOtt-00"; + "Own"; + "Nicolai"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NicSel-00"; + "Own"; + "Nicklass-Kempner"; + "Selma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NieCar-00"; + "Own"; + "Novo de Niemeyer"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NieFri-00"; + "Own"; + "Nietzsche"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NivDav-00"; + "Own"; + "Niven"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NoeLou-00"; + "Noetel"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NoePhi-00"; + "Noetel"; + "Philipp"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NogMat-00"; + "Own"; + "Nogueiras"; + "Mathilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NouAdo-00"; + "Own"; + "Nourrit"; + "Adolphe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NovErm-00"; + "Own"; + "Novelli"; + "Ermette"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NovFau-00"; + "Own"; + "Novaes"; + "Faustino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NovIvo-00"; + "Own"; + "Novello"; + "Ivor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NugEll-00"; + "Own"; + "Nugent"; + "Elliott"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NumAlf-00"; + "Own"; + "Numese"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NunJoã-00"; + "Own"; + "Nunes"; + "João"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NusFri-00"; + "Nußbammer"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ObeMer-00"; + "Own"; + "Oberon"; + "Merle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ObeSop-2587"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Oberlander"; + "Sophia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ObrPac-00"; + "Obregón"; + "Paco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OcaCar-00"; + "Ocaña"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OcaVic-00"; + "Ocampo"; + "Victoria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OgdDor-00"; + "Own"; + "Ogden"; + "Dorcy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OliJos-00"; + "Own"; + "Oliveira"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OliLau-00"; + "Own"; + "Olivier"; + "Laurence"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OlmSab-00"; + "Own"; + "Olmos"; + "Sabina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OndAnn-00"; + "Own"; + "Ondra"; + "Anny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OneJam-00"; + "Own"; + "O’Neil"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OpiAdo-00"; + "Own"; + "Opid"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrgAgl-00"; + "Own"; + "Orgeni"; + "Aglaja"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrgDan-00"; + "Own"; + "Orgolini"; + "Dante"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrlQue-00"; + "Own"; + "Orleans"; + "Queen Amelia of Orleans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrtBar-00"; + "Own"; + "Ortega"; + "Barão"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrtDol-00"; + "Ortega"; + "Dolores"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrtFra-00"; + "Ortega"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OrtMec-00"; + "Own"; + "Ortiz"; + "Mecha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OscGus-00"; + "Oscar"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OstIsi-00"; + "Own"; + "Ostrer"; + "Isidore"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OstMau-00"; + "Own"; + "Ostrer"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OthGra-00"; + "Own"; + "Othelo"; + "Grande"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OttThe-00"; + "Otto"; + "Theologe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OweJoh-00"; + "Own"; + "Owens"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OxcJoh-00"; + "Own"; + "Oxcenford"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PérBen-00"; + "Own"; + "Pérez Galdós"; + "Benito"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PérRog-00"; + "Own"; + "Pérez"; + "Rogelio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Paa-00"; + "Own"; + "Paalen"; + "Bella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PacFel-00"; + "Own"; + "Pacini"; + "Felicia Quintero de Pacini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PacJoa-00"; + "Own"; + "Pacheco"; + "Joaquim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PacPie-00"; + "Own"; + "Pacini"; + "Pietro Pacini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadFau-00"; + "Own"; + "Padín"; + "Fausto Padín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadIgn-00"; + "Own"; + "Paderewski"; + "Ignacy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadJul-00"; + "Own"; + "Padín"; + "Julio Padín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadMan-01"; + "Own"; + "Padín"; + "Manuel Padín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadMar-00"; + "Own"; + "Montagney Artôt de Pa"; + "Marguerite-Josephine-Désirée"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadMar-01"; + "Own"; + "Padín"; + "María"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadMar-02"; + "Own"; + "Padín"; + "Margarita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadMar-03"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Padín"; + "Mariana Aída"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadPil-00"; + "Own"; + "Padín"; + "Pilar Padín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PadVic-00"; + "Padula"; + "Vicente"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalA-00"; + "Own"; + "Palmer"; + "A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalAlf-00"; + "Palacios"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalHer-00"; + "Own"; + "Pallme"; + "Herrman A.J. Pallme"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalMax-00"; + "Pallenberg"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PanEtt-00"; + "Panizza"; + "Ettore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PanHer-00"; + "Own"; + "Pan"; + "Hermes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PanMon-00"; + "Own"; + "Pancelet"; + "Monsieur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PanSan-00"; + "Own"; + "Panzas"; + "Sancho Panzas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PapŁuc-00"; + "Own"; + "Paprowski"; + "Łucjan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PapAug-00"; + "Papon"; + "Auguste"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PapRos-00"; + "Own"; + "Papier"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Par-00"; + "Own"; + "Paradossi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParCar-00"; + "Own"; + "Parravicini"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParDor-00"; + "Own"; + "Parker"; + "Dorothy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParH-00"; + "Own"; + "Parmeiee"; + "H.A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParJoh-00"; + "Own"; + "Parry"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParMar-00"; + "Own"; + "Parpagnoli"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParTer-00"; + "Own"; + "Parodi"; + "Teresa Parodi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParWil-00"; + "Own"; + "Parkinson"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PasArt-00"; + "Pastor"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PasCom-00"; + "Own"; + "Pasha"; + "Cominos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PasJoe-00"; + "Own"; + "Pasternak"; + "Joe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PasTeo-00"; + "Own"; + "Pastor"; + "Teodoro de las Llanderas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PatGra-00"; + "Own"; + "Pattison"; + "Granville S. Pattison"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PatSal-00"; + "Own"; + "Patti"; + "Salvatore Patti"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PauMar-00"; + "Paudler"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PauTat-00"; + "Own"; + "Paulova"; + "Tatiana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PavTat-00"; + "Own"; + "Pavlova"; + "Tatiana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PayJoh-00"; + "Own"; + "Payne"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PayRob-00"; + "Own"; + "Payró"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PayThe-00"; + "Own"; + "Payne"; + "Theodore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeaGeo-00"; + "Own"; + "Pearson"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PecHan-00"; + "Pechmann"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Pedcci-00"; + "Own"; + "Quartucci"; + "Pedro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeeRob-00"; + "Peel"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeiCau-00"; + "Own"; + "Peixoto"; + "Cauby"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeiEli-00"; + "Peißner"; + "Elias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeiLui-00"; + "Own"; + "Peixoto"; + "Luiz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PenAlc-00"; + "Own"; + "Penna"; + "Alceu"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PenAlo-00"; + "Own"; + "Pennarini"; + "Aloys"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PesAle-00"; + "Own"; + "Peshkov"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PesFeo-00"; + "Own"; + "Peshkov"; + "Feodor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PesSer-00"; + "Own"; + "Peschko"; + "Sergej"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PetEle-00"; + "Own"; + "Petrelli"; + "Eleanor"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PetIvo-00"; + "Own"; + "Petray"; + "Ivo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PeuJac-00"; + "Own"; + "Peuser"; + "Jacobo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PezCay-00"; + "Own"; + "Pezzi"; + "Cayetano"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PhiAde-00"; + "Own"; + "Phillips"; + "Adelaide Phillips"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PhiGeo-00"; + "Own"; + "Phillip"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PhiMar-00"; + "Own"; + "Philippi"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PicPab-00"; + "Own"; + "Picasso"; + "Pablo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PicPed-00"; + "Own"; + "Pico"; + "Pedro E."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PinCha-00"; + "Own"; + "Pinheiro"; + "Chaby"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PinJos-00"; + "Pinsa"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PinRos-00"; + "Own"; + "Pino"; + "Rosario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PinWal-00"; + "Own"; + "Pinheiro"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PiqCat-00"; + "Piquemal"; + "Catherine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PisErw-00"; + "Piscator"; + "Erwin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaAnt-00"; + "Own"; + "Plana"; + "Antonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaChr-00"; + "Own"; + "Planer"; + "Christine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaPol-00"; + "Own"; + "Plançon"; + "Pol"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaRos-00"; + "Own"; + "de la Plata"; + "Rosita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PlaTho-00"; + "Own"; + "Placide"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PodArt-00"; + "Podestá"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PolMan-00"; + "Own"; + "Poli"; + "Manolita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PomEri-00"; + "Own"; + "Pommer"; + "Erich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PonA-00"; + "Own"; + "Ponchielli"; + "A"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PonAní-00"; + "Ponce"; + "Aníbal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PonJoh-00"; + "Ponsonby"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PorJav-00"; + "Own"; + "Portales"; + "Javier"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PotLid-2690"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Pototska"; + "Lidia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PowTyr-00"; + "Own"; + "Power"; + "Tyrone"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PozJ. -3657"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Poznansky"; + "J. K."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PreEug-00"; + "Own"; + "Presbrey"; + "Eugene Wiley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PreSer-00"; + "Preti"; + "Servilia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PriCar-00"; + "Own"; + "Pringle"; + "Carrie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PugRau-00"; + "Own"; + "Pugno"; + "Raul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PykLou-00"; + "Own"; + "Pyk"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PynJam-00"; + "Own"; + "Pyne"; + "James Kendrick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QueIsa-00"; + "Own"; + "Queen of Spain Isabella II"; + "Isabella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QuiFer-00"; + "Own"; + "Quijano"; + "Fernando"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QuiHéc-00"; + "Own"; + "Quiroga"; + "Héctor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QuiHor-00"; + "Quiroga"; + "Horacio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RacMan-00"; + "Own"; + "Rachi"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RadAma-00"; + "Radberg"; + "Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RadLui-00"; + "Own"; + "Radecke"; + "Luise"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RaeCat-00"; + "Rae"; + "Catherine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RaeWil-00"; + "Rae"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafAgu-00"; + "Own"; + "Raffetto"; + "Agustina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafAng-00"; + "Own"; + "Raffetto"; + "Ángel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafAnt-00"; + "Own"; + "Raffetto"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafAug-00"; + "Own"; + "Rafael"; + "Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafJua-00"; + "Own"; + "Raffetto"; + "Juana Victoria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafLui-00"; + "Own"; + "Raffetto"; + "Luisa Josefa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafMag-00"; + "Own"; + "Raffetto"; + "Magdalena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafMar-00"; + "Own"; + "Raffetto"; + "Margarita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RafRos-00"; + "Own"; + "Raffetto"; + "Luisa Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RaiCla-00"; + "Own"; + "Rains"; + "Claude"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RaiMae-00"; + "Own"; + "Raimondi "; + "Maestro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RamJos-00"; + "Own"; + "Ramírez"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RanArt-00"; + "Own"; + "Rank"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RapLau-00"; + "Own"; + "Rappoldi"; + "Laura"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RapLis-2735"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rappel"; + "Lisa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RapWin-00"; + "Own"; + "Rapacki"; + "Wincenty"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RatBas-00"; + "Own"; + "Rathbone"; + "Basil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RatCes-00"; + "Own"; + "Ratti"; + "César"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RatPep-00"; + "Own"; + "Ratti"; + "Pepe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RazJos-00"; + "Own"; + "Razzano"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReaCha-00"; + "Own"; + "Reade"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Reb-00"; + "Own"; + "Rebecca"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RebAnd-00"; + "Own"; + "Rebouças"; + "André"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReeMrs-00"; + "Own"; + "Reed"; + "Mrs.German"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReeRol-00"; + "Own"; + "Reed"; + "Roland Reed"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReeTho-00"; + "Own"; + "Reed"; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RehArt-00"; + "Own"; + "Rehan"; + "Arthut"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiAnt-00"; + "Own"; + "Reicha"; + "Anton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiCar-00"; + "Own"; + "Reinecke"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiEma-3490"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Reicher"; + "Emanuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ReiHug-00"; + "Own"; + "Reinhold"; + "Hugo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiLui-00"; + "Reissig"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReiRac-00"; + "Own"; + "Reingold"; + "Rachel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RetJan-00"; + "Own"; + "Retallick"; + "Jane"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReuAug-00"; + "Own"; + "Reuss"; + "Augusta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReuHei-00"; + "von Reuß-Lobenstein-Ebersdorf"; + "Prince Heinrich LXXII."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReyCar-00"; + "Reyes"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ReyLui-00"; + "Reynoso"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicJay-00"; + "Own"; + "Rice"; + "Jay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicMr.-00"; + "Own"; + "Rice"; + "Mr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicPet-00"; + "Own"; + "Richings"; + "Peter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicWil-00"; + "Own"; + "Rice"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RidEli-00"; + "Own"; + "Riddle"; + "Eliza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RieHug-00"; + "Riesenfeld"; + "Hugo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RieJul-00"; + "Own"; + "Rietz"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RieKar-00"; + "Riedel"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RilBet-00"; + "Own"; + "Riley"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RipAnt-00"; + "Own"; + "Ripa"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RisRob-00"; + "Own"; + "Riskin"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RitJul-00"; + "Own"; + "Ritter"; + "Julie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RitKar-00"; + "Own"; + "Ritter"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RivCip-00"; + "Own"; + "Rivas Chérif"; + "Cipriano"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RivDie-00"; + "Own"; + "Rivera"; + "Diego"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RivN/A-00"; + "Own"; + "Rivera"; + "N/A"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RoaAma-00"; + "Own"; + "Vives Roig"; + "Amadeu"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Rob-00"; + "Own"; + "Robin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobAgn-00"; + "Own"; + "Robertson"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobBru-00"; + "Own"; + "Roberts"; + "Bruce"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobEug-00"; + "Robert"; + "Eugen"; + "male" . + + a ; + "RobJua-00"; + "Robles"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobMay-00"; + "Own"; + "Robson"; + "May"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobPau-00"; + "Own"; + "Robeson"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobSue-00"; + "Robinson"; + "Sue"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RobWil-00"; + "Own"; + "Robinson"; + "William E. (Chung Ling Soo)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RodEdu-00"; + "Own"; + "Rodrigues"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RoeEli-00"; + "Own"; + "Roediger"; + "Elisabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RoeGus-00"; + "Roethe"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RogCha-00"; + "Own"; + "Rogers"; + "Charles T."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RohJor-00"; + "Own"; + "Rohde"; + "Jorge"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RokVik-00"; + "Own"; + "Rokitansky"; + "Viktor Rokitansky"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RolJoa-00"; + "Own"; + "Rolla"; + "Joaquim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RolWol-00"; + "Own"; + "Rolland"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Rom-00"; + "Own"; + "Romilly"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RomCés-00"; + "Own"; + "Romero"; + "César"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RomFra-00"; + "Romero"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RomFre-00"; + "Own"; + "Romilly"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RonFel-00"; + "Own"; + "Ronconi"; + "Felice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RonGio-00"; + "Own"; + "Ronconi"; + "Giorgio Ronconi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RooThi-00"; + "Own"; + "Roorda"; + "Thies"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosAba-3749"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosenzweig"; + "Aba"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosBil-00"; + "Own"; + "Rose"; + "Billie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosCar-00"; + "Own"; + "Rosa"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosCha-00"; + "Own"; + "Ross"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosJoh-00"; + "Own"; + "Rosine"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosMax-878"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rosenthal"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RosNoe-00"; + "Own"; + "Rosa"; + "Noel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosTom-00"; + "Own"; + "Rose"; + "Tomy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosYak-00"; + "Own"; + "Rosenfeld"; + "Yakov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RotHan-00"; + "Rothe"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RotSil-00"; + "Own"; + "Roth"; + "Silvana"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Rou-00"; + "Own"; + "Rousby"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RozTor-3700"; + "Own"; + ""; + "Roza"; + "Torklad"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RubAnt-00"; + "Own"; + "Rubinstein"; + "Anton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RubArt-00"; + "Own"; + "Rubinstein"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RudMme-00"; + "Own"; + "Rudensdorff"; + "Mme."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RuiPep-00"; + "Own"; + "Ruiz"; + "Pepa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RulTit-00"; + "Rulfo"; + "Titta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RumJos-916"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Rumshinsky"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "RusIsa-00"; + "Own"; + "Rush"; + "Isadore Rush"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RusJos-00"; + "Own"; + "Russell"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RusSan-00"; + "Own"; + "Rusiñol"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RusTom-00"; + "Own"; + "Russel"; + "Tommy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SáBer-00"; + "Own"; + "Sá"; + "Bernardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SánFlo-00"; + "Own"; + "Sánchez"; + "Florencio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SacJos-00"; + "Own"; + "Sacks"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SaeRoq-00"; + "Own"; + "Saenz Peña "; + "Roque"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SagRob-00"; + "Saghini"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SahHei-00"; + "Own"; + "von Sahr"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SaiCam-00"; + "Own"; + "Saint-Saëns"; + "Camille"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SalHei-00"; + "Salfner"; + "Heinz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SalMaf-00"; + "Own"; + "Salvatini"; + "Mafalda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SamFra-00"; + "Own"; + "Sampaio"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SamG.b-00"; + "Own"; + "Samuelson"; + "G.B"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/13485411X"; + "SamMar-00"; + "https://isni.org/isni/0000000118277372"; + "Own"; + "https://lccn.loc.gov/no92006160"; + "https://viaf.org/viaf/88077692"; + "https://www.wikidata.org/wiki/Q426361"; + "1868-12-13"^^xsd:date; + "1868-12-13"^^xsd:date; + "1930-01-24"^^xsd:date; + "1930-01-24"^^xsd:date; + "Sammarco"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Bariton"; + ; + . + + a ; + "SamMor-00"; + "Own"; + "Sampaio"; + "Moreira "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanEle-00"; + "Own"; + "Sanz"; + "Elena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanGeo-00"; + "Own"; + "Sand"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanIsm-00"; + "Own"; + "dos Santos"; + "Isménia "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanJac-880"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Sandler"; + "Jacob Koppel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SanJam-00"; + "Sanders"; + "James B."; + "male" . + + a ; + "SanJul-00"; + "Own"; + "Sánchez Gardel"; + "Julio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanLui-00"; + "Own"; + "Sandrini"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanNur-00"; + "Santacana"; + "Nuri"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanRos-00"; + "Santacana"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanSib-00"; + "Own"; + "Sanderson"; + "Sibyl"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanWła-00"; + "Own"; + "Sanguszko"; + "Władysław"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SarAng-00"; + "Own"; + "Saracco"; + "Angel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SarDom-00"; + "Own"; + "Sarmiento"; + "Domingo Faustino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SarHar-00"; + "Own"; + "Sargent"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SavAnt-00"; + "Savé"; + "Antonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SavFra-00"; + "Own"; + "Saville"; + "Frances"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SavVic-00"; + "Own"; + "Saville"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScaAde-00"; + "Own"; + "Scarsez"; + "Adele"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScaPie-00"; + "Own"; + "Scarsez"; + "Pierre"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Sch-01"; + "Own"; + "Scharland"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchAma-00"; + "Schreiner"; + "Amalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchAme-00"; + "Own"; + "Schmautz-Schütky"; + "Amelie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchAns-2854"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schorr"; + "Anshel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchArt-00"; + "Own"; + "Schopenhauers"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchArt-01"; + "Schnitzler"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchAug-00"; + "Schreiner"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchCar-00"; + "Own"; + "Schaefer Gallo"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchDr.-00"; + "Schmieden"; + "Dr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchFra-01"; + "Own"; + "Schmidt"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchFra-02"; + "Own"; + "Schott"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchFri-00"; + "Schayer"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchFri-01"; + "Schorr"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchHan-00"; + "Own"; + "Schmidt"; + "Hans "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchHer-00"; + "Own"; + "Schumann"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchJos-00"; + "Schildkraus"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchJul-00"; + "von Schwandt"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchLou-2852"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schnitzer"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchMar-00"; + "Own"; + "Schröder-Hanfstaengl"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchMau-2863"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schwartz"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchMon-3744"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Schoengold"; + "Montshikl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SchMos-00"; + "Schorr"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchRei-00"; + "Own"; + "Schünzel"; + "Reinhold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchSig-00"; + "Own"; + "Schira"; + "Signor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScoAle-00"; + "Scotti"; + "Alejandro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScoBtr-00"; + "Own"; + "Scott"; + "Btrs."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScoC.-00"; + "Own"; + "Scott"; + "C."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScoJos-00"; + "Scoville"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ScoM-00"; + "Own"; + "Scott"; + "M.M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SebDav-00"; + "Own"; + "Sebastian"; + "Dave"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SecAnt-00"; + "Own"; + "Secchi"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SeeGer-00"; + "Own"; + "Seeger"; + "Gertrud"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SefJoh-00"; + "Own"; + "Sefton"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SegÁng-00"; + "Segura"; + "Ángel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SelDav-00"; + "Own"; + "Selznick"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SelMyr-00"; + "Own"; + "Selznick"; + "Myron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SemGot-00"; + "Own"; + "Semper"; + "Gottfried"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SemJoh-00"; + "Own"; + "Sembach"; + "Johannes "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerDag-00"; + "Servaes"; + "Dagny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerEst-00"; + "Own"; + "Serrador"; + "Esteban"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerTul-00"; + "Serafin"; + "Tulio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerVer-00"; + "Own"; + "Sergine"; + "Vera"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SeyIgn-00"; + "Own"; + "Seyfried"; + "Ignaz von Seyfried"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShaEff-00"; + "Own"; + "Shannon"; + "Effie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShaTed-00"; + "Own"; + "Shapiro"; + "Ted"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SheJan-00"; + "Own"; + "Sherriff"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SheRob-00"; + "Own"; + "Sherwood"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShoAba-00"; + "Shoengold"; + "Aba"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShoBen-2939"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Shoengold"; + "Benny"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SidPhi-00"; + "Own"; + "Sidney"; + "Philip"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SidSyl-00"; + "Own"; + "Sidney"; + "Sylvia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SieHen-00"; + "Own"; + "Sienkiewicz"; + "Henryk"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SieMar-00"; + "Own"; + "Siems"; + "Margarethe"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SilGul-00"; + "Own"; + "da Silveira"; + "Gulherme"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SilJos-00"; + "Own"; + "López Silva"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SilSyn-00"; + "Own"; + "Silva"; + "Synval"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Sim-00"; + "Own"; + "Simmonson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimEdm-00"; + "Own"; + "Simpson"; + "Edmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimEdw-00"; + "Own"; + "Simpson"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimFri-00"; + "Own"; + "Simrock"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimJam-00"; + "Simmonds"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimMor-720"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/simonoff-moshe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1489."""; + "1859-05-01"^^xsd:date; + "1859-05-31"^^xsd:date; + "Simonoff"; + "Morris"; + "May 1859"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-simonoff-moshe.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/S/simonoff-moshe.htm"; + ; + ; + "Jewish" . + + a ; + "Sim_2979"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/simon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1484."""; + "Simon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "SinAbe-2985"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/sincoff-abe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1494."""; + "https://viaf.org/en/viaf/15158259326702301841"; + "https://de.m.wikipedia.org/wiki/Datei:Rumanian-khasene.jpg"; + "1885-01-01"^^xsd:date; + "1885-12-31"^^xsd:date; + "Sincoff"; + "Abe"; + "1885"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-sincoff-abraham.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/S/sincoff-abe.htm "; + ; + "Jewish" . + + a ; + "SinJoh-00"; + "Own"; + "Sinclair"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SkeGeo-00"; + "Own"; + "Skerrett"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmaEdw-00"; + "Own"; + "Small"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmaRau-00"; + "Own"; + "Smandek"; + "Raul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiA-00"; + "Own"; + "Smith"; + "A.L."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiAde-00"; + "Own"; + "Smith"; + "Adele Smith (born Owles; stage name Adele Dewey)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiAub-00"; + "Own"; + "Smith"; + "Aubrey"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiCha-00"; + "Own"; + "Smith"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiFra-00"; + "Own"; + "Smith"; + "Frazer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiMam-00"; + "Own"; + "Smith"; + "Mamie Smith"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SmiSol-00"; + "Own"; + "Smith"; + "Sol"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SniLeo-3003"; + "Own"; + ""; + "Sniegoff"; + "Leonid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SobFlo-00"; + "Own"; + "Sobieniowski"; + "Florian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Sol-00"; + "Own"; + "Solomon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SonHen-00"; + "Own"; + "Sontag"; + "Henriette Sontag"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SorCéc-00"; + "Own"; + "Sorel"; + "Cécile"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SorEze-00"; + "Soria"; + "Ezequiel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouAnt-00"; + "Own"; + "Souza"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouAra-00"; + "Own"; + "Southesk"; + "Arabella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouGab-00"; + "Own"; + "Soulacroix"; + "Gabriel-Valentin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouGil-00"; + "Own"; + "Souto"; + "Gilberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouJoa-00"; + "Own"; + "de Souza"; + "Joaquim Augusto Ribeiro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SouPer-00"; + "Own"; + "Souza"; + "Pereira"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SpoHil-00"; + "Own"; + "Spong"; + "Hilda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StaAde-00"; + "Own"; + "Stanhope"; + "Adelina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StaGis-00"; + "Own"; + "Staudigl"; + "Gisela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StaGuy-00"; + "Own"; + "Standing"; + "Guy"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StaIrv-00"; + "Own"; + "Starr"; + "Irving"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StaLau-00"; + "Own"; + "Stallings"; + "Laurence"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Ste-00"; + "Own"; + "Steward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteAnt-00"; + "Own"; + "Sterling"; + "Antoinette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteCar-00"; + "Own"; + "Steinmann-Lampe"; + "Caroline"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteCar-01"; + "Steinheim"; + "Carl"; + "male" . + + a ; + "SteCec-00"; + "Own"; + "Steiner"; + "Cecília"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteHan-00"; + "Sternberg"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteHno-00"; + "Own"; + "Stevanovich"; + "Hnos."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteMr.-00"; + "Own"; + "Stevenson"; + "Mr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteMrs-00"; + "Own"; + "Stephens"; + "Mrs."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteRob-00"; + "Own"; + "Stevenson"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteSpe-00"; + "Own"; + "Steavenson"; + "Speaker"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteWil-01"; + "Stewart"; + "William Morris "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StiEdw-00"; + "Own"; + "Stirling"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StiGio-00"; + "Own"; + "Stigelli"; + "Giorgio Stigelli"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StiMax-00"; + "Stirner"; + "Max"; + "male" . + + a ; + "Sto-00"; + "Own"; + "Stout "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StoRob-00"; + "Stolz"; + "Robert"; + "male" . + + a ; + "StoSte-00"; + "Own"; + "Stocker"; + "Stefan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Str-00"; + "Own"; + "Streich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StrAgn-00"; + "Straub"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StrIgo-00"; + "Own"; + "Stravinsky"; + "Igor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StrOsc-00"; + "Straus"; + "Oscar"; + "male" . + + a ; + "StuFra-01"; + "Own"; + "Stucken"; + "Frank van der Stucken"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StuJoh-00"; + "Own"; + "Sturges"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SulLud-00"; + "Sulkowski"; + "Prince Ludwig Johann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SusEnr-00"; + "Own"; + "Susini"; + "Enrique T."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SwaH.-00"; + "Own"; + "Swanson"; + "H."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SwiMrs-00"; + "Own"; + "Swinbourne"; + "Mrs."; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SypJul-00"; + "Own"; + "Sypniewski"; + "Julian"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SzyJóz-00"; + "Own"; + "Szymon"; + "Józef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TanHei-00"; + "von der Tann"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TasAle-00"; + "Own"; + "Taskin"; + "Alexandre"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TasLui-00"; + "Own"; + "Tasso"; + "Luisa "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TasVal-00"; + "Own"; + "Tassier"; + "Valentine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TauCur-00"; + "Own"; + "Taucher"; + "Curt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TauHar-00"; + "Taubmann"; + "Harold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TauJos-3698"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Taubers"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TauVis-00"; + "Own"; + "Taunay"; + "Visconde"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TavAfo-00"; + "Own"; + "Taveira"; + "Afonso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TayDou-00"; + "Own"; + "Taylor"; + "Douglas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TayMar-00"; + "Own"; + "Taylor"; + "Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TayTom-00"; + "Own"; + "Taylor"; + "Tom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TemFay-00"; + "Own"; + "Templeton"; + "Fay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TemJoh-00"; + "Own"; + "Templeton"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TerAnt-00"; + "Own"; + "Terry"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TesAng-00"; + "Own"; + "Tesada"; + "Ángela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThaHea-00"; + "Own"; + "Thatcher"; + "Heather"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "The-00"; + "Own"; + "Theodore"; + "Theodore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TheLou-00"; + "Own"; + "Thern"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThiBer-00"; + "Thierry"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoBes-770"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Thomashefsky"; + "Bessie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ThoCha-00"; + "Own"; + "Thorne"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoHen-00"; + "Own"; + "Thoreau"; + "Henry David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoThe-00"; + "Own"; + "Thomas"; + "Theodore Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThuEmm-00"; + "Own"; + "Thursby"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TicHow-00"; + "Own"; + "Ticknor"; + "Howard Malcom"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TitMor-3077"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Titelman"; + "Mordechai-Chaim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TolNeo-00"; + "Tolstoj"; + "Leo Nikolajewitsch"; + "male" . + + a ; + "TomBla-00"; + "Own"; + "Tomlin"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TorFra-00"; + "Own"; + "Torrens"; + "Francisco Marty y Torrens"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TorMad-00"; + "Own"; + "Tordeus"; + "Mademoseille"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TosArt-00"; + "Toscanini"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TraGeo-00"; + "Trafford Heald"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TraSop-00"; + "Own"; + "Traubmann"; + "Sophie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TreCon-00"; + "Own"; + "von Treue"; + "Consul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TreHer-00"; + "Own"; + "Tree"; + "Herbert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TsuMin-3112"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tsukerman"; + "Mindl"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TucLou-00"; + "Own"; + "Tuck"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TulJea-00"; + "Own"; + "Tulou"; + "Jean-Louis"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TurSer-00"; + "Own"; + "Turgenew"; + "Sergej"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "UllBer-00"; + "Own"; + "Ullmann)"; + "Bernardo Ullmann (Bernard Ullmann)"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "UniEdw-00"; + "Own"; + "Unitt"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "UrbGeo-00"; + "Own"; + "Urban"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "UrlJac-00"; + "Own"; + "Urlus"; + "Jacques"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "UtrMau-00"; + "Own"; + "Utrillo"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VKam-00"; + "Own"; + "V"; + "Kamehameha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VagRam-00"; + "Vagné"; + "Ramón"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ValEdu-00"; + "Own"; + "Valladares"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VanEli-00"; + "Own"; + "Vanda"; + "Elina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Vas-00"; + "Own"; + "Vasques "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VasLeo-00"; + "Own"; + "Vasseur"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VazMod-00"; + "Own"; + "Vázquez"; + "Modesto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VehLui-01"; + "Own"; + "Vehil"; + "Luisa"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VelMil-00"; + "Own"; + "Vela"; + "Milani"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerAlc-00"; + "Own"; + "Vermelho"; + "Alcyr"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerDr-00"; + "Own"; + "Veron"; + "Dr. Veron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerFra-00"; + "Verding"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerGeo-00"; + "Own"; + "Vernon"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerGiu-00"; + "Own"; + "Verdi"; + "Giuseppe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VerJan-00"; + "Own"; + "Vernon"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ViaLou-00"; + "Own"; + "Viardot"; + "Louis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VicAnt-00"; + "Vico"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VicEdu-00"; + "Own"; + "Victorino"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VidBla-00"; + "Own"; + "Vidal"; + "Blanca"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Vil-00"; + "Own"; + "Vila"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VilErn-00"; + "Own"; + "Vilches"; + "Ernesto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VilFra-00"; + "Own"; + "Villegas"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VilJos-00"; + "Own"; + "Villar"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VinBet-3187"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vinovits"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VinZor-3746"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Vinovitsh"; + "Zorakh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "VivAnt-00"; + "Own"; + "Vives"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WSol-00"; + "Own"; + "W."; + "Solomon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WacJos-733"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wachtel"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WagAlb-00"; + "Own"; + "Wagner"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WagCar-00"; + "Own"; + "Wagner"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WagCos-00"; + "Own"; + "Wagner"; + "Cosima"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WahCar-00"; + "Wahl"; + "Carolina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalBru-00"; + "Own"; + "Walter"; + "Bruno"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalCar-00"; + "Wallauer"; + "Carl"; + "male" . + + a ; + "WalCha-00"; + "Own"; + "Walcott"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalCla-00"; + "Own"; + "Walters"; + "Clara Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalEst-3203"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Wallerstein"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WalHar-00"; + "Walden"; + "Harry"; + "male" . + + a ; + "WalHen-00"; + "Own"; + "Waldschmidt"; + "Henriette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalJam-00"; + "Own"; + "Wallack"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalKar-00"; + "Walsers"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalLes-00"; + "Own"; + "Wallack"; + "Lester"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalR-00"; + "Own"; + "Walcot"; + "R. B."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WanWal-00"; + "Own"; + "Wanger"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarArt-00"; + "Own"; + "Ward"; + "Artemus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarCha-00"; + "Ware"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarCha-01"; + "Warwick"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarJac-00"; + "Own"; + "Warner"; + "Jack"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarJen-00"; + "Warren"; + "Jennifer" . + + a ; + "WarPau-00"; + "Warren"; + "Paul" . + + a ; + "WasGeo-00"; + "Washington Smith"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WasLew-00"; + "Own"; + "Wasserman"; + "Lew"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WatEth-00"; + "Own"; + "Waters"; + "Ethel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WatHen-00"; + "Own"; + "Waterhouse"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Web-00"; + "Own"; + "Captain Weber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WedFra-00"; + "Wedekind"; + "Frank"; + "male" . + + a ; + "WedPam-00"; + "Wedekind"; + "Pamela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WedTil-00"; + "Wedekind"; + "Tilly"; + "male" . + + a ; + "WegCar-00"; + "Wegner"; + "Caroline"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiJoh-00"; + "Own"; + "Weiss"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiLar-00"; + "Own"; + "Weingarten"; + "Larry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiMax-00"; + "Own"; + "Weinbrenn"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiRos-3745"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Weinstein"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WeiShau-00"; + "Own"; + "Weinstein"; + "Shaul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiThe-00"; + "Own"; + "Weinlig"; + "Theodor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiWih-00"; + "Own"; + "Weiss"; + "Wihelmina Beatrice \"Bess\""; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Wel-00"; + "Own"; + "Weld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WelF-00"; + "Own"; + "Weld"; + "F.A."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WemDav-00"; + "Wemyss Jobson"; + "David "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WemFra-00"; + "Own"; + "Wemyss"; + "Francis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WenAlm-00"; + "Own"; + "Wendorf"; + "Alma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WenFri-00"; + "Wendhausen"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WesFra-00"; + "Own"; + "Westphal"; + "Frank"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WesMat-00"; + "Own"; + "Wesendonck"; + "Mathilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WesOtt-00"; + "Own"; + "Wesendonck"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhaJam-00"; + "Own"; + "Whale"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WheJul-00"; + "Own"; + "Wheatley"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiJos-00"; + "Own"; + "White"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiMay-00"; + "Own"; + "Whitty"; + "May"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiPeg-00"; + "Own"; + "Whiffen"; + "Peggy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiRic-00"; + "Own"; + "White"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiSta-00"; + "Own"; + "White"; + "Stanford"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Wic-00"; + "Wichmann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WieEli-00"; + "Own"; + "Wiedermann"; + "Elise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WieW-00"; + "Own"; + "Wiesbaden"; + "W."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WikHen-00"; + "Own"; + "Wikoff"; + "Henry Wikoff"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Wil-00"; + "Own"; + "Willing"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilAle-00"; + "Own"; + "Wilson"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilCec-00"; + "Own"; + "William"; + "Cecil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilES-00"; + "Own"; + "Willard"; + "E.S. Willard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilEdu-00"; + "Wilde"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilEdw-00"; + "Willis"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilEli-00"; + "Wilkes"; + "Elizabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilGot-00"; + "Own"; + "William"; + "Gottfried"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilHen-00"; + "Own"; + "Willard"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilJoh-00"; + "Own"; + "Wild"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilOsc-00"; + "Own"; + "Wilde"; + "Oscar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilV-00"; + "Own"; + "Wills"; + "V."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WirAtt-00"; + "Own"; + "Wirt"; + "Attorney-General"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WitHen-00"; + "Own"; + "De Witt"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WitSta-00"; + "Own"; + "Witkiewicz"; + "Stanisław"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WodJam-00"; + "Own"; + "Wodehouse"; + "James Hay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WolHan-00"; + "Own"; + "Wolzogen"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WolHan-01"; + "Wolfradt"; + "Hanz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooAl-00"; + "Own"; + "Woods"; + "Al"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooC.-00"; + "Own"; + "Woolf"; + "C."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooGeo-00"; + "Own"; + "Wood"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooJam-00"; + "Own"; + "Woolf"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooMr.-00"; + "Own"; + "Woodhull"; + "Mr."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooSam-00"; + "Own"; + "Wood"; + "Sam"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooTho-00"; + "Own"; + "Wood"; + "Thorald"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WooYvo-00"; + "Own"; + "Wood"; + "Yvonne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WraFay-00"; + "Own"; + "Wray"; + "Fay"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WynJud-00"; + "Own"; + "Wyndier"; + "Judge"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WynJus-00"; + "Own"; + "Wyndier"; + "Justice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WysSta-00"; + "Own"; + "Wyspiański"; + "Stanisław"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "XauFer-00"; + "Own"; + "Xau"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "XinPan-00"; + "Own"; + "Xindavelonis"; + "Panayotis di Xindavelonis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YáñRub-00"; + "Yáñez"; + "Rubén"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YacZac-00"; + "Own"; + "Yaconelli"; + "Zaccarias"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YanJai-00"; + "Own"; + "Yankelevich"; + "Jaime"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YelJac-00"; + "Own"; + "Yellen"; + "Jack"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YorEli-00"; + "Own"; + "Yorke"; + "Eliot"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YouCla-3321"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Young"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "YouHar-00"; + "Own"; + "Young"; + "Harold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YouRol-00"; + "Own"; + "Young"; + "Roland"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "YsaEug-00"; + "Own"; + "Ysaye"; + "Eugène"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZölPhi-00"; + "Own"; + "Zöllner"; + "Philipp"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZalCar-00"; + "Zaldívar"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZamLui-00"; + "Own"; + "Zamorano"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZanMar-00"; + "Own"; + "Zandt"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZarNat-00"; + "Own"; + "Zaro"; + "Natividad"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZeyMax-3658"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zeygermakher"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZglPel-00"; + "Own"; + "Zgliczyńska"; + "Pelagia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZicMar-00"; + "Zickel"; + "Martin"; + "male" . + + a ; + "ZieCar-00"; + "Ziehrer"; + "Carl"; + "male" . + + a ; + "ZieEdw-00"; + "Ziegler"; + "Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZieMau-3390"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Ziegler"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZimEmm-00"; + "Own"; + "Zimmermann"; + "Emmy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZucReg-3759"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zuckerberg"; + "Regina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZukAdo-00"; + "Own"; + "Zukor"; + "Adolph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZylWol-00"; + "Zylbercweig"; + "Wolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "de Pie-00"; + "Own"; + "de Trabadello"; + "Pierre"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "vonRai-00"; + "Own"; + "von Zur Mühlen"; + "Raimund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "San Antonio de Areco"; + "South America"; + "Argentina"; + "AR-SAnt-00"; + "Buenos Aires"; + -3.425e1; + -5.94667e1; + "Q2501423" . + + a ; + "La Plata"; + "South America"; + "Argentina"; + "3432043"; + "ARG-Lapl-00"; + -3.49292e1; + -5.796e1; + "Q44059"; + "https://en.wikipedia.org/wiki/La_Plata" . + + a ; + "Olivos"; + "South America"; + "Argentina"; + "3430310"; + "ARG-Oliv-00"; + "Buenos Aires Province"; + -3.45e1; + -5.84833e1; + "Q1522402"; + "https://en.wikipedia.org/wiki/Olivos,_Buenos_Aires" . + + a ; + "Bad Ischl"; + "Europe"; + "Austria"; + "2782052"; + "AT-BadIschl-00"; + 4.77203e1; + 1.36333e1; + "Q250984"; + "https://en.wikipedia.org/wiki/Bad_Ischl" . + + a ; + "Bad Goisern"; + "Europe"; + "Austria"; + "2782055"; + "AT-Gois-00"; + 4.765e1; + 1.36167e1; + "Q252674"; + "https://en.wikipedia.org/wiki/Bad_Goisern_am_Hallst%C3%A4ttersee" . + + a ; + "St Pölten"; + "Europe"; + "Austria"; + "AT-StPolt-00"; + 4.82047e1; + 1.56267e1; + "Q82500" . + + a ; + "Weidling"; + "Europe"; + "Austria"; + "AT-Weid-00"; + "Statzendorf"; + 4.83081e1; + 1.56408e1; + "Q484858" . + + a ; + "Bendigo"; + "Australia"; + "Australia"; + "2176187"; + "AUS-Bendi-00"; + -3.675e1; + 1.44267e2; + "Q497793"; + "https://en.wikipedia.org/wiki/Bendigo" . + + a ; + "Hobart"; + "Australia"; + "Australia"; + "2163355"; + "AUS-Hob-00"; + -4.28667e1; + 1.47317e2; + "Q40191"; + "https://en.wikipedia.org/wiki/Hobart" . + + a ; + "Launceston"; + "Australia"; + "Australia"; + "2160517"; + "AUS-Launc-00"; + -4.14444e1; + 1.47138e2; + "Q339527"; + "https://en.wikipedia.org/wiki/Launceston,_Tasmania" . + + a ; + "Mackay"; + "Australia"; + "Australia"; + "AUS-Macky-00"; + "Queensland"; + -2.11333e1; + 1.49183e2; + "Q704371" . + + a ; + "Maryborough"; + "Australia"; + "Australia"; + "AUS-Maryb-00"; + "Queensland"; + -2.55333e1; + 1.527e2; + "Q377975" . + + a ; + "Port Darwin"; + "Australia"; + "Australia"; + "AUS-PortDarw-00"; + -1.24942e1; + 1.30822e2; + "Q22330172" . + + a ; + "Rockhampton"; + "Australia"; + "Australia"; + "AUS-Rockh-00"; + "Queensland"; + -2.33667e1; + 1.505e2; + "Q606162" . + + a ; + "South America"; + "Brazil"; + "3471168"; + "BR-Bahia-00"; + "Bahia"; + -1.25e1; + -4.169e1; + "Q40430"; + "https://en.wikipedia.org/wiki/Bahia" . + + a ; + "Petrópolis"; + "South America"; + "Brazil"; + "3454031"; + "BR-Petro-00"; + -2.25125e1; + -4.31983e1; + "Q189043"; + "https://en.wikipedia.org/wiki/Petr%C3%B3polis" . + + a ; + "Zhuki"; + "Europe"; + "Belarus"; + "BY-Zhuk-00"; + 5.34489e1; + 2.34342e1; + "Q13133344" . + + a ; + "Mazyr"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-107"; + 5.205e1; + 2.92333e1; + "Q386487"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Svieržań"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-117"; + 5.31322e1; + 3.03181e1; + "Q4410179"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Liubań"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-62"; + 5.28e1; + 2.79944e1; + "Q200991"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Babruysk"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-69"; + 5.315e1; + 2.92333e1; + "Q207294"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Pahost"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-77"; + 5.38478e1; + 2.91486e1; + "Q21579777"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Europe"; + "Bukow-00"; + "Bukowina"; + 4.82e1; + 2.59e1; + "Q105206" . + + a ; + "London"; + "North America"; + "Canada"; + "CA-Lond-00"; + "Ontario"; + 4.29675e1; + -8.12325e1; + "Q92561" . + + a ; + "North America"; + "Canada"; + "6093943"; + "CA-Ontario-00"; + "Ontario"; + 4.925e1; + -8.45e1; + "Q1904"; + "https://en.wikipedia.org/wiki/Ontario" . + + a ; + "Corsier-sur-Vevey"; + "Europe"; + "Switzerland"; + "7285567"; + "CH-CorsVev-00"; + 4.64667e1; + 6.85e0; + "Q57110"; + "https://en.wikipedia.org/wiki/Corsier-sur-Vevey" . + + a ; + "Lucerne"; + "Europe"; + "Switzerland"; + "2659811"; + "CH-Luc-00"; + 4.705e1; + 8.300000000000001e0; + "Q4191"; + "https://en.wikipedia.org/wiki/Lucerne" . + + a ; + "Rorschach"; + "Europe"; + "Switzerland"; + "2658969"; + "CH-Rohrsch-00"; + 4.74667e1; + 9.5e0; + "Q68250"; + "https://en.wikipedia.org/wiki/Rorschach,_Switzerland" . + + a ; + "Saint-Jean (Geneva)"; + "Europe"; + "Switzerland"; + "11789448"; + "CH-StJn-00"; + 4.6205e1; + 6.117e0; + "Q3462570"; + "https://fr.wikipedia.org/wiki/Saint-Jean_(Gen%C3%A8ve)" . + + a ; + "St. Moritz"; + "Europe"; + "Switzerland"; + "2658813"; + "CH-StMor-00"; + 4.64972e1; + 9.83778e0; + "Q68986"; + "https://en.wikipedia.org/wiki/St._Moritz" . + + a ; + "Tribschen (Lucerne)"; + "Europe"; + "Switzerland"; + "2658316"; + "CH-Zur-02"; + 4.70412e1; + 8.328150000000001e0; + "Q665288"; + "https://en.wikipedia.org/wiki/Tribschen" . + + a ; + "Asia"; + "China"; + "1814991"; + "CN-00"; + 3.5e1; + 1.05e2; + "Q148"; + "https://en.wikipedia.org/wiki/China" . + + a ; + "Europe"; + "Czech Republic"; + "3077311"; + "CZ-00"; + 4.975e1; + 1.55e1; + "Q33946"; + "https://en.wikipedia.org/wiki/Czech_Republic" . + + a ; + "Kaliště"; + "Europe"; + "Czech Republic"; + "3073982"; + "CZ-Bohe-00"; + "Bohemia"; + 4.95931e1; + 1.53042e1; + "Q999950"; + "https://en.wikipedia.org/wiki/Kali%C5%A1t%C4%9B_(Pelh%C5%99imov_District)" . + + a ; + "Ceské Budejovice"; + "Europe"; + "Czech Republic"; + "3077916"; + "CZ-Budweis-00"; + 4.89747e1; + 1.44747e1; + "Q16506"; + "https://en.wikipedia.org/wiki/%C4%8Cesk%C3%A9_Bud%C4%9Bjovice" . + + a ; + "Opava"; + "Europe"; + "Czech Republic"; + "3068927"; + "CZ-Trup-00"; + 4.99381e1; + 1.79044e1; + "Q156080"; + "https://en.wikipedia.org/wiki/Opava" . + + a ; + "St Helier"; + "Europe"; + "Channel Islands"; + "3042091"; + "Channel-StHel"; + "Jersey"; + 4.91903e1; + -2.10861e0; + "Q147738"; + "https://en.wikipedia.org/wiki/St_Helier" . + + a ; + "Simferopol"; + "Europe"; + "Ukraine"; + "693805"; + "Crim-Simf-00"; + 4.49519e1; + 3.41022e1; + "Q19566"; + "https://en.wikipedia.org/wiki/Simferopol" . + + a ; + "Norwich"; + "Europe"; + "England"; + "EN-Norw-00"; + 5.26286e1; + 1.29278e0; + "Q130191"; + "https://en.wikipedia.org/wiki/Norwich" . + + a ; + "Nottingham"; + "Europe"; + "England"; + "EN-Nottingh-00"; + 5.29561e1; + -1.1512e0; + "Q41262"; + "https://en.wikipedia.org/wiki/Nottingham" . + + a ; + "Worcester"; + "Europe"; + "England"; + "EN-Worce-00"; + 5.21911e1; + -2.22056e0; + "Q1646181"; + "https://en.wikipedia.org/wiki/Worcester,_England" . + + a ; + "Worthing"; + "Europe"; + "England"; + "EN-Worth-00"; + 5.08147e1; + -3.71389e-1; + "Q671348"; + "https://en.wikipedia.org/wiki/Worthing" . + + a ; + "York"; + "Europe"; + "England"; + "EN-York-00"; + "North Yorkshire"; + 5.396e1; + -1.08e0; + "Q42462"; + "https://en.wikipedia.org/wiki/York" . + + a ; + "Bilbao"; + "Europe"; + "Spain"; + "3128026"; + "ES-Bilb-00"; + 4.325e1; + -2.91667e0; + "Q8692"; + "https://en.wikipedia.org/wiki/Bilbao" . + + a ; + "Burgos"; + "Europe"; + "Spain"; + "ES-Burg-00"; + 4.23422e1; + -3.69889e0; + "Q9580" . + + a ; + "Cangas de Onís"; + "Europe"; + "Spain"; + "ES-CanOn-00"; + "Asturias"; + 4.33507e1; + -5.13126e0; + "Q225515" . + + a ; + "Caen"; + "Europe"; + "France"; + "3029241"; + "FR-Caen-00"; + 4.91822e1; + -3.70556e-1; + "Q41185"; + "https://en.wikipedia.org/wiki/Caen" . + + a ; + "Cannes"; + "Europe"; + "France"; + "3028808"; + "FR-Cans-00"; + 4.35513e1; + 7.0128e0; + "Q39984"; + "https://en.wikipedia.org/wiki/Cannes" . + + a ; + "Côte d’Azur"; + "Europe"; + "France"; + "FR-CotAz-00"; + 4.3e1; + 6.0e0; + "Q182822" . + + a ; + "Monte Carlo"; + "Europe"; + "France"; + "FR-MtCarlo-00"; + 4.37397e1; + 7.42722e0; + "Q45240"; + "https://en.wikipedia.org/wiki/Monte_Carlo" . + + a ; + "Newcastle"; + "Europe"; + "United Kingdom"; + "GB-NewCast-00"; + 5.49739e1; + -1.61333e0; + "Q57278"; + "https://en.wikipedia.org/wiki/Newcastle,_New_South_Wales" . + + a ; + "Bautzen"; + "Europe"; + "Germany"; + "2951881"; + "GER-Bautz-00"; + 5.11814e1; + 1.44242e1; + "Q14835"; + "https://en.wikipedia.org/wiki/Bautzen" . + + a ; + "Europe"; + "Germany"; + "2945356"; + "GER-Brand-00"; + "Brandenburg"; + 5.2459e1; + 1.30158e1; + "Q1208"; + "https://en.wikipedia.org/wiki/Brandenburg" . + + a ; + "Coburg"; + "Europe"; + "Germany"; + "2939951"; + "GER-Cob-00"; + "Bavaria"; + 5.02667e1; + 1.09667e1; + "Q14821"; + "https://en.wikipedia.org/wiki/Coburg" . + + a ; + "Frankfurt an der Oder"; + "Europa"; + "Germany"; + "GER-FrankfOd-00"; + 5.23421e1; + 1.45517e1; + "https://www.wikidata.org/wiki/Q4024"; + "https://de.wikipedia.org/wiki/Frankfurt_(Oder" . + + a ; + "Gotha"; + "Europe"; + "Germany"; + "2918752"; + "GER-Goth-00"; + "Thuringia"; + 5.09489e1; + 1.07183e1; + "Q6986"; + "https://en.wikipedia.org/wiki/Gotha" . + + a ; + "Grimma"; + "Europe"; + "Germany"; + "2917325"; + "GER-Grimm-00"; + 5.12383e1; + 1.2725e1; + "Q10780"; + "https://en.wikipedia.org/wiki/Grimma" . + + a ; + "Heidelberg"; + "Europe"; + "Germany"; + "2907911"; + "GER-Heidelb-00"; + 4.94167e1; + 8.716670000000001e0; + "Q2966"; + "https://en.wikipedia.org/wiki/Heidelberg" . + + a ; + "Koblenz"; + "Europe"; + "Germany"; + "2886946"; + "GER-Kobl-00"; + 5.03597e1; + 7.59778e0; + "Q3104"; + "https://en.wikipedia.org/wiki/Koblenz" . + + a ; + "Lindau"; + "Europe"; + "Germany"; + "GER-Lind-00"; + "Bodensee"; + 4.75458e1; + 9.68389e0; + "Q153969"; + "https://de.wikipedia.org/wiki/Lindau_(Bodensee)" . + + a ; + "Walluf"; + "Europe"; + "Germany"; + "3208134"; + "GER-Niederw-00"; + "Hessen"; + 5.00348e1; + 8.159560000000001e0; + "Q634161"; + "https://en.wikipedia.org/wiki/Walluf" . + + a ; + "Oldenburg"; + "Europe"; + "Germany"; + "2857458"; + "GER-Oldb-00"; + 5.31439e1; + 8.213889999999999e0; + "Q2936"; + "https://en.wikipedia.org/wiki/Oldenburg_(city)" . + + a ; + "Sigmaringen"; + "Europe"; + "Germany"; + "2832232"; + "GER-Sigm-00"; + 4.80867e1; + 9.216390000000001e0; + "Q82858"; + "https://en.wikipedia.org/wiki/Sigmaringen" . + + a ; + "Sindelfingen"; + "Europe"; + "Germany"; + "2831948"; + "GER-Sindlf-00"; + 4.87133e1; + 9.00278e0; + "Q4019"; + "https://en.wikipedia.org/wiki/Sindelfingen" . + + a ; + "Sondershausen"; + "Europe"; + "Germany"; + "2831276"; + "GER-Sondh-00"; + 5.13708e1; + 1.08722e1; + "Q517407"; + "https://en.wikipedia.org/wiki/Sondershausen" . + + a ; + "Biebrich (Wiesbaden)"; + "Europe"; + "Germany"; + "2949235"; + "GER-Wiesb-01"; + 5.005e1; + 8.23333e0; + "Q656680"; + "https://en.wikipedia.org/wiki/Biebrich_(Wiesbaden)" . + + a ; + "Andros"; + "Europe"; + "Greece"; + "265039"; + "GR-Andr-00"; + 3.78513e1; + 2.48751e1; + "Q175741"; + "https://en.wikipedia.org/wiki/Andros" . + + a ; + "Beverungen"; + "Europe"; + "Germany"; + "2949475"; + "GR-Bever-00"; + 5.16622e1; + 9.372339999999999e0; + "Q242098"; + "https://en.wikipedia.org/wiki/Beverungen" . + + a ; + "Győr"; + "Europe"; + "Hungary"; + "3052009"; + "HU-Gyo-00"; + 4.76842e1; + 1.76344e1; + "Q134494"; + "https://en.wikipedia.org/wiki/Gy%C5%91r" . + + a ; + "Mosonmagyaróvár"; + "Europe"; + "Hungary"; + "3047896"; + "HU-Moson-00"; + 4.78737e1; + 1.72687e1; + "Q207406"; + "https://en.wikipedia.org/wiki/Mosonmagyar%C3%B3v%C3%A1r" . + + a ; + "Šarišské Lúky"; + "Europe"; + "Slovakia"; + "723651"; + "HU-Seb-00"; + "Prešov"; + 4.90159e1; + 2.12626e1; + "Q1286598"; + "https://sk.wikipedia.org/wiki/%C5%A0ari%C5%A1sk%C3%A9_L%C3%BAky_(%C4%BDubotice)" . + + a ; + "Asia"; + "Indonesia"; + "1643084"; + "IDN-00"; + 5.0e0; + 1.2e2; + "Q252"; + "https://en.wikipedia.org/wiki/Indonesia" . + + a ; + "Java"; + "Asia"; + "Indonesia"; + "1642673"; + "IDN-Java-00"; + -7.5e0; + 1.1125e2; + "Q3757"; + "https://en.wikipedia.org/wiki/Java" . + + a ; + "Belfast"; + "Europe"; + "Northern Ireland (UK)"; + "2655984"; + "IE-Belf-00"; + 5.45964e1; + -5.93e0; + "Q10686"; + "https://en.wikipedia.org/wiki/Belfast" . + + a ; + "Limerick"; + "Europe"; + "Ireland"; + "IE-Lime-00"; + 5.26653e1; + -8.623799999999999e0; + "Q133315"; + "https://en.wikipedia.org/wiki/Limerick" . + + a ; + "Danapur"; + "East Asia"; + "India"; + "IN-Danap-00"; + 2.56333e1; + 8.505e1; + "Q1266998"; + "https://de.wikipedia.org/wiki/Danapur" . + + a ; + "Ancona"; + "Europe"; + "Italy"; + "3183089"; + "IT-Ancona-00"; + 4.36167e1; + 1.35167e1; + "Q3415"; + "https://en.wikipedia.org/wiki/Ancona" . + + a ; + "Bergamo"; + "Europe"; + "Italy"; + "3182164"; + "IT-Bergam-00"; + 4.5695e1; + 9.67e0; + "Q628"; + "https://en.wikipedia.org/wiki/Bergamo" . + + a ; + "Casale Monferrato"; + "Europe"; + "Italy"; + "3180208"; + "IT-CasMon-00"; + 4.51333e1; + 8.449999999999999e0; + "Q16333"; + "https://en.wikipedia.org/wiki/Casale_Monferrato" . + + a ; + "Chieti"; + "Europe"; + "Italy"; + "3178796"; + "IT-Chieti-00"; + "Abruzzo"; + 4.235e1; + 1.41667e1; + "Q13138"; + "https://en.wikipedia.org/wiki/Chieti" . + + a ; + "Como"; + "Europe"; + "Italy"; + "3178229"; + "IT-Como-00"; + "Lombardy"; + 4.58167e1; + 9.08333e0; + "Q1308"; + "https://en.wikipedia.org/wiki/Como" . + + a ; + "Mantua"; + "Europe"; + "Italy"; + "3174051"; + "IT-Mant-00"; + 4.51564e1; + 1.07917e1; + "Q6247"; + "https://en.wikipedia.org/wiki/Mantua" . + + a ; + "Modena"; + "Europe"; + "Italy"; + "3173331"; + "IT-Modena-00"; + 4.46461e1; + 1.09258e1; + "Q279"; + "https://en.wikipedia.org/wiki/Modena" . + + a ; + "Pescara"; + "Europe"; + "Italy"; + "3171168"; + "IT-Pesca-00"; + 4.24667e1; + 1.42167e1; + "Q2704"; + "https://en.wikipedia.org/wiki/Pescara" . + + a ; + "Piedimonte Matese"; + "Europe"; + "Italy"; + "IT-PiedM-00"; + 4.135e1; + 1.435e1; + "Q58749" . + + a ; + "Europe"; + "Italy"; + "3165361"; + "IT-Tosc-00"; + "Tuscany"; + 4.335e1; + 1.10167e1; + "Q1273"; + "https://en.wikipedia.org/wiki/Tuscany" . + + a ; + "Asia"; + "Japan"; + "1861060"; + "JPN-00"; + 3.6e1; + 1.38e2; + "Q17"; + "https://en.wikipedia.org/wiki/Japan" . + + a ; + "Šeduva"; + "Europe"; + "Lithuania"; + "Lit-DiJeSt-82"; + 5.57667e1; + 2.375e1; + "Q2356396"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Yangon"; + "Asia"; + "Myanmar"; + "1298824"; + "MM-Yang-00"; + 1.6795e1; + 9.616e1; + "Q37995"; + "https://en.wikipedia.org/wiki/Yangon" . + + a ; + "The Hague"; + "Europe"; + "Netherlands"; + "2747373"; + "NL-DHaag-00"; + 5.20842e1; + 4.3175e0; + "Q36600"; + "https://en.wikipedia.org/wiki/The_Hague" . + + a ; + "Nelson"; + "Oceania"; + "New Zealand"; + "2186280"; + "NZ-Nels-00"; + -4.12708e1; + 1.73284e2; + "Q206687"; + "https://en.wikipedia.org/wiki/Nelson,_New_Zealand" . + + a ; + "Wanganui"; + "Oceania"; + "New Zealand"; + "NZ-Wang-00"; + -3.99303e1; + 1.75048e2; + "Q1015672" . + + a ; + "Lima"; + "South America"; + "Peru"; + "3936456"; + "PE-Lima-00"; + -1.2035e1; + -7.701860000000001e1; + "Q2868"; + "https://en.wikipedia.org/wiki/Lima" . + + a ; + "Gdansk"; + "Europe"; + "Poland"; + "3099434"; + "PL-Danz-00"; + 5.43667e1; + 1.86333e1; + "Q1792"; + "https://en.wikipedia.org/wiki/Gda%C5%84sk" . + + a ; + "Podgórze (Kraków)"; + "Europe"; + "Poland"; + "3088694"; + "PL-Podg-00"; + 5.00417e1; + 1.99833e1; + "Q9248440"; + "https://en.wikipedia.org/wiki/Podg%C3%B3rze" . + + a ; + "Poznań"; + "Europe"; + "Poland"; + "3088171"; + "PL-Pozn-00"; + 5.24083e1; + 1.69336e1; + "Q268"; + "https://en.wikipedia.org/wiki/Pozna%C5%84" . + + a ; + "Coimbra"; + "Europe"; + "Portugal"; + "2740637"; + "PT-Coimb-00"; + 4.025e1; + -8.449999999999999e0; + "Q45412"; + "https://en.wikipedia.org/wiki/Coimbra" . + + a ; + "Lublin"; + "Europe"; + "Poland"; + "Pol-DiJeSt-105"; + 5.125e1; + 2.25667e1; + "Q37333"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Radzyń Podlaski"; + "Europe"; + "Poland"; + "Pol-DiJeSt-150"; + 5.17833e1; + 2.26167e1; + "Q983866"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kutno"; + "Europe"; + "Poland"; + "Pol-DiJeSt-65"; + 5.22333e1; + 1.93667e1; + "Q202160"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Nowy Dwór"; + "Europe"; + "Poland"; + "Pol-DiJeSt-7"; + 5.37214e1; + 1.88725e1; + "Q11793839"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Suwałki"; + "Europe"; + "Poland"; + "Pol-DiJeSt-83"; + 5.41e1; + 2.29333e1; + "Q236083"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Europe"; + "Russia"; + "11961345"; + "RU-Sib-00"; + "Siberia"; + 6.1e1; + 1.05e2; + "Q5428"; + "https://en.m.wikipedia.org/wiki/Siberia" . + + a ; + "Yalta"; + "Europe"; + "Ukraine"; + "688533"; + "RU-Yal-00"; + 4.44994e1; + 3.417e1; + "Q128499"; + "https://en.wikipedia.org/wiki/Yalta" . + + a ; + "Adjud"; + "Europe"; + "Romania"; + "Rom-DiJeSt-102"; + 4.61e1; + 2.71797e1; + "Q357784"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Ploiești"; + "Europe"; + "Romania"; + "Rom-DiJeSt-45"; + 4.49411e1; + 2.60225e1; + "Q179585"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Fălticeni"; + "Europe"; + "Romania"; + "Rom-DiJeSt-92"; + 4.74625e1; + 2.63e1; + "Q303015"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Saratov"; + "Europe"; + "Russia"; + "Rus-DiJeSt-127"; + 5.153e1; + 4.6035e1; + "Q5332"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Alexandrovsk"; + "Europe"; + "Russia"; + "Rus-DiJeSt-3"; + 5.91667e1; + 5.75833e1; + "Q103390"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Oslo"; + "Europe"; + "Norway"; + "3143244"; + "SE-Oslo-00"; + 5.991e1; + 1.075e1; + "Q585"; + "https://en.wikipedia.org/wiki/Oslo" . + + a ; + "Hlohovec"; + "Europe"; + "Slovakia"; + "3060095"; + "SK-Hlo-00"; + 4.84311e1; + 1.78031e1; + "Q754773"; + "https://de.wikipedia.org/wiki/Hlohovec" . + + a ; + "Liptovský Mikuláš"; + "Europe"; + "Slovakia"; + "3059050"; + "SK-Lipt-00"; + 4.90842e1; + 1.96022e1; + "Q272040"; + "https://en.wikipedia.org/wiki/Liptovsk%C3%BD_Mikul%C3%A1%C5%A1" . + + a ; + "Sri Lanka"; + "Asia"; + "Sri Lanka"; + "1227603"; + "SriLanka-00"; + 7.0e0; + 8.1e1; + "Q854"; + "https://en.wikipedia.org/wiki/Sri_Lanka" . + + a ; + "Asia"; + "Turkey"; + "TR-00"; + 3.91667e1; + 3.56667e1; + "Q43" . + + a ; + "Iwano-Frankiwsk"; + "Europe"; + "Ukraine"; + "UA-Iwa-00"; + 4.89228e1; + 2.47106e1; + "Q178269" . + + a ; + "Tulchyn"; + "Europe"; + "Ukraine"; + "UA-Tulch-00"; + 4.86744e1; + 2.88497e1; + "Q997568"; + "https://en.wikipedia.org/wiki/Tulchyn" . + + a ; + "Vyshnivchyk"; + "Europe"; + "Ukraine"; + "689501"; + "UA-Wis-00"; + 4.92289e1; + 2.53686e1; + "Q4112760"; + "https://en.wikipedia.org/wiki/Vyshnivchyk" . + + a ; + "Frankfort"; + "North America"; + "USA"; + "UAS-Frank-00"; + "Kentucky"; + 3.82e1; + -8.486669999999999e1; + "Q28603" . + + a ; + "Craig-y-Nos"; + "Europe"; + "Wales (UK)"; + "2634894"; + "UK-Craigy-00"; + 5.1825e1; + -3.68417e0; + "Q5180663"; + "https://en.wikipedia.org/wiki/Craig-y-Nos_Castle" . + + a ; + "Durham"; + "Europe"; + "United Kingdom"; + "UK-Durh-00"; + 5.47774e1; + -1.576e0; + "Q179815"; + "https://de.wikipedia.org/wiki/Durham" . + + a ; + "Hertford"; + "Europe"; + "England (UK)"; + "2647044"; + "UK-Hertf-00"; + 5.17961e1; + -7.8889e-2; + "Q9681"; + "https://en.wikipedia.org/wiki/Hertford" . + + a ; + "Huyton"; + "Europa"; + "United Kingdom"; + "UK-Huyt-00"; + 5.34125e1; + -2.83889e0; + "https://www.wikidata.org/wiki/Q1639484"; + "https://en.wikipedia.org/wiki/Huyton" . + + a ; + "Malvern"; + "Europe"; + "England (UK)"; + "2648063"; + "UK-Malv-00"; + "Worcestershire"; + 5.2118e1; + -2.325e0; + "Q1004173"; + "https://en.wikipedia.org/wiki/Great_Malvern" . + + a ; + "South America"; + "Uruguay"; + "3439705"; + "URY-00"; + -3.27333e1; + -5.665e1; + "Q77"; + "https://en.wikipedia.org/wiki/Uruguay" . + + a ; + "Anaheim"; + "North America"; + "USA"; + "USA-Anah-00"; + "California"; + 3.38347e1; + -1.17909e2; + "Q49247" . + + a ; + "Aspen"; + "North America"; + "USA"; + "USA-Asp-00"; + "Colorado"; + 3.91922e1; + -1.06824e2; + "Q205842" . + + a ; + "Auburn"; + "North America"; + "USA"; + "USA-AubNY-00"; + "New York"; + 4.29337e1; + -7.65673e1; + "Q225519" . + + a ; + "Billings"; + "North America"; + "USA"; + "5640350"; + "USA-Bill-00"; + "Montana"; + 4.57836e1; + -1.08506e2; + "Q166304"; + "https://en.wikipedia.org/wiki/Billings,_Montana" . + + a ; + "Bozeman"; + "North America"; + "USA"; + "5641727"; + "USA-Bozem-00"; + "Montana"; + 4.56794e1; + -1.11037e2; + "Q569678"; + "https://en.wikipedia.org/wiki/Bozeman,_Montana" . + + a ; + "Canton"; + "North America"; + "USA"; + "5149222"; + "USA-Cant-00"; + "Ohio"; + 4.08077e1; + -8.13955e1; + "Q491239"; + "https://en.wikipedia.org/wiki/Canton,_Ohio" . + + a ; + "Cheyenne"; + "North America"; + "USA"; + "USA-Chey-00"; + "Wyoming"; + 4.11455e1; + -1.04802e2; + "Q39042" . + + a ; + "Council Bluffs"; + "North America"; + "USA"; + "USA-CoBlu-00"; + "Iowa"; + 4.12536e1; + -9.58625e1; + "Q695565" . + + a ; + "Dallas"; + "North America"; + "USA"; + "4684888"; + "USA-Dall-00"; + "Texas"; + 3.27831e1; + -9.680670000000001e1; + "Q16557"; + "https://en.wikipedia.org/wiki/Dallas" . + + a ; + "Dutch Flat"; + "North America"; + "USA"; + "5344402"; + "USA-DutchFlat-00"; + "California"; + 3.92061e1; + -1.20838e2; + "Q650179"; + "https://en.wikipedia.org/wiki/Dutch_Flat,_California" . + + a ; + "Fort Smith"; + "North America"; + "USA"; + "USA-FSm-00"; + "Arkansas"; + 3.53789e1; + -9.439749999999999e1; + "Q79535" . + + a ; + "Fall River"; + "North America"; + "USA"; + "USA-FallRv-00"; + "Massachusetts"; + 4.17014e1; + -7.115560000000001e1; + "Q49194" . + + a ; + "Grass Valley"; + "North America"; + "USA"; + "USA-GrVall-00"; + "California"; + 3.92192e1; + -1.21058e2; + "Q834337"; + "https://en.wikipedia.org/wiki/Grass_Valley,_California" . + + a ; + "Great Falls"; + "North America"; + "USA"; + "5655240"; + "USA-GreFal-00"; + "Montana"; + 4.74916e1; + -1.11289e2; + "Q466190"; + "https://en.wikipedia.org/wiki/Great_Falls,_Montana" . + + a ; + "Highland"; + "North America"; + "USA"; + "4240679"; + "USA-High-00"; + "Illinois"; + 3.87438e1; + -8.96772e1; + "Q576279"; + "https://en.wikipedia.org/wiki/Highland,_Illinois" . + + a ; + "Holyoke"; + "North America"; + "USA"; + "USA-Holyo-00"; + "Massachusetts"; + 4.22042e1; + -7.261669999999999e1; + "Q1637790" . + + a ; + "Huntington"; + "North America"; + "USA"; + "4809537"; + "USA-Huntin-00"; + "West Virginia"; + 3.84192e1; + -8.24451e1; + "Q241808"; + "https://en.wikipedia.org/wiki/Huntington,_West_Virginia" . + + a ; + "Jacksonville"; + "North America"; + "USA"; + "4241704"; + "USA-JackVil-00"; + "Illinois"; + 3.97291e1; + -9.02316e1; + "Q577853"; + "https://en.wikipedia.org/wiki/Jacksonville,_Illinois" . + + a ; + "Jackson "; + "North America"; + "USA"; + "USA-Jacks-00"; + "Mississippi"; + 3.22999e1; + -9.01841e1; + "Q28198" . + + a ; + "Jamaica"; + "North America"; + "USA"; + "3489940"; + "USA-Jamaica-00"; + 1.818e1; + -7.740000000000001e1; + "Q766"; + "https://en.wikipedia.org/wiki/Jamaica" . + + a ; + "Janesville"; + "North America"; + "USA"; + "USA-Janes-00"; + "Wisconsin"; + 4.26839e1; + -8.90164e1; + "Q257536" . + + a ; + "Johnstown"; + "North America"; + "USA"; + "USA-Johnst-00"; + "Pennsylvania"; + 4.03228e1; + -7.89208e1; + "Q1070763" . + + a ; + "Kearney"; + "North America"; + "USA"; + "USA-Kearn-00"; + "Nebraska"; + 4.07008e1; + -9.908110000000001e1; + "Q846044" . + + a ; + "Kingston"; + "North America"; + "USA"; + "USA-Kings-00"; + "New York"; + 4.19295e1; + -7.399679999999999e1; + "Q868660" . + + a ; + "Knoxville"; + "North America"; + "USA"; + "USA-Knox-00"; + "Tennessee"; + 3.59728e1; + -8.39422e1; + "Q185582" . + + a ; + "Lansing"; + "North America"; + "USA"; + "USA-Lans-00"; + "Michigan"; + 4.27142e1; + -8.456e1; + "Q28237" . + + a ; + "Leavenworth"; + "North America"; + "USA"; + "USA-LeavK-00"; + "Kansas"; + 3.93228e1; + -9.49242e1; + "Q1762867"; + "https://en.wikipedia.org/wiki/Leavenworth,_Kansas" . + + a ; + "Lima"; + "North America"; + "USA"; + "5160783"; + "USA-Lima-00"; + "Ohio"; + 4.07463e1; + -8.41233e1; + "Q983974"; + "https://en.wikipedia.org/wiki/Lima,_Ohio" . + + a ; + "Melrose"; + "North America"; + "USA"; + "4943677"; + "USA-MA-02"; + "Massachusetts"; + 4.24583e1; + -7.10667e1; + "Q54143"; + "https://en.wikipedia.org/wiki/Melrose,_Massachusetts" . + + a ; + "Manchester"; + "North America"; + "USA"; + "USA-Manch-00"; + "New Hampshire"; + 4.29908e1; + -7.14636e1; + "Q48370" . + + a ; + "Medford"; + "North America"; + "USA"; + "5262475"; + "USA-Medf-00"; + "Wisconsin"; + 4.51381e1; + -9.034529999999999e1; + "Q531515"; + "https://en.wikipedia.org/wiki/Medford,_Wisconsin" . + + a ; + "Meriden"; + "North America"; + "USA"; + "USA-Merid-00"; + "Connecticut"; + 4.15367e1; + -7.279470000000001e1; + "Q54220" . + + a ; + "Muncie"; + "North America"; + "USA"; + "USA-Munc-00"; + "Indiana"; + 4.01932e1; + -8.53882e1; + "Q932981" . + + a ; + "North America"; + "USA"; + "5509151"; + "USA-Nevada-00"; + "Nevada"; + 3.9e1; + -1.17e2; + "Q1227"; + "https://en.wikipedia.org/wiki/Nevada" . + + a ; + "Newport"; + "North America"; + "USA"; + "USA-Newp-00"; + "Rhode Island"; + 4.149e1; + -7.131310000000001e1; + "Q54264" . + + a ; + "Niagara Falls"; + "North America"; + "USA"; + "5128723"; + "USA-Niag-00"; + "New York"; + 4.31e1; + -7.90166e1; + "Q128133"; + "https://en.wikipedia.org/wiki/Niagara_Falls,_New_York" . + + a ; + "Ogdensburg"; + "North America"; + "USA"; + "USA-OgdNY-00"; + "New York"; + 4.47088e1; + -7.54718e1; + "Q684406"; + "https://en.wikipedia.org/wiki/Ogdensburg,_New_York" . + + a ; + "Oil City"; + "North America"; + "USA"; + "USA-OilC-00"; + "Pennsylvania"; + 4.14283e1; + -7.97072e1; + "Q1184941" . + + a ; + "Orange County"; + "North America"; + "USA"; + "USA-Orange-00"; + "California"; + 3.38031e1; + -1.17832e2; + "Q5925" . + + a ; + "North America"; + "USA"; + "5744337"; + "USA-Oregon-00"; + "Oregon"; + 4.39358e1; + -1.20575e2; + "Q824"; + "https://en.wikipedia.org/wiki/Oregon" . + + a ; + "Paterson"; + "North America"; + "USA"; + "5102466"; + "USA-Paters-00"; + "New Jersey"; + 4.09156e1; + -7.41631e1; + "Q138391"; + "https://en.wikipedia.org/wiki/Paterson,_New_Jersey" . + + a ; + "Pensacola"; + "North America"; + "USA"; + "4168228"; + "USA-Pens-00"; + "Florida"; + 3.04213e1; + -8.721720000000001e1; + "Q486306"; + "https://en.wikipedia.org/wiki/Pensacola,_Florida" . + + a ; + "Redlands"; + "North America"; + "USA"; + "5386754"; + "USA-Redla-00"; + "California"; + 3.40547e1; + -1.17183e2; + "Q753830"; + "https://en.wikipedia.org/wiki/Redlands,_California" . + + a ; + "Sidney"; + "North America"; + "USA"; + "5699552"; + "USA-Sid-00"; + "Nebraska"; + 4.11394e1; + -1.02978e2; + "Q966516"; + "https://en.wikipedia.org/wiki/Sidney,_Nebraska" . + + a ; + "Silver City"; + "North America"; + "USA"; + "5491487"; + "USA-SilverCity-00"; + "New Mexico"; + 3.27781e1; + -1.08274e2; + "Q985526"; + "https://en.wikipedia.org/wiki/Silver_City,_New_Mexico" . + + a ; + "Springfield"; + "North America"; + "USA"; + "USA-SpringM-00"; + "Missouri"; + 3.7195e1; + -9.32861e1; + "Q135615"; + "https://en.wikipedia.org/wiki/Springfield,_Missouri" . + + a ; + "Streator"; + "North America"; + "USA"; + "4912698"; + "USA-Streat-00"; + "Illinois"; + 4.11244e1; + -8.88297e1; + "Q577816"; + "https://en.wikipedia.org/wiki/Streator,_Illinois" . + + a ; + "North America"; + "USA"; + "USA-Texas-00"; + "Texas"; + 3.16667e1; + -9.945e1; + "Q2884818" . + + a ; + "Truckee"; + "North America"; + "USA"; + "5403676"; + "USA-Truck-00"; + "California"; + 3.93422e1; + -1.20204e2; + "Q506402"; + "https://en.wikipedia.org/wiki/Truckee,_California" . + + a ; + "West Orange"; + "North America"; + "USA"; + "5106298"; + "USA-WOra-00"; + "New Jersey"; + 4.07886e1; + -7.425530000000001e1; + "Q932601"; + "https://en.wikipedia.org/wiki/West_Orange,_New_Jersey" . + + a ; + "Waco"; + "North America"; + "USA"; + "4739526"; + "USA-Waco-00"; + "Texas"; + 3.15491e1; + -9.71472e1; + "Q128244"; + "https://en.wikipedia.org/wiki/Waco,_Texas" . + + a ; + "Williamsport"; + "North America"; + "USA"; + "USA-Willms-00"; + "Pennsylvania"; + 4.12442e1; + -7.70183e1; + "Q1016159" . + + a ; + "Youngstown"; + "North America"; + "USA"; + "USA-Youngst-00"; + "Ohio"; + 4.10964e1; + -8.064919999999999e1; + "Q216820" . + + a ; + "Sioux Falls"; + "North America"; + "USA"; + "USa-SiouF-00"; + "South Dakota"; + 4.35364e1; + -9.67317e1; + "Q131335" . + + a ; + "Hornostaipil"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-101"; + 5.10708e1; + 3.02522e1; + "Q3543790"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Brody"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-119"; + 5.00781e1; + 2.51542e1; + "Q465104"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kremenets"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-142"; + 5.01081e1; + 2.57275e1; + "Q849116"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Rivne"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-23"; + 5.06197e1; + 2.62514e1; + "Q156739"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Ternopil"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-24"; + 4.95667e1; + 2.56e1; + "Q156743"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Poltava"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-25"; + 4.95894e1; + 3.45514e1; + "Q156747"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Chernihiv"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-27"; + 5.14939e1; + 3.12947e1; + "Q157053"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kropyvnytskyi"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-30"; + 4.85036e1; + 3.22631e1; + "Q158292"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Feodosiia"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-31"; + 4.50489e1; + 3.53792e1; + "Q158491"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Uman"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-72"; + 4.875e1; + 3.02167e1; + "Q208499"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Ho Chi Minh City"; + "Asia"; + "Vietnam"; + "1566083"; + "VN-HCMC-00"; + 1.075e1; + 1.06667e2; + "Q1854"; + "https://en.wikipedia.org/wiki/Ho_Chi_Minh_City" . + + a ; + "Europe"; + "Yugoslavia"; + "YU-00"; + 4.48167e1; + 2.045e1; + "Q36704" . + + a ; + "Durban"; + "Africa"; + "South Africa"; + "1007311"; + "ZA-Durb-00"; + -2.98741e1; + 3.10102e1; + "Q5468"; + "https://en.wikipedia.org/wiki/Durban" . + + a ; + 102; + "Theatre"; + ""; + "Linzer Landestheater"; + . + + a ; + 103; + "Theatre"; + ""; + "Stadttheater Salzburg"; + . + + a ; + 1062; + "Theatre"; + ""; + "Turn Hall"; + . + + a ; + 112; + "Education (Theatre related)"; + ""; + "Max Reinhard´s acting school" . + + a ; + 1140; + "Theatre"; + ""; + "Opera House " . + + a ; + 115; + "Theatre"; + ""; + "Dresden Royal Opera House"; + . + + a ; + 1188; + "Company"; + ""; + "Pyne - Harrison company" . + + a ; + 119; + "Theatre"; + ""; + "Wiener Komische Oper (Ringtheater)"; + . + + a ; + 125; + "Theatre"; + ""; + "herzoglich-sächsisches Hoftheater" . + + a ; + 1263; + ""; + "Rochester" . + + a ; + 1269; + "Other"; + ""; + "Wood's Museum and Metropolitan" . + + a ; + 1272; + "Company"; + ""; + "Parepa Rosa company" . + + a ; + 1278; + "Company"; + ""; + "Howson English Opera Company/ Lingard´s company/Templeton and Co." . + + a ; + 1296; + ""; + "Gilder´s concerts" . + + a ; + 1302; + "Other"; + ""; + "Dr. Stone´s church" . + + a ; + 1308; + "Company"; + ""; + "Madison Square stock company" . + + a ; + 1370; + ""; + ""; + "Dalys Theatre" . + + a ; + 138; + "Theatre"; + ""; + "New Theatre Company" . + + a ; + 139; + "Theatre"; + ""; + "Teatro di Apollo in Rom"; + . + + a ; + 1395; + ""; + ""; + "New Amsterdam Theatre" . + + a ; + 140; + "Theatre"; + ""; + "Großherzogliches Hoftheater Karlsruhe"; + . + + a ; + 1430; + "Casino"; + ""; + "Casino Theatre" . + + a ; + 144; + "Musical Organization"; + ""; + "London Symphony Orchestra"; + . + + a ; + 1455; + ""; + "Phênix Dramática" . + + a ; + 148; + "Company"; + ""; + "Ben De Bar's Opera House company, St. Louis"; + . + + a ; + 1480; + ""; + "Politheama" . + + a ; + 150; + "Company"; + ""; + "Boston Museum Stock Company"; + . + + a ; + 1505; + "Theatre"; + ""; + "Teatro Recreio Dramático" . + + a ; + 1540; + "Company"; + ""; + "Orpheum Circuit" . + + a ; + 1660; + "Company"; + ""; + "Frohmans company" . + + a ; + 1670; + ""; + ""; + "Annie Russell Theatre" . + + a ; + 1690; + "Education (Theatre related)"; + ""; + "Lemberg Conservatory" . + + a ; + 1695; + "Education (Theatre related)"; + ""; + "Vienna Conservatory" . + + a ; + 171; + ""; + ""; + "Philharmonischer Verein" . + + a ; + 1725; + ""; + "London Palladium" . + + a ; + 1736; + "Company"; + ""; + "João Caetano’s theatre company " . + + a ; + 1766; + ""; + "Ginásio Dramático" . + + a ; + 1796; + "Theatre"; + ""; + "Teatro Phênix Dramática (old Teatro Eldorado)" . + + a ; + 181; + "Theatre"; + ""; + "Opernhaus Breslau"; + . + + a ; + 1816; + "Theatre"; + ""; + "Teatro Dom Pedro II" . + + a ; + 184; + "Theatre"; + ""; + "Hoftheater Altenburg"; + . + + a ; + 1996; + ""; + ""; + "Varieties Theatre" . + + a ; + 203; + ""; + ""; + "Wiener Hofburgtheater" . + + a ; + 2056; + "Company"; + ""; + "French Opera Bouffe" . + + a ; + 209; + "Theatre"; + ""; + "Damrosch German Opera" . + + a ; + 211; + "Theatre"; + ""; + "Italian Opera Company" . + + a ; + 214; + ""; + ""; + "Stadttheater Augsburg" . + + a ; + 2141; + ""; + "Grand Café Parisien: 5 billards"; + . + + a ; + 217; + ""; + ""; + "Deutsches Theater Budapest" . + + a ; + 2201; + "Theatre"; + ""; + "Teatro della Victoria"; + . + + a ; + 221; + ""; + ""; + "Thalia-Theater Graz" . + + a ; + 2345; + ""; + ""; + "New Theater" . + + a ; + 2350; + ""; + ""; + "Shubert Theater" . + + a ; + 2355; + ""; + ""; + "Shubert Theatre" . + + a ; + 2375; + ""; + ""; + "Century Theater" . + + a ; + 239; + ""; + "Paramount Pictures" . + + a ; + 2390; + ""; + "North American" . + + a ; + 250; + ""; + ""; + "Stadttheater Cologne" . + + a ; + 252; + ""; + "Frankfurter Schauspielhaus" . + + a ; + 253; + ""; + ""; + "Dresdner Hoftheater" . + + a ; + 2530; + "Theatre"; + ""; + "Instituto Nacional del Estudios del Teatro" . + + a ; + 254; + "Theatre"; + ""; + "Hoftheater Berlin" . + + a ; + 255; + "Theatre"; + ""; + "Hoftheater Mannheim" . + + a ; + 2575; + "Theatre"; + ""; + "Teatro Real" . + + a ; + 262; + "Theatre"; + ""; + "Olympia Theatre"; + . + + a ; + 2625; + ""; + "Argentinian Government"; + . + + a ; + 270; + "Circus"; + ""; + "Norwich theatrical circuit" . + + a ; + 2950; + "Theatre"; + ""; + "Teatro Nuevo (Norte)" . + + a ; + 2985; + ""; + "Orfeo Català" . + + a ; + 299; + ""; + "Königliches Schauspielhaus Berlin" . + + a ; + 300; + ""; + ""; + "Neues Theater am Schiffbauerdamm in Berlin" . + + a ; + 308; + "Theatre"; + ""; + "Opernhaus von Brünn (Brno)" . + + a ; + 311; + "Theatre"; + ""; + "Teatro Regio in Turin" . + + a ; + 315; + ""; + ""; + "Orpheum Theatre" . + + a ; + 317; + "Theatre"; + ""; + "Teatro del Fondo" . + + a ; + 318; + "Theatre"; + ""; + "Teatro dei Fiorentini" . + + a ; + 320; + "Theatre"; + ""; + "Teatro alla Canobbiana" . + + a ; + 3220; + ""; + "Ministry of Education" . + + a ; + 323; + "Theatre"; + ""; + "Teatro della Pergola" . + + a ; + 3250; + ""; + "Prensa Médica Argentina/ Última hora" . + + a ; + 3255; + ""; + "Salão Celso Garcia" . + + a ; + 3300; + "Theatre"; + ""; + "Teatro Florida" . + + a ; + 3460; + "Theatre"; + ""; + "Companhia de Operetas, Dramas e Comédias" . + + a ; + 3530; + "Theatre"; + ""; + "Il teatro e gli artisti italiani nell’Argentina (monography)" . + + a ; + 3565; + ""; + "Manuel Romero, José González Castillo y Carlos Schaefer Gallo" . + + a ; + 357; + ""; + ""; + "Schumann Gesellschaft" . + + a ; + 3610; + ""; + "Sociedad Argentina de Empresarios" . + + a ; + 363; + "Theatre"; + ""; + "Victoria-Theater, Berlin"; + . + + a ; + 3650; + "Theatre"; + ""; + "Cine-Teatro Brodway" . + + a ; + 3655; + "Theatre"; + ""; + "Teatro Jandaia" . + + a ; + 3660; + "Theatre"; + ""; + "Teatro Guarani" . + + a ; + 3685; + ""; + "Odeon Records" . + + a ; + 369; + "Theatre"; + ""; + "London Opera House"; + . + + a ; + 3715; + "Media"; + ""; + "Radio El Mundo" . + + a ; + 372; + "Theatre"; + ""; + "Germaniatheater"; + . + + a ; + 3760; + "Other"; + ""; + "Waldorf Astoria Hotel" . + + a ; + 3765; + ""; + "Decca Records" . + + a ; + 3770; + ""; + "The Versailles Restaurant" . + + a ; + 386; + "Theatre"; + ""; + "Volkstheater Wien" . + + a ; + 3885; + "Casino"; + ""; + "Latin Cassino" . + + a ; + 3895; + "Casino"; + ""; + "Town Cassino" . + + a ; + 3955; + ""; + "RanchVegas" . + + a ; + 3975; + ""; + "Paramount" . + + a ; + 399; + ""; + ""; + "Stadttheater Koblenz" . + + a ; + 407; + "Company"; + ""; + "Fred Karnos Group" . + + a ; + 4105; + "Theatre"; + ""; + "Teatro Español" . + + a ; + 4206; + ""; + "San Francisco Exhibition" . + + a ; + 4221; + ""; + "Compañía lírico-dramática (Dir. Arderius)" . + + a ; + 425; + "Theatre"; + ""; + "Drury Lane Theatre"; + . + + a ; + 4251; + ""; + "Tuilerie" . + + a ; + 426; + "Education (Theatre related)"; + ""; + "Konservatorium Leipzig"; + . + + a ; + 433; + "Theatre"; + ""; + "Braunschweig Opera"; + . + + a ; + 435; + "festival"; + ""; + "Münchner Wagner-Festspiele"; + . + + a ; + 4380; + ""; + "Théâtre de la Bourse" . + + a ; + 4385; + ""; + "Théâtre de l’Alhambra" . + + a ; + 440; + "Company"; + ""; + "Daniel Frohman’s company" . + + a ; + 4410; + ""; + "Théâtre Royal de l’Alcazar" . + + a ; + 4440; + ""; + "Queen’s Hall" . + + a ; + 4450; + ""; + "Town Hall" . + + a ; + 4465; + ""; + "Steindorff’s Grand Orchestra" . + + a ; + 4480; + ""; + "Edison Phonograph Company" . + + a ; + 449; + ""; + "Arcadia"; + . + + a ; + 451; + "Theatre"; + ""; + "Dresden Hoftheater"; + . + + a ; + 453; + "Theatre"; + ""; + "Graz Opernhaus"; + . + + a ; + 4530; + ""; + "Recital with Maurice Lafarge at the piano" . + + a ; + 454; + ""; + "Cabaret Fledermaus"; + . + + a ; + 456; + "Theatre"; + ""; + "Mannheim Hofoper"; + . + + a ; + 4580; + ""; + "City College Stadium" . + + a ; + 459; + "Theatre"; + ""; + "Théâtre de la Porte Saint-Martin"; + . + + a ; + 460; + "Theatre"; + ""; + "Théâtre-Lyrique"; + . + + a ; + 4632; + ""; + "Brougham Lyceum" . + + a ; + 4648; + ""; + "Lviv Theater" . + + a ; + 465; + ""; + "Wiener Hölle"; + . + + a ; + 4668; + ""; + "Pittsburgh Library Hall" . + + a ; + 4676; + ""; + "Chicago Hooley's Theater" . + + a ; + 4716; + ""; + "Augusta Grand Opera House" . + + a ; + 473; + "Musical Organization"; + ""; + "Singakademie"; + . + + a ; + 4740; + ""; + "Westover Opera House"; + . + + a ; + 4788; + ""; + "Compañía de Mariano Galé" . + + a ; + 479; + "Theatre"; + ""; + "Königliches Hof- und Nationaltheater in München"; + . + + a ; + 4812; + ""; + "Compañía Italiana de Comedias de Tatiana Paulova" . + + a ; + 482; + "Theatre"; + ""; + "Teatro La Fenice"; + . + + a ; + 4872; + ""; + "“Hippodrome Circus” de Frank Brown" . + + a ; + 48930; + "Theatre"; + ""; + "3rd Street Theatre" . + + a ; + 49000; + "Traveling Company"; + ""; + "Abraham Fiszon Troupe" . + + a ; + 4916; + "Music Hall in Wilkes-Barre" . + + a ; + 49190; + "Kleinkunst"; + ""; + "Agid's Vaudeville House" . + + a ; + 4924; + "Grand Opera House in Hamilton" . + + a ; + 49390; + "Amateur"; + ""; + "Amateur Drama Society" . + + a ; + 494; + "Theatre"; + ""; + "Opera Dresden"; + . + + a ; + 49520; + "Traveling Company"; + ""; + "Anshel Schorr's Troupe" . + + a ; + 49570; + "Theatre"; + ""; + "Aquarius Theatre" . + + a ; + 4964; + "Bidwells Academy of Music in New Orleans" . + + a ; + 49990; + "Traveling Company"; + ""; + "Baratov Troupe" . + + a ; + 5000; + "Music Hall in Dayton" . + + a ; + 5004; + "Whitneys Grand Opera" . + + a ; + 50130; + "Traveling Company"; + ""; + "Ber Hart troupe" . + + a ; + 5020; + "Corinthian Academy in Rochester" . + + a ; + 5040; + "Tabor Grand Opera House in Des Moines" . + + a ; + 50420; + "Society/Union"; + ""; + "British Theatre Guild" . + + a ; + 50570; + "Theatre"; + ""; + "Bulgarov Theatre" . + + a ; + 5064; + "Academy of Music, Fort Wayne"; + . + + a ; + 507; + "Company"; + ""; + "Varshever Yidisher Kunst-theater" . + + a ; + 5080; + "Academy of Music, Rochester" . + + a ; + 51020; + "Traveling Company"; + ""; + "Charles Nathanson's Troupe" . + + a ; + 51100; + "Society/Union"; + ""; + "Chicago's Drama Society" . + + a ; + 5120; + "Fontain Hause" . + + a ; + 5144; + "Beaux Arts Theatre (Monte Carlo)" . + + a ; + 515; + "Theatre"; + ""; + "Warsaw Tsentral Theater"; + . + + a ; + 5204; + "Grand Opera House (Evansville)" . + + a ; + 5212; + "New Memphis Theatre" . + + a ; + 5216; + "Grand Opera House (New Orleans)" . + + a ; + 5224; + "Millett´s Opera House (Austin)" . + + a ; + 5228; + "Pillot´s Opera House (Houston)" . + + a ; + 52280; + "Theatre"; + ""; + "Dagmar Theatre" . + + a ; + 52440; + "Printed Media"; + ""; + "Der veg" . + + a ; + 52450; + "Musical Organization"; + ""; + "Der yidish-rumenysher gezangs-farayn" . + + a ; + 5252; + "Delavan Opera House (Meriden)" . + + a ; + 5260; + "Cincinnati Dramatic Festival" . + + a ; + 5272; + "Gillis Opera House (Kansas City)" . + + a ; + 52820; + "Amateur"; + ""; + "Dramatic Circle" . + + a ; + 5300; + "Madison Avenue Theatre (Elmira)" . + + a ; + 5336; + "City Theatre (Brockton)" . + + a ; + 5340; + "Academy of Music, Haverhill" . + + a ; + 5345; + "Academy of Music, Fall River" . + + a ; + 5361; + "Academy of Music, Wilmington" . + + a ; + 53910; + "Amateur"; + ""; + "Free Dramatic Studio" . + + a ; + 5393; + "Broad Street Theatre, Philadelphia" . + + a ; + 5405; + "Cheyenne Opera House" . + + a ; + 54200; + "Education (Theatre related)"; + ""; + "German Choral School" . + + a ; + 5433; + "Doheny´s Theatre, Council Bluffs" . + + a ; + 54360; + "Amateur"; + ""; + "Goldene pave" . + + a ; + 54530; + "Theatre"; + ""; + "Grand Opera House" . + + a ; + 54570; + "Theatre"; + ""; + "Grand Theatre"; + . + + a ; + 546; + "Theatre"; + ""; + "Semperoper Dresden"; + . + + a ; + 548; + "Theatre"; + ""; + "Stuttgarter Hoftheater"; + . + + a ; + 5481; + "Grand Opera House, Leavenworth" . + + a ; + 5485; + "Grand Opera House, Los Angeles" . + + a ; + 5493; + "Grand Opera House, Pueblo" . + + a ; + 55100; + "Theatre"; + ""; + "Hengens Theatre" . + + a ; + 5517; + "Hawe`s Opera House, Bridgeport" . + + a ; + 5521; + "Hollis Street Theatre, Boston" . + + a ; + 5525; + "Howard Opera House, Burlington" . + + a ; + 554; + "Theatre"; + ""; + "Theatre Royal"; + . + + a ; + 5545; + "Kingston Opera House, Kingston" . + + a ; + 557; + "Theatre"; + ""; + "Royal Court Theatre"; + . + + a ; + 55700; + "Theatre"; + ""; + "Hope Theatre" . + + a ; + 5573; + "Ming´s Opera House, Helena" . + + a ; + 558; + "Theatre"; + ""; + "Haymarket Theatre "; + . + + a ; + 56030; + "Printed Media"; + ""; + "Israelita" . + + a ; + 5605; + "Newport Opera House" . + + a ; + 56170; + "Traveling Company"; + ""; + "Jacob Spivakovski Troupe" . + + a ; + 562; + "Theatre"; + ""; + "Vaudeville Theatre "; + . + + a ; + 5629; + "Opera House, Holyoke" . + + a ; + 564; + "Theatre"; + ""; + "Garrick Theatre "; + . + + a ; + 565; + "Theatre"; + ""; + "Savoy Theatre "; + . + + a ; + 56540; + "Traveling Company"; + ""; + "Kaminska Troupe" . + + a ; + 5685; + "Rand´s Opera House, Troy" . + + a ; + 56960; + "Traveling Company"; + ""; + "Krause-Spivakovski Troupe" . + + a ; + 5697; + "Tabor Opera House, Leadville" . + + a ; + 57020; + "Amateur"; + ""; + "Kunst-Ring" . + + a ; + 571; + "Theatre"; + ""; + "Harris Theatre "; + . + + a ; + 572; + "Theatre"; + ""; + "New Amsterdam "; + . + + a ; + 5741; + "Wood´s Opera House, Bay City" . + + a ; + 57430; + "Theatre"; + ""; + "Lenox Theater"; + . + + a ; + 5744; + "Opera House in Chattanooga" . + + a ; + 57450; + "Traveling Company"; + ""; + "Leon Golubok Troupe" . + + a ; + 57560; + "Traveling Company"; + ""; + "Lidia Potocka's Tour" . + + a ; + 576; + "Theatre"; + ""; + "Knickerbocker Theater"; + . + + a ; + 57700; + "Amateur"; + ""; + "Literary Drama Club" . + + a ; + 58420; + "Traveling Company"; + ""; + "Meerson and Sam Adler Troupe" . + + a ; + 58660; + "Traveling Company"; + ""; + "Mike Thomashefsky Troupe" . + + a ; + 58830; + "Traveling Company"; + ""; + "Mogulesco Troupe" . + + a ; + 58870; + "Traveling Company"; + ""; + "Mordechai Segalesco Troupe" . + + a ; + 58880; + "Traveling Company"; + ""; + "Morris Akselrad Troupe" . + + a ; + 58910; + "Traveling Company"; + ""; + "Moshkovich troupe" . + + a ; + 58920; + "Theatre"; + ""; + "Mount Morris Theatre" . + + a ; + 59340; + "Printed Media"; + ""; + "Neue Lodzer Zeitung" . + + a ; + 59880; + "Theatre"; + ""; + "Nowy Teatr" . + + a ; + 599; + "Theatre"; + ""; + "Teatro São Francisco"; + . + + a ; + 59940; + "Theatre"; + ""; + "Odessa Municipal Theatre" . + + a ; + 606; + "Theatre"; + ""; + "Teatro São Salvador" . + + a ; + 60940; + "Theatre"; + ""; + "Peretz Theatre" . + + a ; + 61010; + "Society/Union"; + ""; + "Petrograd Theatre Society" . + + a ; + 61130; + "Theatre"; + ""; + "Plaza Theatre" . + + a ; + 61670; + "Circus"; + ""; + "Rappo Circus" . + + a ; + 61790; + "Kleinkunst"; + ""; + "Remeslengi Club" . + + a ; + 62220; + "Theatre"; + ""; + "Royal Theatre (Harry Bernstein)"; + . + + a ; + 62260; + "Theatre"; + ""; + "Rumanian Opera (National Theatre in Bucharest)" . + + a ; + 62410; + "Traveling Company"; + ""; + "Sam Adler and Spivakovski Troupe" . + + a ; + 62450; + "Traveling Company"; + ""; + "Sam Wallerstein Troupe" . + + a ; + 625; + "Theatre"; + ""; + "Teatro Providência"; + . + + a ; + 62720; + "Amateur"; + ""; + "Shlifershteyn Troupe" . + + a ; + 62810; + "Theatre"; + ""; + "Sincoff's Metropolitan Theatre" . + + a ; + 635; + ""; + "Caras y Caretas; El Hogar"; + . + + a ; + 638; + ""; + "El correo español"; + . + + a ; + 642; + ""; + "El Diario"; + . + + a ; + 647; + "Company"; + ""; + "Teatro Apolo’s Company" . + + a ; + 656; + "Theatre"; + ""; + "Teatro Nacional do Porto" . + + a ; + 66160; + "Theatre"; + ""; + "Theatre Royal" . + + a ; + 66330; + "Theatre"; + ""; + "The Gayety Theatre" . + + a ; + 66340; + "Society/Union"; + ""; + "The Hebrew Actors' Union (HAU)" . + + a ; + 665; + "Theatre"; + ""; + "Companhia do Teatro de Variedades" . + + a ; + 66730; + "Theatre"; + ""; + "The Yiddish Art Theatre (as stable theatre)" . + + a ; + 66740; + "Amateur"; + ""; + "The Yiddish Dramatic Amateur Circle" . + + a ; + 66750; + "Society/Union"; + ""; + "The Yiddish Theatre Society" . + + a ; + 668; + "Theatre"; + ""; + "Teatro Maria Vitória" . + + a ; + 67; + "Theatre"; + ""; + "Folly Theatre" . + + a ; + 672; + "Theatre"; + ""; + "Theatro Provisório" . + + a ; + 67240; + "Traveling Company"; + ""; + "Vaksman-Spivakovski Troupe" . + + a ; + 67500; + "Theatre"; + ""; + "Vilna Yiddish State Theatre" . + + a ; + 67600; + "Printed Media"; + ""; + "Voskhod" . + + a ; + 67940; + "Kleinkunst"; + ""; + "Wolf Litvak’s yard" . + + a ; + 67970; + "Theatre"; + ""; + "Wonderland Theatre" . + + a ; + 680; + "Company"; + "Sociedade Dramática Empresária"; + "Raymundo’s Company " . + + a ; + 68090; + "Education (Theatre related)"; + ""; + "Yiddish dramatic school" . + + a ; + 68100; + "Amateur"; + ""; + "Yiddish Dramatic Society" . + + a ; + 68220; + "Traveling Company"; + ""; + "Yosef Goldshmidt Troupe" . + + a ; + 686; + "Theatre"; + ""; + "Teatro Cassino" . + + a ; + 687; + ""; + "Associação Dramática Empresária" . + + a ; + 690; + "Theatre"; + ""; + "Teatro Lucinda"; + . + + a ; + 69080; + "Society/Union"; + ""; + "British society for spreading Christianity among Jews" . + + a ; + 691; + "Company"; + ""; + "Furtado Coelho theatre company Empresa Phebo & Comp." . + + a ; + 69150; + "Theatre"; + ""; + "Feinman Theatre" . + + a ; + 69330; + "Printed Media"; + ""; + "Kol Mevaser" . + + a ; + 69704; + "Promesa Film Company" . + + a ; + 69708; + "Columbia Studios" . + + a ; + 69716; + "Ministry of Information (MOI)"; + . + + a ; + 69720; + "Two Cities Films (London)" . + + a ; + 69804; + "Kleinkunst"; + "Schnitzer's Garden Theatre" . + + a ; + 69824; + "Traveling Company"; + "Fishzon's troupe" . + + a ; + 69832; + "Traveling Company"; + "Kompaneyets' troupe" . + + a ; + 69856; + "Printed Media"; + "Der Yud" . + + a ; + 69860; + "Theatre"; + "Muranow Theatre" . + + a ; + 69940; + "Traveling Company"; + "Bernstein's Troupe" . + + a ; + 70; + "Theatre"; + ""; + "Manhattan Opera"; + . + + a ; + 70036; + "Kleinkunst"; + "Pomul Verde" . + + a ; + 70048; + "Company on Tour"; + "Schwartz's Art Theatre" . + + a ; + 70052; + "Theatre"; + "New York's (Yiddish) Art Theatre" . + + a ; + 70264; + "Jignitza theatre" . + + a ; + 70272; + "Traveling Company"; + "Leon Golubok's troupe" . + + a ; + 70296; + "Traveling Company"; + "Glickman's troupe" . + + a ; + 70340; + "Kleinkunst"; + "People's Music Hall" . + + a ; + 70364; + "Traveling Company"; + "Professor Hurwitz's troupe" . + + a ; + 70408; + "Traveling Company"; + "Ber Hart's troupe" . + + a ; + 70428; + "Education (Theatre related)"; + "Shaari tsion choral school" . + + a ; + 70508; + "Traveling Company"; + "United Troupe" . + + a ; + 70612; + "Traveling Company"; + "Glickman" . + + a ; + 70648; + "Amateur"; + "Amateur" . + + a ; + 70668; + "Kleinkunst"; + "Broder Singers" . + + a ; + 70688; + "Traveling Company"; + "Avraham Goldfaden's troupe" . + + a ; + 70728; + "Amateur"; + "Shlifershteyn's amatuer troupe" . + + a ; + 70744; + "Theatre"; + "Warsaw Eldorado Theatre" . + + a ; + 70824; + "Other"; + "English stage" . + + a ; + 70924; + "Theatre"; + "Folks Theatre" . + + a ; + 70968; + "Theatre"; + "Turin Hall" . + + a ; + 70972; + "Traveling Company"; + "Kaminski Theatre" . + + a ; + 71052; + "Theatre"; + "Jignitza" . + + a ; + 71060; + "Kleinkunst"; + "Singer Hall" . + + a ; + 71128; + "Traveling Company"; + "Bennie Shoengold's troupe" . + + a ; + 71132; + "Traveling Company"; + "Adolf Gertner's troupe" . + + a ; + 71248; + "Lira" . + + a ; + 71808; + "Traveling Company"; + "Avrom Fishzon Troupe" . + + a ; + 71816; + "Traveling Company"; + "Literarishe Trupe (Literary Troupe)" . + + a ; + 71840; + "Theatre"; + "Elysium Theater" . + + a ; + 71860; + "Traveling Company"; + "Fishzon Troupe" . + + a ; + 71892; + "Printed Media"; + "Dos Yiddishe Vort --דאס יודישע ווארט" . + + a ; + 71944; + "Winter Gartens (Cape Town)" . + + a ; + 720; + ""; + ""; + "Phenix Dramática theater company" . + + a ; + 72090; + "Theatre"; + "Gennett Theater"; + . + + a ; + 72095; + "Theatre"; + "Seattle Theater"; + . + + a ; + 72254; + "Periódico El País" . + + a ; + 72304; + "Teatro Jovellanos" . + + a ; + 72334; + "Teatro Marconi" . + + a ; + 72339; + "Facultad de Filosofía y Letras" . + + a ; + 72394; + "Compañía de Gas" . + + a ; + 72449; + "Drei Masken Verlag" . + + a ; + 72528; + "State Theatre and Conservatory"; + . + + a ; + 730; + ""; + ""; + "Bucharest Art Academy/ Royal National Theatre" . + + a ; + 734; + ""; + ""; + "Franklin Theatre" . + + a ; + 737; + ""; + ""; + "St. Charles Theatre" . + + a ; + 748; + "(old San Martín)"; + "Skating Rink" . + + a ; + 753; + "Theatre"; + ""; + "Teatro Doria" . + + a ; + 76; + "Theatre"; + ""; + "Hofoper Stuttgart"; + . + + a ; + 762; + "Theatre"; + ""; + "Teatro Lírico Francês" . + + a ; + 764; + "Company"; + ""; + "Isménia dos Santos’ theatrical company" . + + a ; + 827; + "Theatre"; + ""; + "Teatro do Ginásio Dramático" . + + a ; + 869; + "Company"; + ""; + "Rosas & Brazão theater company" . + + a ; + 878; + "Education (Theatre related)"; + ""; + "Escola de Belas Artes" . + + a ; + 917; + "Company"; + ""; + "Lucília Simões theatre company" . + + a ; + 98; + "Theatre"; + ""; + "Stadttheater Straßburg "; + . + + a ; + "AbbEmm-00"; + "Own"; + "Abbott"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbbHen-00"; + "Own"; + "Abbey"; + "Henry Eugene"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbeAlf-00"; + "Abel"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AbrMax-694"; + "Tau Cooperation"; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Abramovich"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AccPab-00"; + "Own"; + "Acchiardi"; + "Pablo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdaMax-00"; + "Adalbert"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AdlCel-1117"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Adler"; + "Celia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AdlJac-00"; + "Adler"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AllLes-00"; + "Own"; + "Allen"; + "Leslie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AlmIta-00"; + "Own"; + "Almirante"; + "Italia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Alo-00"; + "Own"; + "Alonso"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Aniert-00"; + "Own"; + "Bieckert"; + "Anita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AraLui-00"; + "Own"; + "Arata"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArdLui-00"; + "Own"; + "Arditi"; + "Luigi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ArrSan-00"; + "Own"; + "Arrieta"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AveNic-00"; + "Own"; + "Avellaneda"; + "Nicolás "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AxeMor-1206"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Axelrad"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "AzeArt-00"; + "Own"; + "Azevedo"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BülHan-00"; + "Own"; + "von Bülow"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalMic-00"; + "Own"; + "William Balfe"; + "Michael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BalW-00"; + "Own"; + "Balfe"; + "W. M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BanMil-00"; + "Own"; + "Bandmann-Palmer"; + "Millicent"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarAri-00"; + "Own"; + "Barney"; + "Ariel N."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarEth-00"; + "Own"; + "Barrymore"; + "Ethel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarPT-00"; + "Own"; + "Barnum"; + "P.T."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarPhi-00"; + "Own"; + "Taylor Barnum"; + "Phineas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BasSou-00"; + "Own"; + "Bastos"; + "Souza"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BauCar-00"; + "Own"; + "Baumann"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeaLou-00"; + "Own"; + "Beaudet"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BeaWil-00"; + "Own"; + "Beach"; + "William C."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelAnn-00"; + "Own"; + "de Belleville-Oury"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelE-00"; + "Own"; + "Bell"; + "E. Hamilton Bell"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BenJam-00"; + "Own"; + "Bennett"; + "James Gordon Bennett"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerApo-00"; + "Own"; + "Bertucca"; + "Apollonia Bertucca"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerEli-00"; + "Bergner"; + "Elizabeth"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerHec-00"; + "Own"; + "Berlioz"; + "Hector Berlioz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BitAnt-00"; + "Own"; + "Bittner"; + "Anton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BluJos-00"; + "Own"; + "Blum"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooEdw-00"; + "Own"; + "Booth"; + "Edwin Booth"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BooRic-00"; + "Booth"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BorArn-00"; + "Own"; + "1808-04-07"^^xsd:date; + "1808-04-07"^^xsd:date; + "1849-05-01"^^xsd:date; + "1849-05-31"^^xsd:date; + "Börnstein"; + "Arnold Bernhard Karl"; + "May 1849"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "BraEdu-00"; + "Own"; + "Brazão"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraJoh-00"; + "Own"; + "Brahms"; + "Johannes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BraPao-00"; + "Own"; + "Brambilla"; + "Paolo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BreJ-00"; + "Own"; + "Brennan"; + "J. Brennan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BriHen-00"; + "Own"; + "Bristol"; + "Henry Bristol"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroHar-01"; + "Own"; + "Brown"; + "Harry Joe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BroJoh-00"; + "Own"; + "Brougham"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BruAnt-00"; + "Own"; + "Bruckner"; + "Anton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BukKar-00"; + "Own"; + "Bukovics"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BulOle-00"; + "Own"; + "Bull"; + "Ole"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CárHom-00"; + "Own"; + "Cárpena"; + "Homero Cárpena"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CabAnt-00"; + "Own"; + "Cabanellas"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CabJos-00"; + "Own"; + "Cabral"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarPas-00"; + "Own"; + "Carcavallo"; + "Pascual Carcavallo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasGiu-00"; + "Own"; + "Gatti-Casazza"; + "Giulio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CasJos-00"; + "Own"; + "Castillo"; + "José González Castillo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ClaPhi-00"; + "Own"; + "Clairmont"; + "Phillipine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CleVan-00"; + "Own"; + "Cleef"; + "Van Cleef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ColSam-00"; + "Own"; + "Colville"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CoqCon-01"; + "Own"; + "Coquelin"; + "Constant"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CotL-00"; + "Own"; + "Cotier"; + "L. Cotier"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CouSan-00"; + "Own"; + "Cou"; + "Santiago Gómez Cou"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CraLot-00"; + "Own"; + "Crabtree"; + "Lotta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CraWil-00"; + "Own"; + "Crane"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CreWil-00"; + "Own"; + "Cressy"; + "Will Martin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CumWil-00"; + "Own"; + "Cummings"; + "William Cummings"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CurF-00"; + "Own"; + "Currier"; + "F. J. Currier"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DalAug-00"; + "Own"; + "Daly"; + "Augustin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DamJ-00"; + "Own"; + "Damon"; + "J. Damon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DanMar-00"; + "Own"; + "Danesi"; + "Mario Danesi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DanSal-00"; + "Own"; + "Dannebaum"; + "Salomon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DeVJoa-00"; + "Own"; + "de Vedia"; + "Joaquín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DreJoh-00"; + "Own"; + "Drew"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DreMrs-00"; + "Own"; + "Drew"; + "Mrs. John Drew"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DuaEva-00"; + "Own"; + "Duarte"; + "Eva"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DusEle-01"; + "Own"; + "Duse"; + "Eleonora"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EdwEdw-00"; + "Own"; + "Edwin"; + "Edwin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://data.cerl.org/thesaurus/cnp00843311"; + "https://d-nb.info/gnd/127577246"; + "ElmFra-00"; + "https://isni.org/isni/0000000033027892"; + "Own"; + "https://lccn.loc.gov/n91091367"; + "https://snaccooperative.org/ark:/99166/w60p1bp6"; + "https://viaf.org/viaf/28097834"; + "https://www.wikidata.org/wiki/Q92535"; + "1847-01-28"^^xsd:date; + "1847-01-28"^^xsd:date; + "1931-10-20"^^xsd:date; + "1931-10-20"^^xsd:date; + "Ellmenreich"; + "Franziska"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Stage Actress"; + ; + . + + a ; + "EloArt-00"; + "Eloesser"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ErnLeo-00"; + "Own"; + "Ernst"; + "Leontine Lea Ernst"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EscJul-00"; + "Own"; + "Escobar"; + "Julio F."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EspMat-00"; + "Espinosa"; + "Matilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "EvaFra-00"; + "Own"; + "Evans"; + "Frank Evans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FagJ-00"; + "Own"; + "Fagan"; + "J. B. Fagan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FavWil-00"; + "Own"; + "Faversham"; + "William Faversham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerFlo-00"; + "Own"; + "Ferrario"; + "Florindo Ferrario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerGlo-00"; + "Own"; + "Ferrandiz"; + "Gloria Ferrandiz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FerJos-00"; + "Own"; + "Ferreiro"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FisAbr-3634"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Fishzon"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "FisJos-00"; + "Own"; + "Fischof"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FonJos-00"; + "Own"; + "Fonseca"; + "Rubem"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForGeo-00"; + "Own"; + "Forst"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForRud-00"; + "Forster"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FraEva-00"; + "Own"; + "Franco"; + "Eva Franco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FreHen-00"; + "Own"; + "French"; + "Henry French"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FriNan-00"; + "Own"; + "Friedman"; + "Nannie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FroDan-00"; + "Own"; + "Frohman"; + "Daniel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FroJan-00"; + "Own"; + "Frost"; + "Jane Frost"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FroJoh-00"; + "Own"; + "Frost"; + "John Frost"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FucRob-00"; + "Own"; + "Fuchs"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GómPil-00"; + "Own"; + "Gómez"; + "Pilar Gómez"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GadSve-00"; + "Gade"; + "Svend"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalJoe-00"; + "Own"; + "Galton"; + "Joe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GamNin-00"; + "Own"; + "Gambier"; + "Niní Gambier"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GanSop-00"; + "Own"; + "Ganz"; + "Sophia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GarCar-00"; + "Own"; + "Gardel"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GauJud-00"; + "Own"; + "Gautier"; + "Judith"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GazMar-00"; + "Own"; + "Gazzaniga"; + "Marietta Gazzaniga"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GolJos-1841"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Goldshmidt"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GomJoa-00"; + "Own"; + "Gomes dos Santos"; + "Joaquim Heliodoro"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Gor-00"; + "Own"; + "Gordon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GorJac-698"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Gordin"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "GrüIlk-00"; + "Grüning"; + "Ilka"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraAle-00"; + "Granach"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GraMau-00"; + "Own"; + "Grau"; + "Maurice Grau"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroGeo-00"; + "Own"; + "Grove"; + "George Grove"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroIsr-00"; + "Own"; + "Grodner"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GroLeo-00"; + "Own"; + "Grover"; + "Leonard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuaAdr-00"; + "Own"; + "Gual"; + "Adrià Gual"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GuaHar-00"; + "Own"; + "Warren"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GyeFre-00"; + "Own"; + "Gye"; + "Frederick"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HauMin-00"; + "Own"; + "Hauk"; + "Minnie Hauk"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HawJos-00"; + "Own"; + "Haworth"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelJos-00"; + "Own"; + "Hellmesberger Sr."; + "Joseph Hellmesberger"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelJul-00"; + "Own"; + "Heller"; + "Julia Heller"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HelTin-00"; + "Own"; + "Helba"; + "Tina Helba"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HenB-00"; + "Own"; + "Henderson"; + "B. Henderson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerCar-00"; + "Own"; + "Herrmann"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerHen-00"; + "Own"; + "Herz"; + "Henry Herz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HerJam-00"; + "Own"; + "Herne"; + "James"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HesJoh-00"; + "Own"; + "Hess"; + "John Hess"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HodSar-00"; + "Own"; + "Hodgson"; + "Sarah (Strong) Hodgson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/116961333"; + "HolGus-00"; + "Own"; + "https://viaf.org/viaf/35221827"; + "https://www.wikidata.org/wiki/Q1555393"; + "1888-02-22"^^xsd:date; + "1888-02-22"^^xsd:date; + "1966-07-16"^^xsd:date; + "1966-07-16"^^xsd:date; + "Holl"; + "Gussy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actress,Singer"; + ; + . + + a ; + "HolMar-00"; + "Holmes"; + "Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/118761323"; + "HorCam-00"; + "https://isni.org/isni/0000000059250128"; + "Own"; + "https://lccn.loc.gov/n85242303"; + "https://snaccooperative.org/ark:/99166/w6dw5zdc#resources"; + "https://viaf.org/viaf/44564020"; + "https://www.wikidata.org/wiki/Q72890"; + "1903-04-25"^^xsd:date; + "1903-04-25"^^xsd:date; + "1996-08-14"^^xsd:date; + "1996-08-14"^^xsd:date; + "Horn"; + "Camilla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Dancer, Silent Film Actress"; + ; + . + + a ; + "HowEdw-00"; + "Own"; + "Howard"; + "Edwin Howard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HoyRaú-00"; + "Own"; + "de los Hoyos"; + "Raúl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HunJam-00"; + "Own"; + "Huneker"; + "James Huneker"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IJoh-00"; + "Own"; + "I"; + "Johann Strauss I"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "IrvHen-00"; + "Own"; + "Irving"; + "Henry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Ivolay-00"; + "Own"; + "Pelay"; + "Ivo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "J.MJMH-00"; + "Own"; + "HilJ-00"; + "HilJ-00"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JohMar-00"; + "Own"; + "Johnston"; + "Mary Johnston"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KamRut-00"; + "1919-01-01"^^xsd:date; + "1919-12-31"^^xsd:date; + "2005-08-23"^^xsd:date; + "2005-08-23"^^xsd:date; + "Kaminska"; + "Ruth"; + "1919"; + "2005-08-23" . + + a ; + "KatJac-2099"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Katzman"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KesDav-721"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Kessler"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "KlöEug-00"; + "Klöpfer"; + "Eugen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KleRob-00"; + "Klein"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KraWer-00"; + "Own"; + "Krauss"; + "Werner"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KurSel-00"; + "Own"; + "Kurz"; + "Selma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LabL-00"; + "Own"; + "Lablache"; + "L. Lablache"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LanMax-00"; + "Landa"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LanSir-00"; + "Own"; + "Lancelot"; + "Sir"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1250088976"; + "LavPau-00"; + "Own"; + "https://www.wikidata.org/wiki/Q54013723"; + "1879-03-29"^^xsd:date; + "1879-03-29"^^xsd:date; + "1959-09-20"^^xsd:date; + "1959-09-20"^^xsd:date; + "Lavitz"; + "Paulina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actress"; + ; + . + + a ; + "Leones-00"; + "Own"; + "Lugones"; + "Leopoldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LevHer-01"; + "Own"; + "Levi"; + "Hermann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LooThe-00"; + "Loos"; + "Theodor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LorFed-00"; + "Own"; + "Lorca"; + "Federico García Lorca"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaGar-00"; + "Own"; + "Sardinha (Bando da Lua)"; + "Aníbal Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LuaOsw-00"; + "Own"; + "Eboli (Bando da Lua)"; + "Oswaldo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Luiini-00"; + "Own"; + "Sandrini"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LulAlu-00"; + "Own"; + "Ferreira"; + "Aluisio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacEmm-00"; + "Own"; + "Macfarren"; + "Emma Macfarren"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MagAng-00"; + "Own"; + "Magaña"; + "Angel Magaña"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MagBar-00"; + "Own"; + "Magalhães"; + "Bartholomeu"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ManRic-00"; + "Own"; + "Mansfield"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarGiu-00"; + "Own"; + "Mario"; + "Giuseppe Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarIgn-00"; + "Own"; + "Marini"; + "Ignazio Marini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarLeo-00"; + "Own"; + "Marechal"; + "Leopoldo Marechal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarNin-00"; + "Own"; + "Marshall"; + "Niní"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marici-00"; + "Own"; + "Soffici"; + "Mario"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Marrgu-00"; + "Own"; + "Xirgu"; + "Margarita"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MasJul-00"; + "Own"; + "Massenet"; + "Jules"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "McCEli-00"; + "Own"; + "McCracken"; + "Elizabeth McCracken"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "McKSta-00"; + "Own"; + "McKenna"; + "Stanley McKenna"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "McWRob-00"; + "Own"; + "McWade"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyHer-00"; + "Own"; + "Meyerfeld"; + "Herz Meyerfeld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyJes-00"; + "Own"; + "Meyerfeld"; + "Jesse (Jesaja) Meyerfeld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyJet-00"; + "Own"; + "Meyerfeld"; + "Jette Meyerfeld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyJos-00"; + "Own"; + "Meyerfeld"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyMos-00"; + "Own"; + "Meyerfeld"; + "Moses Meyerfeld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyNan-00"; + "Own"; + "Meyerfeld"; + "Nannie Amelia Meyerfeld"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MilCol-00"; + "Own"; + "Miles"; + "Colonel Robert E.J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MitMag-00"; + "Own"; + "Mitchell"; + "Maggie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MogSig-685"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Mogulesco"; + "Sigmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "MonNur-00"; + "Own"; + "Montsé"; + "Nuri Montsé"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorFan-00"; + "Own"; + "Morant"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MorZul-00"; + "Own"; + "Moreno"; + "Zully"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NasGeo-00"; + "Own"; + "Nash"; + "George Nash"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NeuAdo-00"; + "Own"; + "Neuendorff"; + "Adolf Neuendorff"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NevEmm-00"; + "Own"; + "Nevada"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NibWil-00"; + "Own"; + "Niblo"; + "William Niblo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/117001686"; + "NieAlb-00"; + "https://isni.org/isni/0000000010416553"; + "Own"; + "https://snaccooperative.org/ark:/99166/w6cr65x8"; + "https://viaf.org/viaf/64271649"; + "https://www.wikidata.org/wiki/Q106378"; + "1831-01-15"^^xsd:date; + "1831-01-15"^^xsd:date; + "1917-01-13"^^xsd:date; + "1917-01-13"^^xsd:date; + "Niemann"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Singer"; + ; + . + + a ; + "NunJai-00"; + "Own"; + "Nunó"; + "Jaime Nunó"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "NunJos-00"; + "Own"; + "Nunes Borges"; + "José Simões"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OliGer-00"; + "Own"; + "de Oliveira"; + "Germano Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OliVic-00"; + "Own"; + "de Oliveira"; + "Vicente Pontes "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "OpiMic-00"; + "Own"; + "Opid"; + "Michal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PalAm-00"; + "Own"; + "Palmer"; + "A.M."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PelCar-00"; + "Own"; + "Pellegrini "; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PetFra-00"; + "Own"; + "Petrone"; + "Francisco Petrone"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PieB-00"; + "Own"; + "Pierce"; + "B. H. Pierce"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PodAnt-00"; + "Own"; + "Podestá"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PodMar-00"; + "Own"; + "Podestá"; + "María Ester Podestá"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PolCin-01"; + "Own"; + "Polonio"; + "Cinira"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PröRud-00"; + "Own"; + "Pröll"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PraReg-2695"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Prager"; + "Regina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "PuzMad-00"; + "Own"; + "Puzzi"; + "Madame Puzzi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PynGeo-00"; + "Own"; + "Pyne"; + "George"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RöhSof-00"; + "Own"; + "Röhr-Brajnin"; + "Sofie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1050523342"; + "ResCar-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 3899-3900."; + "1838-03-26"^^xsd:date; + "1838-03-26"^^xsd:date; + "1893-09-18"^^xsd:date; + "1893-09-18"^^xsd:date; + "Ress"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "Ris-00"; + "Own"; + "Risette"; + "Risette"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RoeJan-00"; + "Own"; + "Roeckel"; + "Jane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RogGeo-00"; + "Own"; + "Rogers"; + "George Rogers"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RooEli-00"; + "Own"; + "Roos"; + "Elizabeth Leslie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosBer-00"; + "Own"; + "Rosescu"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosGio-00"; + "Own"; + "Rossini"; + "Gioachino Rossini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RosKar-00"; + "Rosen"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RotAle-00"; + "Rottmann"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RusCha-00"; + "Own"; + "Russell"; + "Charles Edward Russell"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RusJos-01"; + "Own"; + "Ferreira Soares"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SalJos-00"; + "Own"; + "Saldías"; + "José Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SalMan-00"; + "Own"; + "Salvat"; + "Manuel Salvat"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SanIsa-00"; + "Own"; + "Santos"; + "Isabel Santos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchAba-00"; + "Own"; + "Schoengold"; + "Aba"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SchArn-00"; + "Schönberg"; + "Arnold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SegMor-2878"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Segalesko"; + "Mordechai"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SegPas-00"; + "Own"; + "Segreto"; + "Pascoal"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerHer-2891"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Serotsky"; + "Herman"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SerJoa-00"; + "Own"; + "Serra"; + "Joaquim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SilFlo-00"; + "Own"; + "da Silva"; + "Florindo Joaquim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SinBer-00"; + "Own"; + "Singerman"; + "Berta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SinPau-00"; + "Own"; + "Singerman"; + "Paulina"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SkiOti-00"; + "Own"; + "Skinner"; + "Otis Skinner"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SotEdw-00"; + "Own"; + "Sothern"; + "Edward Hugh Sothern"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SpeBet-786"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/spector-betty.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1536."""; + "Spector"; + "Betty"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "SpeLeo-781"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/spector-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1536."""; + "Spector"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "SteAlb-00"; + "Steinrücks"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteJoh-00"; + "Own"; + "Stetson"; + "John Stetson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteMes-00"; + "Own"; + "Steffanone"; + "Mesdames Steffanone"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SteWil-00"; + "Own"; + "Stenge"; + "Wilhelm"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "StuFra-00"; + "Own"; + "Van der Stucken"; + "Frank Valentine"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SudHer-00"; + "Own"; + "Sudermann"; + "Hermann Sudermann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TagAar-3046"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tager"; + "Aaron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "TerEll-00"; + "Own"; + "Terry"; + "Ellen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThoLyd-00"; + "Own"; + "Thompson"; + "Lydia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TorCar-00"; + "Own"; + "Torrignani"; + "Carlo Torrignani"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TroMRD-00"; + "Own"; + "Trobriand"; + "M.R.De Trobriand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TsuLey-3807"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Tsukerman"; + "Leyzer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ValJos-00"; + "Own"; + "do Vale"; + "José Antônio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VasFra-00"; + "Own"; + "Vasques"; + "Francisco Corrêa Vasques"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalF-00"; + "Own"; + "Walton"; + "F. Walton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WalIsa-00"; + "Own"; + "Waldron"; + "Isabella Waldron"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarDav-00"; + "Own"; + "Warfield"; + "David Warfield"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WarWil-00"; + "Own"; + "Warren"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WaxMor-1047"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Waxman"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "WayJoh-00"; + "Own"; + "Wayne"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WeiMay-00"; + "Own"; + "Weisz"; + "Mayer Sámuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Rabbi" . + + a ; + "WelLut-00"; + "Weltmann"; + "Lutz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WheAnd-00"; + "Own"; + "Wheeler"; + "Andrew Carpenter Wheeler"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiTho-01"; + "Own"; + "Jr."; + "Thomas"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WhiWal-00"; + "Own"; + "Whiteside"; + "Walker Whiteside"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilC-00"; + "Own"; + "Williams"; + "C. Williams"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilEff-00"; + "Own"; + "Wild"; + "Effie Wild"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilF-00"; + "Own"; + "Wilson"; + "F. Wilson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilFri-00"; + "Own"; + "Williams"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "WilGar-00"; + "Own"; + "Wilson"; + "Garff B. Wilson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZanDar-00"; + "Own"; + "Zanuck"; + "Darryl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZanYit-3349"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Zandberg"; + "Yitzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZeyZey-3378"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZhiVla-3383"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zhitkovski-vladek.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.797."""; + "Zhitkovski"; + "Vladek"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "ZicEdm-00"; + "Own"; + "Zichy"; + "Edmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZieEri-00"; + "Ziegel"; + "Erich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ZwiLou-814"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tsvibel-louis.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4869."""; + "1862-01-01"^^xsd:date; + "1862-12-31"^^xsd:date; + "1907-01-01"^^xsd:date; + "1907-12-31"^^xsd:date; + "Zwiebel"; + "Louis"; + "1862"; + "1907"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tsvibel-louis.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/tsvibel-louis.htm"; + ; + ; + "Jewish" . + + a ; + "Bell Ville"; + "South America"; + "Argentina"; + "3864331"; + "ARG-BellV-00"; + -3.26333e1; + -6.26833e1; + "Q284308"; + "https://en.wikipedia.org/wiki/Bell_Ville" . + + a ; + "Rosario"; + "South America"; + "Argentina"; + "3838583"; + "ARG-Rosario-00"; + -3.295e1; + -6.065e1; + "Q52535"; + "https://en.wikipedia.org/wiki/Rosario" . + + a ; + "Baden"; + "Europe"; + "Austria"; + "2782067"; + "AT-BadVie-00"; + 4.80075e1; + 1.62344e1; + "Q486450"; + "https://en.wikipedia.org/wiki/Baden_bei_Wien" . + + a ; + "Perchtoldsdorf"; + "Europe"; + "Austria"; + "2769110"; + "AT-Perch-00"; + 4.81194e1; + 1.62661e1; + "Q671367"; + "https://en.wikipedia.org/wiki/Perchtoldsdorf" . + + a ; + "Ballarat"; + "Australia"; + "Australia"; + "2177091"; + "AUS-Bal-00"; + -3.75667e1; + 1.4385e2; + "Q17856"; + "https://en.wikipedia.org/wiki/Ballarat" . + + a ; + "Campos dos Goytacazes "; + "South America"; + "Brazil"; + "3467693"; + "BR-CampGoyta-00"; + -2.14497e1; + -4.11897e1; + "Q689868"; + "https://en.wikipedia.org/wiki/Campos_dos_Goytacazes" . + + a ; + "Fortaleza"; + "South America"; + "Brazil"; + "3399415"; + "BR-Fortal-00"; + -3.78139e0; + -3.85889e1; + "Q43463"; + "https://en.wikipedia.org/wiki/Fortaleza" . + + a ; + "Piracicaba"; + "South America"; + "Brazil"; + "3453643"; + "BR-Pira-00"; + "São Paulo"; + -2.2725e1; + -4.76489e1; + "Q330175"; + "https://en.wikipedia.org/wiki/Piracicaba" . + + a ; + "Grodno"; + "Europe"; + "Belarus"; + "627904"; + "BY-Grod-00"; + 5.36842e1; + 2.38361e1; + "Q181376"; + "https://en.wikipedia.org/wiki/Grodno" . + + a ; + "Europe"; + "Belarus"; + "Bel-00"; + 5.35167e1; + 2.87667e1; + "Q184" . + + a ; + "Ottawa"; + "North America"; + "Canada"; + "CA-Otta-00"; + "Ontario"; + 4.54116e1; + -7.569840000000001e1; + "Q1930" . + + a ; + "Bern"; + "Europe"; + "Switzerland"; + "CH-Bern-00"; + 4.6948e1; + 7.44743e0; + "Q70"; + "https://de.wikipedia.org/wiki/Bern" . + + a ; + "South America"; + "Chile"; + "3895114"; + "CL-00"; + -3.14667e1; + -7.090000000000001e1; + "Q298"; + "https://en.wikipedia.org/wiki/Chile" . + + a ; + "Valparaíso"; + "South America"; + "Chile"; + "3868626"; + "CL-Valpa-00"; + -3.305e1; + -7.162e1; + "Q33986"; + "https://en.wikipedia.org/wiki/Valpara%C3%ADso" . + + a ; + "Africa"; + "Egypt"; + "357994"; + "EG-00"; + 2.6e1; + 3.0e1; + "Q79"; + "https://en.wikipedia.org/wiki/Egypt" . + + a ; + "Exeter"; + "Europe"; + "England"; + "EN-Exet-00"; + 5.07256e1; + -3.52694e0; + "Q134672" . + + a ; + "Alexandria"; + "Africa"; + "Egypt"; + "Egy-DiJeSt-145"; + 3.11975e1; + 2.98925e1; + "Q87"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Suva"; + "Oceania"; + "Fiji"; + "2198148"; + "FJ-Suv-00"; + -1.81333e1; + 1.78433e2; + "Q38807"; + "https://en.wikipedia.org/wiki/Suva" . + + a ; + "Bayonne "; + "Europe"; + "France"; + "3034475"; + "FR-Bayo-00"; + "Nouvelle-Aquitaine"; + 4.34925e1; + -1.47639e0; + "Q134674"; + "https://en.wikipedia.org/wiki/Bayonne" . + + a ; + "Vižinada"; + "Europe"; + "Croatia"; + "3187565"; + "HR-Viz-00"; + 4.53333e1; + 1.37667e1; + "Q1018664"; + "https://en.wikipedia.org/wiki/Vi%C5%BEinada" . + + a ; + "Asia"; + "India"; + "1269750"; + "IN-00"; + 2.11256e1; + 7.831059999999999e1; + "Q668"; + "https://en.m.wikipedia.org/wiki/India" . + + a ; + "Tel-Aviv"; + "Asia"; + "Israel"; + "293397"; + "ISR-TelAv-00"; + 3.20833e1; + 3.48e1; + "Q33935"; + "https://en.wikipedia.org/wiki/Tel_Aviv" . + + a ; + "Lucca"; + "Europe"; + "Italy"; + "IT-Lucc-00"; + 4.38417e1; + 1.05028e1; + "Q13373" . + + a ; + "Ukmergė"; + "Europe"; + "Lithuania"; + "Lit-DiJeSt-74"; + 5.525e1; + 2.47667e1; + "Q213127"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Timaru"; + "Oceania"; + "New Zealand"; + "NZ-Tima-00"; + -4.43958e1; + 1.71253e2; + "Q1016574" . + + a ; + "Bielsko-Biała"; + "Europe"; + "Poland"; + "3103402"; + "PL-Biala-00"; + 4.98225e1; + 1.90444e1; + "Q106583"; + "https://en.wikipedia.org/wiki/Bielsko-Bia%C5%82a" . + + a ; + "Łomża"; + "Europe"; + "Poland"; + "766027"; + "PL-Lomza-00"; + 5.31764e1; + 2.20731e1; + "Q215633"; + "https://en.wikipedia.org/wiki/%C5%81om%C5%BCa" . + + a ; + "Sibiu"; + "Europe"; + "Romania"; + "667268"; + "RO-Herm-00"; + 4.57964e1; + 2.41497e1; + "Q83324"; + "https://en.wikipedia.org/wiki/Sibiu" . + + a ; + "Brăila"; + "Europe"; + "Romania"; + "683902"; + "ROU-Brail-00"; + 4.52725e1; + 2.79722e1; + "Q188478"; + "https://en.wikipedia.org/wiki/Br%C4%83ila" . + + a ; + "Berdychiv"; + "Europe"; + "Ukraine"; + "712441"; + "RU-Berdi-00"; + 4.99e1; + 2.85667e1; + "Q158799"; + "https://en.wikipedia.org/wiki/Berdychiv" . + + a ; + "Starokostiantyniv"; + "Europe"; + "Ukraine"; + "692818"; + "RU-STARO-00"; + "Wolhynien"; + 4.97556e1; + 2.72208e1; + "Q997429"; + "https://en.wikipedia.org/wiki/Starokostiantyniv" . + + a ; + "Galați"; + "Europe"; + "Romania"; + "Rom-DiJeSt-35"; + 4.54233e1; + 2.80425e1; + "Q170996"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Aberdeen"; + "Europe"; + "Scotland"; + "2657832"; + "SCT-Aberd-00"; + 5.715e1; + -2.11e0; + "Q36405"; + "https://en.wikipedia.org/wiki/Aberdeen" . + + a ; + "Maribor"; + "Europe"; + "Slovenia"; + "3195506"; + "SI-Marb-00"; + 4.65547e1; + 1.56467e1; + "Q1010"; + "https://en.wikipedia.org/wiki/Maribor" . + + a ; + "Bratislava"; + "Europe"; + "Slovakia"; + "3060972"; + "SK-Brat-00"; + 4.81439e1; + 1.71097e1; + "Q1780"; + "https://en.wikipedia.org/wiki/Bratislava" . + + a ; + "Novi Sad"; + "Europe"; + "Serbia"; + "3194360"; + "SRB-NovSad-00"; + "Vojvodina"; + 4.525e1; + 1.985e1; + "Q55630"; + "https://en.wikipedia.org/wiki/Novi_Sad" . + + a ; + "Ankara"; + "Asia"; + "Turkey"; + "TR-Ank-00"; + 3.99289e1; + 3.28547e1; + "https://en.wikipedia.org/wiki/Ankara" . + + a ; + "Litchfield"; + "Europe"; + "England (UK)"; + "UK-Litchf-00"; + 5.12797e1; + -1.3404e0; + "Q11761882" . + + a ; + "Montrose"; + "Europe"; + "Scotland"; + "2642302"; + "UK-Montr-00"; + 5.6708e1; + -2.467e0; + "Q420303"; + "https://en.wikipedia.org/wiki/Montrose,_Angus" . + + a ; + "Sheffield"; + "Europe"; + "England (UK)"; + "2638077"; + "UK-Sheff-00"; + 5.33824e1; + -1.4719e0; + "Q42448"; + "https://en.wikipedia.org/wiki/Sheffield" . + + a ; + "Calumet"; + "North America"; + "USA"; + "US-Calum-00"; + "Michigan"; + 4.72472e1; + -8.845440000000001e1; + "Q5024102" . + + a ; + "Allentown"; + "North America"; + "USA"; + "USA-Allen-00"; + "Pennsylvania"; + 4.06017e1; + -7.54772e1; + "Q142811" . + + a ; + "Altoona"; + "North America"; + "USA"; + "USA-Altoo-00"; + "Pennsylvania"; + 4.05108e1; + -7.83997e1; + "Q444210" . + + a ; + "Anaconda"; + "North America"; + "USA"; + "USA-Anac-00"; + "Montana"; + 4.61333e1; + -1.12933e2; + "Q483539" . + + a ; + "Atchison"; + "North America"; + "USA"; + "USA-Atch-00"; + "Kansas"; + 3.95625e1; + -9.51283e1; + "Q753949" . + + a ; + "Augusta"; + "North America"; + "USA"; + "USA-Aug-00"; + "Georgia"; + 3.347e1; + -8.197499999999999e1; + "Q181962" . + + a ; + "Brockton"; + "North America"; + "USA"; + "4931429"; + "USA-Brockt-00"; + "Massachusetts"; + 4.20855e1; + -7.102e1; + "Q49193"; + "https://en.wikipedia.org/wiki/Brockton,_Massachusetts" . + + a ; + "Burlington"; + "North America"; + "USA"; + "USA-Burl-00"; + "Vermont"; + 4.4492e1; + -7.32394e1; + "Q31058" . + + a ; + "Pasadena"; + "North America"; + "USA"; + "5381396"; + "USA-CA-01"; + "California"; + 3.41561e1; + -1.18132e2; + "Q485176"; + "https://en.wikipedia.org/wiki/Pasadena,_California" . + + a ; + "Carson City"; + "North America"; + "USA"; + "5501344"; + "USA-CarsonC-00"; + "Nevada"; + 3.91608e1; + -1.19754e2; + "Q40881"; + "https://en.wikipedia.org/wiki/Carson_City,_Nevada" . + + a ; + "Easton"; + "North America"; + "USA"; + "USA-East-00"; + "Pennsylvania"; + 4.06883e1; + -7.521639999999999e1; + "Q1056542" . + + a ; + "Eau Claire"; + "North America"; + "USA"; + "USA-EauCl-00"; + "Wisconsin"; + 4.48147e1; + -9.14928e1; + "Q122563" . + + a ; + "Erie"; + "North America"; + "USA"; + "USA-Erie-00"; + "Pennsylvania"; + 4.21142e1; + -8.00758e1; + "Q234061" . + + a ; + "Winter Park"; + "North America"; + "USA"; + "4178560"; + "USA-Flor-00"; + "Florida"; + 2.85961e1; + -8.13467e1; + "Q986641"; + "https://en.wikipedia.org/wiki/Winter_Park,_Florida" . + + a ; + "Geneva"; + "North America"; + "USA"; + "USA-GenNY-00"; + "New York"; + 4.28644e1; + -7.698260000000001e1; + "Q1378284" . + + a ; + "Haverhill"; + "North America"; + "USA"; + "4939085"; + "USA-Haver-00"; + "Massachusetts"; + 4.27833e1; + -7.108329999999999e1; + "Q54132"; + "https://en.wikipedia.org/wiki/Haverhill,_Massachusetts" . + + a ; + "Newport Beach"; + "North America"; + "USA"; + "5376890"; + "USA-LA-00"; + "California"; + 3.36069e1; + -1.17905e2; + "Q268873"; + "https://en.wikipedia.org/wiki/Newport_Beach,_California" . + + a ; + "Lowell"; + "North America"; + "USA"; + "USA-Low-00"; + "Massachusetts"; + 4.26394e1; + -7.13147e1; + "Q49162" . + + a ; + "Macon"; + "North America"; + "USA"; + "USA-Mac-00"; + "Georgia"; + 3.28358e1; + -8.36464e1; + "Q219656" . + + a ; + "Mansfield"; + "North America"; + "USA"; + "5161723"; + "USA-Mansfi-00"; + "Ohio"; + 4.07533e1; + -8.25044e1; + "Q983698"; + "https://en.wikipedia.org/wiki/Mansfield,_Ohio" . + + a ; + "Marquette"; + "North America"; + "USA"; + "USA-Marq-00"; + "Michigan"; + 4.65431e1; + -8.73931e1; + "Q12443" . + + a ; + "Marysville"; + "North America"; + "USA"; + "USA-Marysv-00"; + "California"; + 3.91494e1; + -1.21586e2; + "Q950966"; + "https://en.wikipedia.org/wiki/Marysville,_California" . + + a ; + "Muskegon"; + "North America"; + "USA"; + "USA-Musk-00"; + "Michigan"; + 4.32342e1; + -8.62483e1; + "Q952097" . + + a ; + "Natchez"; + "North America"; + "USA"; + "USA-Natch-00"; + "Mississippi"; + 3.15542e1; + -9.13875e1; + "Q944044" . + + a ; + "Northampton"; + "North America"; + "USA"; + "USA-Nort-00"; + "Massachusetts"; + 4.2325e1; + -7.26417e1; + "Q49186" . + + a ; + "Ogden"; + "North America"; + "USA"; + "5779206"; + "USA-Ogden-00"; + "Utah"; + 4.12277e1; + -1.11968e2; + "Q52471"; + "https://en.wikipedia.org/wiki/Ogden,_Utah" . + + a ; + "Owensboro"; + "North America"; + "USA"; + "USA-Owens-00"; + "Kentucky"; + 3.77578e1; + -8.71183e1; + "Q494295" . + + a ; + "Plainfield"; + "North America"; + "USA"; + "USA-Plain-00"; + "New Jersey"; + 4.06153e1; + -7.44161e1; + "Q544890" . + + a ; + "Riverside"; + "North America"; + "USA"; + "USA-Riv-00"; + "California"; + 3.39533e1; + -1.17396e2; + "Q49243" . + + a ; + "Roanoke"; + "North America"; + "USA"; + "4782167"; + "USA-Roano-00"; + "Virginia"; + 3.72705e1; + -7.99425e1; + "Q501796"; + "https://en.wikipedia.org/wiki/Roanoke,_Virginia" . + + a ; + "Santa Ana"; + "North America"; + "USA"; + "USA-SantAn-00"; + "California"; + 3.37408e1; + -1.17881e2; + "Q49244" . + + a ; + "Vicksburg"; + "North America"; + "USA"; + "USA-Vick-00"; + "Mississippi"; + 3.23172e1; + -9.08867e1; + "Q493787" . + + a ; + "Virginia City"; + "North America"; + "USA"; + "5514428"; + "USA-VirgCity-00"; + "Nevada"; + 3.931e1; + -1.19649e2; + "Q987262"; + "https://en.wikipedia.org/wiki/Virginia_City,_Nevada" . + + a ; + "Watertown"; + "North America"; + "USA"; + "5143396"; + "USA-Waterto-00"; + "New York"; + 4.39756e1; + -7.59063e1; + "Q1378026"; + "https://en.wikipedia.org/wiki/Watertown,_New_York" . + + a ; + "Mykolaiv"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-113"; + 4.6975e1; + 3.1995e1; + "Q41572"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Brownsville"; + "North America"; + "United States"; + "Uni-DiJeSt-151"; + 4.06607e1; + -7.391079999999999e1; + "Q991279"; + "https://en.wikipedia.org/wiki/" . + + a ; + 100; + "Theatre"; + ""; + "Stadttheater Brünn"; + . + + a ; + 1046; + "Company"; + ""; + "Guilherme da Silveira’s theater company" . + + a ; + 1077; + "Theatre"; + ""; + "Royal Theatre"; + . + + a ; + 1116; + ""; + "Shanghai Theatre, Lyceum Theatre" . + + a ; + 1143; + ""; + ""; + "Crystal Theatre" . + + a ; + 1155; + ""; + ""; + "Pantages Theatre" . + + a ; + 1191; + ""; + "Covent Garden" . + + a ; + 1290; + ""; + ""; + "Maguire´s theatre" . + + a ; + 1385; + "Company"; + ""; + "Henry Miller company" . + + a ; + 1410; + ""; + ""; + "Bijou Theatre" . + + a ; + 1415; + ""; + ""; + "Knickerbocker Theatre" . + + a ; + 143; + "Theatre"; + ""; + "Nationaltheater Budapest"; + . + + a ; + 151; + "Company"; + ""; + "stock company of Macauley's Theatre" . + + a ; + 1515; + ""; + "Polytheama" . + + a ; + 153; + "Theatre"; + ""; + "New York's Grand Opera House"; + . + + a ; + 163; + "Theatre"; + ""; + "New York’s Princess Theatre"; + . + + a ; + 166; + "Theatre"; + ""; + "Hoftheater Meiningen"; + . + + a ; + 1720; + ""; + ""; + "Poli’s Vaudeville Theatre" . + + a ; + 1746; + "Theatre"; + ""; + "Teatro Gynásio Dramático" . + + a ; + 1751; + "Company"; + ""; + "Sociedade Dramática Nacional" . + + a ; + 1871; + "Theatre"; + ""; + "Teatro Eden Lavradio" . + + a ; + 191; + "Theatre"; + ""; + "American Theatre New York"; + . + + a ; + 1936; + ""; + ""; + "Théâtre Lyrique Français*" . + + a ; + 2255; + "Company"; + ""; + "McWade company" . + + a ; + 2260; + "Theatre"; + ""; + "New London Opera House" . + + a ; + 2280; + ""; + ""; + "Fifth Avenue Theater" . + + a ; + 230; + ""; + ""; + "Stadttheater Düsseldorf" . + + a ; + 232; + ""; + "Royal Lyceum Theatre, London" . + + a ; + 2340; + ""; + ""; + "Majestic Theater" . + + a ; + 247; + ""; + ""; + "Hoftheater München"; + . + + a ; + 259; + ""; + ""; + "American Theatre San Francisco"; + . + + a ; + 260; + ""; + ""; + "McVicker's Theater in Chicago" . + + a ; + 2605; + ""; + "Liceo" . + + a ; + 263; + ""; + ""; + "Manhattan Theatre" . + + a ; + 2726; + ""; + "Howard Athenaeum" . + + a ; + 275; + ""; + ""; + "Maurice Schwartz’s Yiddish Art Theater" . + + a ; + 276; + "Theatre"; + ""; + "Chicago Opera (Lyric Opera of Chicago)" . + + a ; + 2806; + "Theatre"; + "Masonic Temple Roof Theatre" . + + a ; + 2821; + ""; + "Auditorium" . + + a ; + 290; + "Theatre"; + ""; + "Dresdner Hofoper" . + + a ; + 301; + ""; + ""; + "Irving Place Theatre, New York" . + + a ; + 307; + "Theatre"; + ""; + "Teatro Argentina Rom" . + + a ; + 3160; + ""; + "Bieckert Bier" . + + a ; + 322; + ""; + ""; + "Théâtre de la Renaissance" . + + a ; + 3325; + "Theatre"; + ""; + "Teatro Moderno" . + + a ; + 3330; + "Theatre"; + ""; + "Teatro Olimpo" . + + a ; + 335; + "Company"; + ""; + "English Opera Company" . + + a ; + 351; + "Theatre"; + ""; + "Staatsoper Unter den Linden, Berlin" . + + a ; + 3535; + ""; + "in collaboration with Arnaldo Malfatti" . + + a ; + 3705; + "Theatre"; + ""; + "Teatro Municipal" . + + a ; + 375; + "Theatre"; + ""; + "Lustspielhaus"; + . + + a ; + 3820; + ""; + ""; + "Winter Garden Theatre" . + + a ; + 3855; + ""; + ""; + "Copacabana Club" . + + a ; + 3890; + ""; + "Chez Peree" . + + a ; + 391; + "Theatre"; + ""; + "Opernhaus Leipzig"; + . + + a ; + 393; + "Theatre"; + ""; + "Prager Landestheater" . + + a ; + 3930; + ""; + "Latin Quartier" . + + a ; + 395; + ""; + "New Yorker Philharmonikern" . + + a ; + 3960; + "Other"; + ""; + "Shamrock Hotel" . + + a ; + 4021; + ""; + ""; + "Artistic society directed by Vale" . + + a ; + 421; + ""; + "Salzburger Mozartfest"; + . + + a ; + 4246; + ""; + "Teatro de São Jõao" . + + a ; + 428; + "Theatre"; + ""; + "Metz Opera"; + . + + a ; + 4345; + ""; + "Brussels Conservatory (studied)" . + + a ; + 436; + "Theatre"; + ""; + "Düsseldorf Oper"; + . + + a ; + 4365; + ""; + "Théâtre des Nouveautés" . + + a ; + 4375; + ""; + "Casino de Paris" . + + a ; + 438; + "Theatre"; + ""; + "Belle-Alliance-Theater"; + . + + a ; + 445; + "Company"; + ""; + "Moody-Manners Opera Company"; + . + + a ; + 446; + "Theatre"; + ""; + "Royal Opera House Stockholm"; + . + + a ; + 462; + "Theatre"; + ""; + "Opéra de Monte Carlo"; + . + + a ; + 4660; + ""; + "Ford's Theater" . + + a ; + 4708; + ""; + "Troy Griswold Theater" . + + a ; + 4724; + ""; + "Hooley's Theater"; + . + + a ; + 4776; + ""; + "Compañía de Silvio Giovanetti and Julio Traversa" . + + a ; + 4792; + ""; + "Compañía de Jerónimo Podestá" . + + a ; + 4800; + ""; + "Compañía de los Hermanos Podestá" . + + a ; + 4828; + ""; + "Compañía Napolitana" . + + a ; + 4848; + ""; + "Compañía Enrique Muiño-Elías Alippi" . + + a ; + 4852; + ""; + "Compañía de Florencio Parravicini" . + + a ; + 4868; + ""; + "Conservatorio Nacional de Música y Arte Escénico" . + + a ; + 4876; + ""; + "Revista “Nosotros”" . + + a ; + 48970; + "Traveling Company"; + ""; + "Aba Shoengold Troupe" . + + a ; + 4904; + "Hills Opera House in Ann Arbor" . + + a ; + 4908; + "Owens Academy of Music in Charleston" . + + a ; + 4940; + "Metropolitan Theatre in Sacramento" . + + a ; + 49480; + "Theatre"; + ""; + "Amphion Theatre" . + + a ; + 501; + ""; + "Saltsbury´s Troubadours" . + + a ; + 5012; + "Opera House in Wheeling" . + + a ; + 50120; + "Traveling Company"; + ""; + "Berger Troupe" . + + a ; + 5024; + "Park Opera House in Erie" . + + a ; + 505; + "Theatre"; + ""; + "Yidish-Daytsh Theater" . + + a ; + 5056; + "Muskegon Opera House" . + + a ; + 5076; + "Richardson Theatre in Oswego" . + + a ; + 5088; + "Globe Theatre in Boston" . + + a ; + 5100; + "Grand Opera House in Oshkosh" . + + a ; + 5124; + "Everyman Theatre" . + + a ; + 5128; + "Globe Theater (London)" . + + a ; + 51520; + "Theatre"; + ""; + "Columbia Theatre" . + + a ; + 5180; + "Academy of Music, Kalamazoo"; + . + + a ; + 5188; + "Schulz`s Opera House (Zanesville)" . + + a ; + 5200; + "Grand Opera House (Peoria)" . + + a ; + 5220; + "Tremont Theatre (Galveston)" . + + a ; + 5244; + "Opera House (Wilmington)" . + + a ; + 5256; + "Roberts Opera House (Hartford)" . + + a ; + 52850; + "Society/Union"; + ""; + "Dramatic union" . + + a ; + 5296; + "Abel Opera House (Easton)" . + + a ; + 5316; + "Durley Theatre (Bloomington)" . + + a ; + 5324; + "Holliday Street Theater (Baltimore)" . + + a ; + 53650; + "Traveling Company"; + "Fishzon-Spivakovski Troupe" . + + a ; + 5381; + "Belle City Opera House, Racine"; + . + + a ; + 53820; + "Printed Media"; + ""; + "Forward" . + + a ; + 53880; + "Society/Union"; + ""; + "Fraye Yidishe Folks-Bine" . + + a ; + 54170; + "Traveling Company"; + ""; + "Genfer Troupe" . + + a ; + 5429; + "Doerr´s Opera House, Quincy" . + + a ; + 54350; + "Theatre"; + ""; + "Globe Theatre" . + + a ; + 5473; + "Grand Opera House, Decatur" . + + a ; + 5477; + "Grand Opera House, Eau Claire" . + + a ; + 55000; + "Society/Union"; + ""; + "Hebrew Actors' Union (HAU)" . + + a ; + 555; + "Theatre"; + ""; + "King's London Theatre"; + . + + a ; + 5577; + "Mobile Theatre" . + + a ; + 561; + "Theatre"; + ""; + "Royalty Theatre "; + . + + a ; + 56160; + "Theatre"; + ""; + "Jacob Silbert Troupe" . + + a ; + 563; + "Theatre"; + ""; + "Grand Theatre "; + . + + a ; + 5661; + "Orange Music Hall" . + + a ; + 5681; + "Proctor´s Opera House, Hartford" . + + a ; + 569; + "Kleinkunst"; + ""; + "Garden Theatre "; + . + + a ; + 570; + "Theatre"; + ""; + "Hudson Theatre "; + . + + a ; + 5701; + "Taylor Opera House, Trenton" . + + a ; + 5717; + "Theater Vendome, Nashville" . + + a ; + 57250; + "Traveling Company"; + ""; + "Lazar Bernstein Troupe" . + + a ; + 577; + "Theatre"; + ""; + "Broadway Theater"; + . + + a ; + 579; + "Theatre"; + ""; + "Criterion Theatre "; + . + + a ; + 58430; + "Traveling Company"; + ""; + "Meerson Troupe" . + + a ; + 587; + "Theatre"; + ""; + "Teatro São Pedro"; + . + + a ; + 589; + "Theatre"; + ""; + "Teatro do Príncipe Real"; + . + + a ; + 59070; + "Theatre"; + ""; + "Muranover Yiddish Teater"; + . + + a ; + 591; + "Theatre"; + ""; + "Teatro da Rua dos Condes"; + . + + a ; + 592; + "Theatre"; + ""; + "Teatro Dona Amélia"; + . + + a ; + 607; + ""; + ""; + "Dona Maria Theater" . + + a ; + 622; + "Theatre"; + ""; + "Teatro Santa Isabel" . + + a ; + 62270; + "Traveling Company"; + ""; + "Rumenish-yidish teater under the direction of Izak Libresko and Leon Berger" . + + a ; + 624; + "Theatre"; + ""; + "Teatro São Luís"; + . + + a ; + 62400; + "Traveling Company"; + ""; + "Sam Adler and Kaminski Troupe" . + + a ; + 627; + "Theatre"; + ""; + "Teatro da Paz"; + . + + a ; + 62730; + "Traveling Company"; + ""; + "Shomer Troupe" . + + a ; + 636; + ""; + "La Prensa"; + . + + a ; + 66890; + "Traveling Company"; + ""; + "Treitler Troupe" . + + a ; + 670; + "Company"; + ""; + "Companhia Dramática de Lisboa"; + . + + a ; + 67440; + "Theatre"; + ""; + "Victoria Theatre" . + + a ; + 676; + "Theatre"; + ""; + "Teatro Sete de Setembro" . + + a ; + 681; + "Theatre"; + ""; + "Teatro Fenix Dramática" . + + a ; + 69820; + "Traveling Company"; + "Shomer's troupe" . + + a ; + 69880; + "Traveling Company"; + "Hurwitz's troupe" . + + a ; + 69920; + "Company on Tour"; + "Kaminski's troupe" . + + a ; + 69984; + "Traveling Company"; + "Thomashefsky" . + + a ; + 70068; + "Theatre"; + "Gimpel's theatre" . + + a ; + 70200; + "Theatre"; + "Adler's Grand Theatre" . + + a ; + 70208; + "Theatre"; + "Elizeum Theatre" . + + a ; + 70284; + "Kleinkunst"; + "Vaudeville" . + + a ; + 70316; + "Traveling Company"; + "Genfer's troupe" . + + a ; + 70576; + "Theatre"; + "Elysium Theatre" . + + a ; + 71088; + "Society/Union"; + "Unzer vinkl" . + + a ; + 71104; + "Traveling Company"; + "Esther Vaksman's troupe" . + + a ; + 713; + ""; + ""; + "The Philharmonic Society" . + + a ; + 71812; + "Printed Media"; + "Der Yud⁩ - ⁨דער יוד⁩⁩" . + + a ; + 71868; + "Traveling Company"; + "גראַדנערס קאָמפּאַניע" . + + a ; + 71912; + "Amateur"; + "Yiddish Dramatic Society - דער יידיש דראמגעזעלשאפט" . + + a ; + 71932; + "Waxman-Wallerstein’s Yiddish Theatre Company" . + + a ; + 71960; + "Wallerstein Operatic and Dramatic Company" . + + a ; + 72189; + "Companía Podestá-Scotti" . + + a ; + 72444; + "Göttinger University"; + . + + a ; + 72493; + "Breslauer Lobetheater"; + . + + a ; + 743; + "Company"; + ""; + "Henry Manley’s Company" . + + a ; + 744; + "Company"; + ""; + "John Cooke’s Company" . + + a ; + 763; + ""; + ""; + "Lucília Simões-Erico Braga theater company" . + + a ; + 785; + "Theatre"; + ""; + "Teatro de Variedades" . + + a ; + 80; + "Theatre"; + ""; + "Teatro Comunale di Bologna" . + + a ; + 824; + "Company"; + ""; + "Theatrical Company of João Caetano" . + + a ; + 92; + "Theatre"; + ""; + "Hoftheater Karlsruhe"; + . + + a ; + 93; + "Theatre"; + ""; + "Hoftheater Wiesbaden"; + . + + a ; + 950; + "Theatre"; + ""; + "Teatro Rivadavia" . + + a ; + 965; + ""; + "Politeama Argentino" . + + a ; + 986; + "Theatre"; + ""; + "Hofburgtheater" . + + a ; + "AlvMar-00"; + "Own"; + "De Alvear "; + "Marcelo T."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndMar-00"; + "Own"; + "Anderson"; + "Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AngMar-00"; + "Own"; + "Anglin"; + "Margaret"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BarLaw-00"; + "Own"; + "Barrett"; + "Lawrence"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1249758513"; + "BarMau-00"; + "https://isni.org/isni/000000004736729X"; + "Own"; + "https://lccn.loc.gov/no2008113966"; + "https://viaf.org/viaf/68747789"; + "https://www.wikidata.org/wiki/Q2762175"; + "1849-09-21"^^xsd:date; + "1849-09-21"^^xsd:date; + "1905-03-25"^^xsd:date; + "1905-03-25"^^xsd:date; + "Barrymore"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barrymore_Maurice.jpg"; + "https://en.wikipedia.org/wiki/Maurice_Barrymore"; + "Actor"; + ; + . + + a ; + "BatGui-00"; + "Own"; + "Bataglia"; + "Guillermo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BecLou-00"; + "Own"; + "Heims Beck"; + "Louise"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BerLey-1270"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Berkovitsh"; + "Leyzer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "https://d-nb.info/gnd/119093464"; + "BooJun-00"; + "https://isni.org/isni/000000008147526X"; + "Own"; + "http://id.loc.gov/authorities/names/n82201391"; + "http://n2t.net/ark:/99166/w6736qbg"; + """Dictionary of National Biography: 1885-1900/Booth, Junius Brutus, https://en.wikisource.org/wiki/Dictionary_of_National_Biography,_1885-1900/Booth,_Junius_Brutus. + +Archer, Stephen M. (2010). Junius Brutus Booth: Theatrical Prometheus. SIU Press. Geni: Junius Brutus Booth, I (1796 - 1852), https://www.geni.com/people/Junius-Booth-I/6000000003163765829."""; + "http://viaf.org/viaf/3291148997638159870008"; + "https://www.wikidata.org/wiki/Q684358"; + "https://en.wikipedia.org/wiki/Junius_Brutus_Booth"; + "1796-05-01"^^xsd:date; + "1796-05-01"^^xsd:date; + "1852-11-30"^^xsd:date; + "1852-11-30"^^xsd:date; + "Booth"; + "Junius Brutus"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/JuniusBrutusBooth.jpeg"; + "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/JuniusBrutusBooth.jpeg/330px-JuniusBrutusBooth.jpeg"; + ; + . + + a ; + "Death date uncertain"; + "BraGui-00"; + "Own"; + "MGG"; + "1819-05-09"^^xsd:date; + "1819-05-09"^^xsd:date; + "1903-04-01"^^xsd:date; + "1903-04-01"^^xsd:date; + "Brambilla"; + "Guiseppina"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "CasRob-00"; + "Own"; + "Casaux"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DiLTI-00"; + "Own"; + "di Lorenzo"; + "Tina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForJ-00"; + "Own"; + "Forbes-Robertson"; + "J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FroCha-00"; + "Own"; + "Frohman"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FrySus-00"; + "Own"; + "Fry"; + "Susannah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GalJos-00"; + "Own"; + "West Galton"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "GilWil-00"; + "Own"; + "Gillette"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "893 Starokosti?a?ntyniv (Ukraine)"; + "GolNaf-00"; + "Tau Cooperation"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldfaden-abraham.htm"""; + "1840-07-12"^^xsd:date; + "1840-07-12"^^xsd:date; + "Buried in Washington Cemetery, New York"; + "Goldfaden"; + "Naftali"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "GueMar-00"; + "Own"; + "Guerrero"; + "María"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://data.cerl.org/thesaurus/cnp00590610"; + "https://d-nb.info/gnd/116348461"; + "HaaFri-00"; + "https://isni.org/isni/0000000010488637"; + "Own"; + "https://snaccooperative.org/ark:/99166/w6vb2h00"; + "https://viaf.org/viaf/67214769"; + "https://www.wikidata.org/wiki/Q90251"; + "1825-01-01"^^xsd:date; + "1825-01-01"^^xsd:date; + "1911-03-17"^^xsd:date; + "1911-03-17"^^xsd:date; + "Haase"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor,Theatre Director"; + ; + . + + a ; + "HeiHei-00"; + "Own"; + "Heine"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/11877400X"; + "HerVic-00"; + "https://isni.org/isni/0000000083575897"; + "Own"; + "https://lccn.loc.gov/n79105792"; + "https://snaccooperative.org/ark:/99166/w6xs64c0"; + "https://viaf.org/viaf/12491557"; + "https://www.wikidata.org/wiki/Q1275145"; + "1859-02-01"^^xsd:date; + "1859-02-01"^^xsd:date; + "1924-05-26"^^xsd:date; + "1924-05-26"^^xsd:date; + "Herbert"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Composer, Cellist,Conductor"; + ; + . + + a ; + "JefJos-00"; + "Own"; + "Jefferson"; + "Joseph Jefferson"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "JewHen-00"; + "Own"; + "Jewett"; + "Henry Jewett"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/117163546"; + "JohRic-00"; + "Own"; + "https://viaf.org/viaf/27841441/"; + "https://www.wikidata.org/wiki/Q18027365"; + "1845-03-07"^^xsd:date; + "1845-03-07"^^xsd:date; + "1928-03-13"^^xsd:date; + "1928-03-13"^^xsd:date; + "John"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Theater director, actor"; + ; + . + + a ; + "https://d-nb.info/gnd/11613321X"; + "KarBer-00"; + "Own"; + "https://lccn.loc.gov/nr95045398"; + "https://viaf.org/viaf/17966100"; + "https://www.wikidata.org/wiki/Q115220857"; + "https://en.wikipedia.org/wiki/Carl_Bergmann_(musician)"; + "1821-04-12"^^xsd:date; + "1821-04-12"^^xsd:date; + "1876-08-16"^^xsd:date; + "1876-08-16"^^xsd:date; + "Bergmann"; + "Karl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carl_Bergmann.jpg"; + "https://www.wikidata.org/wiki/Q2076574#/media/File:Carl_Bergmann.jpg"; + "Cellist,Conductor"; + ; + . + + a ; + "KhaKha-2107"; + "Own"; + "Khalan"; + "Khalanov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LipKen-762"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Lipzin"; + "Keni"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "LuaZez-00"; + "Own"; + "do Patrocínio Oliveira (Bando da Lua)"; + "José"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MelNel-00"; + "Own"; + "Melba"; + "Nellie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MitBar-00"; + "Own"; + "Mitre "; + "Bartolomé"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ModGus-00"; + "Own"; + "Modrzejewski"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MuiEnr-00"; + "Own"; + "Muiño"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ParFlo-00"; + "Own"; + "Parravicini"; + "Florencio Parravicini"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1025594568"; + "PauJoh-00"; + "Own"; + "https://viaf.org/viaf/252231639/"; + "https://www.wikidata.org/wiki/Q4347222"; + "1844-01-10"^^xsd:date; + "1844-01-10"^^xsd:date; + "1896-05-23"^^xsd:date; + "1896-05-23"^^xsd:date; + "Paumgartner"; + "Johann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Composer, music writer"; + ; + . + + a ; + "PenRoq-00"; + "Own"; + "Peña"; + "Roque Saenz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "President" . + + a ; + "QueMar-00"; + "Own"; + "Quesada"; + "Maruja Gil Quesada"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ResLui-00"; + "Own"; + "Ress"; + "Luise"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RicOrf-00"; + "Own"; + "Rico"; + "Orfilia"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RocJul-00"; + "Own"; + "Roca "; + "Julio Argentino"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "RocMig-00"; + "Own"; + "Rocha"; + "Miguel Faust Rocha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SalLor-00"; + "Own"; + "Salvi"; + "Lorenzo Salvi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SerEnr-00"; + "Own"; + "Serrano"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SilJac-2974"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Silbert"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "SpiJac-768"; + "Tau Cooperation"; + ""; + "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + "Spivakovsky"; + "Jacob"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "StoJul-00"; + "Own"; + "Stockhausen"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://data.cerl.org/thesaurus/cnp01346917"; + "https://d-nb.info/gnd/117197343"; + "TagFil-00"; + "https://isni.org/isni/0000000119485966"; + "Own"; + "https://lccn.loc.gov/n83015672"; + "https://snaccooperative.org/ark:/99166/w6r21v4v#resources"; + "https://viaf.org/viaf/37022097"; + "https://www.wikidata.org/wiki/Q704671"; + "1777-11-05"^^xsd:date; + "1777-11-05"^^xsd:date; + "1871-01-11"^^xsd:date; + "1871-01-11"^^xsd:date; + "Taglioni"; + "Filippo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "choreographer, ballet master, dancer"; + ; + . + + a ; + "TsvLou-814"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VaySop-3159"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaynshtok-sophia.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.692."""; + "1866-01-01"^^xsd:date; + "1866-12-31"^^xsd:date; + "Vaynshtok"; + "Sophia"; + "1866"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "VehLui-00"; + "Own"; + "Vehil"; + "Luisa Vehil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VelEnr-00"; + "Own"; + "García Velloso"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1062232747"; + "WhiLeo-00"; + "https://isni.org/isni/0000000117672397"; + "Own"; + "https://lccn.loc.gov/n87914420"; + "https://snaccooperative.org/ark:/99166/w6bm4cwv#resources"; + "https://viaf.org/viaf/64206061"; + "https://www.wikidata.org/wiki/Q1383202"; + "1882-11-10"^^xsd:date; + "1882-11-10"^^xsd:date; + "1948-09-20"^^xsd:date; + "1948-09-20"^^xsd:date; + "White"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leo_White_01.JPG"; + "https://www.wikidata.org/wiki/Q1383202#/media/File:Leo_White_01.JPG"; + "film,stage actor"; + ; + . + + a ; + "WinWil-00"; + "Own"; + "Winter"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Córdoba"; + "South America"; + "Argentina"; + "3860259"; + "ARG-Cord-00"; + -3.14167e1; + -6.41833e1; + "Q44210"; + "https://en.wikipedia.org/wiki/C%C3%B3rdoba,_Argentina" . + + a ; + "Australia"; + "Australia"; + "2145234"; + "AUS-Vict-00"; + "Victoria"; + -3.7e1; + 1.44e2; + "Q36687"; + "https://en.wikipedia.org/wiki/Victoria_(state)" . + + a ; + "Vitebsk"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-2"; + 5.51833e1; + 3.01667e1; + "Q102217"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Dawson"; + "North America"; + "Canada"; + "6943713"; + "CA-Daws-00"; + 6.40506e1; + -1.39418e2; + "Q372324"; + "https://en.wikipedia.org/wiki/Dawson_City" . + + a ; + "Geneva"; + "Europe"; + "Switzerland"; + "2660646"; + "CH-GEN-00"; + 4.62e1; + 6.15e0; + "Q71"; + "https://en.wikipedia.org/wiki/Geneva" . + + a ; + "Santiago de Chile"; + "South America"; + "Chile"; + "3871336"; + "CL-Santiago-00"; + -3.345e1; + -7.066670000000001e1; + "Q2887"; + "https://en.wikipedia.org/wiki/Santiago" . + + a ; + "San José"; + "South America"; + "Costa Rica"; + "3621849"; + "CSTR-SanJos-00"; + 9.924720000000001e0; + -8.407810000000001e1; + "Q3070"; + "https://en.wikipedia.org/wiki/San_Jos%C3%A9,_Costa_Rica" . + + a ; + "Karlovy Vary"; + "Europe"; + "Czech Republic"; + "3073803"; + "CZ-Karlsb-00"; + 5.02306e1; + 1.28725e1; + "Q384544"; + "https://en.wikipedia.org/wiki/Karlovy_Vary" . + + a ; + "Pilsen"; + "Europe"; + "Czech Republic"; + "3068160"; + "CZ-Pils-00"; + 4.97475e1; + 1.33775e1; + "Q43453"; + "https://en.wikipedia.org/wiki/Plze%C5%88" . + + a ; + "Europe"; + "Denmark"; + "2623032"; + "DK-00"; + 5.6e1; + 1.0e1; + "Q35"; + "https://en.wikipedia.org/wiki/Denmark" . + + a ; + "Bath"; + "Europe"; + "England"; + "EN-Bath-00"; + "Somerset"; + 5.13814e1; + -2.35972e0; + "Q22889"; + "https://en.wikipedia.org/wiki/Bath,_Somerset" . + + a ; + "Castilla"; + "Europe"; + "Spain"; + "ES-Cast-00"; + 4.2e1; + 0.0e0; + "https://en.wikipedia.org/wiki/Castile_(historical_region)" . + + a ; + "Málaga"; + "Europe"; + "Spain"; + "2514256"; + "ES-Malaga-00"; + 3.672e1; + -4.42e0; + "Q8851"; + "https://en.wikipedia.org/wiki/M%C3%A1laga" . + + a ; + "Boulogne-Billancourt"; + "Europe"; + "France"; + "3031137"; + "FR-Paris-01"; + 4.88352e1; + 2.2409e0; + "Q172455"; + "https://en.wikipedia.org/wiki/Boulogne-Billancourt" . + + a ; + "Neustrelitz"; + "Europe"; + "Germany"; + "2864005"; + "GER-NeuStrel-00"; + "Mecklenburg-Vorpommern"; + 5.33647e1; + 1.30636e1; + "Q20352"; + "https://en.wikipedia.org/wiki/Neustrelitz" . + + a ; + "Potsdam"; + "Europe"; + "Germany"; + "2852458"; + "GER-Potsd-00"; + 5.24e1; + 1.30667e1; + "Q1711"; + "https://en.wikipedia.org/wiki/Potsdam" . + + a ; + "Europe"; + "Hungary"; + "719819"; + "HU-00"; + 4.7e1; + 1.9e1; + "Q28"; + "https://en.wikipedia.org/wiki/Hungary" . + + a ; + "Sopron"; + "Europe"; + "Hungary"; + "3045190"; + "HU-Oedb-00"; + 4.76849e1; + 1.6583e1; + "Q168648"; + "https://en.wikipedia.org/wiki/Sopron" . + + a ; + "Buda (Budapest)"; + "Europe"; + "Hungary"; + "3054667"; + "HU-Ofen-00"; + 4.74956e1; + 1.90397e1; + "Q193478"; + "https://en.wikipedia.org/wiki/Buda" . + + a ; + "Londonderry"; + "Europe"; + "Northern Ireland (UK)"; + "2643734"; + "IE-Ldnder-00"; + 5.49975e1; + -7.32e0; + "Q163584"; + "https://en.wikipedia.org/wiki/Derry" . + + a ; + "Chennai"; + "Asia"; + "India"; + "1264527"; + "IN-Chenn-00"; + 1.30833e1; + 8.02833e1; + "Q1352"; + "https://en.wikipedia.org/wiki/Chennai" . + + a ; + "Florence"; + "Europe"; + "Italy"; + "3176959"; + "IT-Flor-00"; + 4.37714e1; + 1.12542e1; + "Q2044"; + "https://en.wikipedia.org/wiki/Florence" . + + a ; + "Genoa"; + "Europe"; + "Italy"; + "3176219"; + "IT-Genoa-00"; + 4.44167e1; + 8.93333e0; + "Q1449"; + "https://en.wikipedia.org/wiki/Genoa" . + + a ; + "Verona"; + "Europe"; + "Italy"; + "3164527"; + "IT-Vero-00"; + 4.54386e1; + 1.09928e1; + "Q2028"; + "https://en.wikipedia.org/wiki/Verona" . + + a ; + "Europe"; + "Lithuania"; + "LT-00"; + 5.5e1; + 2.4e1; + "Q37" . + + a ; + "Noresund"; + "Europe"; + "Norway"; + "NOR-Nores-00"; + 6.01667e1; + 9.616669999999999e0; + "Q3044576"; + "https://en.wikipedia.org/wiki/Noresund" . + + a ; + "North America"; + "North America"; + "6255149"; + "NorthAmerica"; + 4.81667e1; + 1.00167e2; + "Q49"; + "https://en.wikipedia.org/wiki/North_America" . + + a ; + "Constantinople"; + "Asia"; + "Turkey"; + "TR-Const-00"; + 4.10092e1; + 2.89758e1; + "Q16869" . + + a ; + "Europe"; + "Ukraine"; + "UA-00"; + 4.98e1; + 3.08333e1; + "Q212" . + + a ; + "Czernowitz"; + "Europe"; + "Ukraine"; + "UA-Czern-00"; + 4.83e1; + 2.593e1; + "Q157725" . + + a ; + "Kremenchuk"; + "Europe"; + "Ukraine"; + "UA-Krem-00"; + 4.90631e1; + 3.34039e1; + "Q156724"; + "https://en.wikipedia.org/wiki/Kremenchuk" . + + a ; + "Akron"; + "North America"; + "USA"; + "USA-Akr-00"; + "Ohio"; + 4.10814e1; + -8.15189e1; + "Q163132" . + + a ; + "Binghamton"; + "North America"; + "USA"; + "USA-Bing-00"; + "New York"; + 4.21022e1; + -7.59117e1; + "Q213814" . + + a ; + "Middletown"; + "North America"; + "USA"; + "USA-CMiddl-00"; + "Connecticut"; + 4.15622e1; + -7.26511e1; + "Q49192" . + + a ; + "San Bernardino"; + "North America"; + "USA"; + "USA-CSanB-00"; + "California"; + 3.41294e1; + -1.17293e2; + "Q486168" . + + a ; + "Dubuque"; + "North America"; + "USA"; + "USA-Dubuq-00"; + "Iowa"; + 4.25044e1; + -9.068689999999999e1; + "Q493794" . + + a ; + "Jersey City"; + "North America"; + "USA"; + "5099836"; + "USA-Jersey-00"; + "New Jersey"; + 4.07219e1; + -7.406529999999999e1; + "Q26339"; + "https://en.wikipedia.org/wiki/Jersey_City,_New_Jersey" . + + a ; + "Leadville"; + "North America"; + "USA"; + "USA-Leadv-00"; + "Colorado"; + 3.92506e1; + -1.06291e2; + "Q286702" . + + a ; + "Little Rock"; + "North America"; + "USA"; + "4119403"; + "USA-LtlRo-00"; + "Arkansas"; + 3.47464e1; + -9.22881e1; + "Q33405"; + "https://en.wikipedia.org/wiki/Little_Rock,_Arkansas" . + + a ; + "Montgomery"; + "North America"; + "USA"; + "USA-Montg-00"; + "Alabama"; + 3.23675e1; + -8.63e1; + "Q29364"; + "https://en.wikipedia.org/wiki/Montgomery,_Alabama" . + + a ; + "Oswego"; + "North America"; + "USA"; + "USA-Osw-00"; + "New York"; + 4.34586e1; + -7.650360000000001e1; + "Q1017583" . + + a ; + "Poughkeepsie"; + "North America"; + "USA"; + "USA-Pough-00"; + "New York"; + 4.16949e1; + -7.39211e1; + "Q178093" . + + a ; + "Racine"; + "North America"; + "USA"; + "USA-Rac-00"; + "Wisconsin"; + 4.27261e1; + -8.78058e1; + "Q40340" . + + a ; + "Richmond"; + "North America"; + "USA"; + "4263681"; + "USA-Richm-01"; + "Indiana"; + 3.98316e1; + -8.48738e1; + "Q548664"; + "https://en.wikipedia.org/wiki/Richmond,_Indiana" . + + a ; + "Rockford"; + "North America"; + "USA"; + "USA-Rockf-00"; + "Illinois"; + 4.22694e1; + -8.90694e1; + "Q233892" . + + a ; + "Spokane"; + "North America"; + "USA"; + "USA-Spok-00"; + "Washington"; + 4.76589e1; + -1.17425e2; + "Q187805" . + + a ; + "Springfield"; + "North America"; + "USA"; + "USA-SpringO-00"; + "Ohio"; + 3.992e1; + -8.377079999999999e1; + "Q40325"; + "https://en.wikipedia.org/wiki/Springfield,_Ohio" . + + a ; + "Santa Barbara"; + "North America"; + "USA"; + "5392952"; + "USA-StBarb-04"; + "California"; + 3.44167e1; + -1.197e2; + "Q159288"; + "https://en.wikipedia.org/wiki/Santa_Barbara,_California" . + + a ; + "Trenton"; + "North America"; + "USA"; + "USA-Trent-00"; + "New Jersey"; + 4.02117e1; + -7.47467e1; + "Q25330" . + + a ; + "Wilmington"; + "North America"; + "USA"; + "4499379"; + "USA-Wilm-00"; + "North Carolina"; + 3.42231e1; + -7.79119e1; + "Q659400"; + "https://en.wikipedia.org/wiki/Wilmington,_North_Carolina" . + + a ; + "Wilmington"; + "North America"; + "USA"; + "4145381"; + "USA-Wilm-01"; + "Delaware"; + 3.97458e1; + -7.55466e1; + "Q174224"; + "https://en.wikipedia.org/wiki/Wilmington,_Delaware" . + + a ; + "Zanesville"; + "North America"; + "USA"; + "USA-Zanes-00"; + "Ohio"; + 3.99461e1; + -8.201220000000001e1; + "Q146811" . + + a ; + "Ulaniv"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-96"; + 4.96958e1; + 2.81358e1; + "Q335665"; + "https://en.wikipedia.org/wiki/" . + + a ; + 1071; + ""; + "Niblos Garden" . + + a ; + 1095; + ""; + ""; + "California theatre" . + + a ; + 1110; + "Theatre"; + ""; + "Opera House" . + + a ; + 120; + "Theatre"; + ""; + "Hoftheater Weimar"; + . + + a ; + 1275; + ""; + ""; + "Union Square Theatre" . + + a ; + 1305; + ""; + ""; + "Madison Square Theatre" . + + a ; + 131; + "Theatre"; + ""; + "Academy of Music, Montreal"; + . + + a ; + 1375; + ""; + ""; + "Princess Theatre" . + + a ; + 1380; + ""; + ""; + "Empire Theatre" . + + a ; + 154; + "Company"; + ""; + "Augustin Daly’s troupe" . + + a ; + 168; + "Theatre"; + ""; + "Münchner Nationaltheater"; + . + + a ; + 2096; + ""; + ""; + "Boston Globe Theatre" . + + a ; + 2181; + ""; + "Tour" . + + a ; + 220; + ""; + ""; + "Stadttheater Mainz" . + + a ; + 2211; + "Theatre"; + ""; + "Teatro Solis" . + + a ; + 2380; + "Company"; + ""; + "Colonel Miles’s company & McWade Company" . + + a ; + 2525; + "Theatre"; + ""; + "Teatro Nacional de la Comedia" . + + a ; + 2945; + "Theatre"; + ""; + "Teatro Nuevo" . + + a ; + 298; + ""; + ""; + "Stadttheater Basel" . + + a ; + 3015; + "Company"; + ""; + "Her own company" . + + a ; + 3020; + ""; + "Arellano-Tesada/ Ángela Tesada-Enrique Arellano" . + + a ; + 3175; + ""; + "Caras y Caretas" . + + a ; + 3305; + "Theatre"; + ""; + "Teatro La Alegría" . + + a ; + 400; + "Theatre"; + ""; + "Theater des Westens"; + . + + a ; + 402; + "Theatre"; + ""; + "Deutsches Künstlertheater Berlin" . + + a ; + 4141; + ""; + "Teatro Variedades" . + + a ; + 4291; + ""; + "Revista Musical (Musical Magazine)" . + + a ; + 4306; + ""; + "Instituto Nacional de Música" . + + a ; + 434; + "Theatre"; + ""; + "Bayerische Hofoper"; + . + + a ; + 4525; + ""; + "Aeolian Hall" . + + a ; + 455; + "Theatre"; + ""; + "Raimundtheater Wien"; + . + + a ; + 4652; + ""; + "Cracow Theatre" . + + a ; + 4692; + ""; + "Rochester Grand Opera House" . + + a ; + 4732; + ""; + "Hibbard's Opera House"; + . + + a ; + 4780; + ""; + "Compañía “Roberto Casaux”" . + + a ; + 48990; + "Traveling Company"; + ""; + "Abraham Axelrad Troupe" . + + a ; + 49080; + "Theatre"; + ""; + "Academy of Music" . + + a ; + 491; + "Theatre"; + ""; + "Neues Deutsches Theater Prag"; + . + + a ; + 4920; + "Fulton Opera House" . + + a ; + 49470; + "Society/Union"; + ""; + "Am Olam" . + + a ; + 4948; + "Pittsburgh Grand Opera House" . + + a ; + 4956; + "Richmond Theatre" . + + a ; + 49940; + "Theatre"; + ""; + "Bagatela Theatre" . + + a ; + 503; + "Company"; + ""; + "Literarishe Trupe (Kaminski)" . + + a ; + 5044; + "Tabor Grand Opera House in Denver" . + + a ; + 5104; + "Opera House in Rockford" . + + a ; + 5112; + "St. Paul Grand Opera House" . + + a ; + 51430; + "Theatre"; + ""; + "Colisseum Theatre" . + + a ; + 5148; + "Nettlefold Studios" . + + a ; + 5192; + "Grand Opera House (St. Louis)" . + + a ; + 5232; + "Montgomery Theatre" . + + a ; + 52830; + "Amateur"; + ""; + "Dramatic Club" . + + a ; + 529; + "Theatre"; + ""; + "Teatro San Carlo"; + . + + a ; + 5328; + "Albaugh´s Opera House (Washington)" . + + a ; + 5332; + "Worcester Theatre" . + + a ; + 5349; + "Theatre"; + "Academy of Music, Norfolk"; + . + + a ; + 5377; + "Barton´s Opera House" . + + a ; + 543; + "Theatre"; + ""; + "Schauspielhaus Berlin"; + . + + a ; + 5457; + "Funke´s Opera House, Lincoln" . + + a ; + 5465; + "Grand Opera House, Colorado Springs" . + + a ; + 54760; + "Company on Tour"; + ""; + "Habima" . + + a ; + 54970; + "Printed Media"; + ""; + "Hazman" . + + a ; + 5569; + "Middlesex Theatre, Middletown" . + + a ; + 573; + "Theatre"; + ""; + "Comedy Theatre " . + + a ; + 5760; + "Fuller Opera House in Madison" . + + a ; + 585; + "Theatre"; + ""; + "Teatro Baquet"; + . + + a ; + 586; + "Theatre"; + ""; + "Teatro São Luiz"; + . + + a ; + 588; + "Theatre"; + ""; + "Teatro Lucinda"; + . + + a ; + 59130; + "Traveling Company"; + ""; + "Naftali Goldfaden Troupe" . + + a ; + 60430; + "Theatre"; + ""; + "Oriental Theatre"; + . + + a ; + 62420; + "Traveling Company"; + ""; + "Sam Adler Troupe" . + + a ; + 657; + "Theatre"; + ""; + "Éden Teatro" . + + a ; + 67250; + "Traveling Company"; + ""; + "Vaksman Troupe" . + + a ; + 674; + "Company"; + ""; + "Lyric-Drama company Cabral" . + + a ; + 68060; + "Society/Union"; + ""; + "Yiddish artists union" . + + a ; + 688; + "Company"; + ""; + "Manuela Lucci company" . + + a ; + 69660; + "Traveling Company"; + ""; + "United Dramatic Troupe" . + + a ; + 70020; + "Theatre"; + "Gimpel's troupe" . + + a ; + 70092; + "Theatre"; + "Public Theatre" . + + a ; + 70124; + "Traveling Company"; + "Sam Adler's Troupe" . + + a ; + 71971; + "Theatre"; + "Academy of Music, Buffalo"; + . + + a ; + 72075; + "Theatre"; + "Tacoma Theatre"; + . + + a ; + 72319; + "Teatro Íntimo de la Peña" . + + a ; + 72344; + "Sociedad Argentina de Escritores" . + + a ; + 72454; + """Deutschen Künstlertheaters +""" . + + a ; + 72469; + "Buchverlag „Die Schmiede”" . + + a ; + 726; + "Theatre"; + ""; + "Teatro Apollo" . + + a ; + 746; + "Circus"; + ""; + "Brothers Carlo Circus" . + + a ; + 756; + "Theatre"; + ""; + "Teatro Coliseo Argentino" . + + a ; + 761; + "Theatre"; + ""; + "Teatro Santana" . + + a ; + 765; + "Company"; + ""; + "Rosas & Brasão teatrical Company" . + + a ; + 768; + "Theatre"; + ""; + "Teatro Colón" . + + a ; + 84; + "Theatre"; + ""; + "Hoftheater Kassel"; + . + + a ; + 94; + "Theatre"; + ""; + "Theater Graz"; + . + + a ; + "https://d-nb.info/gnd/134086058"; + "AhnEle-00"; + "https://isni.org/isni/0000000027894156"; + "Own"; + "Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen Akademie der Wissenschaften, Wien 1957"; + "https://viaf.org/viaf/1220339"; + "https://www.wikidata.org/wiki/Q109745"; + "https://en.wikipedia.org/wiki/Eleonore_de_Ahna"; + "1838-01-08"^^xsd:date; + "1838-01-08"^^xsd:date; + "buried in the Alter Domfriedhof der St.-Hedwigs-Gemeinde cemetery. Her grave is decorated with a marble angel by Julius Franz."; + "1865-05-10"^^xsd:date; + "1865-05-10"^^xsd:date; + "de Ahna"; + "Eleonore"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ahna_Eleonore_de.jpg"; + "https://de.wikipedia.org/wiki/Eleonore_de_Ahna"; + "Opera Singer, Soprano, Mezzosopran"; + ; + . + + a ; + "AliElí-00"; + "Own"; + "Alippi"; + "Elías"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AndLuc-00"; + "Own"; + "Philpot Anderson"; + "Lucy"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "AssMac-00"; + "Own"; + "de Assis"; + "Machado"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "BelHir-1249"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bellow-hirsh-gedalyi.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.192."""; + "Bellow"; + "Hirsh Gedalyi"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "CaeJoa-00"; + "Own"; + "Caetano"; + "João"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DavEdw-00"; + "Own"; + "Davenport"; + "Edward Loomis Davenport"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "DaySam-1479"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/D/dayen-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.539"""; + "1862-01-01"^^xsd:date; + "1862-12-31"^^xsd:date; + "Dayen"; + "Sam"; + "1862"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Sam_Dayen.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/D/dayen-sam.htm"; + ; + "Jewish" . + + a ; + "DeREnr-00"; + "Own"; + "de Rosas"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "FroAnn-00"; + "Own"; + "Frost"; + "Annie Forst / Annie Frost"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://data.cerl.org/thesaurus/cnp00585317"; + "https://d-nb.info/gnd/116820446"; + "GraLuc-00"; + "https://isni.org/isni/0000000109540351"; + "Own"; + "https://lccn.loc.gov/n97858395"; + "https://snaccooperative.org/ark:/99166/w6fr0pq4#resources"; + "https://viaf.org/viaf/10607022"; + "https://www.wikidata.org/wiki/Q272482"; + "1819-06-30"^^xsd:date; + "1819-06-30"^^xsd:date; + "One of the most talented ballett dancers of the 19th century."; + "1907-04-04"^^xsd:date; + "1907-04-04"^^xsd:date; + "Grahn"; + "Lucile"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Grahn_Lucile_.jpg"; + "https://de.wikipedia.org/wiki/Lucile_Grahn"; + "Ballet Mistress, Dancer"; + ; + . + + a ; + "HacJam-00"; + "Own"; + "Hackett"; + "James Henry Hackett"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "-"; + "https://d-nb.info/gnd/116379960"; + "HagUta-00"; + "https://isni.org/isni/0000000121434957"; + "Own"; + "https://lccn.loc.gov/n88094554"; + "https://snaccooperative.org/ark:/99166/w64q8kzx"; + "https://viaf.org/viaf/91640350"; + "https://www.wikidata.org/wiki/Q64260"; + "https://en.wikipedia.org/wiki/Uta_Hagen"; + "1919-06-12"^^xsd:date; + "1919-06-12"^^xsd:date; + "2004-01-14"^^xsd:date; + "2004-01-14"^^xsd:date; + "Hagen"; + "Uta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720472462792.jpg"; + "https://www.wikidata.org/wiki/Q64260#/media/File:Robeson_Hagen_Othello.jpg"; + "Actress"; + ; + . + + a ; + "HalCha-00"; + "Own"; + "Hallé"; + "Charles Hallé"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://data.cerl.org/thesaurus/cnp00948894"; + "https://d-nb.info/gnd/116650796"; + "HeiCae-00"; + " https://isni.org/isni/0000000079824977 "; + "Own"; + "https://lccn.loc.gov/n83015843"; + "Karl Theodor von Heigel: Heigel, Franz. In: Allgemeine Deutsche Biographie (ADB)"; + "https://viaf.org/viaf/8145229"; + "https://www.wikidata.org/wiki/Q1150012"; + "1783-06-25"^^xsd:date; + "1783-06-25"^^xsd:date; + "maybe killed in the Revolution of 1848"; + "1847-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "Heigel"; + "Caesar Max"; + "last notice 1847 "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor, Librettist ,Lyricist"; + ; + . + + a ; + "https://d-nb.info/gnd/1272648796"; + "HerAle-00"; + "https://isni.org/isni/0000000081147944"; + "Own"; + "https://lccn.loc.gov/n79022023"; + "https://snaccooperative.org/ark:/99166/w6x394nt#resources"; + "https://viaf.org/viaf/35725501/"; + "https://www.wikidata.org/wiki/Q2642281"; + "1844-02-11"^^xsd:date; + "1844-02-11"^^xsd:date; + "died on tour in his privat railroad car on his way from Rorchester to Bradford Pennsylvania, Woodlawn Cemetery, New York City"; + "1896-12-17"^^xsd:date; + "1896-12-17"^^xsd:date; + "Herrmann"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander Herrmann.jpg"; + "https://de.wikipedia.org/wiki/Alexander_Herrmann_(Zauberk%C3%BCnstler)#:~:text=Alexander%20Herrmann%20(*%2010.%20Februar,oder%20The%20Great%20Herrmann%20auf."; + "Magician"; + ; + . + + a ; + "https://d-nb.info/gnd/118551647"; + "HitAlf-00"; + "https://isni.org/isni/0000000121318219"; + "Own"; + "https://lccn.loc.gov/n79027022"; + "https://snaccooperative.org/ark:/99166/w6cp7t0q"; + "https://viaf.org/viaf/49226917"; + "https://www.wikidata.org/wiki/Q7374"; + "1899-08-13"^^xsd:date; + "1899-08-13"^^xsd:date; + "Hitchcock was appointed a Knight Commander of the Most Excellent Order of the British Empire (KBE) in the 1980 New Year Honours."; + "1980-04-29"^^xsd:date; + "1980-04-29"^^xsd:date; + "Hitchcock"; + "Alfred "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Film Director, Producer,Screenwriter"; + ; + . + + a ; + "HurCha-2035"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/hurwitz-charlotte.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.606."""; + "1861-01-01"^^xsd:date; + "1861-12-31"^^xsd:date; + "Buried in Washington Cemetery, Brooklyn, New York"; + "Hurwitz"; + "Charlotte"; + "1861"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "KalFri-00"; + "Own"; + "Kalkbrenner"; + "Friedrich Kalkbrenner"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KuhWil-00"; + "Own"; + "Kuhe"; + "Wilhelm Kuhe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LamFra-00"; + "Own"; + "Lamperti"; + "Francesco Lamperti"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LatIze-LatIze-927"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/L/latayner-izela.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.964."""; + "1860-01-01"^^xsd:date; + "1860-12-31"^^xsd:date; + "1909-12-30"^^xsd:date; + "1909-12-30"^^xsd:date; + "Lateiner"; + "Izela"; + "1860"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "LouAri-00"; + "Own"; + "Louel"; + "Aristius Louel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "LumLum-00"; + "Own"; + "Lumley"; + "Lumley"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MacGeo-00"; + "Own"; + "Macfarren"; + "George Alexander Macfarren"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MarIri-00"; + "Own"; + "Marga"; + "Iris Marga"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MenFel-00"; + "Own"; + "Mendelssohn"; + "Felix Mendelssohn"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MeyGia-00"; + "Own"; + "Meyerbeer"; + "Giacomo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "MosIgn-00"; + "Own"; + "Moscheles"; + "Ignaz Moscheles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/118843249"; + "NegPol-00"; + "https://isni.org/isni/0000000117819141"; + "Own"; + "https://lccn.loc.gov/n90679150"; + "https://snaccooperative.org/ark:/99166/w6qk1t2d#resources"; + "https://viaf.org/viaf/66594789"; + "https://www.wikidata.org/wiki/Q230633"; + "1897-01-03"^^xsd:date; + "1897-01-03"^^xsd:date; + "1987-08-01"^^xsd:date; + "1987-08-01"^^xsd:date; + "Negri"; + "Pola"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Stage,Film Actress,Singer"; + ; + . + + a ; + "OffJac-00"; + "Own"; + "Offenbach"; + "Jacques"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PodJer-00"; + "Own"; + "Podestá"; + "Jerónimo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PynLou-00"; + "Own"; + "Pyne"; + "Louisa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PynSus-00"; + "Own"; + "Pyne"; + "Susanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SebJoh-00"; + "Own"; + "Seb"; + "Joh."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShuLee-00"; + "Own"; + "Shubert"; + "Lee"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SimLui-00"; + "Own"; + "Simões"; + "Lucília"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/1250127688"; + "StrEdg-00"; + "Own"; + "Director der Carleton Opera Company"; + "https://www.wikidata.org/wiki/Q115221079"; + "1859-04-30"^^xsd:date; + "1859-04-30"^^xsd:date; + "Part of the Strakosch family, the “sugar barons”."; + "1942-12-23"^^xsd:date; + "1942-12-23"^^xsd:date; + "Strakosch"; + "Edgar Hugh"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Impresario, Director"; + ; + . + + a ; + "TabRob-00"; + "Own"; + "Taber"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ThaSig-00"; + "Own"; + "Thalberg"; + "Sigismund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VieHen-00"; + "Own"; + "Vieuxtemps"; + "Henri"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "Guaymallén Department"; + "South America"; + "Argentina"; + "3854459"; + "ARG-Guay-00"; + "Mendoza"; + -3.29053e1; + -6.87867e1; + "Q9001103"; + "https://en.wikipedia.org/wiki/Guaymall%C3%A9n_Department" . + + a ; + "Mar del Plata"; + "South America"; + "Argentina"; + "3430863"; + "ARG-MdPl-00"; + "Buenos Aires Province"; + -3.7995e1; + -5.75667e1; + "Q52607"; + "https://en.wikipedia.org/wiki/Mar_del_Plata" . + + a ; + "Brisbane"; + "Australia"; + "Australia"; + "AU-Brisb-00"; + -2.74678e1; + 1.53028e2; + "Q34932" . + + a ; + "Europe"; + "Belgium"; + "2802361"; + "BE-00"; + 5.08333e1; + 4.0e0; + "Q31"; + "https://en.wikipedia.org/wiki/Belgium" . + + a ; + "Liége"; + "Europe"; + "Belgium"; + "2792413"; + "BE-Lieg-00"; + 5.06397e1; + 5.57056e0; + "Q3992"; + "https://en.wikipedia.org/wiki/Li%C3%A8ge" . + + a ; + "Niterói"; + "South America"; + "Brazil"; + "3456283"; + "BR-Niter-00"; + -2.28828e1; + -4.31039e1; + "Q178725"; + "https://en.wikipedia.org/wiki/Niter%C3%B3i" . + + a ; + "Europe"; + "Bessar-00"; + "Bessarabia"; + 4.7e1; + 2.9e1; + "Q174994" . + + a ; + "Hamilton"; + "North America"; + "Canada"; + "CA-Ham-00"; + "Ontario"; + 4.32553e1; + -7.987309999999999e1; + "Q133116"; + "https://de.wikipedia.org/wiki/Hamilton_(Ontario)" . + + a ; + "Winnipeg"; + "North America"; + "Canada"; + "Can-DiJeSt-75"; + 4.98956e1; + -9.71386e1; + "Q2135"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Marseille"; + "Europe"; + "France"; + "2995469"; + "FR-Mars-00"; + 4.32964e1; + 5.37e0; + "Q23482"; + "https://en.wikipedia.org/wiki/Marseille" . + + a ; + "Aachen"; + "Europe"; + "Germany"; + "3247449"; + "GER-Aach-00"; + 5.07756e1; + 6.08361e0; + "Q1017"; + "https://en.wikipedia.org/wiki/Aachen" . + + a ; + "Bernburg"; + "Europe"; + "Germany"; + "2950073"; + "GER-Bernb-00"; + 5.18e1; + 1.17333e1; + "Q14938"; + "https://en.wikipedia.org/wiki/Bernburg" . + + a ; + "Görlitz"; + "Europe"; + "Germany"; + "2918987"; + "GER-Goerl-00"; + 5.11528e1; + 1.49872e1; + "Q4077"; + "https://en.wikipedia.org/wiki/G%C3%B6rlitz" . + + a ; + "Schwerin"; + "Europe"; + "Germany"; + "2834282"; + "GER-Schwer-00"; + 5.36333e1; + 1.14167e1; + "Q1709"; + "https://en.wikipedia.org/wiki/Schwerin" . + + a ; + "Zagreb"; + "Europe"; + "Croatia"; + "3186886"; + "HR-Zagr-00"; + 4.58167e1; + 1.59833e1; + "Q1435"; + "https://en.wikipedia.org/wiki/Zagreb" . + + a ; + "Europe"; + "Ireland"; + "IE-00"; + 5.31333e1; + -8.116669999999999e0; + "Q27" . + + a ; + "Cassano d’Adda"; + "Europe"; + "Italy"; + "3179795"; + "IT-Cassa-00"; + "Lombardy"; + 4.55333e1; + 9.51667e0; + "Q42613"; + "https://en.wikipedia.org/wiki/Cassano_d%27Adda" . + + a ; + "Europe"; + "Italy"; + "2523118"; + "IT-Sici-00"; + "Sicily"; + 3.75e1; + 1.4e1; + "Q1460"; + "https://en.wikipedia.org/wiki/Sicily" . + + a ; + "Colombo"; + "Asia"; + "Sri Lanka"; + "LK-Colomb-00"; + 6.9336e0; + 7.98501e1; + "Q35381" . + + a ; + "Rotterdam"; + "Europe"; + "Netherlands"; + "2747891"; + "NL-Rott-00"; + 5.19167e1; + 4.5e0; + "Q34370"; + "https://en.wikipedia.org/wiki/Rotterdam" . + + a ; + "Napier"; + "Oceania"; + "New Zealand"; + "2186313"; + "NZ-Nap-00"; + -3.94863e1; + 1.76909e2; + "Q203380"; + "https://en.wikipedia.org/wiki/Napier,_New_Zealand" . + + a ; + "Szczecin"; + "Europe"; + "Poland"; + "3083829"; + "PL-SZ-00"; + 5.34325e1; + 1.45481e1; + "Q393"; + "https://en.wikipedia.org/wiki/Szczecin" . + + a ; + "Zamość"; + "Europe"; + "Poland"; + "Pol-DiJeSt-17"; + 5.07206e1; + 2.32586e1; + "Q145972"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Europe"; + "Scotland"; + "2638360"; + "SCT-00"; + 5.7e1; + -4.0e0; + "Q22"; + "https://en.wikipedia.org/wiki/Scotland" . + + a ; + "Leeds"; + "Europe"; + "England (UK)"; + "2644688"; + "UK-Leeds-00"; + 5.37997e1; + -1.54917e0; + "Q39121"; + "https://en.wikipedia.org/wiki/Leeds" . + + a ; + "Ann Arbor"; + "North America"; + "USA"; + "USA-Anarb-00"; + "Michigan"; + 4.22753e1; + -8.37308e1; + "Q485172" . + + a ; + "Bridgeport"; + "North America"; + "USA"; + "USA-Bridgep-00"; + "Connecticut"; + 4.11864e1; + -7.31956e1; + "Q49174" . + + a ; + "Butte"; + "North America"; + "USA"; + "USA-Butte-00"; + "Montana"; + 4.60039e1; + -1.12534e2; + "Q467664" . + + a ; + "Chattanooga"; + "North America"; + "USA"; + "USA-Chatt-00"; + "Tennessee"; + 3.50364e1; + -8.53075e1; + "Q186702" . + + a ; + "Evansville"; + "North America"; + "USA"; + "USA-Evansv-00"; + "Indiana"; + 3.79772e1; + -8.75506e1; + "Q486459" . + + a ; + "Galveston"; + "North America"; + "USA"; + "USA-Galv-00"; + "Texas"; + 2.92811e1; + -9.48258e1; + "Q135744" . + + a ; + "Helena"; + "North America"; + "USA"; + "USA-Hel-00"; + "Montana"; + 4.65942e1; + -1.12011e2; + "Q38733" . + + a ; + "Ithaca"; + "North America"; + "USA"; + "USA-Itha-00"; + "New York"; + 4.24441e1; + -7.650320000000001e1; + "Q217346" . + + a ; + "Jackson"; + "North America"; + "USA"; + "4997384"; + "USA-Jackso-00"; + "Michigan"; + 4.22441e1; + -8.44072e1; + "Q984374"; + "https://en.wikipedia.org/wiki/Jackson,_Michigan" . + + a ; + "Lancaster"; + "North America"; + "USA"; + "USA-Lanc-00"; + "Pennsylvania"; + 4.00397e1; + -7.63044e1; + "Q320514" . + + a ; + "Lexington"; + "North America"; + "USA"; + "USA-Lex-00"; + "Kentucky"; + 3.80464e1; + -8.44969e1; + "Q49241" . + + a ; + "Mobile"; + "North America"; + "USA"; + "4076598"; + "USA-Mobile-00"; + "Alabama"; + 3.06944e1; + -8.80431e1; + "Q79875"; + "https://en.wikipedia.org/wiki/Mobile,_Alabama" . + + a ; + "New London"; + "North America"; + "USA"; + "4839416"; + "USA-NLdn-00"; + "Connecticut"; + 4.13556e1; + -7.210080000000001e1; + "Q49146"; + "https://en.wikipedia.org/wiki/New_London,_Connecticut" . + + a ; + "Oakland"; + "North America"; + "USA"; + "USA-Oakl-00"; + "California"; + 3.7805e1; + -1.22272e2; + "Q17042" . + + a ; + "Oshkosh"; + "North America"; + "USA"; + "USA-OshkW-00"; + "Wisconsin"; + 4.40242e1; + -8.85611e1; + "Q936741" . + + a ; + "San Antonio"; + "North America"; + "USA"; + "4726206"; + "USA-SanAnt-00"; + "Texas"; + 2.9425e1; + -9.84939e1; + "Q975"; + "https://en.wikipedia.org/wiki/San_Antonio" . + + a ; + "Stockton"; + "North America"; + "USA"; + "USA-Stockt-00"; + "California"; + 3.79756e1; + -1.21301e2; + "Q49240" . + + a ; + "Winona"; + "North America"; + "USA"; + "USA-Wino-00"; + "Minnesota"; + 4.40475e1; + -9.16399e1; + "Q773527" . + + a ; + "Kolomyia"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-126"; + 4.85167e1; + 2.50333e1; + "Q52193"; + "https://en.wikipedia.org/wiki/" . + + a ; + "The Bronx"; + "North America"; + "United States"; + "Uni-DiJeSt-52"; + 4.08468e1; + -7.38732e1; + "Q18426"; + "https://en.wikipedia.org/wiki/" . + + a ; + 1068; + ""; + ""; + "Court Theatre" . + + a ; + 109; + "Theatre"; + ""; + "Stadttheater Leipzig"; + . + + a ; + 111; + "Theatre"; + ""; + "Deutsches Volkstheater in Wien"; + . + + a ; + 1257; + "Theatre"; + ""; + "Opera Comique" . + + a ; + 136; + "Theatre"; + ""; + "Garrick Theatre" . + + a ; + 1470; + "Theatre"; + ""; + "Teatro Carlos Gomes" . + + a ; + 1530; + ""; + "Royal College of Music" . + + a ; + 175; + "Theatre"; + ""; + "Imperial Theatre Warsaw"; + . + + a ; + 176; + "Theatre"; + ""; + "California Theatre San Francisco"; + . + + a ; + 178; + "Theatre"; + ""; + "Star Theatre" . + + a ; + 180; + "Theatre"; + ""; + "Academy of Music, New York"; + . + + a ; + 1826; + "Theatre"; + ""; + "Teatro Santanna" . + + a ; + 183; + "Theatre"; + ""; + "Köln Oper"; + . + + a ; + 233; + ""; + ""; + "Wallack’s Theatre" . + + a ; + 238; + ""; + ""; + "Bowery Theatre"; + . + + a ; + 2415; + "Theatre"; + ""; + "Astor Place Opera House"; + . + + a ; + 268; + "Theatre"; + ""; + "Manhattan Opera House"; + . + + a ; + 2925; + "Theatre"; + ""; + "Teatro Zarzuela" . + + a ; + 2970; + "Theatre"; + ""; + "Teatro Smart" . + + a ; + 3350; + "Theatre"; + ""; + "Teatro Sarmiento" . + + a ; + 3745; + "Media"; + ""; + "Radio Belgrano" . + + a ; + 3795; + "Media"; + ""; + "Radio Mayrink Veiga" . + + a ; + 3840; + ""; + ""; + "Roxy Theatre" . + + a ; + 4151; + ""; + "Teatro Onrubia" . + + a ; + 4176; + ""; + "La Nación" . + + a ; + 4281; + ""; + "Narciso, Napolão & Cia. (Musical Instruments Store)" . + + a ; + 4400; + ""; + "Operetta Tour" . + + a ; + 4680; + ""; + "Milwaukee Grand Opera House" . + + a ; + 4796; + ""; + "Compañía de Pablo Podestá" . + + a ; + 4976; + "Grand Opera House in Terre Haute" . + + a ; + 4988; + "Grand Opera House in Cincinnati" . + + a ; + 4992; + "Macauleys Theatre in Louisville" . + + a ; + 4996; + "Dicksons Grand Opera House in Indianapolis" . + + a ; + 502; + "Company"; + ""; + "Goldfadn and his troupe" . + + a ; + 5060; + "Wheeler Opera House in Toledo" . + + a ; + 5068; + "Academy of Music, Scranton"; + . + + a ; + 508; + "Company"; + ""; + "Teatr Nowosco"; + . + + a ; + 5164; + "Chestnut Street Opera House (Philadelphia)" . + + a ; + 5196; + "Grand Opera House (Burlington)" . + + a ; + 5268; + "Grand Opera House (Topeka)" . + + a ; + 5284; + "Greene´s Opera House (Cedar" . + + a ; + 53640; + "Traveling Company"; + ""; + "Finkel, Feinman and Mogulesko's Troupe" . + + a ; + 54320; + "Traveling Company"; + ""; + "Gleichman Troupe" . + + a ; + 54960; + "Society/Union"; + ""; + "Hazamir" . + + a ; + 5597; + "New Park Theatre, Brooklyn" . + + a ; + 5613; + "Oliver Opera House, South Bend" . + + a ; + 56550; + "Company on Tour"; + ""; + "Kaminski's Theatre"; + . + + a ; + 5737; + "Winona Opera House" . + + a ; + 58250; + "Theatre"; + ""; + "Mariinski"; + . + + a ; + 59620; + "Theatre"; + ""; + "New York's Public Theatre" . + + a ; + 653; + "Theatre"; + ""; + "Teatro do Príncipe Real" . + + a ; + 66720; + "Company on Tour"; + ""; + "The Yiddish Art Theatre (as company on tour)" . + + a ; + 67090; + "Society/Union"; + ""; + "Union Theatre"; + . + + a ; + 67210; + "Society/Union"; + ""; + "Unzer vinkl (Our Corner)" . + + a ; + 68280; + "Traveling Company"; + ""; + "Zandberg Troupe" . + + a ; + 69712; + "RKO Films" . + + a ; + 69768; + "Traveling Company"; + "Naftali Goldfaden's troupe" . + + a ; + 69840; + "Traveling Company"; + "Zandberg's troupe" . + + a ; + 70108; + "Traveling Company"; + "Gleichman's troupe" . + + a ; + 70400; + "Traveling Company"; + "Aba Kompaneyets' troupe" . + + a ; + 70720; + "Kleinkunst"; + "Yiddish vaudeville houses" . + + a ; + 70904; + "Theatre"; + "Roumanian Opera House" . + + a ; + 71924; + "ADD NEW" . + + a ; + 71936; + "Wallerstein’s Yiddish Theatre Company" . + + a ; + 71973; + "Theatre"; + "Mozart Academy of Music, Richmond"; + . + + a ; + 72229; + "Asociación Argentina por la Libertad de la Cultura" . + + a ; + 72354; + "Colegio Libre de Estudios Superiores (CLES)" . + + a ; + 73138; + "Civic Repertory Theatre"; + . + + a ; + 736; + ""; + ""; + "Chestnut Street Theatre" . + + a ; + 800; + "Company"; + ""; + "Heller’s theatre company" . + + a ; + 896; + "Theatre"; + ""; + "Teatro São Carlos" . + + a ; + 992; + "Theatre"; + ""; + "Stadttheater"; + . + + a ; + "https://d-nb.info/gnd/130643823"; + "AffAgu-00"; + "https://isni.org/isni/0000000030533968"; + "Own"; + "https://lccn.loc.gov/n87113926"; + "Großes Sängerlexikon"; + "https://viaf.org/viaf/19874110/"; + "https://www.wikidata.org/wiki/Q4694618"; + "1858-10-23"^^xsd:date; + "1858-10-23"^^xsd:date; + "1931-12-27"^^xsd:date; + "1931-12-27"^^xsd:date; + "Affre"; + "Agustarello"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/getimage-1-737x600.jpg"; + "https://www.forumopera.com/agustarello-affre-1858-1931-le-tamagno-francais/"; + "Opera Singer"; + ; + . + + a ; + "BerSar-00"; + "Own"; + "Bernhardt"; + "Sarah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "CarEnr-00"; + "Own"; + "Caruso"; + "Enrico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/116020768"; + "DamLeo-00"; + "https://isni.org/isni/0000000083903600"; + "Own"; + "https://lccn.loc.gov/no88005912"; + "https://snaccooperative.org/ark:/99166/w6z32562"; + "Library of congress, https://de.wikipedia.org/wiki/Leopold_Damrosch"; + "https://viaf.org/viaf/66730233"; + "https://www.wikidata.org/wiki/Q213990"; + "1832-10-22"^^xsd:date; + "1832-10-22"^^xsd:date; + "1885-02-15"^^xsd:date; + "1885-02-15"^^xsd:date; + "Damrosch"; + "Leopold"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Komponist, Dirigent, Violinist ,Musikpädagoge"; + ; + . + + a ; + "Edw-00"; + "Own"; + "Booth"; + "Edwin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ForEdw-00"; + "Own"; + "Forrest"; + "Edwin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "HeySam-1997"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/heyligman-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.606."""; + "1869-01-01"^^xsd:date; + "1869-12-31"^^xsd:date; + "Heyligman"; + "Samuel"; + "1869"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "JoaJos-00"; + "Own"; + "Joachim"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "KopLou-2137"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kopelman-louis.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5145."""; + "1901-01-01"^^xsd:date; + "1901-12-31"^^xsd:date; + "Kopelman"; + "Louis"; + "1901"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/135083966"; + "LisHan-00"; + "https://isni.org/isni/0000000055498484"; + "Own"; + "https://lccn.loc.gov/nr2001022029"; + "https://viaf.org/viaf/7317421"; + "https://www.wikidata.org/wiki/Q1581084"; + "1885-09-19"^^xsd:date; + "1885-09-19"^^xsd:date; + "1964-05-26"^^xsd:date; + "1964-05-26"^^xsd:date; + "Lissmann"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/220px-Hans_Lissmann.jpg"; + "https://de.wikipedia.org/wiki/Hans_Lissmann#/media/Datei:Hans_Lissmann.jpg"; + "Opera Singer, Singing Teacher"; + ; + . + + a ; + "PodJos-00"; + "Own"; + "Podestá"; + "José J."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "PodPab-00"; + "Own"; + "Podestá"; + "Pablo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "QuiCam-00"; + "Own"; + "Quiroga"; + "Camila"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "ShrAdo-2943"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/shrage-adolph.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4938."""; + "1871-01-01"^^xsd:date; + "1871-01-01"^^xsd:date; + "Shrage"; + "Adolph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "SimSim-2979"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/130538027"; + "TurMar-00"; + "https://isni.org/isni/0000000066883257"; + "Own"; + "https://viaf.org/viaf/62658382/"; + "https://www.wikidata.org/wiki/Q113805479"; + "Turkow"; + "Mark "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + . + + a ; + "Mendoza"; + "South America"; + "Argentina"; + "3844421"; + "ARG-Mendo-00"; + -3.28833e1; + -6.883329999999999e1; + "Q44237"; + "https://en.wikipedia.org/wiki/Mendoza,_Argentina" . + + a ; + "South America"; + "Brazil"; + "3451133"; + "BR-RGdS-00"; + "Rio Grande do Sul"; + -2.976e1; + -5.316e1; + "Q40030"; + "https://en.wikipedia.org/wiki/Rio_Grande_do_Sul" . + + a ; + "Brest"; + "Europe"; + "Belarus"; + "Bel-DiJeSt-16"; + 5.20847e1; + 2.36569e1; + "Q140147"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Victoria"; + "North America"; + "Canada"; + "CA-Vict-00"; + "British Columbia"; + 4.84283e1; + -1.23365e2; + "Q2132" . + + a ; + "Europe"; + "Switzerland"; + "2658434"; + "CH-00"; + 4.68333e1; + 8.33333e0; + "Q39"; + "https://en.wikipedia.org/wiki/Switzerland" . + + a ; + "Havana"; + "South America"; + "Cuba"; + "CU-Hav-00"; + 2.31367e1; + -8.235890000000001e1; + "Q1563" . + + a ; + "Catalonia"; + "Europe"; + "Spain"; + "ES-Catal-00"; + 4.18167e1; + 1.56667e0; + "Q5705" . + + a ; + "Nice"; + "Europe"; + "France"; + "2990440"; + "FR-Niz-00"; + 4.37045e1; + 7.262e0; + "Q33959"; + "https://en.wikipedia.org/wiki/Nice" . + + a ; + "Strasbourg"; + "Europe"; + "France"; + "2973783"; + "FR-Strb-00"; + 4.85833e1; + 7.74583e0; + "Q6602"; + "https://en.wikipedia.org/wiki/Strasbourg" . + + a ; + "Altenburg"; + "Europe"; + "Germany"; + "2957773"; + "GER-Altenb-00"; + "Thuringia"; + 5.0985e1; + 1.24333e1; + "Q15976"; + "https://en.wikipedia.org/wiki/Altenburg" . + + a ; + "Brunswick"; + "Europe"; + "Germany"; + "2945024"; + "GER-BrauSch-00"; + 5.22667e1; + 1.05167e1; + "Q2773"; + "https://en.wikipedia.org/wiki/Braunschweig" . + + a ; + "Darmstadt"; + "Europe"; + "Germany"; + "2938913"; + "GER-Darm-00"; + 4.98722e1; + 8.65278e0; + "Q2973"; + "https://en.wikipedia.org/wiki/Darmstadt" . + + a ; + "Lübeck"; + "Europe"; + "Germany"; + "2875601"; + "GER-Lueb-00"; + 5.38697e1; + 1.06864e1; + "Q2843"; + "https://en.wikipedia.org/wiki/L%C3%BCbeck" . + + a ; + "Meiningen"; + "Europe"; + "Germany"; + "2872225"; + "GER-Mein-00"; + 5.055e1; + 1.04167e1; + "Q487278"; + "https://en.wikipedia.org/wiki/Meiningen" . + + a ; + "Mumbai"; + "Asia"; + "India"; + "1275339"; + "IN-Mumb-00"; + 1.89667e1; + 7.283329999999999e1; + "Q1156"; + "https://en.wikipedia.org/wiki/Mumbai" . + + a ; + "Bologna"; + "Europe"; + "Italy"; + "3181928"; + "IT-BOL-00"; + 4.44939e1; + 1.13428e1; + "Q1891"; + "https://en.wikipedia.org/wiki/Bologna" . + + a ; + "Daugavpils"; + "Europe"; + "Latvia"; + "Lat-DiJeSt-140"; + 5.58714e1; + 2.65161e1; + "Q80021"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Wellington"; + "Oceania"; + "New Zealand"; + "2179537"; + "NZ-ChrCh-00"; + -4.12875e1; + 1.74776e2; + "Q23661"; + "https://en.wikipedia.org/wiki/Wellington" . + + a ; + "Botoșani"; + "Europe"; + "Romania"; + "684039"; + "ROU-Bot-00"; + 4.77461e1; + 2.66661e1; + "Q178855"; + "https://en.wikipedia.org/wiki/Boto%C8%99ani" . + + a ; + "Belgrade"; + "Europe"; + "Serbia"; + "792680"; + "SRB-BEL-00"; + 4.48167e1; + 2.04667e1; + "Q3711"; + "https://en.wikipedia.org/wiki/Belgrade" . + + a ; + "Charleston"; + "North America"; + "USA"; + "UAS-Charls-00"; + "South Carolina"; + 3.27833e1; + -7.99333e1; + "Q47716" . + + a ; + "Birmingham"; + "Europe"; + "United Kingdom"; + "UK-Birm-00"; + 5.24829e1; + -1.8936e0; + "Q2256" . + + a ; + "Bristol"; + "Europe"; + "England (UK)"; + "2654675"; + "UK-Bris-00"; + 5.145e1; + -2.58333e0; + "Q23154"; + "https://en.wikipedia.org/wiki/Bristol" . + + a ; + "Europe"; + "England (UK)"; + "3333158"; + "UK-Kent-00"; + "Kent"; + 5.12167e1; + 8.5e-1; + "Q23298"; + "https://en.wikipedia.org/wiki/Kent" . + + a ; + "Austin"; + "North America"; + "USA"; + "USA-Aust-00"; + "Texas"; + 3.02672e1; + -9.776390000000001e1; + "Q16559" . + + a ; + "Bloomington"; + "North America"; + "USA"; + "USA-BloomIl-00"; + "Illinois"; + 4.04842e1; + -8.89936e1; + "Q577802"; + "https://en.wikipedia.org/wiki/Bloomington,_Illinois" . + + a ; + "Burlington"; + "North America"; + "USA"; + "4849826"; + "USA-Burli-00"; + "Iowa"; + 4.0808e1; + -9.111579999999999e1; + "Q580182"; + "https://en.wikipedia.org/wiki/Burlington,_Iowa" . + + a ; + "Cedar Rapids"; + "North America"; + "USA"; + "USA-CedRap-00"; + "Iowa"; + 4.19831e1; + -9.16686e1; + "Q486439" . + + a ; + "Colorado Springs"; + "North America"; + "USA"; + "USA-ColSpr-00"; + "Colorado"; + 3.88339e1; + -1.04821e2; + "Q49258"; + "https://en.wikipedia.org/wiki/Colorado_Springs,_Colorado" . + + a ; + "Dayton"; + "North America"; + "USA"; + "4509884"; + "USA-Dayt-00"; + "Ohio"; + 3.97628e1; + -8.419670000000001e1; + "Q34739"; + "https://en.wikipedia.org/wiki/Dayton,_Ohio" . + + a ; + "Decatur"; + "North America"; + "USA"; + "USA-DecatIl-00"; + "Illinois"; + 3.98414e1; + -8.89559e1; + "Q506325"; + "https://en.wikipedia.org/wiki/Decatur,_Illinois" . + + a ; + "Duluth"; + "North America"; + "USA"; + "USA-Dulu-00"; + "Minnesota"; + 4.67864e1; + -9.21003e1; + "Q12185551" . + + a ; + "Elmira"; + "North America"; + "USA"; + "USA-Elm-00"; + "New York"; + 4.20938e1; + -7.680970000000001e1; + "Q934135" . + + a ; + "Fort Worth"; + "North America"; + "USA"; + "USA-FortW-00"; + "Texas"; + 3.27514e1; + -9.73297e1; + "Q16558" . + + a ; + "Fresno"; + "North America"; + "USA"; + "USA-Fres-00"; + "California"; + 3.678e1; + -1.1979e2; + "Q43301" . + + a ; + "Manhattan"; + "North America"; + "USA"; + "5125771"; + "USA-MNHTN-00"; + "New York"; + 4.07833e1; + -7.39667e1; + "Q11299"; + "https://en.wikipedia.org/wiki/Manhattan" . + + a ; + "Orange"; + "North America"; + "USA"; + "5102213"; + "USA-Oran-00"; + "New Jersey"; + 4.0768e1; + -7.423560000000001e1; + "Q1087121"; + "https://en.wikipedia.org/wiki/Orange,_New_Jersey" . + + a ; + "Peoria"; + "North America"; + "USA"; + "4905687"; + "USA-Preo-00"; + "Illinois"; + 4.07206e1; + -8.96092e1; + "Q233129"; + "https://en.wikipedia.org/wiki/Peoria,_Illinois" . + + a ; + "Pueblo"; + "North America"; + "USA"; + "USA-Pueb-00"; + "Colorado"; + 3.82669e1; + -1.0462e2; + "Q675576" . + + a ; + "Quincy"; + "North America"; + "USA"; + "USA-Quinc-00"; + "Illinois"; + 3.99322e1; + -9.13886e1; + "Q575750" . + + a ; + "South Bend"; + "North America"; + "USA"; + "USA-SBend-00"; + "Indiana"; + 4.1675e1; + -8.625279999999999e1; + "Q486877" . + + a ; + "Savannah"; + "North America"; + "USA"; + "USA-Sav-00"; + "Georgia"; + 3.20506e1; + -8.11036e1; + "Q83813" . + + a ; + "Springfield"; + "North America"; + "USA"; + "4250542"; + "USA-Springf-00"; + "Illinois"; + 3.97833e1; + -8.96503e1; + "Q28515"; + "https://en.wikipedia.org/wiki/Springfield,_Illinois" . + + a ; + "Wheeling"; + "North America"; + "USA"; + "5280854"; + "USA-Wheel-00"; + "West Virginia"; + 4.00703e1; + -8.06986e1; + "Q838112"; + "https://en.wikipedia.org/wiki/Wheeling,_West_Virginia" . + + a ; + "Wilkes-Barre"; + "North America"; + "USA"; + "USA-WilkB-00"; + "Pennsylvania"; + 4.12444e1; + -7.58781e1; + "Q745594" . + + a ; + "Worcester"; + "North America"; + "USA"; + "USA-Worc-00"; + "Massachusetts"; + 4.22686e1; + -7.18036e1; + "Q49179" . + + a ; + "Kamianets-Podilskyi"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-58"; + 4.86806e1; + 2.65806e1; + "Q193965"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Hanoi"; + "Asia"; + "Vietnam"; + "1581130"; + "VN-HAN-00"; + 2.10333e1; + 1.0585e2; + "Q1858"; + "https://en.wikipedia.org/wiki/Hanoi" . + + a ; + 110; + "Theatre"; + ""; + "Stadttheater Wien"; + . + + a ; + 1293; + "Company"; + ""; + "With Mr. Herne" . + + a ; + 135; + "Company"; + ""; + "Charles Frohman's company" . + + a ; + 142; + "Theatre"; + ""; + "Opéra de Paris"; + . + + a ; + 147; + "Theatre"; + ""; + "Broadway Theatre New York"; + . + + a ; + 1806; + "Theatre"; + ""; + "Teatro Phênix Dramática" . + + a ; + 1926; + "Theatre"; + ""; + "Eldorado" . + + a ; + 206; + "Education (Theatre related)"; + ""; + "Conservatoire de Paris"; + . + + a ; + 2250; + "Company"; + ""; + "Colonel Miles’s company" . + + a ; + 2300; + ""; + ""; + "Davidson Theatre" . + + a ; + 2776; + "Theatre"; + ""; + "Metropolitan Opera House" . + + a ; + 2796; + "Theatre"; + ""; + "Columbia Theatre"; + . + + a ; + 2965; + "Theatre"; + ""; + "Teatro Odeón" . + + a ; + 304; + ""; + "Universal Pictures" . + + a ; + 3145; + ""; + "Argentores" . + + a ; + 3265; + "Theatre"; + ""; + "Teatro Argentino" . + + a ; + 3365; + "Theatre"; + ""; + "Teatro Victoria"; + . + + a ; + 3790; + "Casino"; + ""; + "Cassino da Urca" . + + a ; + 389; + "Theatre"; + ""; + "Burgtheater Wien"; + . + + a ; + 442; + "Education (Theatre related)"; + ""; + "Konservatorium Wien"; + . + + a ; + 463; + "Theatre"; + ""; + "Théâtre Royal de la Monnaie"; + . + + a ; + 4664; + ""; + "Grand Opera House Toronto" . + + a ; + 4748; + ""; + "Apollo Theatre, London"; + . + + a ; + 4960; + "Savannah Theatre" . + + a ; + 49610; + "Education (Theatre related)"; + ""; + "Arbeter Ring (Workmen's Circle)" . + + a ; + 5108; + "Grand Opera House in Minneapolis" . + + a ; + 5136; + "British International Pictures" . + + a ; + 5168; + "Opera House (Springfield)" . + + a ; + 5280; + "Burtis Opera House (Davenport)" . + + a ; + 5312; + "Tootle´s Opera House (St. Joseph)" . + + a ; + 54330; + "Traveling Company"; + ""; + "Glickman's Yiddish Players" . + + a ; + 54410; + "Kleinkunst"; + ""; + "Gradina Lieblich Jigniza"; + . + + a ; + 55840; + "Traveling Company"; + ""; + "Hurwitz Troupe" . + + a ; + 57240; + "Theatre"; + ""; + "Lawndale Theatre" . + + a ; + 597; + "Theatre"; + ""; + "Teatro República"; + . + + a ; + 601; + ""; + ""; + "João Caetanos's theater company" . + + a ; + 61400; + "Theatre"; + ""; + "Prospect Theatre" . + + a ; + 632; + ""; + ""; + "Vicente Pontes de Oliveira’s theatre company" . + + a ; + 671; + "Theatre"; + ""; + "Teatro Avenida" . + + a ; + 72; + "Theatre"; + ""; + "Oper Riga" . + + a ; + 72177; + "Society of Friends of Music (New York)"; + . + + a ; + 72459; + "Komödienhaus am Schiffbauerdamm" . + + a ; + 74; + "Theatre"; + ""; + "Hoftheater Wien" . + + a ; + 794; + "Theatre"; + ""; + "Palace Théâtre" . + + a ; + 866; + "Company"; + ""; + "Rosas & Brazão theater company" . + + a ; + 91; + "Theatre"; + ""; + "Stadttheater Bremen"; + . + + a ; + "-"; + "-"; + "BoyRaf-791"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/boyarsky-bogart-rafael.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.12."""; + "-"; + "-"; + "-"; + "1868-12-15"^^xsd:date; + "1868-12-15"^^xsd:date; + "1925-08-01"^^xsd:date; + "1925-08-01"^^xsd:date; + "Boyarsky-Bogart"; + "Rafael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-boyarsky-bogart-rafael.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/boyarsky-bogart-rafael.htm"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01903552"; + "https://d-nb.info/gnd/116636602"; + "ColIsa-00"; + "https://isni.org/isni/0000000116191452"; + "Own"; + "https://lccn.loc.gov/no99002457"; + "https://snaccooperative.org/ark:/99166/w61v6mmj#resources"; + "https://viaf.org/viaf/35213234"; + "https://www.wikidata.org/wiki/Q268979"; + "https://en.wikipedia.org/wiki/Isabella_Colbran"; + "1785-02-02"^^xsd:date; + "1785-02-02"^^xsd:date; + "1845-10-07"^^xsd:date; + "1845-10-07"^^xsd:date; + "Colbran"; + "Isabella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Isabella_Colbran_by_Reiter.jpg"; + "https://de.wikipedia.org/wiki/Isabella_Colbran#/media/Datei:Isabella_Colbran_by_Reiter.jpg"; + "Opera Singer, Soprano"; + ; + . + + a ; + "DowAda-00"; + "Own"; + "Dow"; + "Ada Dow"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "https://d-nb.info/gnd/116461128"; + "ElsHer-00"; + "Own"; + "https://worldcat.org/identities/lccn-n97860540/"; + "https://viaf.org/viaf/17974617/"; + "https://www.wikidata.org/wiki/Q59653193"; + "1811-04-07"^^xsd:date; + "1811-04-07"^^xsd:date; + "1895-03-17"^^xsd:date; + "1895-03-17"^^xsd:date; + "Elßler"; + "Hermine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Dancer"; + ; + . + + a ; + "GroJos-1913"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/groper-joseph.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.527."""; + "1866-01-01"^^xsd:date; + "1866-12-31"^^xsd:date; + "Buried in Mount Hebron Cemetery, Long Island, New York"; + "Groper"; + "Joseph"; + "1866"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1272689174"; + "KonFid-00"; + "Own"; + "https://www.worldcat.org/identities/np-koenig,%20fidele/"; + "https://www.wikidata.org/wiki/Q115220917"; + "1848-04-12"^^xsd:date; + "1848-04-12"^^xsd:date; + "König"; + "Fidèle"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera singer, Singing teacher" . + + a ; + "https://d-nb.info/gnd/1250089077"; + "LeiLil-00"; + "https://isni.org/isni/0000000119149305"; + "Own"; + "https://lccn.loc.gov/n97875048"; + "https://snaccooperative.org/ark:/99166/w6bv94ff#resources"; + "https://viaf.org/viaf/170322010"; + "https://www.wikidata.org/wiki/Q6548159"; + "https://en.wikipedia.org/wiki/Lillian_Leitzel"; + "1892-01-02"^^xsd:date; + "1892-01-02"^^xsd:date; + " Burial: her ashes were interred at the Inglewood Park Cemetery in Inglewood, California"; + "1931-02-15"^^xsd:date; + "1931-02-15"^^xsd:date; + "Leitzel"; + "Lillian"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lillian_Leitzel_(1931).jpg"; + "https://www.wikidata.org/wiki/Q6548159#/media/File:Lillian_Leitzel_(1931).jpg"; + "Acrobat"; + ; + . + + a ; + "https://d-nb.info/gnd/1111574375"; + "MacAug-00"; + "https://isni.org/isni/0000000067878425"; + "Own"; + "https://lccn.loc.gov/nr2003003974"; + "https://viaf.org/viaf/27005474/"; + "https://www.wikidata.org/wiki/Q9637764"; + "1845-12-27"^^xsd:date; + "1845-12-27"^^xsd:date; + "1924-03-26"^^xsd:date; + "1924-03-26"^^xsd:date; + "Machado"; + "Augusto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Augusto_Machado_in_«O_Occidente»_Nº_788_de_10_de_Agosto_de_1900.png"; + "https://www.wikidata.org/wiki/Q9637764#/media/File:Augusto_Machado_in_%C2%ABO_Occidente%C2%BB_N%C2%BA_788_de_10_de_Agosto_de_1900.png"; + "Composer, Music Teacher,Theatre Director"; + ; + . + + a ; + "https://d-nb.info/gnd/116449667"; + "ResJos-00"; + "https://isni.org/isni/0000000140546137"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + "https://viaf.org/viaf/177911072/"; + "https://www.wikidata.org/wiki/Q783639"; + "1855-06-04"^^xsd:date; + "1855-06-04"^^xsd:date; + "1891-02-22"^^xsd:date; + "1891-02-22"^^xsd:date; + "de Reszke"; + "Josefine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Józefina_Reszke_portret_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q783639#/media/File:J%C3%B3zefina_Reszke_portret_(cropped).jpg"; + "Opera Singer"; + ; + . + + a ; + "SchCla-00"; + "Own"; + "Schumann"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VakRoz-3138"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-roza.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.662."""; + "1874-01-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "Vaksman"; + "Roza"; + "1874"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-roza.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-roza.htm"; + "Jewish" . + + a ; + "WeiSol-3229"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weinstein-sol.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.693."""; + "1896-01-01"^^xsd:date; + "1896-12-31"^^xsd:date; + "Weinstein"; + "Sol"; + "1896"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "Tucuman"; + "South America"; + "Argentina"; + "ARG-Tucum-00"; + -2.7e1; + -6.55e1; + "Q662" . + + a ; + "Pelotas"; + "South America"; + "Brazil"; + "3454244"; + "BR-Pelot-00"; + -3.17667e1; + -5.23408e1; + "Q109188"; + "https://en.wikipedia.org/wiki/Pelotas" . + + a ; + "Cairo"; + "North Africa"; + "Egypt"; + "360630"; + "EG-Cairo-00"; + 3.00444e1; + 3.12358e1; + "Q85"; + "https://en.wikipedia.org/wiki/Cairo" . + + a ; + "Bordeaux"; + "Europe"; + "France"; + "3031582"; + "FR-Bord-00"; + 4.484e1; + -5.8e-1; + "Q1479"; + "https://en.wikipedia.org/wiki/Bordeaux" . + + a ; + "Augsburg"; + "Europe"; + "Germany"; + "2954172"; + "GER-Augsb-00"; + 4.83667e1; + 1.09e1; + "Q2749"; + "https://en.wikipedia.org/wiki/Augsburg" . + + a ; + "Duesseldorf"; + "Europe"; + "Germany"; + "2934246"; + "GER-Ddorf-00"; + 5.12333e1; + 6.78333e0; + "Q1718"; + "https://en.wikipedia.org/wiki/D%C3%BCsseldorf" . + + a ; + "Halle"; + "Europe"; + "Germany"; + "2911522"; + "GER-Hall-00"; + 5.14828e1; + 1.19697e1; + "Q2814"; + "https://en.wikipedia.org/wiki/Halle_(Saale)" . + + a ; + "Dublin"; + "Europe"; + "Ireland"; + "2964574"; + "IE-Dubl-00"; + 5.33497e1; + -6.26028e0; + "Q1761"; + "https://en.wikipedia.org/wiki/Dublin" . + + a ; + "Chișinău"; + "Europe"; + "Moldova"; + "Mol-DiJeSt-73"; + 4.70228e1; + 2.88353e1; + "Q21197"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Oceania"; + "New Zealand"; + "2186224"; + "NZ-00"; + -4.2e1; + 1.73e2; + "Q664"; + "https://en.wikipedia.org/wiki/New_Zealand" . + + a ; + "Breslau "; + "Europe"; + "Poland"; + "PL-Bresl-00"; + 5.111e1; + 1.70322e1; + "https://www.wikidata.org/wiki/Q446805"; + "https://de.wikipedia.org/wiki/Breslau" . + + a ; + "Timișoara"; + "Europe"; + "Romania"; + "665087"; + "ROU-Timis-00"; + 4.57561e1; + 2.12294e1; + "Q83404"; + "https://en.wikipedia.org/wiki/Timi%C8%99oara" . + + a ; + "Kaliningrad"; + "Europe"; + "Russia"; + "554234"; + "RUS-Kali-00"; + 5.47167e1; + 2.05167e1; + "Q1829"; + "https://en.wikipedia.org/wiki/K%C3%B6nigsberg" . + + a ; + "Glasgow"; + "Europe"; + "Scotland"; + "2648579"; + "SCT-Glasg-00"; + 5.58609e1; + -4.25143e0; + "Q4093"; + "https://en.wikipedia.org/wiki/Glasgow" . + + a ; + "Brighton"; + "Europe"; + "England (UK)"; + "2654710"; + "UK-Bright-00"; + 5.08242e1; + -1.33889e-1; + "Q131491"; + "https://en.wikipedia.org/wiki/Brighton" . + + a ; + "Atlanta"; + "North America"; + "USA"; + "USA-Atla-00"; + "Georgia"; + 3.37569e1; + -8.43903e1; + "Q23556" . + + a ; + "Bay City"; + "North America"; + "USA"; + "USA-BayC-00"; + "Michigan"; + 4.3595e1; + -8.38886e1; + "Q746820" . + + a ; + "Birmingham"; + "North America"; + "USA"; + "USA-Birm-00"; + "Alabama"; + 3.35247e1; + -8.68128e1; + "Q79867" . + + a ; + "San Diego"; + "North America"; + "USA"; + "USA-CSanD-00"; + "California"; + 3.2715e1; + -1.17162e2; + "Q16552" . + + a ; + "Des Moines"; + "North America"; + "USA"; + "USA-DMoi-00"; + "Iowa"; + 4.15886e1; + -9.36161e1; + "Q39709" . + + a ; + "Davenport"; + "North America"; + "USA"; + "USA-Davep-00"; + "Iowa"; + 4.15431e1; + -9.05908e1; + "Q26887" . + + a ; + "Harrisburg"; + "North America"; + "USA"; + "5192726"; + "USA-Harrisb-00"; + "Pennsylvania"; + 4.02734e1; + -7.68845e1; + "Q25280"; + "https://en.wikipedia.org/wiki/Harrisburg,_Pennsylvania" . + + a ; + "Houston"; + "North America"; + "USA"; + "4699066"; + "USA-Houst-00"; + "Texas"; + 2.97628e1; + -9.53831e1; + "Q16555"; + "https://en.wikipedia.org/wiki/Houston" . + + a ; + "Madison"; + "North America"; + "USA"; + "USA-Madi-00"; + "Wisconsin"; + 4.30747e1; + -8.938420000000001e1; + "Q43788"; + "https://en.wikipedia.org/wiki/Madison,_Wisconsin" . + + a ; + "Salt Lake City"; + "North America"; + "USA"; + "5780993"; + "USA-SaltL-00"; + "Utah"; + 4.07547e1; + -1.11893e2; + "Q23337"; + "https://en.wikipedia.org/wiki/Salt_Lake_City" . + + a ; + "Sioux City"; + "North America"; + "USA"; + "USA-Sioux-00"; + "Iowa"; + 4.12536e1; + -9.58625e1; + "Q489255" . + + a ; + "Saint Joseph"; + "North America"; + "USA"; + "USA-StJos-00"; + "Missouri"; + 3.97581e1; + -9.483669999999999e1; + "Q745120" . + + a ; + "Tacoma"; + "North America"; + "USA"; + "USA-Tac-00"; + "Washington"; + 4.72414e1; + -1.22459e2; + "Q199797" . + + a ; + "Watertown"; + "North America"; + "USA"; + "4845193"; + "USA-Watert-00"; + "Connecticut"; + 4.16147e1; + -7.31331e1; + "Q49178"; + "https://en.wikipedia.org/wiki/Watertown,_Connecticut" . + + a ; + "Zhytomyr"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-19"; + 5.02544e1; + 2.86578e1; + "Q156713"; + "https://en.wikipedia.org/wiki/" . + + a ; + 108; + "Theatre"; + ""; + "Hoftheater Hannover"; + . + + a ; + 121; + "Theatre"; + ""; + "Stadttheater Hamburg"; + . + + a ; + 1281; + "Company"; + ""; + "Lingard´s company" . + + a ; + 1390; + "Theatre"; + ""; + "Brooklyn Academy of Music"; + . + + a ; + 1951; + "Company"; + ""; + "Mlle. Aimée’ s opéra bouffe company" . + + a ; + 196; + "Theatre"; + ""; + "Royal Theater Stockholm"; + . + + a ; + 2046; + ""; + ""; + "Booth’s Theatre" . + + a ; + 2051; + "Company"; + ""; + "Opera Bouffe" . + + a ; + 2305; + "Company"; + ""; + "Sothern-Marlowe tour Company" . + + a ; + 2470; + "Education (Theatre related)"; + ""; + "The Academy of Music" . + + a ; + 257; + ""; + ""; + "Walnut Theatre Philadelphia" . + + a ; + 3155; + ""; + "Ateneo Cultural Eva Perón" . + + a ; + 3385; + ""; + "Sala Rex" . + + a ; + 4370; + ""; + "Théâtre des Menus-Plasirs" . + + a ; + 450; + "Theatre"; + ""; + "Hofoper Dresden"; + . + + a ; + 4704; + "Theatre"; + ""; + "Albany Proctor's Leland Theater" . + + a ; + 4712; + ""; + "Grand Rapids Powers' Grand Opera House" . + + a ; + 4944; + "Euclid Avenue Opera House in Cleveland" . + + a ; + 5140; + "Gaumont British" . + + a ; + 5152; + "Providence Opera House (Providence)" . + + a ; + 5160; + "New Haven Opera House" . + + a ; + 5529; + "Hyperion Theatre, New Haven" . + + a ; + 56190; + "Theatre"; + ""; + "Jardin d'Hiver"; + . + + a ; + 62050; + "Theatre"; + ""; + "Roumanian Opera House|Central Theatre"; + . + + a ; + 626; + "Theatre"; + ""; + "Teatro Ginásio Dramático"; + . + + a ; + 631; + "Company"; + ""; + "Germano Francisco de Oliveira’s theatre company" . + + a ; + 634; + "Company"; + ""; + "Associação Lírica Dramática theatre company" . + + a ; + 68140; + "Society/Union"; + ""; + "Yiddish Theatre Society" . + + a ; + 69650; + "Traveling Company"; + ""; + "Tsukerman's Troupe" . + + a ; + 70384; + "Traveling Company"; + "Kalmen Juvelier's troupe" . + + a ; + 72187; + "Bühnenvertrieb"; + "Gustav Kiepenheuer Verlags" . + + a ; + 83; + "Theatre"; + ""; + "Royal Opera House , London"; + . + + a ; + "-"; + "-"; + "AxeMin-1205"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-minnie.htm + +http://studia.ubbcluj.ro/download/pdf/1204.pdf + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.88."""; + "-"; + "-"; + "-"; + "1893-04-07"^^xsd:date; + "1893-04-07"^^xsd:date; + "Axelrad"; + "Minnie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-akselrad-minnie.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-minnie.htm"; + ; + "Jewish" . + + a ; + "or Roman or Galatz (Galati), Rumania"; + "AxeRos-980"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-rosa.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.89."""; + "Buried in Jewish cemetery in Bucharest"; + "1914-01-01"^^xsd:date; + "1915-12-31"^^xsd:date; + "Axelrad"; + "Rosa"; + "1914 or 1915"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "AxeRuk-1207"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-rukhl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.89."""; + "Axelrad"; + "Rukhl"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "-"; + "http://d-nb.info/gnd/118674501"; + "BruMax-00"; + "https://isni.org/isni/0000000121181101 "; + "Own"; + "-"; + "https://snaccooperative.org/view/13557568"; + "http://viaf.org/viaf/2655561"; + "https://www.wikidata.org/wiki/Q106434 "; + "https://en.wikipedia.org/wiki/Max_Bruch"; + "1838-01-06"^^xsd:date; + "1838-01-06"^^xsd:date; + "buried in Alter St.-Matthäus-Kirchhof Berlin"; + "1920-10-01"^^xsd:date; + "1920-10-01"^^xsd:date; + "Bruch"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/550px-Max_bruch.jpg"; + "https://www.wikidata.org/wiki/Q106434#/media/File:Max_bruch.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/1033568406"; + "DarHar-00"; + "https://isni.org/isni/0000000035455938"; + "Own"; + "https://lccn.loc.gov/n95075676"; + "https://snaccooperative.org/ark:/99166/w69p3w1v"; + "MGG"; + "https://viaf.org/viaf/31246810/"; + "https://www.wikidata.org/wiki/Q579461"; + "1860-06-10"^^xsd:date; + "1860-06-10"^^xsd:date; + "She has received several awards, among others the Order \"Bene Merenti\" Class of Carol I, as well as the Ottoman \"Artistic Medal\" and the \"Grand Officer Sefakatului\". She spoke German, French, Italian, Spanish, English, Greek and Russian. Her funeral was payed by the Italian embassy"; + "1939-01-10"^^xsd:date; + "1939-01-10"^^xsd:date; + "Darclée"; + "Hariclea"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hariclea_Darclee_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q579461#/media/File:Hariclea_Darclee_(cropped).jpg"; + "Opera Singer"; + ; + . + + a ; + "https://d-nb.info/gnd/143984314"; + "EibSie-00"; + "https://isni.org/isni/0000000118737850"; + "Own"; + "https://lccn.loc.gov/no2007037185"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/21916269"; + "https://www.wikidata.org/wiki/Q2284064"; + "https://en.wikipedia.org/wiki/Siegmund_Eibensch%C3%BCtz"; + "1856-11-19"^^xsd:date; + "1856-11-19"^^xsd:date; + "1922-02-19"^^xsd:date; + "1922-02-19"^^xsd:date; + "Eibenschütz"; + "Siegmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Siegmund_Eibenschuetz_1902_Vilimek.jpg"; + "https://www.wikidata.org/wiki/Q2284064#/media/File:Siegmund_Eibenschuetz_1902_Vilimek.jpg"; + "Theatre Manager, Conductor, Opera Correpetitor"; + ; + . + + a ; + "GreCha-1897"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/greenshpan-chaim.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.537."""; + "1889-01-01"^^xsd:date; + "1889-12-31"^^xsd:date; + "1908-01-01"^^xsd:date; + "1908-12-31"^^xsd:date; + "Greenshpan"; + "Chaim"; + "1889"; + "1908"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1030139210"; + "GunRao-00"; + "https://isni.org/isni/0000000110677179"; + "Own"; + "https://lccn.loc.gov/no88005294"; + "https://snaccooperative.org/ark:/99166/w6sr1vqp#resources"; + "MGG"; + "https://viaf.org/viaf/64184994"; + "https://www.wikidata.org/wiki/Q28265"; + "1860-01-06"^^xsd:date; + "1860-01-06"^^xsd:date; + "1955-05-31"^^xsd:date; + "1955-05-31"^^xsd:date; + "Gunsbourg"; + "Raoul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Raoul_Gunsbourg_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q28265#/media/File:Raoul_Gunsbourg_(cropped).jpg"; + "director,composer"; + ; + . + + a ; + "HadEst-1958"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/hadassah-esther.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.591."""; + "1897-05-13"^^xsd:date; + "1897-05-13"^^xsd:date; + "Hadassah"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-hadasah-esther.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/H/hadassah-esther.htm"; + "Jewish" . + + a ; + "https://d-nb.info/gnd/121911705"; + "HamOsc-00"; + "https://isni.org/isni/0000000117769797"; + "Own"; + "https://lccn.loc.gov/no98124146"; + "https://snaccooperative.org/ark:/99166/w6m3380w"; + "https://viaf.org/viaf/97883966"; + "https://www.wikidata.org/wiki/Q214394"; + "https://en.wikipedia.org/wiki/Oscar_Hammerstein_I"; + "1847-05-08"^^xsd:date; + "1847-05-08"^^xsd:date; + "Died 1919 in Manhattan Lenox Hill Hospital of kidneyproblems and paralysis. Interred in Woodlawn Cemetery (Bronx, New York) "; + "1919-08-01"^^xsd:date; + "1919-08-01"^^xsd:date; + "Hammerstein"; + "Oscar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Oscar_Hammerstein_001.jpeg"; + "https://www.wikidata.org/wiki/Q214394#/media/File:Oscar_Hammerstein_001.JPG"; + "Impresario, Composer"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/127264880X"; + "HerLeo-00"; + "Own"; + "https://www.wikidata.org/wiki/Q115220782"; + "1876-03-13"^^xsd:date; + "1876-03-13"^^xsd:date; + "Introduced as Alexander Herrmanns successor on the 10 January 1897."; + "1909-05-16"^^xsd:date; + "1909-05-16"^^xsd:date; + "Herrmann"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leon-Herrmann.jpg"; + "https://mattsko.com/2015/08/11/leon-herrmann-magician/"; + "Magier"; + ; + . + + a ; + "IbuJ-00"; + "Own"; + "Birth name"; + """ +The Japan Weekly Mail. 10th March 1888, p. 216: https://archive.org/details/jwm-bound-1888.1-6/page/216/mode/2up?q=Iburg. + +North China Herald. 24th February 1888, p. 199: https://archive.org/details/north-china-herald-1888.02.24/page/n1/mode/2up?q=Iburg. + +Kathleen L. Lodwick: The Chinese recorder, Shanghai: T. Chu [etc.] 1868, p. 148, https://archive.org/details/chineserecorder19lodwuoft/page/148/mode/2up?q=Iburg. + +North China Herald. 26th February 1874, p. 176: https://archive.org/details/north-china-herald-1874.02.26/page/176/mode/2up?q=Iburg. + +North China Herald, 04th March 1875, p. 209, https://archive.org/details/north-china-herald-1875.03.04/page/208/mode/2up?q=Iburg. + +The Japan Weekly Mail. 17th July 1880, p. 915: https://archive.org/details/jwm-bound-1880.5-8/page/934/mode/2up?q=Iburg. + +Musical performances at Felix Meritis. Program for Friday 20th February 1857, https://www.vondel.humanities.uva.nl/felix/concerts/553."""; + "1836-01-01"^^xsd:date; + "1836-12-31"^^xsd:date; + "1888-02-23"^^xsd:date; + "1888-02-23"^^xsd:date; + "Iburg"; + "J.C.H."; + "1836"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Musician"; + ; + . + + a ; + "KomLea-2132"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-leah.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5327."""; + "Buried in Cimetière de Bagneux, Paris"; + "Kompaneyets"; + "Leah"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/118573071"; + "LinPau-00"; + "https://isni.org/isni/0000000108577662"; + "Own"; + "https://lccn.loc.gov/n82048692"; + "https://snaccooperative.org/ark:/99166/w6s47n0v"; + "https://viaf.org/viaf/56796803"; + "https://www.wikidata.org/wiki/Q712729"; + "https://en.wikipedia.org/wiki/Paul_Lincke"; + "1866-11-07"^^xsd:date; + "1866-11-07"^^xsd:date; + "1946-09-03"^^xsd:date; + "1946-09-03"^^xsd:date; + "Lincke"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Photo_-_Portrait_des_Paul_Lincke_-_1905.jpg"; + "https://de.wikipedia.org/wiki/Paul_Lincke#/media/Datei:Photo_-_Portrait_des_Paul_Lincke_-_1905.jpg"; + "Conductor, Composer"; + ; + . + + a ; + "LisFra-00"; + "Own"; + "Liszt"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "VelMel-00"; + "Own"; + """# +Hongyu Gong: “Beethoven in Semi-colonial Shanghai (1880-1899),” in Journal of Wuhan Conservatory of Music, no. 1, 2017, pp.169-177. +# +Chun-Zen Huang: “Opera Activities in Shanghai Concessions in the Late Qing and Early Republican Periods (Ⅰ),” in Music Browser, no. 2, 1999, pp.2-7, https://ebook.culture.tw/publication/2022-02-08/1a73ba19-8049-41ed-8fb4-7124a8ed7fe4/4/."""; + "Vela"; + "Melchior"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Musician, Conductor"; + . + + a ; + "Manaus"; + "South America"; + "Brazil"; + "3663517"; + "BR-Manaus-00"; + -3.1e0; + -6.00167e1; + "Q40236"; + "https://en.wikipedia.org/wiki/Manaus" . + + a ; + "A Coruña"; + "Europe"; + "Spain"; + "3119841"; + "ES-Coruna-00"; + 4.33628e1; + -8.404719999999999e0; + "Q8757"; + "https://en.wikipedia.org/wiki/A_Coru%C3%B1a" . + + a ; + "Tenerife"; + "Europe"; + "Spain"; + "2511174"; + "ES-Tener-00"; + "Canary Islands"; + 2.83167e1; + -1.65667e1; + "Q40846"; + "https://en.wikipedia.org/wiki/Tenerife" . + + a ; + "Metz"; + "Europe"; + "France"; + "2994160"; + "FR-Met-00"; + 4.91203e1; + 6.17778e0; + "Q22690"; + "https://en.wikipedia.org/wiki/Metz" . + + a ; + "Toulouse"; + "Europe"; + "France"; + "2972315"; + "FR-Toulo-00"; + 4.36044e1; + 1.44194e0; + "Q7880"; + "https://en.wikipedia.org/wiki/Toulouse" . + + a ; + "Turin"; + "Europe"; + "Italy"; + "3165524"; + "IT-Tur-00"; + 4.50792e1; + 7.67611e0; + "Q495"; + "https://en.wikipedia.org/wiki/Turin" . + + a ; + "Europe"; + "Netherlands"; + "2750405"; + "NL-00"; + 5.23167e1; + 5.55e0; + "Q55"; + "https://en.wikipedia.org/wiki/Netherlands" . + + a ; + "Auckland"; + "Oceania"; + "New Zealand"; + "2193733"; + "NZ-Auck-00"; + -3.68333e1; + 1.748e2; + "Q37100"; + "https://en.wikipedia.org/wiki/Auckland" . + + a ; + "Christchurch"; + "Oceania"; + "New Zealand"; + "2192362"; + "NZ-ChristChurch-00"; + -4.35311e1; + 1.72637e2; + "Q79990"; + "https://en.wikipedia.org/wiki/Christchurch" . + + a ; + "Europe"; + "Portugal"; + "2264397"; + "PT-00"; + 3.93833e1; + -8.199999999999999e0; + "Q45"; + "https://en.wikipedia.org/wiki/Portugal" . + + a ; + "San Jose"; + "North America"; + "USA"; + "USA-CSanJ-00"; + "California"; + 3.73042e1; + -1.21873e2; + "Q16553" . + + a ; + "Columbus"; + "North America"; + "USA"; + "4509177"; + "USA-Colum-00"; + "Ohio"; + 3.99621e1; + -8.29986e1; + "Q16567"; + "https://en.wikipedia.org/wiki/Columbus,_Ohio" . + + a ; + "Kalamazoo"; + "North America"; + "USA"; + "USA-Kalamz-00"; + "Michigan"; + 4.229e1; + -8.559e1; + "Q167155" . + + a ; + "Norfolk"; + "North America"; + "USA"; + "USA-Norf-00"; + "Virginia"; + 3.691e1; + -7.620189999999999e1; + "Q49231" . + + a ; + "Portland"; + "North America"; + "USA"; + "5746545"; + "USA-Portl-00"; + "Oregon"; + 4.552e1; + -1.22682e2; + "Q6106"; + "https://en.wikipedia.org/wiki/Portland,_Oregon" . + + a ; + "Springfield"; + "North America"; + "USA"; + "4951788"; + "USA-SprinFie-00"; + "Massachusetts"; + 4.21013e1; + -7.25902e1; + "Q49158"; + "https://en.wikipedia.org/wiki/Springfield,_Massachusetts" . + + a ; + "Terre Haute"; + "North America"; + "USA"; + "USA-TerHau-00"; + "Indiana "; + 3.94697e1; + -8.73897e1; + "Q492478" . + + a ; + "Toledo"; + "North America"; + "USA"; + "USA-Tol-00"; + "Ohio"; + 4.16653e1; + -8.3575e1; + "Q49239"; + "https://en.wikipedia.org/wiki/Toledo,_Ohio" . + + a ; + "Dnipro"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-122"; + 4.84675e1; + 3.504e1; + "Q48256"; + "https://en.wikipedia.org/wiki/" . + + a ; + 1360; + ""; + ""; + "Empire Theatre"; + . + + a ; + 1756; + "Theatre"; + ""; + "Teatro Lírico Fluminense" . + + a ; + 2001; + "Company"; + ""; + "New Parisian Opera Bouffe"; + . + + a ; + 213; + "Theatre"; + ""; + "Thalia Theatre (NY)" . + + a ; + 2395; + "Company"; + ""; + "Company" . + + a ; + 2425; + "Company"; + ""; + "The Max Maretzek Italian Opera Company" . + + a ; + 258; + ""; + ""; + "National Theatre of Washington D.C." . + + a ; + 269; + ""; + ""; + "Drury Lane Theatre" . + + a ; + 3135; + "Other"; + ""; + "Academia Argentina de Letras" . + + a ; + 3270; + "Theatre"; + ""; + "Teatro Cervantes" . + + a ; + 3290; + "Theatre"; + ""; + "Teatro del Pueblo" . + + a ; + 3900; + ""; + "MGM" . + + a ; + 406; + "Media"; + ""; + "BBC" . + + a ; + 422; + "Theatre"; + ""; + "Krollopera"; + . + + a ; + 4415; + ""; + "Touring Opera Company" . + + a ; + 4700; + ""; + "Syracuse Wieting Theate" . + + a ; + 4744; + ""; + "Detroit Opera House"; + . + + a ; + 484; + "Theatre"; + ""; + "Pariser Grand Opéra"; + . + + a ; + 52800; + "Amateur"; + ""; + "Dramatic Arts" . + + a ; + 593; + "Company"; + ""; + "Lucinda Simões Company" . + + a ; + 68230; + "Traveling Company"; + ""; + "Yosef Vaynshtok Troupe" . + + a ; + 78; + "Theatre"; + ""; + "Oper Leipzig"; + . + + a ; + "https://d-nb.info/gnd/116672331"; + "CorBla-00"; + "https://isni.org/isni/000000000999265X"; + "Own"; + "https://viaf.org/viaf/42595000"; + "https://www.wikidata.org/wiki/Q95195430"; + "1858-02-04"^^xsd:date; + "1858-02-04"^^xsd:date; + "Queen of Illusion"; + "1939-12-25"^^xsd:date; + "1939-12-25"^^xsd:date; + "Corelli"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + . + + a ; + "DavJam-00"; + "Own"; + "Davison"; + "James William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "1847-01-01- 1847-12-31"; + "FreEnr-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikisource: Enrique Frexas de Sabater, online: https://es.wikisource.org/wiki/Autor:Enrique_Frexas_de_SabaterBiblioteca Digital Hispánica, online: https://bdh.bne.es/bnesearch/q/autor/FrexasAlmanaque satírico e ilustrado, con grabados +originales, Barcelona: Gaceta Universal 1866, online: chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://hemerotecadigital.bne.es/hd/pdf?oid=0004016687 + +  + +"""; + "-https://viaf.org/en/viaf/search?field=local.names&index=viaf&"; + "-https://www.wikidata.org/wiki/Q55837880"; + "1905-06-05"^^xsd:date; + "Frexas"; + "Enrique"; + "1847"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Enrique_Frexas.jpg"; + "https://www.wikidata.org/wiki/Q55837880"; + ; + . + + a ; + "https://d-nb.info/gnd/116961945"; + "HolVic-00"; + "https://isni.org/isni/0000000120266939"; + "Own"; + "https://lccn.loc.gov/no89004191"; + "https://viaf.org/viaf/59350558"; + "https://www.wikidata.org/wiki/Q216656"; + "https://de.wikipedia.org/wiki/Victor_Hollaender"; + "1866-04-20"^^xsd:date; + "1866-04-20"^^xsd:date; + "died in Hollywood, USA"; + "Hollaender"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Hollaender_(1866–1940).png"; + "https://www.wikidata.org/wiki/Q216656#/media/File:Victor_Hollaender_(1866%E2%80%931940).png"; + "Pianist, Composer,Conductor"; + ; + . + + a ; + "KomIsr-2131"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/moyt/lex/K/kompaneyets-israel-V5.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 5, Mexico City: 1967, p.4254."""; + "1900-01-01"^^xsd:date; + "1900-12-31"^^xsd:date; + "Kompaneyets"; + "Israel"; + "1900"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Israel Kompaneyets.png"; + "https://digipres.cjh.org/delivery/DeliveryManagerServlet?dps_pid=IE10751213"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/126595895"; + "NebHei-00"; + "https://isni.org/isni/0000000054097734"; + "Own"; + "https://lccn.loc.gov/no2003039431"; + "https://viaf.org/viaf/7077227"; + "https://www.wikidata.org/wiki/Q1576207"; + "https://en.wikipedia.org/wiki/Heinrich_Nebenzahl"; + "1870-10-06"^^xsd:date; + "1870-10-06"^^xsd:date; + "1938-07-06"^^xsd:date; + "1938-07-06"^^xsd:date; + "Nebenzahl"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Kaufmann,Filmproduzent"; + ; + . + + a ; + "ReiBin-2748"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/reiz-binyamin-chaim.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5027."""; + """https://viaf.org/en/viaf/48870833  + +"""; + "1863-01-31"^^xsd:date; + "1863-01-31"^^xsd:date; + "Reiz"; + "Binyamin Chaim"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "WalHym-3204"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-hymie.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.649."""; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "Wallerstein"; + "Hymie"; + "1867"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-wallerstein-hymie.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-hymie.htm "; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/117565415"; + "WalMin-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + "https://viaf.org/viaf/30316676/"; + "https://www.wikidata.org/wiki/Q94763999"; + "1859-09-20"^^xsd:date; + "1859-09-20"^^xsd:date; + "1901-08-25"^^xsd:date; + "1901-08-25"^^xsd:date; + "Walter"; + "Minna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "Salvador"; + "South America"; + "Brazil"; + "3450554"; + "BR-Salva-00"; + "Bahia"; + -1.29831e1; + -3.85167e1; + "Q36947"; + "https://en.wikipedia.org/wiki/Salvador,_Bahia" . + + a ; + "Europe"; + "Spain"; + "2510769"; + "ES-00"; + 4.0e1; + 4.0e0; + "Q29"; + "https://en.wikipedia.org/wiki/Spain" . + + a ; + "Murcia"; + "Europe"; + "Spain"; + "ES-Murc-00"; + 3.79861e1; + -1.13028e0; + "Q12225" . + + a ; + "Wiesbaden"; + "Europe"; + "Germany"; + "2809346"; + "GER-Wiesb-00"; + 5.00825e1; + 8.24e0; + "Q1721"; + "https://en.wikipedia.org/wiki/Wiesbaden" . + + a ; + "Asia"; + "Israel"; + "294640"; + "ISR-00"; + 3.16081e1; + 3.48181e1; + "Q155321"; + "https://en.wikipedia.org/wiki/Israel" . + + a ; + "Monaco"; + "Europe"; + "Monaco"; + "2993458"; + "MC-MtCarlo-00"; + 4.37398e1; + 7.42719e0; + "Q235"; + "https://en.wikipedia.org/wiki/Monaco" . + + a ; + "Dunedin"; + "Oceania"; + "New Zealand"; + "2191562"; + "NZ-Dune-00"; + -4.58742e1; + 1.70504e2; + "Q133073"; + "https://en.wikipedia.org/wiki/Dunedin" . + + a ; + "Kharkiv"; + "Europe"; + "Ukraine"; + "706483"; + "UA-Chark-00"; + 5.00044e1; + 3.62314e1; + "Q42308"; + "https://en.wikipedia.org/wiki/Kharkiv" . + + a ; + "Saginaw"; + "North America"; + "USA"; + "USA-Sag-00"; + "Michigan"; + 4.34194e1; + -8.39494e1; + "Q719" . + + a ; + "Seattle"; + "North America"; + "USA"; + "5809844"; + "USA-Seat-00"; + "Washington"; + 4.76061e1; + -1.22332e2; + "Q5083"; + "https://en.wikipedia.org/wiki/Seattle" . + + a ; + "Nashville"; + "North America"; + "USA"; + "4644585"; + "USA-Tenn-00"; + "Tennessee"; + 3.61658e1; + -8.678440000000001e1; + "Q23197"; + "https://en.wikipedia.org/wiki/Nashville,_Tennessee" . + + a ; + "Topeka"; + "North America"; + "USA"; + "USA-Tope-00"; + "Kansas"; + 3.90558e1; + -9.568940000000001e1; + "Q41057" . + + a ; + 1086; + ""; + ""; + "Baldwin Theatre" . + + a ; + 1284; + ""; + ""; + "Fifth Avenue theatre" . + + a ; + 1821; + "Company"; + ""; + "Companhia Phênix Dramática" . + + a ; + 2071; + "Theatre"; + ""; + "Broadway Theatre" . + + a ; + 242; + "Theatre"; + ""; + "Irving Place Theatre" . + + a ; + 3510; + "Company"; + ""; + "Gran Companhia Israelita" . + + a ; + 4736; + ""; + "Academy of Music, Saginaw"; + . + + a ; + 5048; + "Grand Opera House in Chicago" . + + a ; + 55320; + "Traveling Company"; + ""; + "Hirshbein Troupe" . + + a ; + 70464; + "Theatre"; + "People's Theatre" . + + a ; + 77; + "Theatre"; + ""; + "Oper Frankfurt"; + . + + a ; + 956; + "Company"; + ""; + "His own company" . + + a ; + "https://d-nb.info/gnd/1272648664"; + "AbeTsi-00"; + "Own"; + "Tsipe Abelman: ““Permit New Actors on the Stage?”: A 1905 Protest Letter by Tsipe Abelman”, Digital Yiddish Theatre Project, November 2021), https://web.uwm.edu/yiddish-stage/permit-new-actors#fnref-3."; + "https://www.wikidata.org/wiki/Q115205226"; + "of Belgian parentage"; + "Abelman"; + "Tsipe"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Tsipi-Abelman.jpeg"; + "https://web.uwm.edu/yiddish-stage/author/tsipe-abelman"; + "Performer"; + ; + "Jewish" . + + a ; + "-"; + "Place of Burial: Vienna Central Cemetery "; + "https://d-nb.info/gnd/121064344"; + "BerHei-00"; + "https://isni.org/isni/0000000368555988"; + "Own"; + "https://lccn.loc.gov/n83177434"; + "-"; + "https://viaf.org/viaf/66653887"; + "https://www.wikidata.org/wiki/Q241000"; + "https://en.wikipedia.org/wiki/Heinrich_Bert%C3%A9"; + "1857-05-08"^^xsd:date; + "1857-05-08"^^xsd:date; + "In 1929, a traffic area in Vienna-Liesing was named Bertégasse in tribute to the composer, buried in Vienna Central Cemitery"; + "1924-08-23"^^xsd:date; + "1924-08-23"^^xsd:date; + "Berté"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Heinrich-Berté.jpg"; + "https://musik-austria.at/mensch/heinrich-berte/"; + ; + . + + a ; + "https://d-nb.info/gnd/1249206782"; + "GalGeo-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + "https://www.wikidata.org/wiki/Q19959525"; + "https://de.wikipedia.org/wiki/Georgine_Galster"; + "1848-11-27"^^xsd:date; + "1848-11-27"^^xsd:date; + "1917-10-27"^^xsd:date; + "1917-10-27"^^xsd:date; + "Galster"; + "Georgine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Georgine_Galster_1887_Eigner.jpg"; + "https://www.wikidata.org/wiki/Q19959525#/media/File:Georgine_Galster_1887_Eigner.jpg"; + "Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/1198325852"; + "KamAvr-00"; + "Own"; + "http://yleksikon.blogspot.com/2019/02/avrom-yitskhok-kaminski.html"; + "https://www.wikidata.org/wiki/Q9138401"; + "1867-03-14"^^xsd:date; + "1867-03-14"^^xsd:date; + "Kaminski"; + "Avrom-Yitskhok"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor,Manager"; + ; + . + + a ; + "RivMor-2764"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/rivesman-mordechai.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4969."""; + "1868-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "Rivesman"; + "Mordechai"; + "1868"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/117117145"; + "SchCle-00"; + "Own"; + "MGG"; + "https://viaf.org/viaf/27840279"; + "https://www.wikidata.org/wiki/Q1100363"; + "https://en.wikipedia.org/wiki/Clementine_von_Schuch-Proska"; + "1850-02-12"^^xsd:date; + "1850-02-12"^^xsd:date; + "1932-06-08"^^xsd:date; + "1932-06-08"^^xsd:date; + "von Schuch-Proska"; + "Clementine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Klementine_Schuch-Proska_AEhrlichSängerinnen1895.jpg"; + "https://www.wikidata.org/wiki/Q1100363#/media/File:Klementine_Schuch-Proska_AEhrlichS%C3%A4ngerinnen1895.jpg"; + "Opera Singer, Coloratura Soprano"; + ; + . + + a ; + "SimMos-720"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "TanBer-748"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-berta.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.854."""; + "1856-01-01"^^xsd:date; + "1856-12-31"^^xsd:date; + "1926-01-01"^^xsd:date; + "1926-12-31"^^xsd:date; + "Tanzman"; + "Bertha"; + "1856"; + "1926"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tantsman-berta.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-berta.htm"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp00651805"; + "https://d-nb.info/gnd/117375098"; + "TicJos-00"; + "https://isni.org/isni/0000000055343933"; + "Own"; + "https://lccn.loc.gov/no2018063617"; + "https://snaccooperative.org/ark:/99166/w6v52whj#resources"; + "Biographisches Lexikon des Kaiserthums Oesterreich"; + "https://viaf.org/viaf/35232623"; + "https://www.wikidata.org/wiki/Q216058"; + "1807-07-11"^^xsd:date; + "1807-07-11"^^xsd:date; + "1886-01-18"^^xsd:date; + "1886-01-18"^^xsd:date; + "Tichatschek"; + "Josef"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Alois_Ticháček_-_Jan_Vilímek.jpg"; + "https://www.wikidata.org/wiki/Q216058#/media/File:Josef_Alois_Tich%C3%A1%C4%8Dek_-_Jan_Vil%C3%ADmek.jpg"; + "Opera Singer"; + ; + . + + a ; + "https://d-nb.info/gnd/119271796"; + "TurZyg-00"; + "https://isni.org/isni/0000000083815125"; + "Own"; + "https://lccn.loc.gov/no2002106999"; + "https://viaf.org/viaf/50032079/"; + "https://www.wikidata.org/wiki/Q2902473"; + "Turkow"; + "Zygmunt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zygmunt_Turkow.jpg"; + "https://www.wikidata.org/wiki/Q2902473#/media/File:Zygmunt_Turkow.jpg"; + . + + a ; + "Europe"; + "Austria"; + "2782113"; + "AT-00"; + 4.73333e1; + 1.33333e1; + "Q40"; + "https://en.wikipedia.org/wiki/Austria" . + + a ; + "Porto Alegre"; + "South America"; + "Brazil"; + "3452925"; + "BR-PortAleg-00"; + -3.00394e1; + -5.12081e1; + "Q40269"; + "https://en.wikipedia.org/wiki/Porto_Alegre" . + + a ; + "Rio Grande"; + "South America"; + "Brazil"; + "BR-RioGra-0"; + 2.59562e1; + -9.71452e1; + "Q869571" . + + a ; + "São Luis"; + "South America"; + "Brazil"; + "3388368"; + "BR-SaoLuis-00"; + -2.51667e0; + -4.42667e1; + "Q28441"; + "https://en.wikipedia.org/wiki/S%C3%A3o_Lu%C3%ADs,_Maranh%C3%A3o" . + + a ; + "North America"; + "Canada"; + "6251999"; + "CA-00"; + 6.0e1; + -1.1e2; + "Q16"; + "https://en.wikipedia.org/wiki/Canada" . + + a ; + "Olomouc"; + "Europe"; + "Czech Republic"; + "3069011"; + "CZ-Olo-00"; + 4.95939e1; + 1.72508e1; + "Q81137"; + "https://en.wikipedia.org/wiki/Olomouc" . + + a ; + "Barr"; + "Europe"; + "France"; + "3034868"; + "FR-Barr-00"; + "Alsace"; + 4.84081e1; + 7.44972e0; + "Q22758"; + "https://en.wikipedia.org/wiki/Barr,_Bas-Rhin" . + + a ; + "Baden-Baden"; + "Europe"; + "Germany"; + "2953504"; + "GER-BadBad-00"; + "Baden-Württemberg"; + 4.87628e1; + 8.240830000000001e0; + "Q4100"; + "https://en.wikipedia.org/wiki/Baden-Baden" . + + a ; + "Göttingen"; + "Europe"; + "Germany"; + "2918632"; + "GER-Goett-00"; + 5.15339e1; + 9.935560000000001e0; + "Q3033"; + "https://en.wikipedia.org/wiki/G%C3%B6ttingen" . + + a ; + "Nuremberg"; + "Europe"; + "Germany"; + "2861650"; + "GER-Nur-00"; + 4.94539e1; + 1.10775e1; + "Q2090"; + "https://en.wikipedia.org/wiki/Nuremberg" . + + a ; + "Würzburg"; + "Europe"; + "Germany"; + "2805615"; + "GER-Wzbrg-00"; + 4.97833e1; + 9.93333e0; + "Q2999"; + "https://en.wikipedia.org/wiki/W%C3%BCrzburg" . + + a ; + "Kaunas"; + "Europe"; + "Lithuania"; + "Lit-DiJeSt-111"; + 5.49e1; + 2.39333e1; + "Q4115712"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Istanbul"; + "Asia"; + "Turkey"; + "745044"; + "TR-Ist-00"; + 4.10766e1; + 2.90525e1; + "Q406"; + "https://en.m.wikipedia.org/wiki/Istanbul" . + + a ; + "Kansas City"; + "North America"; + "USA"; + "4393217"; + "USA-KansCity-00"; + "Missouri"; + 3.91e1; + -9.458e1; + "Q41819"; + "https://en.wikipedia.org/wiki/Kansas_City,_Missouri" . + + a ; + "Lincoln"; + "North America"; + "USA"; + "USA-LincN-00"; + "Nebraska"; + 4.08097e1; + -9.667529999999999e1; + "Q28260" . + + a ; + "Minneapolis"; + "North America"; + "USA"; + "USA-Minnea-00"; + "Minnesota"; + 4.49802e1; + -9.32641e1; + "Q36091" . + + a ; + "Newark"; + "North America"; + "USA"; + "5101798"; + "USA-Newa-00"; + "New Jersey"; + 4.07353e1; + -7.4185e1; + "Q25395"; + "https://en.wikipedia.org/wiki/Newark,_New_Jersey" . + + a ; + 1080; + "Theatre"; + ""; + "Standard Theatre"; + . + + a ; + 1931; + "Theatre"; + ""; + "Alcazar Lyrique" . + + a ; + 2580; + "Theatre"; + ""; + "Teatro Politeama" . + + a ; + 2620; + "Theatre"; + ""; + "Opera Theatre Convent Garden" . + + a ; + 2630; + "Theatre"; + ""; + "Casa del Teatro" . + + a ; + 3335; + "Theatre"; + ""; + "Teatro Ópera" . + + a ; + 4684; + ""; + "Buffalo Academy of Music" . + + a ; + 53140; + "Theatre"; + ""; + "Eldorado Theatre" . + + a ; + 56810; + "Traveling Company"; + ""; + "Kompaneyets Troupe" . + + a ; + 584; + "Theatre"; + ""; + "Teatro do Ginásio"; + . + + a ; + 70040; + "Company on Tour"; + "Vilna Troupe" . + + a ; + 95; + "Theatre"; + ""; + "Hamburg Opernhaus"; + . + + a ; + "-"; + "-"; + "BenBen-1256"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm + +https://congressforjewishculture.org/people/6457/Ben-Zion-Benedikt + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.187."""; + "-"; + "-"; + "-"; + "1839-01-01"^^xsd:date; + "1839-12-31"^^xsd:date; + "1915-01-01"^^xsd:date; + "1915-12-31"^^xsd:date; + "Benzion"; + "Benedict"; + "1839"; + "1915"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "-"; + "-"; + "BerRud-1262"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berg-rudolf.htm + +https://lia.lvivcenter.org/en/themes/?ci_themeid=86 + +https://lia.lvivcenter.org/en/themes/?ci_themeid=87 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.197."""; + "-"; + "-"; + "-"; + "1876-11-24"^^xsd:date; + "1876-11-24"^^xsd:date; + "Berg"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-berg-rudolf.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/berg-rudolf.htm"; + ; + "Jewish" . + + a ; + "BlaLeo-1000"; + "Own"; + ""; + """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/blank-leon.htm +https://jewish-music.huji.ac.il/en/content/leon-blank +Leon Blank Dies. In: New York Times, September 9, 1934, p. 34 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.172."""; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1934-09-08"^^xsd:date; + "1934-09-08"^^xsd:date; + "Blank"; + "Leon"; + "1867"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/blank-leon-1a.jpg"; + "https://www.moyt.org/gallery/blank-leon.htm"; + ; + ; + "Jewish" . + + a ; + "GolSam-1821"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldberg-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.269."""; + "1875-01-01"^^xsd:date; + "1875-12-31"^^xsd:date; + "Goldberg"; + "Sam"; + "1875"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-goldberg-sam.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/G/goldberg-sam.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/119165074"; + "KamEst-00"; + "https://isni.org/isni/0000000073685574"; + "Own"; + "https://lccn.loc.gov/no00098997"; + "https://viaf.org/viaf/22945211"; + "https://www.wikidata.org/wiki/Q115220826"; + "https://en.wikipedia.org/wiki/Ester_Rachel_Kami%C5%84ska"; + "1870-03-10"^^xsd:date; + "1870-03-10"^^xsd:date; + "1925-01-01"^^xsd:date; + "1925-12-31"^^xsd:date; + "Kaminska"; + "Ester-Rokhl"; + "1925"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Esther_Rokhl_Kaminska_portrait_from_Klangen_fun_mayn_lebn.jpg"; + "https://en.wikipedia.org/wiki/Ester_Rachel_Kami%C5%84ska#/media/File:Esther_Rokhl_Kaminska_portrait_from_Klangen_fun_mayn_lebn.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/136695876"; + "LieIgn-00"; + "Own"; + "https://viaf.org/viaf/80997239"; + "https://www.wikidata.org/wiki/Q115220972"; + "1850-02-22"^^xsd:date; + "1850-02-22"^^xsd:date; + "1901-10-27"^^xsd:date; + "1901-10-27"^^xsd:date; + "Liebhardt"; + "Ignaz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/118729306"; + "LubErn-00"; + "https://isni.org/isni/0000000121340870"; + "Own"; + "https://lccn.loc.gov/n50043553"; + "https://snaccooperative.org/ark:/99166/w6379dt9#resources"; + "https://viaf.org/viaf/56627503"; + "https://www.wikidata.org/wiki/Q51562"; + "https://en.wikipedia.org/wiki/Ernst_Lubitsch"; + "1892-01-29"^^xsd:date; + "1892-01-29"^^xsd:date; + "buried in Forest Lawn Memorial Park (Glendale)"; + "1947-11-30"^^xsd:date; + "1947-11-30"^^xsd:date; + "Lubitsch"; + "Ernst"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Ernst_Lubitsch_01.jpg"; + "https://www.wikidata.org/wiki/Q51562#/media/File:Ernst_Lubitsch_01.jpg"; + "film director, producer, writer,actor"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01318912"; + "https://d-nb.info/gnd/118781421"; + "MalMar-00"; + "https://isni.org/isni/0000000115929486"; + "Own"; + "https://lccn.loc.gov/n83162687"; + "https://snaccooperative.org/ark:/99166/w6n307mq"; + "https://viaf.org/viaf/9855564"; + "https://www.wikidata.org/wiki/Q232783"; + "https://en.wikipedia.org/wiki/Maria_Malibran"; + "1808-03-24"^^xsd:date; + "1808-03-24"^^xsd:date; + "1836-09-23"^^xsd:date; + "1836-09-23"^^xsd:date; + "Malibran"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/(Gaillac)_Maria_Malibran_-_Firmin_Salabert_-_Musée_des_Beaux-Arts_de_Gaillac.jpg"; + "https://www.wikidata.org/wiki/Q232783#/media/File:(Gaillac)_Maria_Malibran_-_Firmin_Salabert_-_Mus%C3%A9e_des_Beaux-Arts_de_Gaillac.jpg"; + "Opera singer,Mezzo"; + ; + . + + a ; + "https://d-nb.info/gnd/1022981390"; + "MisMim-00"; + "https://isni.org/isni/0000000370335511"; + "Own"; + "https://lccn.loc.gov/no2012072957"; + "Other"; + """# +Ellis Island records, Misu arrived in the US on 27 October 1915 aboard the Frederik VIII from Berlin as the name of Misu Rosescu, the port of departure is Copenhagen, https://heritage.statueofliberty.org/passenger-details/czoxMjoiNjEwMTE0MDUwMDIzIjs=/czo5OiJwYXNzZW5nZXIiOw==. +# +IMDB, “Biography of Mime Misu”, https://www.imdb.com/name/nm0593010/bio. +# +Ellis Island records, Misu arrived in the US 1st February 1917 on the Noordam from Rotterdam, https://heritage.statueofliberty.org/passenger-details/czoxMjoiNjEwMTg5MDExMjMzIjs=/czo5OiJwYXNzZW5nZXIiOw==."""; + "http://viaf.org/viaf/249643813"; + "https://www.wikidata.org/wiki/Q1348485"; + "1888-01-21"^^xsd:date; + "1888-01-21"^^xsd:date; + "1953-07-28"^^xsd:date; + "1953-07-28"^^xsd:date; + "Misu"; + "Mime"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Dancer, Actor"; + ; + . + + a ; + "https://d-nb.info/gnd/116067144"; + "PauRos-00"; + "https://isni.org/isni/0000000021379882"; + "Own"; + "https://lccn.loc.gov/nb2014025070"; + "https://viaf.org/viaf/47504321"; + "https://www.wikidata.org/wiki/Q86708"; + "1858-09-18"^^xsd:date; + "1858-09-18"^^xsd:date; + """Laryngitis ended her active career as a singer in 1891. +In Innsbruck, she became the only female member of the Akademischer Gesangsverein."""; + "1932-02-09"^^xsd:date; + "1932-02-09"^^xsd:date; + "Paumgartner"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Rosa_Papier_by_August_Weger.jpg"; + "https://www.wikidata.org/wiki/Q86708#/media/File:Rosa_Papier_by_August_Weger.jpg"; + "Singer"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01443555"; + "https://d-nb.info/gnd/118678841"; + "PonLor-00"; + "https://isni.org/isni/0000000439590386"; + "Own"; + "https://lccn.loc.gov/n80057191"; + "https://snaccooperative.org/ark:/99166/w6h70h3f"; + "https://viaf.org/viaf/41838569/"; + "https://www.wikidata.org/wiki/Q268166"; + "https://de.wikipedia.org/wiki/Lorenzo_Da_Ponte"; + "1749-03-10"^^xsd:date; + "1749-03-10"^^xsd:date; + "born in Cènada, Venice"; + "1838-08-17"^^xsd:date; + "1838-08-17"^^xsd:date; + "DaPonte"; + "Lorenzo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Lorenzo_da_Ponte.jpg"; + "https://www.wikidata.org/wiki/Q268166#/media/File:Lorenzo_da_Ponte.jpg"; + "Opera Librettist, Poet,Priest"; + ; + . + + a ; + "https://d-nb.info/gnd/116577967"; + "RobKur-00"; + "https://isni.org/isni/000000005311431X"; + "Own"; + "https://lccn.loc.gov/nr2004037989"; + "https://viaf.org/viaf/40133567"; + "https://www.wikidata.org/wiki/Q1496482"; + "https://de.wikipedia.org/wiki/Kurt_Robitschek"; + "1890-08-23"^^xsd:date; + "1890-08-23"^^xsd:date; + "1950-12-16"^^xsd:date; + "1950-12-16"^^xsd:date; + "Robitschek"; + "Kurt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Theater director"; + ; + . + + a ; + "https://d-nb.info/gnd/117223786"; + "StaAgn-00"; + "https://isni.org/isni/0000000054634528"; + "Own"; + "https://lccn.loc.gov/no2008061455"; + "Gerhard Kohlweyer: Agnes Stavenhagen, Weimarer Primadonna zwischen Johannes Brahms und Richard Strauss. Weimarer Taschenbuchverlag, 2007"; + "https://viaf.org/viaf/30307789"; + "https://www.wikidata.org/wiki/Q15428584"; + "1860-09-03"^^xsd:date; + "1860-09-03"^^xsd:date; + "1945-09-30"^^xsd:date; + "1945-09-30"^^xsd:date; + "Stavenhagen"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Agnes_Denis_1889_Eigner.jpg"; + "https://www.wikidata.org/wiki/Q15428584#/media/File:Agnes_Denis_1889_Eigner.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/172859204"; + "TurYit-00"; + "https://isni.org/isni/0000000052671333"; + "Own"; + "https://lccn.loc.gov/no93034801"; + "http://yleksikon.blogspot.com/2015/09/yitskhok-ber-grudberg-turkov-yitskhok.html"; + "https://viaf.org/viaf/24173821/"; + "https://www.wikidata.org/wiki/Q94662637"; + """He wrote and translated Yiddish plays. +After WWII he published numerous popular works about Yiddish theater in Poland and Israel."""; + "Turkow"; + "Yitskhok Ber"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Theater actor"; + ; + . + + a ; + "https://d-nb.info/gnd/119228866"; + "VeiCon-00"; + "https://isni.org/isni/000000010877018X"; + "Own"; + "https://lccn.loc.gov/n86011089"; + "https://snaccooperative.org/ark:/99166/w6rs5s4s#resources"; + "https://viaf.org/viaf/19875176"; + "https://www.wikidata.org/wiki/Q58801"; + "https://en.wikipedia.org/wiki/Conrad_Veidt"; + "1893-01-22"^^xsd:date; + "1893-01-22"^^xsd:date; + "1943-04-03"^^xsd:date; + "1943-04-03"^^xsd:date; + "Veidt"; + "Conrad"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Conrad_Veidt_1941.jpg"; + "https://www.wikidata.org/wiki/Q58801#/media/File:Conrad_Veidt_1941.jpg"; + "Actor"; + ; + . + + a ; + "South America"; + "Argentina"; + "3865483"; + "ARG-00"; + -3.46e1; + -5.838e1; + "Q414"; + "https://en.wikipedia.org/wiki/Argentina" . + + a ; + "Basel"; + "Europe"; + "Switzerland"; + "2661604"; + "CH-Bas-00"; + 4.75547e1; + 7.59056e0; + "Q78"; + "https://en.wikipedia.org/wiki/Basel" . + + a ; + "Europe"; + "France"; + "3017382"; + "FR-00"; + 4.7e1; + 2.0e0; + "Q142"; + "https://en.wikipedia.org/wiki/France" . + + a ; + "Amsterdam"; + "Europe"; + "Netherlands"; + "2759794"; + "NL-AMS-00"; + 5.23667e1; + 4.9e0; + "Q727"; + "https://en.wikipedia.org/wiki/Amsterdam" . + + a ; + "Königsberg"; + "Europe"; + "Prussia"; + "PRU-Koen-00"; + 5.47333e1; + 2.04833e1; + "Q4120832" . + + a ; + "Edinburgh"; + "Europe"; + "Scotland"; + "2650225"; + "UK-EDI-00"; + 5.5953e1; + -3.189e0; + "Q23436"; + "https://en.wikipedia.org/wiki/Edinburgh" . + + a ; + "North America"; + "USA"; + "5332921"; + "USA-CA-00"; + "California"; + 3.7e1; + -1.2e2; + "Q99"; + "https://en.wikipedia.org/wiki/California" . + + a ; + "Denver"; + "North America"; + "USA"; + "5419384"; + "USA-Denv-00"; + "Colorado"; + 3.97789e1; + -1.04982e2; + "Q16554"; + "https://en.wikipedia.org/wiki/Denver" . + + a ; + "Fort Wayne"; + "North America"; + "USA"; + "4920423"; + "USA-Fort-00"; + "Indiana"; + 4.10806e1; + -8.51392e1; + "Q49268"; + "https://en.wikipedia.org/wiki/Fort_Wayne,_Indiana" . + + a ; + "Grand Rapids"; + "North America"; + "USA"; + "USA-GrRap-00"; + "Michigan"; + 4.29613e1; + -8.56557e1; + "Q184587" . + + a ; + "Hartford"; + "North America"; + "USA"; + "4835797"; + "USA-Hartf-00"; + "Connecticut"; + 4.17625e1; + -7.26742e1; + "Q33486"; + "https://en.wikipedia.org/wiki/Hartford,_Connecticut" . + + a ; + "Memphis"; + "North America"; + "USA"; + "4641239"; + "USA-Memph-00"; + "Tennessee"; + 3.51494e1; + -9.00489e1; + "Q16563"; + "https://en.wikipedia.org/wiki/Memphis,_Tennessee" . + + a ; + "Troy"; + "North America"; + "USA"; + "USA-Troy-00"; + "New York"; + 4.27355e1; + -7.36751e1; + "Q600301" . + + a ; + "Cape Town"; + "Africa"; + "South Africa"; + "3369157"; + "ZA-Cpt-00"; + -3.39227e1; + 1.84167e1; + "Q5465"; + "https://en.wikipedia.org/wiki/Cape_Town" . + + a ; + 126; + "Theatre"; + ""; + "Münchner Hofoper"; + . + + a ; + 201; + "Theatre"; + ""; + "Theater an der Wien" . + + a ; + 267; + "Theatre"; + ""; + "Metropolitan Opera Company"; + . + + a ; + 309; + "Theatre"; + ""; + "Teatro Colón in Buenos Aires" . + + a ; + 313; + "Theatre"; + ""; + "Covent Garden Oper London"; + . + + a ; + 4688; + ""; + "Utica Opera House"; + . + + a ; + 56000; + "Theatre"; + ""; + "Irwing Place (Deutsches) Theatre"; + . + + a ; + 57520; + "Theatre"; + ""; + "Liberty Theatre" . + + a ; + 60920; + "Kleinkunst"; + ""; + "People's Theatre NY"; + . + + a ; + 649; + "Theatre"; + ""; + "Teatro da Trindade" . + + a ; + 70856; + "Traveling Company"; + "Own troupe" . + + a ; + 97; + "Theatre"; + ""; + "Théâtre-Italien"; + . + + a ; + "-"; + "-"; + "AdlIsr-1121"; + "https://isni.org/isni/0000000052352922"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-israel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.29."""; + "http://viaf.org/viaf/9823102"; + "-"; + "-"; + "1898-11-15"^^xsd:date; + "1898-11-15"^^xsd:date; + "Adler"; + "Israel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/116360593"; + "AscLeo-00"; + "https://isni.org/isni/0000000078573045"; + "Own"; + "https://lccn.loc.gov/n84212876"; + "https://snaccooperative.org/ark:/99166/w68d20p5"; + "R. Wiesinger: Ascher, Leo. in: Österreichisches Biographisches Lexikon 1815–1950, Online-Ausgabe, https://www.biographien.ac.at/oebl/oebl_A/Ascher_Leo_1880_1942.xmlWerner Röder; Herbert A. Strauss (edd): International Biographical Dictionary of Central European Emigrés 1933–1945. Band 2, München: Saur 1983, p. 36f."; + "https://viaf.org/viaf/8137331"; + "https://www.wikidata.org/wiki/Q214530"; + "https://en.wikipedia.org/wiki/Leo_Ascher"; + "1880-08-17"^^xsd:date; + "1880-08-17"^^xsd:date; + """Doctor of law (1904) +His artistic estate is preserved at the Leo Ascher Centre of Operetta Music at Millersville University of Pennsylvania. Letters, pictures, manuscripts and printed music are well preserved there."""; + "1942-02-25"^^xsd:date; + "1942-02-25"^^xsd:date; + "Ascher"; + "Leo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leo_Ascher._Foto,_Widmung,_c._1912_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q214530#/media/File:Leo_Ascher._Foto,_Widmung,_c._1912_(cropped).jpg"; + "Operetta composer"; + ; + ; + "Jewish" . + + a ; + "-"; + "-"; + "BerBer-859"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bernstein-berl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.207."""; + "-"; + "-"; + "-"; + "1860-01-01"^^xsd:date; + "1860-12-31"^^xsd:date; + "Börnstein"; + "Berl"; + "1860"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/2ave_285_large.jpg"; + "Berl Bernstein and his son :  https://archive.nyu.edu/bitstream/2451/56150/1/2ave_285_large.jpg "; + ; + ; + "Jewish" . + + a ; + "BezIse-1292"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bezman-iser.htm + +chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://www.yivo.org/cimages/institutional_newsletter_9_-_fall_2020_lo-res.pdf + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.188."""; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "Bezman"; + "Iser"; + "1867"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Iser_Bezman.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/bezman-iser.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1061047350"; + "BoiIls-00"; + "Own"; + "https://de.wikipedia.org/wiki/Ilse_Bois"; + "https://viaf.org/viaf/311599217"; + "https://www.wikidata.org/wiki/Q1659091"; + "https://de.wikipedia.org/wiki/Ilse_Bois"; + "1896-03-11"^^xsd:date; + "1896-03-11"^^xsd:date; + "Bois"; + "Ilse"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ilse_Bois_by_Nicola_Perscheid.jpg"; + "https://de.wikipedia.org/wiki/Ilse_Bois#/media/Datei:Ilse_Bois_by_Nicola_Perscheid.jpg"; + "Kabarettist, Actress, Parodist"; + ; + . + + a ; + "https://d-nb.info/gnd/118856626"; + "BorRap-00"; + "https://isni.org/isni/0000000081351347"; + "Own"; + "https://www.worldcat.org/identities/lccn-n82067739/"; + "https://snaccooperative.org/ark:/99166/w6kw88vm"; + """WERNECK, Maria Helena; REIS, Angela de Castro (org.). Rotas de Teatro: entre Portugal e Brasil. Rio de Janeiro: 7Letras, 2012. + +Website of Bordalo Pinheiro’s museum in Lisboa: https://museubordalopinheiro.pt/rafael-bordalo-pinheiro/bordalo-e-o-brasil/"""; + "https://viaf.org/viaf/56618026/"; + "https://www.wikidata.org/wiki/Q3327209"; + "1846-03-21"^^xsd:date; + "1846-03-21"^^xsd:date; + "1905-01-23"^^xsd:date; + "1905-01-23"^^xsd:date; + "Bordallo Pinheiro"; + "Raphael"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RafaelBordaloPinheiro.jpg"; + "https://www.wikidata.org/wiki/Q3327209#/media/File:RafaelBordaloPinheiro.jpg"; + "Cartoonist, Journalist, Theater Critic,Ceramist, Costume designer, Stage Designer, Actor"; + ; + . + + a ; + "https://d-nb.info/gnd/116422173"; + "BraOsk-00"; + "https://isni.org/isni/000000038306516X "; + "Own"; + "https://lccn.loc.gov/no2006134494"; + "Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert."; + "https://viaf.org/viaf/267454746/"; + "https://www.wikidata.org/wiki/Q19297712"; + "1867-02-16"^^xsd:date; + "1867-02-16"^^xsd:date; + "1944-04-15"^^xsd:date; + "1944-04-15"^^xsd:date; + "Braun"; + "Oskar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/746px-Oskar_Braun_1893_Vilimek.jpg"; + "https://commons.wikimedia.org/wiki/File:Oskar_Braun_1893_Vilimek.jpg"; + "Opera Singer"; + ; + . + + a ; + "CasJul-00"; + "Own"; + "https://snaccoo"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + "viaf.org/viaf/9156809346845120994/#Castellanos,_Julio_R.,_1872-1959"; + "1873-01-01"^^xsd:date; + "1873-12-31"^^xsd:date; + "1959-06-07"^^xsd:date; + "1959-06-07"^^xsd:date; + "Castellanos"; + "Julio"; + "1873"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "other sources: 18 March 1850 or 1851 in Petersborough, Lincolnshire"; + "https://d-nb.info/gnd/124976114X"; + "CogRos-00"; + "https://isni.org/isni/0000000448836878"; + "Own"; + "https://lccn.loc.gov/no2009015160"; + "https://snaccooperative.org/ark:/99166/w63f5f5r#resources"; + "https://viaf.org/viaf/78910814"; + "https://www.wikidata.org/wiki/Q1606992"; + "https://en.wikipedia.org/wiki/Rose_Coghlan"; + "1852-03-18"^^xsd:date; + "1852-03-18"^^xsd:date; + "1932-04-02"^^xsd:date; + "1932-04-02"^^xsd:date; + "Coghlan"; + "Rose "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RoseCoghlan1884.jpg"; + "https://en.wikipedia.org/wiki/Rose_Coghlan#/media/File:RoseCoghlan1884.jpg"; + "Actress, Leading Lady"; + ; + . + + a ; + "https://d-nb.info/gnd/116020776"; + "DamWal-00"; + "https://isni.org/isni/0000000110516519"; + "Own"; + "https://lccn.loc.gov/no91016435"; + "https://snaccooperative.org/ark:/99166/w6rv0nvb"; + "https://viaf.org/viaf/32185765"; + "https://www.wikidata.org/wiki/Q725579"; + "https://en.wikipedia.org/wiki/Walter_Damrosch"; + "1862-01-30"^^xsd:date; + "1862-01-30"^^xsd:date; + "1950-12-22"^^xsd:date; + "1950-12-22"^^xsd:date; + "Damrosch"; + "Walter"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Walter_Damrosch.jpg"; + "https://www.wikidata.org/wiki/Q725579#/media/File:Walter_Damrosch.jpg"; + "Assistant, Conductor"; + ; + . + + a ; + "https://d-nb.info/gnd/1068982497"; + "EibKar-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://www.wikidata.org/wiki/Q115220368"; + "1829-01-04"^^xsd:date; + "1829-01-04"^^xsd:date; + "Eibenschütz"; + "Karl-Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer,Bariton"; + ; + . + + a ; + "FonAgu-00"; + "Own"; + "https://snaccooperative.org/view/41732743#resources"; + """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikimedia: Agustín Fontanella, online: https://commons.wikimedia.org/wiki/File:Tranquera_-_Agustin_Fontanella.pdfAgustín Fontanella: Tranquera. Drama criollo, Buenos +Aires: N. Tommasi Editor 1898, online: https://digital.iai.spk-berlin.de/viewer/image/835984818/1/#topDocAnchor"""; + "https://viaf.org/en/viaf/search?field=local.names&index=viaf&s"; + "https://www.wikidata.org/wiki/Q55466364"; + "1873-12-18"^^xsd:date; + "1944-11-10"^^xsd:date; + "Fontanella"; + "Agustín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fontanella_Agustín.pdf.jpg"; + "https://commons.wikimedia.org/w/index.php?title=File:Restauracion_-_Agustin_Fontanella.pdf&"; + . + + a ; + "https://d-nb.info/gnd/1204888396"; + "GerBer-00"; + "https://isni.org/isni/0000000073718487"; + "Own"; + "Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.108-109. "; + "https://viaf.org/viaf/98489610/"; + "https://www.wikidata.org/wiki/Q60331908"; + "https://en.wikipedia.org/wiki/Berta_Gersten"; + "1894-08-20"^^xsd:date; + "1894-08-20"^^xsd:date; + "buried at Mount Zion Cemetery, NY"; + "1972-09-10"^^xsd:date; + "1972-09-10"^^xsd:date; + "Gersten "; + "Berta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Berta_Gersten.jpg"; + "https://www.wikidata.org/wiki/Q60331908#/media/File:Berta_Gersten.jpg"; + "Actress"; + ; + ; + "Jewish" . + + a ; + "other sources: Bucharest"; + "https://d-nb.info/gnd/129818089"; + "GluAlm-00"; + "https://isni.org/isni/0000000027389918"; + "Own"; + "https://lccn.loc.gov/n86862843"; + "https://snaccooperative.org/ark:/99166/w65b0537"; + "https://viaf.org/viaf/61731966"; + "https://www.wikidata.org/wiki/Q269815"; + "https://en.wikipedia.org/wiki/Alma_Gluck"; + "1884-05-11"^^xsd:date; + "1884-05-11"^^xsd:date; + "buried at Town Hill Cemetery in New Hardford, Connecticut"; + "1938-10-27"^^xsd:date; + "1938-10-27"^^xsd:date; + "Gluck"; + "Alma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Almagluck.jpg"; + "https://www.wikidata.org/wiki/Q269815#/media/File:Almagluck.jpg"; + "Opera Singer"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01356011"; + "https://d-nb.info/gnd/116126574"; + "KemFra-00"; + "https://isni.org/isni/0000000081462741"; + "Own"; + "https://lccn.loc.gov/n50045686"; + "https://snaccooperative.org/ark:/99166/w6fj2f3v"; + "https://viaf.org/viaf/66594114"; + "https://www.wikidata.org/wiki/Q433397"; + "https://en.wikipedia.org/wiki/Fanny_Kemble"; + "1809-11-27"^^xsd:date; + "1809-11-27"^^xsd:date; + "Burial: Kensal Green Cemetery Royal Borough of Kensington and Chelsea, Greater London, England "; + "1893-01-15"^^xsd:date; + "1893-01-15"^^xsd:date; + "Kemble"; + "Frances Anne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frances_Anne_Kemble_-_adapted_from_Project_Gutenberg_eText_16478.jpg"; + "https://www.wikidata.org/wiki/Q433397#/media/File:Frances_Anne_Kemble_-_adapted_from_Project_Gutenberg_eText_16478.jpg"; + "Actress"; + ; + . + + a ; + "KomMax-2133"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-max.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 4, New York: 1963, p.2685."""; + "1905-01-01"^^xsd:date; + "1905-12-31"^^xsd:date; + "Buried in Paris, France"; + "Kompaneyets"; + "Max"; + "1905"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-kompaneyets-max.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-max.htm"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/126673896"; + "KruMin-00"; + "https://isni.org/isni/0000000028383155"; + "Own"; + "https://lccn.loc.gov/n86092441"; + "https://viaf.org/viaf/19812776"; + "https://www.wikidata.org/wiki/Q2019499"; + "https://en.wikipedia.org/wiki/Mina_Kruseman"; + "1839-09-25"^^xsd:date; + "1839-09-25"^^xsd:date; + "Jugend in Indonesien"; + "1922-08-02"^^xsd:date; + "1922-08-02"^^xsd:date; + "Krusemann"; + "Mina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mina_Kruseman.jpg"; + "https://www.wikidata.org/wiki/Q2019499#/media/File:Mina_Kruseman.jpg"; + "Feminist, Actrice,Author"; + ; + . + + a ; + "LitRob-00"; + "Own"; + """Historical Photographs of China (ed.): “Robert William Little, editor of the North-China Herald, Shanghai”, https://hpcbristol.net/visual/ld01-137. +Evening Irish Times (ed.). 27th April 1906. p. 5: https://www.britishnewspaperarchive.co.uk/viewer/bl/0003464/19060427/104/0005#. +North China Herald (ed.). 29th March 1877. p.315: https://archive.org/details/north-china-herald-1877.03.29/mode/2up?q=R.W.Little. +The North-China Daily News (ed.). 10th October 1872. p.298: https://archive.org/details/north-china-herald-1872.10.10/page/298/mode/2up?q=R.W.Little. +The North-China Daily News(ed.). 25th May 1872. p.414: https://archive.org/details/north-china-herald-1872.05.25/page/414/mode/2up?q=R.W.Little. +Historical Photographs of China (ed.): “R.W. ‘Bob’ Little as Solomon Probity in 'The Chimney Corner', Shanghai”, https://www.hpcbristol.net/visual/hd-s46; “Cast of 'The Chimney Corner', Shanghai, 1873”, https://hpcbristol.net/visual/hd-s43. +The North-China Daily News (ed.). 22nd October 1874. p. 400: https://archive.org/details/north-china-herald-1874.10.22/page/400/mode/2up?q=Little. +The North-China Daily News (ed.). 28th March 1879. p. 300: https://archive.org/details/north-china-herald-1879.03.28/page/300/mode/2up?q=Little. +The North-China Daily News (ed.). 05th December 1925. p.452: https://archive.org/details/north-china-herald-1925.12.05/page/n33/mode/2up?q=1882. +The North-China Daily News (ed.). 03rd August 1920. p.1: https://archive.org/details/north-china-herald-1920.08.03/page/n1/mode/2up?q=R.W.Little. +The North-China Daily News (ed.). 11st November 1904. p.1086: https://archive.org/details/north-china-herald-1904.11.11/page/1086/mode/2up?q=Little. +The North-China Daily News (ed.). 22nd April 1904. p.832: https://archive.org/details/north-china-herald-1904.04.22/page/832/mode/2up?q=Little. +The North-China Daily News (ed.). 07th April 1905. p.22: https://archive.org/details/north-china-herald-1905.04.07/page/n21/mode/2up?q=A.D.C. +The North-China Daily News (ed.). 24th May 1933. p.316: https://archive.org/details/north-china-herald-1933.05.24/page/316/mode/2up?q=R.W.Little. +Manchester Museum (ed.): “A Remarkable Couple in China: Archibald and Alicia Little”, https://mmhellofuture.wordpress.com/2020/08/05/a-remarkable-couple-in-china-archibald-and-alicia-little/. +The North-China Daily News (ed.). 29th May 1920. p.508: https://archive.org/details/north-china-herald-1920.05.29/page/508/mode/2up?q=R.W.Little. +Robert William Little: Poems, New York: Cornell University Library 2009[1907]."""; + "1840-01-01"^^xsd:date; + "1840-12-31"^^xsd:date; + """Englischer Geschäftsmann in China; +for some years past Reuter´s correspondent at Shanghai +Organisator von Amateur Dramatic Club of Shanghai (A.D.C.) usw.. Ein veröffentlichtes Buch: Poems (Report of International Opium Commission held at Shanghai, Februar, 1909, 2 vola.) """; + "1906-04-21"^^xsd:date; + "1906-04-21"^^xsd:date; + "Little"; + "Robert William"; + "1840"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/robertlittle.jpg"; + "https://hpcbristol.net/visual/LD01-137"; + "Critic, Founder"; + ; + . + + a ; + "MonLaz-2502"; + "Own"; + ""; + """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/monfried-lazarus.htm +https://congressforjewishculture.org/people/3065/Monfrid-Leyzer-August-1885-October-14-1955 +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1225."""; + "1885-08-01"^^xsd:date; + "1885-08-31"^^xsd:date; + "Monfried"; + "Lazarus"; + "August 1885"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "other sources: 18 March 1866"; + "https://d-nb.info/gnd/1012708241"; + "MosMin-00"; + "https://isni.org/isni/0000000120610349"; + "Own"; + "https://worldcat.org/identities/lccn-no00083144/"; + "https://snaccooperative.org/view/21827208#resources"; + """Ancestry.com, “Einwanderung und Reisen: Alle Suchergebnisse für Minna Moscherosch Schmidt”, https://www.ancestry.de/search/categories/40/?name=Minna_Moscherosch+Schmidt&birth=1866&birth_x=0-0-0&gender=f. +# +Gerlinde Wicke-Nabe: „Das US-Erbe der berühmten Sindelfingerin“, Stuttgarter Nachrichten, 09.12.2018, https://www.stuttgarter-nachrichten.de/inhalt.sindelfingen-das-us-erbe-der-beruehmten-sindelfingerin.bc4cdd5d-f1f0-4fae-8f0f-6055dffd2c8d.html. +# +Gerlinde Wicke-Nabe: „Die Abenteurerin und der Schultheiß“, Stuttgarter Nachrichten, 13. 07. 2019, https://www.stuttgarter-nachrichten.de/inhalt.sindelfinger-biennale-die-abenteurerin-und-der-schultheiss.16c71b66-6d96-406c-9543-f9e9e6290dbc.html. +# +Evanston Women´s History Project: „Minna Schmidt“, https://evanstonwomen.org/woman/minna-schmidt/. """; + "https://viaf.org/viaf/171591978"; + "https://www.wikidata.org/wiki/Q94298709"; + "1866-03-17"^^xsd:date; + "1866-03-17"^^xsd:date; + "Burial: Wunder Cemetery in Chicago"; + "1961-12-08"^^xsd:date; + "1961-12-08"^^xsd:date; + "Moscherosch Schmidt"; + "Minna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/moscherosch.jpg"; + "https://www.stuttgarter-zeitung.de/gallery.sindelfingen-das-us-erbe-der-beruehmten-sindelfingerin.385cdc2b-b81c-498a-a1fc-93c086c392c9.html"; + "Dancer, Theatre Teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/116942045"; + "MotHen-00"; + "https://isni.org/isni/0000000368207123"; + "Own"; + "https://viaf.org/viaf/309799180"; + "https://www.wikidata.org/wiki/Q55857124"; + "1866-12-06"^^xsd:date; + "1866-12-06"^^xsd:date; + "1933-04-15"^^xsd:date; + "1933-04-15"^^xsd:date; + "Mottl"; + "Henriette"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载.png"; + "https://www.theatermuseum.at/en/onlinesammlung/detail/578868/"; + "Opera Singer, Singing Teacher"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp02030918"; + "https://d-nb.info/gnd/117306258"; + "StrFer-00"; + "https://isni.org/isni/0000000010447931"; + "Own"; + "Österreichisches Biographisches Lexikon"; + "https://viaf.org/viaf/64780580/"; + "https://www.wikidata.org/wiki/Q94896443"; + """Part of the Strakosch family, the “sugar barons”. +Director of various theatres in Stockholm, Florence, Barcelona, Paris, Rome etc. """; + "1902-08-04"^^xsd:date; + "1902-08-04"^^xsd:date; + "Strakosch"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Impresario"; + ; + . + + a ; + "WalEll-3202"; + "Own"; + ""; + """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-ella.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.65."""; + "1892-09-24"^^xsd:date; + "1892-09-24"^^xsd:date; + "Wallerstein"; + "Ella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/133461246"; + "WeeMar-00"; + "Own"; + "https://viaf.org/viaf/47953047"; + "https://www.wikidata.org/wiki/Q18628994"; + "https://en.wikipedia.org/wiki/Marion_Weed"; + "1865-09-12"^^xsd:date; + "1865-09-12"^^xsd:date; + "1947-06-22"^^xsd:date; + "1947-06-22"^^xsd:date; + "Weed"; + "Marion"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marion_Weed.jpg"; + "https://www.wikidata.org/wiki/Q18628994#/media/File:Marion_Weed.jpg"; + "Singing teacher"; + ; + . + + a ; + "South America"; + "Brazil"; + "3469034"; + "BR-00"; + -1.065e1; + -5.295e1; + "Q155"; + "https://en.wikipedia.org/wiki/Brazil" . + + a ; + "Hong Kong"; + "Asia"; + "China"; + "1819729"; + "CN-HKG-00"; + 2.23e1; + 1.14167e2; + "Q8646"; + "https://en.wikipedia.org/wiki/Hong_Kong" . + + a ; + "Copenhagen"; + "Europe"; + "Denmark"; + "2618425"; + "DK-Kop-00"; + 5.56761e1; + 1.25683e1; + "Q1748"; + "https://en.wikipedia.org/wiki/Copenhagen" . + + a ; + "Mainz"; + "Europe"; + "Germany"; + "2874225"; + "GER-Mainz-00"; + 4.99833e1; + 8.26667e0; + "Q1720"; + "https://en.wikipedia.org/wiki/Mainz" . + + a ; + "South America"; + "6255150"; + "SouthAmerica"; + -2.61484e1; + -6.08994e1; + "Q18"; + "https://en.wikipedia.org/wiki/South_America" . + + a ; + "Richmond"; + "North America"; + "USA"; + "4781708"; + "USA-Richm-00"; + "Virginia"; + 3.75489e1; + -7.74474e1; + "Q43421"; + "https://en.wikipedia.org/wiki/Richmond,_Virginia" . + + a ; + "Sacramento"; + "North America"; + "USA"; + "5389489"; + "USA-Sacram-00"; + "California"; + 3.85754e1; + -1.21486e2; + "Q18013"; + "https://en.wikipedia.org/wiki/Sacramento,_California" . + + a ; + "Chernivtsi"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-29"; + 4.82908e1; + 2.59344e1; + "Q157725"; + "https://en.wikipedia.org/wiki/" . + + a ; + "Kyiv"; + "Europe"; + "Ukraine"; + "Ukr-DiJeSt-57"; + 5.045e1; + 3.05236e1; + "Q1899"; + "https://en.wikipedia.org/wiki/" . + + a ; + 1287; + "Company"; + ""; + "Honest John Templeton " . + + a ; + 2801; + "Theatre"; + ""; + "Boston theatre"; + . + + a ; + 2940; + "Theatre"; + ""; + "Teatro Buenos Aires" . + + a ; + 2960; + "Theatre"; + ""; + "Teatro Maipo" . + + a ; + 384; + "Theatre"; + ""; + "Hebbel-Theater"; + . + + a ; + 441; + "Theatre"; + ""; + "Opéra-comique"; + . + + a ; + 488; + "Education (Theatre related)"; + ""; + "Konservatorium der Gesellschaft der Musikfreunde"; + . + + a ; + 5292; + "Boyd`s Opera House (Omaha)" . + + a ; + 604; + "Theatre"; + ""; + "Teatro São Januário" . + + a ; + 66690; + "Company on Tour"; + ""; + "The Vilna Troupe" . + + a ; + 70736; + "Traveling Company"; + "Spivakovski-Rozenberg troupe" . + + a ; + 71820; + "Traveling Company"; + "גאָלדפאדעןס טרופּע" . + + a ; + 82; + "Theatre"; + ""; + "Kärtnertortheater" . + + a ; + "AdlSte-1127"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-stella.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.29."""; + "1903-02-10"^^xsd:date; + "1903-02-10"^^xsd:date; + "Adler"; + "Stella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-adler-stella.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/lex-adler-stella.jpg"; + ; + "Jewish" . + + a ; + "-"; + "-"; + "BerLeo-1264"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berger-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.2."""; + "-"; + "-"; + "-"; + "Berger"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Jewish" . + + a ; + "-"; + "https://d-nb.info/gnd/1249759870"; + "BisKat-00"; + "-"; + "Own"; + "-"; + "-"; + "https://viaf.org/viaf/5938164298432908630000"; + "https://www.wikidata.org/wiki/Q6375375"; + "https://en.wikipedia.org/wiki/Kate_Bishop_(actress)"; + "1849-10-01"^^xsd:date; + "1849-10-01"^^xsd:date; + "1923-06-12"^^xsd:date; + "1923-06-12"^^xsd:date; + "Bishop"; + "Kate Alice"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Kate_Bishop.jpg"; + "https://commons.wikimedia.org/wiki/File:Kate_Bishop.jpg"; + "Actress"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp02069976"; + "https://d-nb.info/gnd/103197105X"; + "BraMar-00"; + "Own"; + "https://lccn.loc.gov/n97858337"; + "MGG"; + "https://viaf.org/viaf/58378741"; + "https://www.wikidata.org/wiki/Q21041733"; + "https://en.wikipedia.org/wiki/Sofia_Fuoco"; + "1830-01-16"^^xsd:date; + "1830-01-16"^^xsd:date; + "Carate Urio (Province Como)"; + "1916-06-16"^^xsd:date; + "1916-06-16"^^xsd:date; + "Brambilla"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Brambilla_Maria.jpg"; + "https://en.wikipedia.org/wiki/Sofia_Fuoco "; + "Danseuse"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/1068983930"; + "EibAnt-00"; + "-"; + "Own"; + "-"; + "-"; + """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903 + +Oberösterreichische Nachrichten. 12. November 1946, S. 3. https://anno.onb.ac.at/cgi-content/anno?aid=oon&datum=19461112&seite=3&zoom=33 +"""; + "https://viaf.org/viaf/315112491"; + "https://www.wikidata.org/wiki/Q115220241"; + "https://de.wikipedia.org/wiki/Toni_Claar-Eibensch%C3%BCtz"; + "1866-06-28"^^xsd:date; + "1866-06-28"^^xsd:date; + "Eibenschütz"; + "Antonia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera,Operetta Singer, Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/1112677380"; + "GalCae-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + "https://viaf.org/viaf/3810147312825037970005"; + "https://www.wikidata.org/wiki/Q115220640"; + "https://de.wikipedia.org/wiki/C%C3%A4sar_Galster"; + "1844-01-12"^^xsd:date; + "1844-01-12"^^xsd:date; + "1917-12-17"^^xsd:date; + "1917-12-17"^^xsd:date; + "Galster"; + "Caeser"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor"; + . + + a ; + "GeaMig-00"; + "Own"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Carolina González Velasco. “Una pandilla de truhanes y un cándido público: el negocio de los espectáculos teatrales, Buenos Aires, 1920”. Revista Nuevo Mundo, 2010. https://doi.org/10.4000/nuevomundo.60069. Online, https://journals.openedition.org/nuevomundo/60069"; + "Gea"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/116362766"; + "HaeNat-00"; + "https://isni.org/isni/0000000013189915"; + "Own"; + "BMLO, Großes Sängerlexikon"; + "https://viaf.org/viaf/8137396"; + "https://www.wikidata.org/wiki/Q21582257"; + "1837-06-03"^^xsd:date; + "1837-06-03"^^xsd:date; + "1921-10-13"^^xsd:date; + "1921-10-13"^^xsd:date; + "Haenisch"; + "Natalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720472271396.jpg"; + "https://www.wikidata.org/wiki/Q21582257#/media/File:NatalieHaenisch1905.jpg"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01371159"; + "https://d-nb.info/gnd/118570080"; + "LauHei-00"; + "https://isni.org/isni/0000000109024840"; + "Own"; + "https://lccn.loc.gov/n83012970"; + "https://snaccooperative.org/ark:/99166/w6cj8s3n"; + "Österreichisches Biographisches Lexikon 1815–1950"; + "https://viaf.org/viaf/54243995"; + "https://www.wikidata.org/wiki/Q77470"; + "https://en.wikipedia.org/wiki/Heinrich_Laube"; + "1806-09-18"^^xsd:date; + "1806-09-18"^^xsd:date; + "buried in the evangelic cemetery Wien Matzleinsdorf"; + "1884-08-01"^^xsd:date; + "1884-08-01"^^xsd:date; + "Laube"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/H_Laube_Portrait.jpg"; + "https://www.wikidata.org/wiki/Q77470#/media/File:H_Laube_Portrait.jpg"; + "Writer, playwright ,theatre director"; + ; + . + + a ; + "https://d-nb.info/gnd/118865900"; + "LevHer-00"; + "https://isni.org/isni/0000000120208376"; + "Own"; + "https://lccn.loc.gov/n86138022"; + "https://snaccooperative.org/ark:/99166/w69k4p8v"; + "https://viaf.org/viaf/10643494"; + "https://www.wikidata.org/wiki/Q61175"; + "1839-11-07"^^xsd:date; + "1839-11-07"^^xsd:date; + "He conducted the world premiere of Parsifal in Bayreuth at the Bayreuther Festspiele 1882"; + "1900-05-13"^^xsd:date; + "1900-05-13"^^xsd:date; + "Levi"; + "Herrmann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hermann_Levi.jpg"; + "https://www.wikidata.org/wiki/Q61175#/media/File:Hermann_Levi.jpg"; + "Conductor,composer"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp00822311"; + "https://d-nb.info/gnd/131713604"; + "LoeMar-00"; + "Own"; + "Artikel über Lilli Lehmann"; + "https://viaf.org/viaf/47901953"; + "https://www.wikidata.org/wiki/Q98057"; + "https://en.wikipedia.org/wiki/Maria_Theresia_L%C3%B6w"; + "1809-03-27"^^xsd:date; + "1809-03-27"^^xsd:date; + "1885-12-30"^^xsd:date; + "1885-12-30"^^xsd:date; + "Loew"; + "Marie Theresia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Theresia_Löw_als_Rebecca.jpg"; + "https://www.wikidata.org/wiki/Q98057#/media/File:Maria_Theresia_L%C3%B6w_als_Rebecca.jpg"; + "Opera Singer,Soprano, Vocal Teacher, Harpist"; + ; + . + + a ; + "https://d-nb.info/gnd/1049618238"; + "PhiAdo-00"; + "https://isni.org/isni/0000000064373245"; + "Own"; + "https://www.worldcat.org/identities/lccn-nr99020110/"; + "Adolf Philipp Petitions for Naturalization, Soundex Index to Petitions for Naturalization filed in Federal, State, and Local Courts located in New York City, 1792-1989. New York, NY, USA: The National Archives at New York City, via ancestry.comAdolf Philipp Passport Application, National Archives and Records Administration (NARA); Washington D.C.; NARA-Serie: Passport Applications, January 2, 1906 - March 31, 1925, roll 2468 - Certificates: 391350-391849, 10 Apr 1924-11 Apr 1924, via ancestry.com John Koegel: Adolf Philipp and Ethnic Musical Comedy in New York’s Little Germany, in: American Music (2006) 24 (3): 267–319. https://doi.org/10.2307/25046034"; + "https://viaf.org/viaf/78699474/"; + "https://www.wikidata.org/wiki/Q15429454"; + "https://en.wikipedia.org/wiki/Adolf_Philipp"; + "1864-01-29"^^xsd:date; + "1864-01-29"^^xsd:date; + "1936-07-30"^^xsd:date; + "1936-07-30"^^xsd:date; + "Philipp"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Composer, Librettist, Theater Manager, Actor"; + ; + ; + "Jewish" . + + a ; + "http://d-nb.info/gnd/13363017X"; + "ResJoh-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 3900.Alexander Rausch: „Ress, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x00075a4e"; + "http://viaf.org/viaf/28266290"; + "1839-08-08"^^xsd:date; + "1839-08-08"^^xsd:date; + "1916-12-16"^^xsd:date; + "1916-12-16"^^xsd:date; + "Ress"; + "Johannes"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "SeiLeo-2882"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/seidenberg-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.771."""; + "https://viaf.org/en/viaf/305369048"; + "1896-07-04"^^xsd:date; + "1896-07-04"^^xsd:date; + "Seidenberg"; + "Leon"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-seidenberg-leon.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/S/seidenberg-leon.htm"; + ; + "Jewish" . + + a ; + "ShlAdo-2932"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/shliferstein-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4964."""; + "Shliferstein"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "SinAbr-2985"; + "Own"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + + a ; + "SinFis-2987"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG +No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/singer-fishel.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.792."""; + "1887-09-04"^^xsd:date; + "1887-09-04"^^xsd:date; + "Singer"; + "Fishel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/104647880X"; + "StrIrm-00"; + "Own"; + "https://viaf.org/viaf/306267679/"; + "https://www.wikidata.org/wiki/Q38051185"; + "1860-01-06"^^xsd:date; + "1860-01-06"^^xsd:date; + "1931-08-22"^^xsd:date; + "1931-08-22"^^xsd:date; + "Strakosch"; + "Irma Maria Ludmilla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Singer, Singing Teacher, Writer"; + ; + . + + a ; + "TimAdo-3076"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/timianoff-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.881."""; + "1886-07-15"^^xsd:date; + "1886-07-15"^^xsd:date; + "Timianoff"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-timianof-adolf.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/timianoff-adolf.htm "; + ; + "Jewish" . + + a ; + "TorSam-3082"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tornberg-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.858."""; + "https://www.wikidata.org/wiki/Q123272275"; + "1872-01-01"^^xsd:date; + "1872-12-31"^^xsd:date; + "Buried in Mount Zion Cemetery, Radom section"; + "Tornberg"; + "Samuel"; + "1872"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tornberg-samuel.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/tornberg-samuel.htm "; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/117130990"; + "WalGus-00"; + "Own"; + "https://lccn.loc.gov/no2012119472"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + "https://viaf.org/viaf/64193387"; + "https://www.wikidata.org/wiki/Q12018560"; + "1834-02-11"^^xsd:date; + "1834-02-11"^^xsd:date; + "1910-01-31"^^xsd:date; + "1910-01-31"^^xsd:date; + "Walter"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Székely_-_Gustav_Walter.jpg"; + "https://www.wikidata.org/wiki/Q12018560#/media/File:Josef_Sz%C3%A9kely_-_Gustav_Walter.jpg"; + ; + . + + a ; + "ZieRos-3391"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/ziegler-rosa.htm + +Jewish Telegraphic Agency, February 1930: https://www.jta.org/archive/samuel-rosenstein-yiddish-actor-dies-in-chicago + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.769."""; + "1888-12-25"^^xsd:date; + "1888-12-25"^^xsd:date; + "Ziegler"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zigler-roza.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/ziegler-rosa.htm"; + ; + "Jewish" . + + a ; + "Adelaide"; + "Australia"; + "Australia"; + "2078025"; + "AUS-Adel-00"; + -3.49167e1; + 1.386e2; + "Q5112"; + "https://en.wikipedia.org/wiki/Adelaide" . + + a ; + "Magdeburg"; + "Europe"; + "Germany"; + "2874545"; + "GER-Magdb-00"; + 5.21333e1; + 1.16167e1; + "Q1733"; + "https://en.wikipedia.org/wiki/Magdeburg" . + + a ; + "Weimar"; + "Europe"; + "Germany"; + "2812482"; + "GER-Weim-00"; + 5.09833e1; + 1.13167e1; + "Q3955"; + "https://en.wikipedia.org/wiki/Weimar" . + + a ; + "Rome"; + "Europe"; + "Italy"; + "3169070"; + "IT-Rom-00"; + 4.18833e1; + 1.25e1; + "Q220"; + "https://en.wikipedia.org/wiki/Rome" . + + a ; + "Cracow"; + "Europe"; + "Poland"; + "PL-Crac-00"; + 5.00617e1; + 1.99372e1; + "Q31487" . + + a ; + "Scranton"; + "North America"; + "USA"; + "5211303"; + "USA-Scrnt-00"; + "Pennsylvania"; + 4.14106e1; + -7.56675e1; + "Q271395"; + "https://en.wikipedia.org/wiki/Scranton,_Pennsylvania" . + + a ; + 56520; + "Traveling Company"; + ""; + "Kalmen Juvelier's Theatre Troupe" . + + a ; + 568; + "Theatre"; + ""; + "Lyceum Theatre "; + . + + a ; + 602; + "Theatre"; + ""; + "Teatro São Pedro de Alcântara"; + . + + a ; + 61220; + "Theatre"; + ""; + "Poole's Theatre"; + . + + a ; + 65730; + "Theatre"; + ""; + "Thalia Theatre|Bowery Theatre"; + . + + a ; + 752; + "Theatre"; + ""; + "Teatro San Martín" . + + a ; + 79; + "Theatre"; + ""; + "Deutsches Theater Prag"; + . + + a ; + "https://d-nb.info/gnd/116279745"; + "AlbHer-00"; + "Own"; + "Albrecht, Hermine. In: Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen Akademie der Wissenschaften, Wien 1957, S. 13."; + "https://viaf.org/viaf/13053876"; + "https://www.wikidata.org/wiki/Q17425325"; + "https://de.wikipedia.org/wiki/Hermine_Albrecht"; + "1856-12-18"^^xsd:date; + "1856-12-18"^^xsd:date; + "Buried at Hietzinger Friedhof in Wien."; + "1929-05-21"^^xsd:date; + "1929-05-21"^^xsd:date; + "Albrecht"; + "Hermine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Albrecht_Hermine_Nyaryi.jpg"; + "https://de.wikipedia.org/wiki/Hermine_Albrecht  "; + """Actress +"""; + ; + . + + a ; + "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&am"; + "AntAnd-00"; + "https://isni.org/page/search-database/"; + """İstanbul Encyclopedia – Sermet Muhtar Alus, https://istanbulansiklopedisi.org/handle/rek/4328 +Atatürk Encyclopedia – İbrahim Hamaloğlu, “Mösyü Antuvan: 1858-1943 Fransız Tiyatrocu ve Darülbedayii Osmani’nin İlk Müdürü” https://ataturkansiklopedisi.gov.tr/detay/1519/Mösyö-Antuvan-(1858-1943) +“Mösyö “Antuvan”la Mülakat”, İctihad, sayı 113, 3 Temmuz 1330/15 Temmuz 1914, İstanbul. (Salt Arşivi/Salt Archives FFT541022)"""; + "https://viaf.org/en/viaf/2532045"; + "https://www.wikidata.org/wiki/Q529001"; + "https://en.wikipedia.org/wiki/Andr%C3%A9_Antoine"; + "1858-01-31"^^xsd:date; + "1943-10-23"^^xsd:date; + "Antoine"; + "Andre"; + "1858-01-31"; + "1943-10-23"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/André_Antoine_actor.jpg"; + "https://de.wikipedia.org/wiki/André_Antoine "; + ; + . + + a ; + "http://data.cerl.org/thesaurus/cnp01471694"; + "https://d-nb.info/gnd/118646192"; + "AubDan-00"; + "https://isni.org/isni/0000000121195909 "; + "Own"; + "http://id.loc.gov/authorities/names/n80079937"; + "http://n2t.net/ark:/99166/w69d7qgc"; + """MGG – Online. Auber, Daniel-François-Esprit: https://www.mgg-online.com/articles/mgg00689/1.1/mgg00689 + +Adolph Kohut: Auber. Reclam, Leipzig 1892: https://www.digitale-sammlungen.de/de/view/bsb11557194?page=,1 + +"""; + "http://viaf.org/viaf/7573044 "; + "https://www.wikidata.org/wiki/Q157672"; + "https://en.wikipedia.org/wiki/Daniel_Auber"; + "1782-01-29"^^xsd:date; + "1782-01-29"^^xsd:date; + "Burried at Père Lachaise Cemetery"; + "1871-05-12"^^xsd:date; + "1871-05-12"^^xsd:date; + "Auber"; + "Daniel-François-Esprit"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/WP_Daniel-François-Esprit_Auber.jpg"; + "https://de.wikipedia.org/wiki/Daniel-Fran%C3%A7ois-Esprit_Auber#/media/Datei:WP_Daniel-Fran%C3%A7ois-Esprit_Auber.jpg"; + "Composer"; + ; + . + + a ; + "https://d-nb.info/gnd/130124494"; + "BukChr-00"; + "https://isni.org/isni/0000000026339759"; + "Own"; + "Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. "; + "https://viaf.org/viaf/18322891"; + "https://www.wikidata.org/wiki/Q18202157"; + "https://de.wikipedia.org/wiki/Christine_von_Bukovics"; + "1937-07-24"^^xsd:date; + "1937-07-24"^^xsd:date; + "Bukovics"; + "Christine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Christine_von_Bukovics_1889_Eigner.jpg"; + "https://www.wikidata.org/wiki/Q18202157#/media/File:Christine_von_Bukovics_1889_Eigner.jpg"; + "Actress"; + . + + a ; + "https://d-nb.info/gnd/1240344848"; + "FerAma-00"; + "https://isni.org/isni/0000000117482323"; + "Own"; + "https://lccn.loc.gov/n97858269"; + "https://viaf.org/viaf/18981325/"; + "https://www.wikidata.org/wiki/Q452887"; + "https://en.wikipedia.org/wiki/Amalia_Ferraris"; + "1904-04-01"^^xsd:date; + "1904-04-01"^^xsd:date; + "Ferraris"; + "Amalia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Amalia_Ferraris_dancing,_Vicenza_1853.jpg"; + "https://www.wikidata.org/wiki/Q452887#/media/File:Amalia_Ferraris_dancing,_Vicenza_1853.jpg"; + "Dancer"; + ; + . + + a ; + "https://d-nb.info/gnd/1064116019"; + "GalCar-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + "https://viaf.org/viaf/313256707"; + "https://www.wikidata.org/wiki/Q20020610"; + "https://de.wikipedia.org/wiki/Carl_Galster_%28Schauspieler%2C_1810%29"; + "1849-12-18"^^xsd:date; + "1849-12-18"^^xsd:date; + "1931-06-22"^^xsd:date; + "1931-06-22"^^xsd:date; + "Galster"; + "Carl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor"; + ; + . + + a ; + "https://d-nb.info/gnd/1250086914"; + "GroAde-00"; + "Own"; + """Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX, Leipzig:List 1903, S. 484. + +Paul Ullrich: Theater, Tanz und Musik im Deutschen Bühnenjahrbuch. Ein Fundstellennachweis von biographischen Eintragungen, Abbildungen und Aufsätzenaus dem Bereich Theater, Tanz und Musik, die von 1836 bis 1984 im Deutschen Bühnenjahrbuch, seinen Vorgängern oder einigen anderen deutschen Theaterjahrbüchern erscheinen sind, Berlin: Berlin Verlag Arno Spitz Bd. 1 1985. + +Wilhelm Kosch: Deutsches Theater-Lexicon. Biographisches und bibliographisches Handbuch. Bd 1 Klagenfurt u. Wien: Kleinmayer 1953. + +Genossenschaft Deutscher Bühnen-Angehörige (ed): Neuer Theater Almanach für das Jahr 1890,Berlin: Günther & Sohn 1890.  + +"""; + "http://viaf.org/viaf/797164357917213250000"; + "https://www.wikidata.org/wiki/Q18018158"; + "https://de.wikipedia.org/wiki/Adele_Gro%C3%9F"; + "1853-04-28"^^xsd:date; + "1853-04-28"^^xsd:date; + "1902-01-01"^^xsd:date; + "1902-12-31"^^xsd:date; + "Groß"; + "Adele"; + "1902"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/119368129"; + "GruFri-00"; + "https://isni.org/isni/000000012139705X"; + "Own"; + "https://lccn.loc.gov/n86138300"; + "https://snaccooperative.org/ark:/99166/w63r32kx#resources"; + "https://viaf.org/viaf/74077040"; + "https://www.wikidata.org/wiki/Q87857"; + "1880-04-07"^^xsd:date; + "1880-04-07"^^xsd:date; + "1941-01-14"^^xsd:date; + "1941-01-14"^^xsd:date; + "Grünbaum"; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fritz_Grünbaum.jpg"; + "https://www.wikidata.org/wiki/Q87857#/media/File:Fritz_Gr%C3%BCnbaum.jpg"; + "Cabaret artist, operetta,Schlager author, director, actor,emcee"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/11692442X"; + "GulEll-00"; + "https://isni.org/isni/0000000368472322"; + "Own"; + "https://lccn.loc.gov/n84130385"; + "https://viaf.org/viaf/13715061"; + "https://www.wikidata.org/wiki/Q1796695"; + "1863-03-04"^^xsd:date; + "1863-03-04"^^xsd:date; + "1911 she got the Verdienstmedaille des Königs in Gold"; + "1947-01-02"^^xsd:date; + "1947-01-02"^^xsd:date; + "Gulbranson"; + "Ellen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ellen-gulbranson-brunhilde.jpg"; + "https://www.wikidata.org/wiki/Q1796695#/media/File:Ellen-gulbranson-brunhilde.jpg"; + "opera singer, singing teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/116449551"; + "JeaRes-00"; + "https://isni.org/isni/0000000368484390"; + "Own"; + "https://lccn.loc.gov/n83014174"; + "https://snaccooperative.org/ark:/99166/w6tt52ns"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + "https://viaf.org/viaf/54900594"; + "https://www.wikidata.org/wiki/Q924545"; + "1850-01-01"^^xsd:date; + "1850-01-01"^^xsd:date; + "1925-04-03"^^xsd:date; + "1925-04-03"^^xsd:date; + "de Reszke"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Jan_Reszke_cropped.jpg"; + "https://www.wikidata.org/wiki/Q924545#/media/File:Jan_Reszke_cropped.jpg"; + "Opera Singer, Singing Teacher"; + ; + . + + a ; + "MerWol-2448"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/merkur-wolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1379."""; + "1897-11-10"^^xsd:date; + "1897-11-10"^^xsd:date; + "Merkur"; + "Wolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "other sources: 18 February 1842"; + "https://d-nb.info/gnd/119235323"; + "PatAde-00"; + " https://isni.org/isni/0000000116448174"; + "Own"; + "https://lccn.loc.gov/n80148743"; + "https://snaccooperative.org/ark:/99166/w6bk1k3j"; + "Rieger, Eva / Steegmann, Monica (Hg.): Göttliche Stimmen: Lebensberichte berühmter Sängerinnen von Elisabeth Mara bis Maria Callas, Insel Verlag, Frankfurt a. Main 2002"; + "https://viaf.org/viaf/54166340"; + "https://www.wikidata.org/wiki/Q234166"; + "https://en.wikipedia.org/wiki/Adelina_Patti"; + "1842-02-10"^^xsd:date; + "1842-02-10"^^xsd:date; + "died at her estate Craig-y-Nos (which she bought as Baroness Cederström after her retirement), in Brecknock, Wales; Burial: Père Lachaise Cemetery in Paris (according to her wish)"; + "1919-09-27"^^xsd:date; + "1919-09-27"^^xsd:date; + "Patti"; + "Adelina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Adelina_Patti_portrait_(11063797055)_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q234166#/media/File:Adelina_Patti_portrait_(11063797055)_(cropped).jpg"; + "Opera Singer"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/11639143X"; + "RehAda-00"; + "https://isni.org/isni/0000000043439049"; + "Own"; + "https://lccn.loc.gov/no90006797"; + "-"; + "https://viaf.org/viaf/126149106266268492142"; + "https://www.wikidata.org/wiki/Q103876623"; + "https://en.wikipedia.org/wiki/Ada_Rehan"; + "1857-06-12"^^xsd:date; + "1857-06-12"^^xsd:date; + "Although by the time she applied for a U.S. passport she had shaved a few years off and gave 1860 as her year of birth. Died in New York City (Roosevelt Hospital); Burial: Greenwood Cemetery, Brookly NY"; + "1916-01-08"^^xsd:date; + "1916-01-08"^^xsd:date; + "Rehan"; + "Ada"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ada_Rehan_1897.jpg"; + "https://en.wikipedia.org/wiki/Ada_Rehan#/media/File:Ada_Rehan_1897.jpg"; + "Actress"; + ; + ; + "Christian" . + + a ; + "https://data.cerl.org/thesaurus/cnp02033600"; + "https://d-nb.info/gnd/118599380"; + "ReiMax-00"; + "https://isni.org/isni/0000000368572761"; + "Own"; + "https://lccn.loc.gov/n50050955"; + "https://snaccooperative.org/ark:/99166/w6wh2rcv"; + "https://viaf.org/viaf/54194383"; + "https://www.wikidata.org/wiki/Q78639"; + "1873-09-09"^^xsd:date; + "1873-09-09"^^xsd:date; + "1943-10-31"^^xsd:date; + "1943-10-31"^^xsd:date; + "Reinhardt"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Theaterdirector, Filmdirector, Intendant,Theaterproducent,Theaterfounder"; + ; + . + + a ; + "https://d-nb.info/gnd/118744984"; + "RicHan-00"; + "https://isni.org/isni/000000006654903X"; + "Own"; + "https://lccn.loc.gov/n92096016"; + "https://snaccooperative.org/ark:/99166/w6gq6z99"; + "https://viaf.org/viaf/59272058"; + "https://www.wikidata.org/wiki/Q366147"; + "https://en.wikipedia.org/wiki/Hans_Richter_(conductor)"; + "1843-04-04"^^xsd:date; + "1843-04-04"^^xsd:date; + "(buried at the Bayreuther Stadtfriedhof)"; + "1916-12-05"^^xsd:date; + "1916-12-05"^^xsd:date; + "Richter"; + "Hans"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hans_Richter_portrait_photo.jpg"; + "https://www.wikidata.org/wiki/Q366147#/media/File:Hans_Richter_portrait_photo.jpg"; + "Conductor"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00587786"; + "https://d-nb.info/gnd/118760394"; + "SeeMar-00"; + "https://isni.org/isni/0000000037296256"; + "Own"; + "https://worldcat.org/identities/lccn-n97092269/"; + "https://viaf.org/viaf/8183287"; + "https://www.wikidata.org/wiki/Q273438"; + "https://en.wikipedia.org/wiki/Marie_Seebach"; + "1829-02-24"^^xsd:date; + "1829-02-24"^^xsd:date; + "1897-08-03"^^xsd:date; + "1897-08-03"^^xsd:date; + "Seebach"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marie_Seebach_Kriehuber.jpg"; + "https://www.wikidata.org/wiki/Q273438#/media/File:Marie_Seebach_Kriehuber.jpg"; + "opera singer,Soubrette, Actress"; + ; + . + + a ; + "other sources: 1882"; + "https://d-nb.info/gnd/119238640"; + "TurJon-00"; + "https://isni.org/isni/0000000051508569"; + "Own"; + "https://lccn.loc.gov/n88615119"; + "https://viaf.org/viaf/9957256"; + "https://www.wikidata.org/wiki/Q2916891"; + "1898-01-01"^^xsd:date; + "1898-12-31"^^xsd:date; + """The Krokever Yidish Teater in Poland was under Jonas a subsidy by the Krakow municipal government awarded. +Most of WWII he spend in the Warsaw Ghetto. There he worked with the underground resistance.After the war he was involved in the Jewish organizations that arose in Poland. +One of the first Yiddish radio programs in Poland was his doing."""; + "1988-02-04"^^xsd:date; + "1988-02-04"^^xsd:date; + "Turkow"; + "Jonas"; + "1898"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720732009170.jpg"; + "https://www.wikidata.org/wiki/Q2916891#/media/File:Jonas_Turkow_5.jpg"; + ; + . + + a ; + "Linz"; + "Europe"; + "Austria"; + "2772400"; + "AT-Linz-00"; + 4.83e1; + 1.42833e1; + "Q41329"; + "https://en.wikipedia.org/wiki/Linz" . + + a ; + "Sydney"; + "Australia"; + "Australia"; + "2147714"; + "AUS-Syd-00"; + -3.385e1; + 1.512e2; + "Q3130"; + "https://en.wikipedia.org/wiki/Sydney" . + + a ; + "Minsk"; + "Europe"; + "Belarus"; + "625144"; + "BY-Minsk-00"; + 5.39e1; + 2.75667e1; + "Q2280"; + "https://en.wikipedia.org/wiki/Minsk" . + + a ; + "Trieste"; + "Europe"; + "Italy"; + "3165185"; + "IT-Tries-00"; + 4.56503e1; + 1.37703e1; + "Q546"; + "https://en.wikipedia.org/wiki/Trieste" . + + a ; + "Mexico City"; + "South America"; + "Mexico"; + "3530597"; + "MX-MX-00"; + 1.94333e1; + -9.913330000000001e1; + "Q1489"; + "https://en.wikipedia.org/wiki/Mexico_City" . + + a ; + "Omaha"; + "North America"; + "USA"; + "USA-Omah-00"; + "Nebraska"; + 4.12603e1; + -9.60128e1; + "Q43199" . + + a ; + "Pittsburgh"; + "North America"; + "USA"; + "5206379"; + "USA-Pittsb-00"; + "Pennsylvania"; + 4.04396e1; + -7.997629999999999e1; + "Q1342"; + "https://en.wikipedia.org/wiki/Pittsburgh" . + + a ; + 188; + "Theatre"; + ""; + "Gaiety Theatre" . + + a ; + 2151; + "Company"; + ""; + "Le Bouffes Parisiens"; + . + + a ; + 284; + "Theatre"; + ""; + "Arch Street Theatre"; + . + + a ; + "https://d-nb.info/gnd/1017960437"; + "BaiAnn-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 208.Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. List: Leipzig 1903, p. 4."; + "https://viaf.org/viaf/220764828/"; + "https://www.wikidata.org/wiki/Q17521286"; + "https://de.wikipedia.org/wiki/Anna_Baier"; + "1858-04-28"^^xsd:date; + "1858-04-28"^^xsd:date; + "After 1899 nothing is known about her."; + "1935-06-04"^^xsd:date; + "1935-06-04"^^xsd:date; + "Baier"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anna_Baier_1885_Eigner.jpg"; + "https://www.wikidata.org/wiki/Q17521286#/media/File:Anna_Baier_1885_Eigner.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/118653407"; + "BasAlb-00"; + "https://isni.org/isni/0000000076909967"; + "Own"; + "https://lccn.loc.gov/nr97034504"; + "https://snaccooperative.org/ark:/99166/w64z2s4s#resources"; + "Neue Deutsche Biographie"; + "https://viaf.org/viaf/18015744/"; + "https://www.wikidata.org/wiki/Q64150"; + "https://en.wikipedia.org/wiki/Albert_Bassermann"; + "1867-09-07"^^xsd:date; + "1867-09-07"^^xsd:date; + "Husband of Else Bassermann, died at or near the Zurich Airport, soon after his flight from the United States had arrived. He was 85. He is buried in Mannheim."; + "1952-05-15"^^xsd:date; + "1952-05-15"^^xsd:date; + "Bassermann"; + "Albert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Albert_Bassermann_1918_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q64150#/media/File:Albert_Bassermann_1918_(cropped).jpg"; + "stage,screen actor"; + ; + . + + a ; + "In other sources: 16.10.1885"; + "http://data.cerl.org/thesaurus/cnp02034186"; + "https://d-nb.info/gnd/119280302"; + "BerYit-1275"; + "https://isni.org/isni/0000000108786392"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/n84022348"; + ""; + "http://n2t.net/ark:/99166/w68s62vj"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berkowitz-yitzhak-dov.htm + +https://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/berkowitz-yitzhak-dov + +https://en.wikipedia.org/wiki/Isaac_Dov_Berkowitz + + + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.21."""; + "http://viaf.org/viaf/22376920"; + "https://www.wikidata.org/wiki/Q2909488"; + "https://en.wikipedia.org/wiki/Isaac_Dov_Berkowitz"; + "1885-10-15"^^xsd:date; + "1885-10-15"^^xsd:date; + "1967-03-29"^^xsd:date; + "1967-03-29"^^xsd:date; + "Berkowitz"; + "Yitzhak Dov"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/HEBREW_WRITER_ITZHAK_DOV_BERKIVITZ._פורטרט_של_הסופר_העברי,_יצחק_דב_ברקוביץ.D22-083.jpg"; + "https://www.wikidata.org/wiki/Q2909488#/media/File:HEBREW_WRITER_ITZHAK_DOV_BERKIVITZ._%D7%A4%D7%95%D7%A8%D7%98%D7%A8%D7%98_%D7%A9%D7%9C_%D7%94%D7%A1%D7%95%D7%A4%D7%A8_%D7%94%D7%A2%D7%91%D7%A8%D7%99,_%D7%99%D7%A6%D7%97%D7%A7_%D7%93%D7%91_%D7%91%D7%A8%D7%A7%D7%95%D7%91%D7%99%D7%A5.D22-083.jpg"; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01426107"; + "https://d-nb.info/gnd/1019729740"; + "GriGiu-00"; + "https://isni.org/isni/000000005520372X"; + "Own"; + "https://lccn.loc.gov/no2009038083"; + "https://snaccooperative.org/ark:/99166/w6v416tk"; + "Großes Sängerlexikon"; + "https://viaf.org/viaf/17489071/"; + "https://www.wikidata.org/wiki/Q451972"; + "1805-07-28"^^xsd:date; + "1805-07-28"^^xsd:date; + "1840-05-01"^^xsd:date; + "1840-05-01"^^xsd:date; + "Grisi"; + "Giuditta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera singer,mezzo-sopran" . + + a ; + "Other Scource: christened on 27 May 1837"; + "LinWil-00"; + "Own"; + "http://id.loc.gov/authorities/names/no92020627"; + "http://n2t.net/ark:/99166/w6t22r8d"; + "http://viaf.org/viaf/16793561"; + "https://www.wikidata.org/wiki/Q8014591"; + "https://en.wikipedia.org/wiki/William_Lingard"; + "1839-01-01"^^xsd:date; + "1839-12-31"^^xsd:date; + "1927-01-01"^^xsd:date; + "1927-12-31"^^xsd:date; + "Lingard"; + "William"; + "1839"; + "1927"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/William_Horace_Lingard_(c._1868).jpg"; + "https://upload.wikimedia.org/wikipedia/commons/3/36/William_Horace_Lingard_%28c._1868%29.jpg"; + . + + a ; + "https://d-nb.info/gnd/116854553"; + "MauVic-00"; + "https://isni.org/isni/0000000063081494"; + "Own"; + "https://lccn.loc.gov/no89011057"; + "https://snaccooperative.org/ark:/99166/w6m61r39"; + "https://viaf.org/viaf/76403569"; + "https://www.wikidata.org/wiki/Q258482"; + "https://en.wikipedia.org/wiki/Victor_Maurel"; + "1848-06-17"^^xsd:date; + "1848-06-17"^^xsd:date; + "1923-10-22"^^xsd:date; + "1923-10-22"^^xsd:date; + "Maurel"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Maurel.png"; + "https://www.wikidata.org/wiki/Q258482#/media/File:Victor_Maurel.png"; + "Baritone"; + ; + . + + a ; + "NomHer-2572"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nomberg-hersh-dovid.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1405."""; + "1876-04-04"^^xsd:date; + "1876-04-04"^^xsd:date; + "Buried in Okopowa Street Jewish Cemetery, Warsaw"; + "Nomberg"; + "Hersh Dovid"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + ; + "Jewish" . + + a ; + "http://d-nb.info/gnd/133630226"; + "ResFre-00"; + "https://isni.org/isni/0000000022593151"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 3899."; + "http://viaf.org/viaf/23335380"; + "1841-04-06"^^xsd:date; + "1841-04-06"^^xsd:date; + "1869-06-27"^^xsd:date; + "1869-06-27"^^xsd:date; + "Ress"; + "Frederika"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/117366579"; + "SchFra-00"; + "https://isni.org/isni/000000002010115X"; + "Own"; + "https://viaf.org/viaf/788338"; + "https://www.wikidata.org/wiki/Q29450959"; + "https://de.wikipedia.org/wiki/Franz_Schwarz_(S%C3%A4nger)"; + "1858-06-11"^^xsd:date; + "1858-06-11"^^xsd:date; + "1919-03-10"^^xsd:date; + "1919-03-10"^^xsd:date; + "Schwarz"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer"; + ; + . + + a ; + "https://d-nb.info/gnd/118798073"; + "SomAgn-00"; + " https://isni.org/isni/0000000010006618"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/42634165/"; + "https://www.wikidata.org/wiki/Q121950"; + "https://en.wikipedia.org/wiki/Agnes_Sorma"; + "1862-05-17"^^xsd:date; + "1862-05-17"^^xsd:date; + "1927-02-10"^^xsd:date; + "1927-02-10"^^xsd:date; + "Sorma"; + "Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Agnes_Sorma.jpg"; + "https://www.wikidata.org/wiki/Q121950#/media/File:Agnes_Sorma.jpg"; + "Actress"; + ; + . + + a ; + "Antwerp"; + "Europe"; + "Belgium"; + "2803138"; + "BE-Antw-00"; + 5.12178e1; + 4.40028e0; + "Q12892"; + "https://en.wikipedia.org/wiki/Antwerp" . + + a ; + "Calcutta"; + "Asia"; + "India"; + "IN-Calc-00"; + 2.25675e1; + 8.837e1; + "Q1348" . + + a ; + "Indianapolis"; + "North America"; + "USA"; + "4259418"; + "USA-Indy-00"; + "Indiana"; + 3.9768e1; + -8.61581e1; + "Q6346"; + "https://en.wikipedia.org/wiki/Indianapolis" . + + a ; + 1004; + "Theatre"; + ""; + "Strampfer-Theater" . + + a ; + 2930; + "Theatre"; + ""; + "Teatro Mayo" . + + a ; + 547; + "Theatre"; + ""; + "Thalia Theatre"; + . + + a ; + 55710; + "Theatre"; + ""; + "Hopkinson Theatre" . + + a ; + 71152; + "Rosenberg's troupe" . + + a ; + "AxeAvr-1204"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-avraham.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.86."""; + "1858-07-20"^^xsd:date; + "1858-07-20"^^xsd:date; + "1925-11-11"^^xsd:date; + "Axelrad"; + "Avraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/axelrad-avraham.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/lex-axelrad-avraham.jpg"; + ; + ; + "Jewish" . + + a ; + "BasJoa-00"; + "Own"; + "-https://catalog.loc.gov/vwebv/search?searchType=7&searchld=27873&"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Fundación Konex. Joaquín Gomez Bas. Online, https://www.fundacionkonex.org/b1078-joaquin-gomez-basWikipedia: Joaquín Gomez Bas. Online, https://es.wikipedia.org/wiki/Joaqu%C3%ADn_G%C3%B3mez_BasIMDb: Joaquín Gomez Bas. Online, https://www.imdb.com/de/name/nm0350863/Joaquín Gomez Bas, Todo Tango, online, https://www.todotango.com/english/artists/info/642/Joaquin-Gomez-Bas"; + "https://viaf.org/en/viaf/71018439"; + "https://www.wikidata.org/wiki/Q5932064"; + "1907-05-26"^^xsd:date; + "1984-11-04"^^xsd:date; + "Gómez Bas"; + "Joaquín"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Joaquín Gómez Bas.jpg"; + "https://cuentosdelatinoamerica.blogspot.com/2014/04/el-horno-joaquin-gomez-bas.html "; + ; + . + + a ; + "BlaYet-1319"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/black-yetta.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.173."""; + "1880-05-01"^^xsd:date; + "1880-05-01"^^xsd:date; + "Black"; + "Yetta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Yetta_Black.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/black-yetta.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/119357437"; + "DesEma-00"; + """ +https://isni.org/isni/0000000368500629 """; + "Own"; + "https://lccn.loc.gov/n82161395"; + "https://snaccooperative.org/ark:/99166/w63j3swk#resources"; + "MGG"; + "https://viaf.org/viaf/66640668/"; + "https://www.wikidata.org/wiki/Q271731"; + "1878-02-26"^^xsd:date; + "1878-02-26"^^xsd:date; + "1930-01-28"^^xsd:date; + "1930-01-28"^^xsd:date; + "Destinová"; + "Ema"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emmy_Destinn.jpg"; + "https://www.wikidata.org/wiki/Q271731#/media/File:Emmy_Destinn.jpg"; + "Chamber Singer"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01384444"; + "https://d-nb.info/gnd/116689498"; + "FodJos-00"; + "https://isni.org/isni/000000004788692X"; + "Own"; + "https://lccn.loc.gov/no2005072325"; + "https://viaf.org/viaf/5194888"; + "https://www.wikidata.org/wiki/Q1002317"; + "https://en.wikipedia.org/wiki/Jos%C3%A9phine_Fodor"; + "1789-10-13"^^xsd:date; + "1789-10-13"^^xsd:date; + "1870-08-10"^^xsd:date; + "1870-08-10"^^xsd:date; + "Fodor"; + "Joséphine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fodor_Josephine.jpg"; + "https://www.wikidata.org/wiki/Q1002317#/media/File:Fodor_Josephine.jpg
"; + "Opera singer,soprano"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00549510"; + "https://d-nb.info/gnd/119186497"; + "GarMan-00"; + "https://isni.org/isni/000000008115807X"; + "Own"; + "https://worldcat.org/identities/lccn-nr93012923/"; + "https://snaccooperative.org/ark:/99166/w6rx9pvv"; + "https://viaf.org/viaf/37022651/"; + "https://www.wikidata.org/wiki/Q704645"; + "https://en.wikipedia.org/wiki/Manuel_Garc%C3%ADa_(tenor)"; + "1775-01-21"^^xsd:date; + "1775-01-21"^^xsd:date; + "He invented the first laryngoscope"; + "1832-06-09"^^xsd:date; + "1832-06-09"^^xsd:date; + "García"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuel_Vicente_del_Popolo_Rodriguez_(Garcia).jpg"; + "https://www.wikidata.org/wiki/Q704645#/media/File:Manuel_Vicente_del_Popolo_Rodriguez_(Garcia).jpg"; + "Singer, Music Educator, Vocal Pedagogue"; + ; + . + + a ; + "GolIts-1826"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldenberg-itsikl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.273."""; + "1872-01-01"^^xsd:date; + "1872-01-01"^^xsd:date; + "Goldenberg"; + "Itsikl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1250087104"; + "JagEls-00"; + "https://isni.org/isni/0000000040210791"; + "Own"; + "https://lccn.loc.gov/n2008078191"; + "Andrea Harrandt: Jäger (-Wilczek), Familie. In: Oesterreichisches Musiklexikon. Online-Ausgabe, Wien 2002 , http://www.musiklexikon.ac.at/ml/musik_J/Jaeger_Familie_2.xmlLudwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, pp. 468- 469. Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. "; + "https://viaf.org/viaf/16704442"; + "https://www.wikidata.org/wiki/Q18019937"; + "https://de.wikipedia.org/wiki/Elsa_J%C3%A4ger"; + "1869-07-25"^^xsd:date; + "1869-07-25"^^xsd:date; + "1899-01-01"^^xsd:date; + "1969-12-31"^^xsd:date; + "Jäger"; + "Elsa "; + "after 1898"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载.png"; + "https://www.theatermuseum.at/online-sammlung/detail/542583/"; + "Actress"; + . + + a ; + "https://d-nb.info/gnd/119086077"; + "KeeLau-00"; + "https://isni.org/isni/0000000033550560"; + "Own"; + "https://lccn.loc.gov/n91041259"; + "https://snaccooperative.org/ark:/99166/w6qj87rn"; + "https://viaf.org/viaf/45103975"; + "https://www.wikidata.org/wiki/Q13606858"; + "https://en.wikipedia.org/wiki/Laura_Keene"; + "1826-07-20"^^xsd:date; + "1826-07-20"^^xsd:date; + "1873-11-04"^^xsd:date; + "1873-11-04"^^xsd:date; + "Keene"; + "Laura"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Laura_Keene_-_Brady-Handy.jpg"; + "https://www.wikidata.org/wiki/Q13606858#/media/File:Laura_Keene_-_Brady-Handy.jpg"; + "Performer, Manager, Actress, Travelling Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/252807458"; + "RicHar-00"; + "Own"; + "https://snaccooperative.org/ark:/99166/w6c03pd1#resources"; + "https://viaf.org/viaf/252807458"; + "https://www.wikidata.org/wiki/Q2091359"; + "https://en.wikipedia.org/wiki/Harry_Rickards"; + "1843-12-04"^^xsd:date; + "1843-12-04"^^xsd:date; + "1911-10-13"^^xsd:date; + "1911-10-13"^^xsd:date; + "Rickards"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harry_Rickards_by_Talma_Studio,_Sydney.jpg"; + "https://www.wikidata.org/wiki/Q2091359#/media/File:Harry_Rickards_by_Talma_Studio,_Sydney.jpg"; + "Actor, Theatre Owner"; + ; + . + + a ; + "RosAdo-2777"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/rosenblum-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.504."""; + "1850-01-01"^^xsd:date; + "1850-12-31"^^xsd:date; + "Rosenblum"; + "Adolf"; + "1850"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-rozenblum-adolf.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/R/rosenblum-adolf.htm "; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1046479857"; + "StrMax-00"; + "https://isni.org/isni/0000000045461901"; + "Own"; + "https://lccn.loc.gov/no2009005861"; + "Österreichisches Biographisches Lexikon"; + "https://viaf.org/viaf/12142018"; + "https://www.wikidata.org/wiki/Q1913509"; + "https://de.wikipedia.org/wiki/Max_Strakosch"; + "1835-09-27"^^xsd:date; + "1835-09-27"^^xsd:date; + "Strakosch"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Pianist, Vocal Coach, Impresario ,Opera Director"; + ; + . + + a ; + "https://d-nb.info/gnd/117131369"; + "WalRao-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + "https://viaf.org/viaf/47532012"; + "https://www.wikidata.org/wiki/Q38158766"; + "1863-08-16"^^xsd:date; + "1863-08-16"^^xsd:date; + """He sang the role of Alfred under the baton of Johann Strauss at the 200th performance of Die Fledermaus on May 15, 1888. + +His most famous role was that of Mathias Freudhofer in Kienzl's opera Der Evangelimann, which he created at the Munich premiere in 1896, was the only singer to embody for twenty years, and was impressed by the composer's performance."""; + "1917-08-21"^^xsd:date; + "1917-08-21"^^xsd:date; + "Walter"; + "Raoul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Dr._Raoul_Walter.jpg"; + "https://www.wikidata.org/wiki/Q38158766#/media/File:Dr._Raoul_Walter.jpg"; + ; + . + + a ; + "Belém"; + "South America"; + "Brazil"; + "3405870"; + "BR-Bel-00"; + -1.46667e0; + -4.84833e1; + "Q12829733"; + "https://en.wikipedia.org/wiki/Bel%C3%A9m" . + + a ; + "Montreal"; + "North America"; + "Canada"; + "6077243"; + "CA-Montr-00"; + "Quebec"; + 4.55089e1; + -7.355419999999999e1; + "Q340"; + "https://en.wikipedia.org/wiki/Montreal" . + + a ; + "Stuttgart"; + "Europe"; + "Germany"; + "2825297"; + "GER-STR-00"; + 4.8782e1; + 9.183999999999999e0; + "Q1022"; + "https://en.wikipedia.org/wiki/Stuttgart" . + + a ; + "Europe"; + "Italy"; + "3175395"; + "IT-00"; + 4.3e1; + 1.2e1; + "Q38"; + "https://en.wikipedia.org/wiki/Italy" . + + a ; + "Europe"; + "Poland / Ukraine"; + "562153"; + "PL-Galz-00"; + "Galicia"; + 4.983e1; + 2.40142e1; + "Q180086"; + "https://en.wikipedia.org/wiki/Galicia_(Eastern_Europe)" . + + a ; + "Providence"; + "North America"; + "USA"; + "5224151"; + "USA-Prov-00"; + "Rhode Island"; + 4.18308e1; + -7.141500000000001e1; + "Q18383"; + "https://en.wikipedia.org/wiki/Providence,_Rhode_Island" . + + a ; + "St. Paul "; + "North America"; + "USA"; + "5045360"; + "USA-StPaul-00"; + "Minnesota"; + 4.4944e1; + -9.309269999999999e1; + "Q28848"; + "https://en.wikipedia.org/wiki/Saint_Paul,_Minnesota" . + + a ; + "Utica"; + "North America"; + "USA"; + "5142056"; + "USA-Utic-00"; + "New York"; + 4.30961e1; + -7.52261e1; + "Q2495519"; + "https://en.wikipedia.org/wiki/Utica,_New_York" . + + a ; + 240; + "Theatre"; + ""; + "Second Avenue Theatre"; + . + + a ; + 556; + "Theatre"; + "Royal Olympic Theatre, London"; + "Olympic Theatre"; + . + + a ; + "AmoEdu-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Wikipedia. Roberto Casaux. Online, https://es.wikipedia.org/wiki/Roberto_Casaux + +Wikipedia. Guillermo Battaglia. Online, https://es.wikipedia.org/wiki/Guillermo_Battaglia"""; + "https://viaf.org/viaf/18160789758802682297/#Amoroso,_Eduardo_1888-1958"; + "1888-09-15"^^xsd:date; + "1888-09-15"^^xsd:date; + "1958-05-23"^^xsd:date; + "1958-05-23"^^xsd:date; + "Amoroso"; + "Eduardo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/130811556"; + "FieOsc-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/57727100"; + "https://www.wikidata.org/wiki/Q23061504"; + "1848-06-03"^^xsd:date; + "1848-06-03"^^xsd:date; + "1906-06-11"^^xsd:date; + "1906-06-11"^^xsd:date; + "Fiedler"; + "Oscar"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Theater actor, opera singer baritone, opera director ,theater manager"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/132977680"; + "GilLou-1764"; + "https://isni.org/isni/0000000044061797"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/no2006010383"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/gilrod-louie.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.478."""; + "http://viaf.org/viaf/50403192"; + "https://en.wikipedia.org/wiki/Louis_Gilrod"; + "1879-09-10"^^xsd:date; + "1879-09-10"^^xsd:date; + "Buried in Mount Hebron Cemetery, Flushing, Queens, New York"; + "1930-03-12"^^xsd:date; + "1930-03-12"^^xsd:date; + "Gilrod"; + "Louie"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Louis-gilrod.png"; + "https://commons.wikimedia.org/wiki/File:Louis-gilrod.png"; + ; + ; + "Jewish" . + + a ; + "-"; + "https://d-nb.info/gnd/1037101405"; + "JagFer-00"; + "-"; + "Own"; + "-"; + "-"; + """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Leipzig: List 1903, pp. 468- 469. + +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. + +"""; + "https://viaf.org/viaf/304930617"; + "https://www.wikidata.org/wiki/Q18020136"; + "https://de.wikipedia.org/wiki/Ferdinand_J%C3%A4ger_%28S%C3%A4nger%2C_1874%29"; + "1871-01-19"^^xsd:date; + "1871-01-19"^^xsd:date; + "1954-01-12"^^xsd:date; + "1954-01-12"^^xsd:date; + "Jäger"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00643327"; + "https://d-nb.info/gnd/117077879"; + "JanFan-00"; + "Own"; + "https://lccn.loc.gov/nr92034197"; + "https://snaccooperative.org/ark:/99166/w64x7tfs#resources"; + "https://viaf.org/viaf/64774589"; + "https://www.wikidata.org/wiki/Q547592"; + "https://en.wikipedia.org/wiki/Fanny_Janauschek"; + "1829-07-20"^^xsd:date; + "1829-07-20"^^xsd:date; + "died in Long Island, New York; Burial: Evergreen Cemetery Brooklyn"; + "1904-11-28"^^xsd:date; + "1904-11-28"^^xsd:date; + "Janauschek"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fanny_Janauschek.jpg"; + "https://www.wikidata.org/wiki/Q547592#/media/File:Fanny_Janauschek.jpg"; + "Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/118973800"; + "KamIda-00"; + "https://isni.org/isni/0000000109280131"; + "Own"; + "https://lccn.loc.gov/no93031688"; + "https://snaccooperative.org/ark:/99166/w6ff4ns1#resources"; + "Internet Broadway Database, Ida Kaminska: https://www.ibdb.com/broadway-cast-staff/ida-kaminska-9557"; + "https://viaf.org/viaf/97943468"; + "https://www.wikidata.org/wiki/Q284087"; + "https://en.wikipedia.org/wiki/Ida_Kami%C5%84ska"; + "1899-11-18"^^xsd:date; + "1899-11-18"^^xsd:date; + "Ida Kaminska became internationally known because of her role in the Czech film “Obchod na Korze” . The film won an Academy Award in 1965 and Kaminska was nominated for Best Actress in the following year."; + "1980-05-21"^^xsd:date; + "1980-05-21"^^xsd:date; + "Kaminska"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ida_Kaminska.jpg"; + "https://en.wikipedia.org/wiki/Ida_Kami%C5%84ska#/media/File:Ida_Kaminska.jpg"; + ; + . + + a ; + "other sources: 4 June 1879 "; + "https://d-nb.info/gnd/119540649"; + "NazAll-00"; + "https://isni.org/isni/0000000028872741"; + "Own"; + "https://lccn.loc.gov/n85151664"; + "https://snaccooperative.org/ark:/99166/w62v3525"; + "https://viaf.org/viaf/39587765"; + "https://www.wikidata.org/wiki/Q234795"; + "https://en.wikipedia.org/wiki/Alla_Nazimova"; + "1879-06-03"^^xsd:date; + "1879-06-03"^^xsd:date; + "died in Hollywood, California; Burial: Forest Lawn Memorial Park, Glendale, Los Angeles County, California"; + "1945-07-13"^^xsd:date; + "1945-07-13"^^xsd:date; + "Nazimova"; + "Alla"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Nazimova_LCCN2014718506.jpg"; + "https://www.wikidata.org/wiki/Q234795#/media/File:Nazimova_LCCN2014718506.jpg"; + "Actress, Producer"; + ; + ; + "Jewish,Christian" . + + a ; + "https://d-nb.info/gnd/1250127629"; + "NorCat-00"; + "https://isni.org/isni/000000005105267X"; + "Own"; + "https://worldcat.org/identities/lccn-nr92031662/"; + "https://snaccooperative.org/ark:/99166/w6d527rs#resources"; + """Report of the Forrest divorce case: containing the full and unabridged testimony of all the witnesses, the affidavits and depositions, together with the Consuelo and Forney letters, New York : De Witt & Davenport, 1852, https://archive.org/details/reportofforrestd00forr/page/8/mode/2up. +# +Chris Enss: Wild Women of The West: Catherine Norton Sinclair, 25 Mai 2022, https://cowgirlmagazine.com/wild-women-of-the-west-catherine-norton-sinclair-1/. """; + "https://viaf.org/viaf/26929500"; + "https://www.wikidata.org/wiki/Q16062502"; + "https://en.wikipedia.org/wiki/Catherine_Norton_Sinclair"; + "1817-02-20"^^xsd:date; + "1817-02-20"^^xsd:date; + "born near London, died Staten Island, buried Silver Mount Cemetery, Staten Island"; + "1891-06-09"^^xsd:date; + "1891-06-09"^^xsd:date; + "Norton Sinclair"; + "Catherine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harvard_Theatre_Collection_-_Catharine_Norton_Sinclair_TC-48.jpg"; + "https://en.wikipedia.org/wiki/Catherine_Norton_Sinclair#/media/File:Harvard_Theatre_Collection_-_Catharine_Norton_Sinclair_TC-48.jpg"; + "Actor, Manager"; + ; + . + + a ; + "ZayDav-3358"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zayderman-david.htm + +Center for Jewish History: https://archives.cjh.org/repositories/7/archival_objects/1270758 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.771."""; + "1895-02-12"^^xsd:date; + "1895-02-12"^^xsd:date; + "Zayderman"; + "David"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/David Zayderman.png"; + "https://archives.cjh.org/repositories/7/archival_objects/1270758"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/11863643X"; + "ZemAle-00"; + "https://isni.org/isni/0000000121351350"; + "Own"; + "https://lccn.loc.gov/n80086154"; + "https://www.wikidata.org/wiki/Property:P3430"; + "http://www.zemlinsky.at/de/biographie"; + "https://viaf.org/viaf/59271270/"; + "https://www.wikidata.org/wiki/Q78524"; + "1871-10-14"^^xsd:date; + "1871-10-14"^^xsd:date; + "He received a Rubinstein stipend of 1,000 guilders per year."; + "1942-03-15"^^xsd:date; + "1942-03-15"^^xsd:date; + "von Zemlinsky"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zemlinsky.jpg"; + "https://www.wikidata.org/wiki/Q78524#/media/File:Zemlinsky.jpg"; + "Composer, Conductor"; + ; + ; + "Jewish, Christian" . + + a ; + "Karlsruhe"; + "Europe"; + "Germany"; + "2892794"; + "GER-Karls-00"; + 4.90092e1; + 8.40395e0; + "Q1040"; + "https://en.wikipedia.org/wiki/Karlsruhe" . + + a ; + "Africa"; + "South Africa"; + "ZA-00"; + -3.0e1; + 2.5e1; + "Q258" . + + a ; + 539; + "Theatre"; + ""; + "Lessing-Theater"; + . + + a ; + 590; + "Theatre"; + ""; + "Teatro Nacional"; + . + + a ; + 81; + "Theatre"; + ""; + "Teatro alla Scala, Milano"; + . + + a ; + "-"; + "-"; + "AbrBin-742"; + "-"; + "Tau Cooperation"; + "-"; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.4.Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/abramovich-bina.htm +YIVO Archives: Bina Abramowitz, http://yivoarchives.org/index.php?p=core/search&subjectid=32657&collection=allphotos"""; + "-"; + "https://www.wikidata.org/wiki/Q107609823"; + "https://en.wikipedia.org/wiki/Bina_Abramowitz"; + "1865-10-30"^^xsd:date; + "1865-10-30"^^xsd:date; + "1853-06-24"^^xsd:date; + "1853-06-24"^^xsd:date; + "Abramovich"; + "Bina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/abramowitz-bina-2b.jpg"; + "https://www.moyt.org/gallery/abramowitz-bina.htm "; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/134312392"; + "AldFra-00"; + "https://isni.org/isni/0000000063098376"; + "Own"; + "https://lccn.loc.gov/n82040707"; + "https://snaccooperative.org/ark:/99v166/w66t109c#resources"; + """Charlotte Macdonald: The book of New Zealand women (First ed.). Wellington: Williams 1992. +Simpson, Adrienne: “Alda, Frances”, Dictionary of New Zealand Biography, https://teara.govt.nz/en/biographies/3a9/alda-frances. +The New York Times : \"Frances Alda Dies. Former Met Star. 21 Years Before Retiring in 1929. Sang 40 Roles. A Gatti-Casazza Protege. Came to U.S. With Milanese Impresario in 1908. Stricken by Brain Hemorrhage\".. 19th Septembre 1952, New York. +The New York Times: “Mme. Frances Alda Wed To Ray Vir Den. Former Opera. Singer Bride Of New York Advertising M”an\". 15th April 1941, New York. +The New York Times: “Singers Back From Europe: Mme. Frances Alda and Anna Case, Also Spalding, Violinist.”,18th Septembre 1920, New York. +The New York Times; “New Manon Heard.: Frances Alda Appears in Massenet's Opera”, 27th February 1909, New York.Charlotte Macdonald: The book of New Zealand women (First ed.). Wellington: Williams 1992.Simpson, Adrienne: “Alda, Frances”, Dictionary of New Zealand Biography, https://teara.govt.nz/en/biographies/3a9/alda-frances.The New York Times : \"Frances Alda Dies. Former Met Star. 21 Years Before Retiring in 1929. Sang 40 Roles. A Gatti-Casazza Protege. Came to U.S. With Milanese Impresario in 1908. Stricken by Brain Hemorrhage\".. 19th Septembre 1952, New York.The New York Times: “Mme. Frances Alda Wed To Ray Vir Den. Former Opera. Singer Bride Of New York Advertising M”an\". 15th April 1941, New York.The New York Times: “Singers Back From Europe: Mme. Frances Alda and Anna Case, Also Spalding, Violinist.”,18th Septembre 1920, New York.The New York Times; “New Manon Heard.: Frances Alda Appears in Massenet's Opera”, 27th February 1909, New York."""; + "https://viaf.org/viaf/39564759"; + "https://www.wikidata.org/wiki/Q3398990"; + "https://en.wikipedia.org/wiki/Frances_Alda"; + "1879-05-31"^^xsd:date; + "1879-05-31"^^xsd:date; + "wrote an autobiographie Men, Women, & Tenors she was proud tob e native from New Zealand and sang sometimes in Maori."; + "1952-09-18"^^xsd:date; + "1952-09-18"^^xsd:date; + "Alda"; + "Frances"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frances_Alda_and_dog.jpg"; + "https://de.wikipedia.org/wiki/Frances_Alda#/media/Datei:Frances_Alda_and_dog.jpg"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01387647"; + "https://d-nb.info/gnd/116050438"; + "BarDom-00"; + "https://isni.org/isni/0000000108148585"; + "Own"; + "https://lccn.loc.gov/n97876029"; + "https://snaccooperative.org/ark:/99166/w6v12gpf#resources"; + "MGG"; + "https://viaf.org/viaf/64747908"; + "https://www.wikidata.org/wiki/Q908235"; + "https://en.wikipedia.org/wiki/Domenico_Barbaia"; + "1777-08-10"^^xsd:date; + "1777-08-10"^^xsd:date; + "born on Ponte Sesto, Mailand, died in Posillipo or Mergellina, Naples"; + "1841-10-16"^^xsd:date; + "1841-10-16"^^xsd:date; + "Barbaja"; + "Domenico"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barbaja_Domenico.jpg"; + "https://de.wikipedia.org/wiki/Domenico_Barbaja"; + "Impresario, entrepreneur, theatre director,artist agent"; + ; + . + + a ; + "BraTer-01"; + "https://isni.org/isni/0000000002451543"; + "Own"; + "MGG"; + "https://viaf.org/viaf/64341188/"; + "https://www.wikidata.org/wiki/Q3984325"; + "https://en.wikipedia.org/wiki/Teresina_Brambilla"; + "1845-04-15"^^xsd:date; + "1845-04-15"^^xsd:date; + "1921-07-01"^^xsd:date; + "1921-07-01"^^xsd:date; + "Brambilla"; + "Teresina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Teresina_Brambilla_Ponchielli_by_Ernesto_Fontana.jpg"; + "https://www.wikidata.org/wiki/Q3984325#/media/File:Teresina_Brambilla_Ponchielli_by_Ernesto_Fontana.jpg"; + "Opera Singer"; + ; + . + + a ; + "https://d-nb.info/gnd/116493348"; + "BreEli-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 585.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.,List: Leipzig 1903, p. 127."; + "https://viaf.org/viaf/54901640"; + "https://www.wikidata.org/wiki/Q18620774"; + "https://de.wikipedia.org/wiki/Elise_Breuer"; + "1872-05-31"^^xsd:date; + "1872-05-31"^^xsd:date; + "1914-01-01"^^xsd:date; + "1972-12-31"^^xsd:date; + "Breuer"; + "Elise"; + "last notice 1914"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer"; + . + + a ; + "https://d-nb.info/gnd/118520113"; + "ChaCha-00"; + "https://isni.org/isni/0000000121213863"; + "Own"; + "https://lccn.loc.gov/n79126907"; + "https://snaccooperative.org/ark:/99166/w6p84dr4"; + "https://viaf.org/viaf/14767533"; + "https://www.wikidata.org/wiki/Q882"; + "https://en.wikipedia.org/wiki/Charlie_Chaplin"; + "1889-04-16"^^xsd:date; + "1889-04-16"^^xsd:date; + "1977-12-15"^^xsd:date; + "1977-12-15"^^xsd:date; + "Chaplin"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charlie_Chaplin_portrait.jpg.webp"; + "https://www.wikidata.org/wiki/Q882#/media/File:Charlie_Chaplin_portrait.jpg"; + "Actor, Director, Screenwriter, Cutter, Composer, Comedian, Film producer"; + ; + . + + a ; + "https://d-nb.info/gnd/116608714"; + "RosCa-00"; + "https://isni.org/isni/0000000365016532"; + "Own"; + "https://lccn.loc.gov/n97858982"; + "https://snaccooperative.org/ark:/99166/w6864cr9#resources"; + "-"; + "https://viaf.org/viaf/229380553"; + "https://www.wikidata.org/wiki/Q3660571"; + "https://en.wikipedia.org/wiki/Carolina_Rosati"; + "1826-12-13"^^xsd:date; + "1826-12-13"^^xsd:date; + "Rosati"; + "Carolina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Camilla_Guiscardi_Gandolfi,_ritratto_di_Carolina_Galletti_-_crop_2.jpg"; + "https://www.wikidata.org/wiki/Q3660571#/media/File:Camilla_Guiscardi_Gandolfi,_ritratto_di_Carolina_Galletti_-_crop_2.jpg"; + "Dancer"; + ; + . + + a ; + "1908-01-01 - 1908-12-31"; + "1979-01-01 - 1979-12-31"; + "SanMan-00"; + "Own"; + "Tito Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikipedia: Manuel Domínguez Santamaría, online: https://gl.wikipedia.org/wiki/Manuel_Dom%C3%ADnguez_Santamar%C3%ADaGastón Borges: “Memorias de las tablas: Teatro del Pueblo”, La diaria cultura, 24 February 2023, online: https://ladiaria.com.uy/cultura/articulo/2023/2/memoria-de-las-tablas-teatro-del-pueblo/Aldo Roque Difilippo: “Teatro del Pueblo: escuela y semilla actoral. Los albores del teatro independiente uruguayo”, Letralia, Año XI • Nº 150, 9 October 2006 Cagua, Venezuela, online: https://letralia.com/150/entrevistas01.htm"; + "https://www.wikidata.org/wiki/Q71955894"; + "Santamaría"; + "Manuel"; + "1908"; + "1979"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + """other sources: 27 Octobre 1833 +"""; + "https://d-nb.info/gnd/118801201"; + "TagMar-01"; + "https://isni.org/isni/0000000034361534"; + "Own"; + "https://lccn.loc.gov/n97873698"; + "Biographisches Lexikon des Kaiserthums Oesterreich"; + "https://viaf.org/viaf/72190599"; + "https://www.wikidata.org/wiki/Q25414258"; + "https://de.wikipedia.org/wiki/Marie_Taglioni_die_J%C3%BCngere"; + "1830-10-27"^^xsd:date; + "1830-10-27"^^xsd:date; + "Neuaigen near Wien"; + "1891-08-27"^^xsd:date; + "1891-08-27"^^xsd:date; + "Taglioni"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Taglioni_die_Jüngere_(1833-1891)_Litho.jpg"; + "https://www.wikidata.org/wiki/Q25414258#/media/File:Maria_Taglioni_die_J%C3%BCngere_(1833-1891)_Litho.jpg"; + "Dancer"; + . + + a ; + "Australia"; + "Australia"; + "2077456"; + "AUS-00"; + -2.5e1; + 1.33e2; + "Q408"; + "https://en.wikipedia.org/wiki/Australia" . + + a ; + "Kassel"; + "Europe"; + "Germany"; + "2892518"; + "GER-Kas-00"; + 5.13158e1; + 9.4979e0; + "Q2865"; + "https://en.wikipedia.org/wiki/Kassel" . + + a ; + "Pest (Budapest)"; + "Europe"; + "Hungary"; + "3046446"; + "HU-Pest-00"; + 4.75174e1; + 1.90847e1; + "Q210205"; + "https://en.wikipedia.org/wiki/Pest,_Hungary" . + + a ; + "Syracuse"; + "North America"; + "USA"; + "5140405"; + "USA-Syrac-00"; + "New York"; + 4.30409e1; + -7.61438e1; + "Q128069"; + "https://en.wikipedia.org/wiki/Syracuse,_New_York" . + + a ; + 1022; + "Theatre"; + ""; + " k.k. priv. Carl-Theater"; + . + + a ; + 60410; + "Society/Union"; + ""; + "Oriental Operetta Society" . + + a ; + 60880; + "Theatre"; + ""; + "Pavilion Theatre" . + + a ; + 68070; + "Theatre"; + ""; + "Yiddish Art Theatre" . + + a ; + 754; + "Theatre"; + ""; + "Teatro Nacional" . + + a ; + 902; + "Theatre"; + ""; + "Teatro Apolo" . + + a ; + "https://data.cerl.org/thesaurus/cnp01384136"; + "https://d-nb.info/gnd/116279389"; + "AlbMar-00"; + "https://isni.org/isni/000000011649148X"; + "Own"; + "https://lccn.loc.gov/n89623931"; + "https://snaccooperative.org/ark:/99166/w6rf6q5b#resources"; + "Arthur Pougin:  Marietta Alboni. Paris 1912."; + "https://viaf.org/viaf/56874943"; + "https://www.wikidata.org/wiki/Q269130"; + "https://en.wikipedia.org/wiki/Marietta_Alboni"; + "1826-03-06"^^xsd:date; + "1826-03-06"^^xsd:date; + "1894-06-23"^^xsd:date; + "1894-06-23"^^xsd:date; + "Alboni"; + "Marietta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alboni_Marietta.jpg"; + "https://de.wikipedia.org/wiki/Marietta_Alboni#/media/Datei:Marietta_Alboni_by_Charles_Vogt.jpg"; + "Opera singer, Actress"; + ; + . + + a ; + "ArnJos-00"; + "Own"; + "Callipo, Daniela Mantarro. O Teatro Musicado Francês No Rio De Janeiro Oitocentista: sucesso, ruína, aplausos e críticas. In.: Miscelânea, Assis, v. 31, 2022, p. 49-64: https://seer.assis.unesp.br/index.php/miscelanea/article/view/2211 Callipo, Daniela Mantarro. De vedete à poeta: a trajetória de Rose Méryss. In Miscelânea, Assis, v. 24, p. 145-163, jul.-dez., 2018. https://seer.assis.unesp.br/index.php/miscelanea/article/view/1222 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Neves, Larissa de Oliveira. A opereta francesa e o teatro brasileiro: uma proposta de pesquisa. In.: Cadernos Letra e Ato, v.5, 2015, p.60-68. https://www.publionline.iar.unicamp.br/index.php/letraeato/article/view/328 (Hemeroteca of Brazilian National Library) Diário do Rio de Janeiro. 20th June 1867. Ed. 00156. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=21959 Diário do Rio de Janeiro. 27th September 1874. Ed. 00267. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=32174Diário do Rio de Janeiro. 24th August 1875. Ed. 00234. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=33482Diário do Rio de Janeiro. 14th August 1873. Ed. 00223. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=30556 Diário do Rio de Janeiro. 11th April 1877. Ed. 00095. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=35920 Jornal da Tarde : Folha Politica e Noticiosa. 22nd February 1878. Ed. 00044. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=748919&pesq=%22Joseph%20Arnaud%22&pasta=ano%20187&hf=memoria.bn.br&pagfis=1175 "; + "1878-02-22"^^xsd:date; + "1878-02-22"^^xsd:date; + "Arnaud"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Founder, Impresario, Actor"; + ; + . + + a ; + "-"; + "BelAdo-1246"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bell-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.191."""; + "-"; + "-"; + "-"; + "1886-09-04"^^xsd:date; + "1886-09-04"^^xsd:date; + "Bell"; + "Adolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-bell-adolf.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/bell-adolf.htm"; + ; + "Jewish" . + + a ; + "-"; + "https://d-nb.info/gnd/173595855"; + "FeiRac-1622"; + "https://isni.org/isni/000000006692950X"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/nr98010202"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/F/feigenberg-rachel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5152."""; + "http://viaf.org/viaf/49139643"; + "https://www.wikidata.org/wiki/Q16655496"; + "https://en.wikipedia.org/wiki/Rakhel_Feygenberg"; + "1885-09-12"^^xsd:date; + "1885-09-12"^^xsd:date; + "Buried in Tel Aviv"; + "1872-06-05"^^xsd:date; + "1872-06-05"^^xsd:date; + "Feigenberg"; + "Rachel"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/rachel faigelberg.jpg"; + "https://infocenters.co.il/gnazim/lightbox.asp?lang=HEB&dlang=HEB&module=search&page=lightbox&rsvr=7&param=%3Crsvr_ser%3E@@3@@6@@8@@7@@10%3C/%3E%3Csearch_type%3Eglobal%3C/%3E%3Cuppernav%3Eglobal%3C/%3E%3Cdlang%3EHEB%3C/%3E%3Cnrsvr%3EY%3C/%3E%3Csort%3ERE@A%3C/%3E%3Ces_query_reuse_id%3E3%3C/%3E%3Cquantity%3E10%3C/%3E%3Cstart_entry%3E11%3C/%3E%3Cnum_of_items%3E3028%3C/%3E%3Cthumb%3E0%3C/%3E%3Csmode%3Edts%3C/%3E%3Cnob%3E-3%3C/%3E%3Cagg_cbx3v1%3Emul@y%3C/%3E%3Ccurr_agg%3Emul$y%3C/%3E%3Cbook_id%3E249019%3C/%3E%3Cview%3Erecords%3C/%3E%3Cnext_litem%3Ey%3C/%3E%3Clb_file%3Emultimedia/PhotoCollection/602_6.jpg%3C/%3E&param2=&site=gnazim"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1199507849"; + "GolSam-1829"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldenburg-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.271."""; + "https://en.wikipedia.org/wiki/Samuel_Goldenberg_(actor)"; + "1886-02-08"^^xsd:date; + "1886-02-08"^^xsd:date; + "Goldenburg"; + "Samuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/samuel goldenburg.jpg"; + "https://archive.nyu.edu/handle/2451/58186"; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp02027722"; + "https://d-nb.info/gnd/116855819"; + "GriErn-00"; + "Own"; + "https://worldcat.org/identities/lccn-no2019121906/"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 1841."; + "https://viaf.org/viaf/100996600"; + "https://www.wikidata.org/wiki/Q21044765"; + "1816-10-25"^^xsd:date; + "1816-10-25"^^xsd:date; + "died in Villiers by Paris"; + "1895-12-11"^^xsd:date; + "1895-12-11"^^xsd:date; + "Grisi"; + "Ernesta Giuseppina Jacomina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charles_Adolphe_Bonnegrace_-_Portrait_of_Ernesta_Grisi_1816-1895_1866_-_(MeisterDrucke-1139850).jpg"; + "https://www.meisterdrucke.de/kunstdrucke/Charles-Adolphe-Bonnegrace/1139850/Portr%C3%A4t-von-Ernesta-Grisi-1816-1895%2C-1866.html"; + "Opera singer,dancer"; + ; + . + + a ; + "https://d-nb.info/gnd/1250087015"; + "HerAgn-00"; + "https://isni.org/isni/0000000033655549"; + "Own"; + "https://lccn.loc.gov/n83071757"; + "https://snaccooperative.org/ark:/99166/w6ks8xbq"; + "Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.139-141."; + "https://viaf.org/viaf/48138368"; + "https://www.wikidata.org/wiki/Q6787507"; + "https://en.wikipedia.org/wiki/Matilda_Heron"; + "1830-12-01"^^xsd:date; + "1830-12-01"^^xsd:date; + " Burial: Green-Wood Cemetery, Brooklyn"; + "1877-03-07"^^xsd:date; + "1877-03-07"^^xsd:date; + "Heron"; + "Matilda Agnes"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Matilda_Heron_c1850.jpg"; + "https://www.wikidata.org/wiki/Q6787507#/media/File:Matilda_Heron_c1850.jpg"; + "Actress, Playwright, Performer"; + ; + . + + a ; + "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&query="; + "KalPau-00"; + "Own"; + "Ludwig Eisenberg: Paul Kalisch. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/52431976/"; + "https://www.wikidata.org/wiki/Q95667"; + "1855-11-06"^^xsd:date; + "1855-11-06"^^xsd:date; + "Ernst II of Saxe-Coburg-Gotha appointed him a chamber singer after he hear him singing at the festival in Wiesbaden "; + "1946-01-27"^^xsd:date; + "1946-01-27"^^xsd:date; + "Paul"; + "Kalisch"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Kalisch.jpg"; + "https://de.wikipedia.org/wiki/Paul_Kalisch#/media/Datei:Paul_Kalisch.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/116871199"; + "LehMar-00"; + "Own"; + "Großes Sängerlexikon"; + "https://viaf.org/viaf/15531011"; + "https://www.wikidata.org/wiki/Q10326330"; + "https://en.wikipedia.org/wiki/Marie_Lehmann_(soprano)"; + "1851-05-15"^^xsd:date; + "1851-05-15"^^xsd:date; + "1931-12-19"^^xsd:date; + "1931-12-19"^^xsd:date; + "Lehmann"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marie_Lehmann_AEhrlichSängerinnen1895.jpg"; + "https://www.wikidata.org/wiki/Q10326330#/media/File:Marie_Lehmann_AEhrlichS%C3%A4ngerinnen1895.jpg"; + "Opera singer ,soprano,Vocal trainer"; + ; + . + + a ; + "https://d-nb.info/gnd/1029270236"; + "SavZar-00"; + "Own"; + "https://www.wikidata.org/wiki/Q115221008"; + "1861-08-28"^^xsd:date; + "1861-08-28"^^xsd:date; + "1930-01-18"^^xsd:date; + "1930-01-18"^^xsd:date; + "Savic"; + "Zarko"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Director, Vocal Teacher"; + ; + . + + a ; + "Salzburg"; + "Europe"; + "Austria"; + "2766824"; + "AT-Salzb-00"; + 4.78112e1; + 1.30332e1; + "Q34713"; + "https://en.wikipedia.org/wiki/Salzburg" . + + a ; + "Vilnius"; + "Europe"; + "Lithuania"; + "593116"; + "LT-Viln-00"; + 5.46833e1; + 2.52833e1; + "Q216"; + "https://en.wikipedia.org/wiki/Vilnius" . + + a ; + "Ljubljana"; + "Europe"; + "Slovenia"; + "3196359"; + "SL-Laib-00"; + 4.60556e1; + 1.45083e1; + "Q437"; + "https://en.wikipedia.org/wiki/Ljubljana" . + + a ; + "Cincinnati"; + "North America"; + "USA"; + "4508722"; + "USA-Cinc-00"; + "Ohio"; + 3.91e1; + -8.45125e1; + "Q43196"; + "https://en.wikipedia.org/wiki/Cincinnati" . + + a ; + "Detroit"; + "North America"; + "USA"; + "4990729"; + "USA-Detroit-00"; + "Michigan"; + 4.23316e1; + -8.30475e1; + "Q12439"; + "https://en.wikipedia.org/wiki/Detroit" . + + a ; + "Johannesburg"; + "Africa"; + "South Africa"; + "993800"; + "ZA-Joburg"; + -2.62e1; + 2.80455e1; + "Q34647"; + "https://en.wikipedia.org/wiki/Johannesburg" . + + a ; + 3275; + "Theatre"; + ""; + "Teatro Comedia" . + + a ; + 54290; + "Theatre"; + ""; + "Gimpel Theatre" . + + a ; + "-"; + "-"; + "AntRiv-1161"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/antsipovitsh-riva.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4881."""; + "-"; + "-"; + "-"; + "1870-06-06"^^xsd:date; + "1870-06-06"^^xsd:date; + "Antsipovitsh"; + "Riva"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-antsipovitsh-riva.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/antsipovitsh-riva.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/116080027"; + "BasEls-00"; + "https://isni.org/isni/0000000045009704"; + "Own"; + "https://lccn.loc.gov/no2003017524"; + "https://snaccooperative.org/ark:/99166/w6841b06#resources"; + """Thomas Blubacher: Else Basserman. In: Andreas Kotte (ed.): Theaterlexikon der Schweiz, vol 1, Chronos, Zürich 2005,  p. 128. +https://de.findagrave.com/memorial/104714687/elisabeth-sara-bassermann +"""; + "https://viaf.org/viaf/77058244"; + "https://www.wikidata.org/wiki/Q109211"; + "https://en.wikipedia.org/wiki/Elsa_Bassermann"; + "1878-01-14"^^xsd:date; + "1878-01-14"^^xsd:date; + "Sie ist auf dem Hauptfriedhof in Baden-Baden beerdigt."; + "1961-05-30"^^xsd:date; + "1961-05-30"^^xsd:date; + "Bassermann"; + "Else "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PE275805alt.jpg"; + "Theatermuseum Wien, www.theatermuseum.at/de/object/512210/"; + "Screenwriter,stage,Film Actress"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01429927"; + "https://d-nb.info/gnd/118524097"; + "BogDaw-00"; + "https://isni.org/isni/0000000108620712"; + "Own"; + "https://lccn.loc.gov/n79023804"; + "https://snaccooperative.org/ark:/99166/w6ps1w3f#resources"; + """Alfred von Wurzbach: Bogumil Dawison. Zeitgenossen. Biographische Skizzen von Alfred von Wurzbach, XI. Heft, Wien u. a. 1871 +Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903, pp. 176-179 +\"Erinnerungen an Bogumil Dawiso\", in: Blätter für Musik, Theater und Kunst , 14. May 1872, p. 154 +Kürschner, Joseph, \"Dawison, Bogumil\" in: Allgemeine Deutsche Biographie 4 (1876), pp. 787-789 ]; https://www.deutsche-biographie.de/pnd118524097.html#adbcontent +Peter Kollek: Bogumil Dawison. Porträt und Deutung eines genialen Schauspielers. Henn 1978. +"""; + "https://viaf.org/viaf/803327"; + "https://www.wikidata.org/wiki/Q316722"; + "https://en.wikipedia.org/wiki/Bogumil_Dawison"; + "1818-05-15"^^xsd:date; + "1818-05-15"^^xsd:date; + "1872-02-01"^^xsd:date; + "1872-02-01"^^xsd:date; + "Bogumil"; + "Dawison"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Bogumil_Dawison.jpg"; + "https://de.wikipedia.org/wiki/Bogumil_Dawison#/media/Datei:Bogumil_Dawison.jpg"; + "Actor"; + ; + ; + "Jewish" . + + a ; + "CarGae-00"; + "Own"; + "Birth name"; + "Bastos, Sousa. A Carteira do Artista. Apontamentos para a História do Theatro Portuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898.Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Tese (Doutorado em História). Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Prado, Décio de Almeida. História Concisa do Teatro Brasileiro: 1570-1908. EdUSP, 1999.(Newspapers of Hemeroteca Nacional Website):Gazeta de Notícias. 21st March 1885. Ed. 00080. Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=8390 O Fluminense. 7th April 1886. Ed. 01229. Niterói, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=100439_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=3896 Gazeta de Notícias. 11th January 1886. Ed. 00011. Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=9734 O Paiz. 17th January 1910. Ed. 09236. Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=272 O Paiz. 20th Fabruary 1913. Ed. 10363. Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=15589 O Paiz. 9th November 1911. Ed. 09895. Rio de Janeiro, p.5:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=9164 O Paiz. 21th March 1913. Ed. 10392. Rio de Janeiro, p.12:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=15997 Correio da Manhã. 8th May 1918. Ed. 07012. Rio de Janeiro, p.5:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_02&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=35214 "; + "https://www.wikidata.org/wiki/Q30933419"; + "https://pt.wikipedia.org/wiki/Gaetano_Carrancini"; + "1856-01-01"^^xsd:date; + "1856-12-31"^^xsd:date; + "Carrancini"; + "Gaetano"; + "1856"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Stage Designer"; + . + + a ; + "https://d-nb.info/gnd/132377314"; + "EibRiz-00"; + "https://isni.org/isni/0000000077817554"; + "Own"; + "https://lccn.loc.gov/no2010060844"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/60240547"; + "https://www.wikidata.org/wiki/Q14541853"; + "https://en.wikipedia.org/wiki/Riza_Eibensch%C3%BCtz"; + "1870-02-17"^^xsd:date; + "1870-02-17"^^xsd:date; + "1947-01-16"^^xsd:date; + "1947-01-16"^^xsd:date; + "Eibenschütz"; + "Riza"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Riza_Eibenschuetz_1898.jpg"; + "https://www.wikidata.org/wiki/Q14541853#/media/File:Riza_Eibenschuetz_1898.jpg"; + "Opera Singer,Soprano, Ald"; + ; + . + + a ; + "https://d-nb.info/gnd/1250085640"; + "GeoWil-00"; + "Own"; + "https://lccn.loc.gov/no91005681"; + "https://snaccooperative.org/ark:/99166/w6x678kv#resources"; + """Charles Eyre Pascoe: The Dramatic List: A Record of the Principal Performances of Living Actors and Actresses of the British Stage with Criticisms from Contemporary Journals, The Temple Publishing Company: London, 1880, p. 8-9.# +Matthew Somerville: Theatralica, https://the atricalia.com/person/anc/g-w-anson.# +The Broadway League: Internet Broadway Database, https://www.ibdb.com/broadway-cast-staff/g-w-anson-76638."""; + "https://viaf.org/viaf/61105565"; + "https://www.wikidata.org/wiki/Q16043452"; + "https://en.wikipedia.org/wiki/George_W._Anson"; + "1847-11-25"^^xsd:date; + "1847-11-25"^^xsd:date; + "1920-08-02"^^xsd:date; + "1920-08-02"^^xsd:date; + "Anson"; + "George William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anson_George.jpg"; + "https://www.wikidata.org/wiki/Q16043452#/media/File:George_Anson_p_52_from_album_compiled_Gordon_Ireland_MS_6135_Collection_State_Library_Victoria.jpg"; + "Actor"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/1250084733"; + "GilAnn-00"; + "-"; + "Own"; + "https://lccn.loc.gov/no2008120871"; + "https://snaccooperative.org/ark:/99166/w6h13hm7#resources"; + "https://viaf.org/viaf/51509259"; + "https://www.wikidata.org/wiki/Q4766413"; + "https://en.wikipedia.org/wiki/Anne_Hartley_Gilbert"; + "1821-10-21"^^xsd:date; + "1821-10-21"^^xsd:date; + "Burial: Green-Wood Cemetery, Brooklyn, King’s County, New York"; + "1904-04-12"^^xsd:date; + "1904-04-12"^^xsd:date; + "Gilbert"; + "Anne Hartley "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mrs._G._H._Gilbert_seated_portrait._Sarony.jpg"; + "https://www.wikidata.org/wiki/Q4766413#/media/File:Mrs._G._H._Gilbert_seated_portrait._Sarony.jpg"; + "Dancer, Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/116328940"; + "JohGad-00"; + "https://isni.org/isni/0000000055138657"; + "Own"; + "https://lccn.loc.gov/no90002544"; + "https://snaccooperative.org/ark:/99166/w6br947q"; + "Großen Sängerlexikon"; + "https://viaf.org/viaf/29717934"; + "https://www.wikidata.org/wiki/Q96176"; + "https://en.wikipedia.org/wiki/Johanna_Gadski"; + "1872-06-15"^^xsd:date; + "1872-06-15"^^xsd:date; + """One of the best singer of wagner Operas in her time. +Her voice is served on more than 100 Schellackplatten and Mapleson-Zylindern. Died as the consequences of a car accident (she was in Germany for searching new singer for her company)"""; + "1932-02-22"^^xsd:date; + "1932-02-22"^^xsd:date; + "Gadski"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Gadski_Johanna.jpg"; + "https://de.wikipedia.org/wiki/Johanna_Gadski"; + "Opera singer,sopran"; + ; + . + + a ; + "other sources: 1864"; + "PanAle-00"; + "https://isni.org/isni/0000000497982134"; + "Own"; + "https://id.loc.gov/authorities/names/n2017068369.html"; + "http://n2t.net/ark:/99166/w6f90mnx"; + """Beth Painter: Biography of Alexander Pantages, in Find a grave, https://de.findagrave.com/memorial/2093/alexander-pantages +# +Bringing Back Broadway (ed.): The Arcade Theatre (1910), https://bringingbackbroadway.com/the-arcade-theatre +# +Daniel Statt: Pantages, Alexander (1876-1936), in HistoryLink.org, Mai 03, 2001, https://www.historylink.org/file/2999. +Hellenica World (ed.): Alexander Pantages, https://www.hellenicaworld.com/Greece/Person/en/AlexanderPantages.html +# +Michael Gates: Hollywood in the Klondike: Dawson City's Great Film Find, Madeira Park, BC: Lost Moose 2022, pp. 118–125, 135, 140–141 +# +Pantages Theatre Archive (PTA) (ed.): “The Life of Alexander Pantages”, the J. Willard Marriott Librar, https://pta.lib.utah.edu/alexander-pantages/ +# +Paul R. Spitzzeri: The Sexual Assault Trial of Alexander Pantages, Los Angeles, October 1929, October 10, 2018, https://homesteadmuseum.blog/2018/10/10/the-sexual-assault-trial-of-alexander-pantages-los-angeles-october-1929/ +# +Taso G. Lagos: American Zeus: The Life of Alexander Pantages, North Carolina: McFarland 2018 +# +The San Diego History Center (ed.): The Pantages, https://sandiegohistory.org/collection/photographs/pantages/ +# +Theodore Saloutos: “Alexander Pantages, Theater Magnate of the West”, in The Pacific Northwest Quarterly, Washington: University of Washington Oct. 1966, Vol. 57, No. 4, pp. 137-147 +# +Water and Power Associates (ed.): Pantages Theatre (Hollywood), https://waterandpower.org/Museum2/Pantages_Theatre_(Hollywood).html"""; + "http://viaf.org/viaf/3876151112573937180001"; + "https://www.wikidata.org/wiki/Q2642809#sitelinks-wikipedia"; + "https://en.wikipedia.org/wiki/Alexander_Pantages"; + "1867-01-01"^^xsd:date; + "1867-12-31"^^xsd:date; + "1936-02-17"^^xsd:date; + "1936-02-17"^^xsd:date; + "Pantages"; + "Alexander"; + "1867"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander_Pantages.gif"; + "https://de.wikipedia.org/wiki/Alexander_Pantages#/media/Datei:Alexander_Pantages.gif"; + "Circus Performer, Impresario"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01318407"; + "https://d-nb.info/gnd/119056569"; + "SchWil-00"; + "https://isni.org/isni/0000000109135073"; + "Own"; + "https://lccn.loc.gov/n85342496"; + "https://snaccooperative.org/ark:/99166/w6kp8wjz"; + """Neue Deutsche Biographie +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 4273-4274. """; + "https://viaf.org/viaf/71397570"; + "https://www.wikidata.org/wiki/Q63238"; + "https://en.wikipedia.org/wiki/Wilhelmine_Schr%C3%B6der-Devrient"; + "1804-12-06"^^xsd:date; + "1804-12-06"^^xsd:date; + "1860-01-26"^^xsd:date; + "1860-01-26"^^xsd:date; + "Schroeder-Devrient"; + "Wilhelmine Henriette Friederike Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/894px-Schroeder-Devrient_by_Schuler.jpg"; + "https://commons.wikimedia.org/wiki/File:Schroeder-Devrient_by_Schuler.jpg"; + "Opera Singer,Soprano"; + ; + . + + a ; + "other sources: 13 January 1884 or 1887"; + "-"; + "https://d-nb.info/gnd/124869076"; + "TucSop-00"; + "https://isni.org/isni/0000000083876542"; + "Own"; + "https://lccn.loc.gov/n87139429"; + "https://snaccooperative.org/ark:/99166/w6bz6v06"; + """Jeannine Henderson-Shifflett: „ Sophie Tucker, The Last of the Red-Hot Mamas”, connecticuthistory.org, May 18, 2022, https://connecticuthistory.org/sophie-tucker-the-last-of-the-red-hot-mamas/. +Ancestry.com, Passenger list, https://www.ancestry.com/search/collections/1068/?name=_Abuza&departure=1887-9&departure_x=0-0-0&name_x=1_1&pcat=img_passlists&geo_a=r&geo_s=us&geo_t=us&geo_v=2.0.0&o_lid=62916&o_sch=Partners&o_xid=62916, und https://www.ancestry.de/search/categories/40/?name=Sofia+Kalish_Abuza&birth=1887&count=50&gender=f. """; + "https://viaf.org/viaf/61733250"; + "https://www.wikidata.org/wiki/Q152520"; + "https://en.wikipedia.org/wiki/Sophie_Tucker"; + "1886-01-13"^^xsd:date; + "1886-01-13"^^xsd:date; + "Burial: Emanuel Synagogue Cemetery, Wethersfield, Connecticut"; + "1966-02-09"^^xsd:date; + "1966-02-09"^^xsd:date; + "Tucker"; + "Sophia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/SophieTucker1917.jpg"; + "https://de.wikipedia.org/wiki/Sophie_Tucker#/media/Datei:SophieTucker1917.jpg"; + "Singer, Actor"; + ; + ; + "Jewish" . + + a ; + "Melbourne"; + "Australia"; + "Australia"; + "2158177"; + "AUS-Melb-00"; + -3.78e1; + 1.4495e2; + "Q3141"; + "https://en.wikipedia.org/wiki/Melbourne" . + + a ; + "Venice"; + "Europe"; + "Italy"; + "3164603"; + "IT-Ven-00"; + 4.54375e1; + 1.23358e1; + "Q641"; + "https://en.wikipedia.org/wiki/Venice" . + + a ; + "Kraków"; + "Europe"; + "Poland"; + "3094802"; + "PL-Krak-00"; + 5.00614e1; + 1.99372e1; + "Q31487"; + "https://en.wikipedia.org/wiki/Krak%C3%B3w" . + + a ; + "Albany"; + "North America"; + "USA"; + "5106834"; + "USA-Alb-00"; + "New York"; + 4.26597e1; + -7.37814e1; + "Q24861"; + "https://en.wikipedia.org/wiki/Albany,_New_York" . + + a ; + "New Haven"; + "North America"; + "USA"; + "4839366"; + "USA-NHav-00"; + "Connecticut"; + 4.13081e1; + -7.29286e1; + "Q49145"; + "https://en.wikipedia.org/wiki/New_Haven,_Connecticut" . + + a ; + 59300; + "Theatre"; + ""; + "National Theatre"; + . + + a ; + "BecBer-1238"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/beckerman-berish.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.195."""; + "1854-01-01"^^xsd:date; + "1854-12-31"^^xsd:date; + "Beckerman"; + "Berish"; + "1854"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-bekerman-berish.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/lex-bekerman-berish.jpg"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/116509457"; + "ChrRud-00"; + "https://isni.org/isni/0000000042311908"; + "Own"; + "https://lccn.loc.gov/no2002015043"; + "https://viaf.org/viaf/77069290"; + "https://www.wikidata.org/wiki/Q5608458"; + "https://de.wikipedia.org/wiki/Rudolf_Christians_(Schauspieler)"; + "1869-01-15"^^xsd:date; + "1869-01-15"^^xsd:date; + "born in Middoge (Jeverland)"; + "1922-02-07"^^xsd:date; + "1922-02-07"^^xsd:date; + "Christians"; + "Rudolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Rudolf_Christians_1895_Vilimek.jpg"; + "https://www.wikidata.org/wiki/Q5608458#/media/File:Rudolf_Christians_1895_Vilimek.jpg"; + "Actor, theatre director"; + . + + a ; + "https://d-nb.info/gnd/1057567280"; + "DelNic-00"; + "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000059401395&TERMS"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchType=7&searchld=6493&am"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Osvaldo Pellettieri: Historia del Teatro argentino en Buenos Aires. La segunda modernidad (1949-1976), Buenos Aires. Galerna 2003. + +Jesús Piernas. \"Nicolás de las Llanderas Fraga\" in Tebeosfera 2022. [Online-edition]: https://www.tebeosfera.com/autores/llanderas_nicolas_de_las.html + +Wikipedia. Nicolás de las Llanderas. Online, https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas"""; + "https://viaf.org/viaf/78650977/"; + "https://www.wikidata.org/wiki/Q20014433"; + "https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas"; + "1888-02-06"^^xsd:date; + "1888-02-06"^^xsd:date; + "1938-05-20"^^xsd:date; + "1938-05-20"^^xsd:date; + "De las Llanderas"; + "Nicolás"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Nicolás de las Llanderas.jpg"; + "https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas "; + ; + . + + a ; + "-"; + "-"; + "EpsFan-1579"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/epstein-fannie-vadya.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1591."""; + "-"; + "-"; + "-"; + "1868-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "Buried in Warsaw, Poland"; + "1913-02-03"^^xsd:date; + "1913-02-03"^^xsd:date; + "Epstein"; + "Fannie Vadya"; + "1868"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-epstein-fannie-varda.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/E/epstein-fannie-vadya.htm"; + ; + ; + "Jewish" . + + a ; + "JesOlg-00"; + "Own"; + "Birth name"; + """Carlos María Romero Sosa. “Una escritora entre dos mundos”, La Prensa. July 3, 2016, https://www.laprensa.com.ar/445642-Una-escritora-entre-dos-mundos.note.aspx. + +Monografías: Inmigración a la Argentina 1850-1960: escritores, https://www.monografias.com/trabajos32/inmigracion-escritores/inmigracion-escritores. + +Centro PEN Argentina (ed.): Diccionario de autores argentinos 1810-1960, Buenos Aires, 2020, online: https://www.autores.centropen.com.ar/jespersen-de-adeler-olga-1877-1968/ + +https://www.olhus.dk/getperson.php?personID=I28741&tree=tree1 + +Johnnys Slægtsforskning: “Olga Jespersen”, online: https://finnholbek.dk/getperson.php?personID=I42550&tree=2 + +Skeel, Schaffalitzky og Ahlefeldt: „Olga Jespersen“, online: https://finnholbek.dk/getperson.php?personID=I42550&tree=2My Heritage: “Johannes Adeler”, online: https://www.myheritage.de/names/johannes_adeler + +Geneanet: “Olga Jespersen”, online: https://gw.geneanet.org/lap65200?lang=de&pz=andreas+markus&nz=golzer&p=olga&n=jespersen"""; + "1877-10-22"^^xsd:date; + "1877-10-22"^^xsd:date; + "1968-01-31"^^xsd:date; + "1968-01-31"^^xsd:date; + "Jespersen"; + "Olga"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/olgaadeler.jpg"; + "https://www.goodreads.com/author/show/5071265.Olga_de_Adeler

"; + "Writer,Dramaturg"; + ; + . + + a ; + "https://d-nb.info/gnd/1250088771"; + "KroSel-00"; + "Own"; + "https://www.wikidata.org/wiki/Q18639408"; + "https://en.wikipedia.org/wiki/Selma_Kronold"; + "1861-08-18"^^xsd:date; + "1861-08-18"^^xsd:date; + "Burial: Mount Pleasant Cemetery, Hawthorne (Westchester County)"; + "1920-10-09"^^xsd:date; + "1920-10-09"^^xsd:date; + "Kronold"; + "Selma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Kronold_photo_3.jpg"; + "https://www.wikidata.org/wiki/Q18639408#/media/File:Kronold_photo_3.jpg"; + "Soprano"; + ; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01426411"; + "https://d-nb.info/gnd/1017770093"; + "KupCae-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/220736525"; + "https://www.wikidata.org/wiki/Q1025449"; + "https://de.wikipedia.org/wiki/Caesarine_Kupfer-Gomansky"; + "1818-12-28"^^xsd:date; + "1818-12-28"^^xsd:date; + "1886-04-04"^^xsd:date; + "1886-04-04"^^xsd:date; + "Kupfer-Gomansky"; + "Caesarine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Caesarine_Kupfer-Gomansky.jpg"; + "https://www.wikidata.org/wiki/Q1025449#/media/File:Caesarine_Kupfer-Gomansky.jpg"; + "Actress"; + ; + . + + a ; + "https://d-nb.info/gnd/1022981390"; + "MimMis-00"; + "https://isni.org/isni/0000000370335511"; + "Own"; + "https://lccn.loc.gov/no2012072957"; + "http://viaf.org/viaf/249643813"; + "https://www.wikidata.org/wiki/Q1348485"; + "https://en.wikipedia.org/wiki/Mime_Misu"; + "1888-01-21"^^xsd:date; + "1888-01-21"^^xsd:date; + "1953-07-28"^^xsd:date; + "1953-07-28"^^xsd:date; + "Mime"; + "Misu"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Ballet Dancer, Pantomime Artist, Film Actor,Director"; + ; + . + + a ; + "NozItz-2579"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nozyk-itzhak.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1394."""; + "1889-04-23"^^xsd:date; + "1889-04-23"^^xsd:date; + "Nozyk"; + "Itzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-nozyk-itzhak.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/N/nozyk-itzhak.htm "; + ; + "Jewish" . + + a ; + "https://data.cerl.org/thesaurus/cnp01085777"; + "https://d-nb.info/gnd/117306282"; + "StrMau-00"; + "https://isni.org/isni/0000000078451056"; + "Own"; + "https://lccn.loc.gov/n82110061"; + "https://snaccooperative.org/ark:/99166/w6184m9w"; + "Österreichisches Biographisches Lexikon"; + "https://viaf.org/viaf/88087311"; + "https://www.wikidata.org/wiki/Q506177"; + "https://en.wikipedia.org/wiki/Maurice_Strakosch"; + "1825-01-15"^^xsd:date; + "1825-01-15"^^xsd:date; + "He started concert tours as a pianist all around Europe at the age of eleven."; + "1887-10-09"^^xsd:date; + "1887-10-09"^^xsd:date; + "Strakosch"; + "Maurice"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Strakosch_Maurice.jpg"; + "https://www.wikidata.org/wiki/Q506177#/media/File:Maurice-strakosch.jpg"; + "Composer, Pianist, Impresario "; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01386003"; + "https://d-nb.info/gnd/117197459"; + "TagPau-00"; + "https://isni.org/isni/0000000077082404"; + "Own"; + "https://lccn.loc.gov/n97859166"; + "Biographisches Lexikon des Kaiserthums Oesterreich"; + "https://viaf.org/viaf/32265454"; + "https://www.wikidata.org/wiki/Q872165"; + "https://de.wikipedia.org/wiki/Paul_Taglioni"; + "1808-01-12"^^xsd:date; + "1808-01-12"^^xsd:date; + "1884-01-06"^^xsd:date; + "1884-01-06"^^xsd:date; + "Taglioni"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Taglioni_by_Josef_Kriehuber.jpg"; + "https://www.wikidata.org/wiki/Q872165#/media/File:Paul_Taglioni_by_Josef_Kriehuber.jpg"; + "Dancer"; + ; + . + + a ; + "ZilWol-3397"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zilberberg-wolf.htm + Papers of Peretz Hirschbein; RG 833; folder number; YIVO Institute for Jewish Research. https://archives.cjh.org/repositories/7/resources/3273 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.777."""; + "1885-11-11"^^xsd:date; + "1885-11-11"^^xsd:date; + "Zilberberg"; + "Wolf"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zilberberg-wolf.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zilberberg-wolf.htm "; + ; + "Jewish" . + + a ; + "Recife"; + "South America"; + "Brazil"; + "3390760"; + "BR-Recif-00"; + "Pernambuco"; + -8.05556e0; + -3.48911e1; + "Q48344"; + "https://en.wikipedia.org/wiki/Recife" . + + a ; + "Toronto"; + "North America"; + "Canada"; + "6167865"; + "CA-Toro-00"; + "Ontario"; + 4.36614e1; + -7.93831e1; + "Q172"; + "https://en.wikipedia.org/wiki/Toronto" . + + a ; + "Zurich"; + "Europe"; + "Switzerland"; + "2657896"; + "CH-Zur-00"; + 4.73667e1; + 8.550000000000001e0; + "Q72"; + "https://en.wikipedia.org/wiki/Zurich" . + + a ; + "Mannheim"; + "Europe"; + "Germany"; + "2873891"; + "GER-Mnhm-00"; + 4.94878e1; + 8.46611e0; + "Q2119"; + "https://en.wikipedia.org/wiki/Mannheim" . + + a ; + "Naples"; + "Europe"; + "Italy"; + "3172394"; + "IT-Nap-00"; + 4.0845e1; + 1.42583e1; + "Q2634"; + "https://en.wikipedia.org/wiki/Naples" . + + a ; + "Moscow"; + "Europe"; + "Russia"; + "524901"; + "RU-Mosk-00"; + 5.57558e1; + 3.76172e1; + "Q649"; + "https://en.wikipedia.org/wiki/Moscow" . + + a ; + "Singapore"; + "Asia"; + "Singapore"; + "1880252"; + "SG-00"; + 1.28333e0; + 1.03833e2; + "Q334"; + "https://en.wikipedia.org/wiki/Singapore" . + + a ; + 283; + ""; + ""; + "Park Theatre"; + . + + a ; + 3845; + "Media"; + ""; + "20th Century Fox" . + + a ; + 537; + "Theatre"; + ""; + "Deutsches Theater"; + . + + a ; + "BelMor-1243"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/belavsky-morris.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.164."""; + "-"; + "1881-12-27"^^xsd:date; + "1881-12-27"^^xsd:date; + "Belavsky"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/belavsky-morriss-verdict-sfm.jpg"; + "https://www.museumoffamilyhistory.com/pl/belavsky-morriss-verdict-sfm.jpg"; + ; + "Jewish" . + + a ; + "CarRit-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.  + +Lily Franco: +Rita Carbajo y los teatros porteños, Buenos Aires: Academia Porteña del +Lunfardo 1999. + +Leopoldo Zuloaga: Antología de obras de teatro +argentino desde sus orígenes a la actualidad: 1860-1877: obras de la organización +nacional, con prólogo de Beatriz Seibel, Buenos Aires: Instituto Nacional del +Teatro 2008. + +Susana Llahí, María de los Ángeles Sanz, Teatro para +niños, su historia desde los orígenes, Luna Teatral 2, https://lunateatral2.wordpress.com/2014/01/04/origenes-del-teatro-para-ninos-en-buenos-aires/ + +Buenos Aires Historia: Arnaldo J. Cunietti-Ferrando: +El teatro de la Alegría, online edition, https://buenosaireshistoria.org/juntas/el-teatro-de-la-alegria/"""; + "1838-01-01"^^xsd:date; + "1838-12-31"^^xsd:date; + "1919-04-09"^^xsd:date; + "1919-04-09"^^xsd:date; + "Carbajo"; + "Rita"; + "1838"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carbajo, Rita.jpg"; + "https://buenosaireshistoria.org/juntas/el-teatro-de-la-alegria/"; + ; + . + + a ; + "-"; + "01.01.1914-31.12.1914"; + "-"; + "CiaCes-00"; + "-"; + "Own"; + "-"; + "-"; + """Matteo Paoletti: La red de empresarios europeos en Buenos Aires (1880-1925). Algunas consideraciones preliminaries. Revista Argentina de Musicología, Vol. 21 Nro. 1 (2020): 51-76.Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. +William Garrett Acree Jr.: Staging Frontiers. The Making of Modern Popular Culture in Argentina and Uruguay, University of New Mexico Press 2019. + +"""; + "-"; + "-"; + "-"; + "1914-12-31"^^xsd:date; + "Ciacchi"; + "César"; + "1914"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "DouEmi-00"; + "Own"; + "Birth name"; + "WERNECK, Maria Helena; REIS, Angela de Castro (org.). Rotas de Teatro: entre Portugal e Brasil. Rio de Janeiro: 7Letras, 2012."; + "https://www.wikidata.org/wiki/Q106319886"; + "https://en.wikipedia.org/wiki/%C3%89mile_Doux"; + "1798-01-01"^^xsd:date; + "1798-01-01"^^xsd:date; + "other sources say born in Paris"; + "1876-01-01"^^xsd:date; + "1876-01-01"^^xsd:date; + "Doux"; + "Émile"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emílio_Doux_2.jpg"; + "https://www.wikidata.org/wiki/Q106319886#/media/File:Em%C3%ADlio_Doux_2.jpg"; + "Actor, Director, Impresario,Theatre Teacher"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/173077684"; + "EntJoe-1574"; + "https://isni.org/isni/0000000066949025"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/nr91013665"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/entin-joel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1577."""; + "http://viaf.org/viaf/56464712"; + "https://www.wikidata.org/wiki/Q94636105"; + "-"; + "1874-01-01"^^xsd:date; + "1875-12-31"^^xsd:date; + "1959-01-01"^^xsd:date; + "1959-12-31"^^xsd:date; + "Entin"; + "Joel"; + "1874 or 1875"; + "1959"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-entin-joel.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/E/entin-joel.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/118556932"; + "JanEmi-00"; + "https://isni.org/isni/0000000117812281"; + "Own"; + "https://lccn.loc.gov/n87896209"; + "https://snaccooperative.org/ark:/99166/w6np5rk7#resources"; + "liver cancer. He is buried in the St. Wolfgang cemetery"; + "https://viaf.org/viaf/122349694"; + "https://www.wikidata.org/wiki/Q77181"; + "https://en.wikipedia.org/wiki/Emil_Jannings"; + "1884-07-23"^^xsd:date; + "1884-07-23"^^xsd:date; + "1950-01-02"^^xsd:date; + "1950-01-02"^^xsd:date; + "Jannings"; + "Emil"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Emil_Jannings_-_no_watermark.jpg"; + "https://www.wikidata.org/wiki/Q77181#/media/File:Emil_Jannings_-_no_watermark.jpg"; + "Actor"; + ; + . + + a ; + "JuvKal-2061"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/J/juvelier-kalmen.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.909."""; + "1863-05-12"^^xsd:date; + "1863-05-12"^^xsd:date; + "Juvelier"; + "Kalmen"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/118883933"; + "LehLill-00"; + "https://isni.org/isni/0000000108652888"; + "Own"; + "https://lccn.loc.gov/n82101441"; + "https://snaccooperative.org/ark:/99166/w6br9htw"; + "Ludwig Eisenberg: Großes Biographisches Lexikon der Deutschen Bühne. Leipzig 1903"; + "https://viaf.org/viaf/5089547"; + "https://www.wikidata.org/wiki/Q61641"; + "https://en.wikipedia.org/wiki/Lilli_Lehmann"; + "1848-11-24"^^xsd:date; + "1848-11-24"^^xsd:date; + "1929-05-17"^^xsd:date; + "1929-05-17"^^xsd:date; + "Lehmann"; + "Lilli"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lilli_Lehmann.jpg"; + "https://www.wikidata.org/wiki/Q61641#/media/File:Lilli_Lehmann.jpg"; + "Opera Singer ,Soprano"; + ; + . + + a ; + "-"; + "-"; + "MilGeo-00"; + "https://isni.org/isni/0000000048100757"; + "Own"; + "https://id.loc.gov/authorities/names/nr2003002108.html"; + "https://snaccooperative.org/view/18653232#resources "; + "The Sydney Mail and New South Wales Advertiser. \"Her Majesty's Theatre,\" 13th October 1888, p. 761: https://trove.nla.gov.au/newspaper/article/161891040.#South Australian Register. \"Shipping Intelligence,\" 30th October 1890, p. 4: https://trove.nla.gov.au/newspaper/article/47261486.#Kaori Kobayashi: \"Touring in Asia: The Miln Company's Shakespearean Productions in Japan,\" in Shakespeare and his Contemporaries in Performance, edited by Edward J. Esche. Routledge 2016, pp. 53-72.#Bai Sun: “The First Wave of Shakespearean Productions Given by Touring Troupes in Shanghai: A Historical Survey Based on Materials Preserved in The North-China Herald and The North-China Daily News (III),” in Journal of Humanities Across the Straits, September 2021, pp.81-88.#Eric Irvin: \"George Crichton Miln: an individualist on the Australian stage\". Australasian Drama Studies (19): 1991, 94–106."; + "http://viaf.org/viaf/12247418"; + "https://www.wikidata.org/wiki/Q107332078"; + "https://en.wikipedia.org/wiki/George_C._Miln"; + "1850-01-01"^^xsd:date; + "1850-01-01"^^xsd:date; + "1917-01-01"^^xsd:date; + "1917-01-01"^^xsd:date; + "Miln"; + "George Crichton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/George_C._Miln.jpg"; + "https://www.wikidata.org/wiki/Q107332078#/media/File:George_C._Miln.jpg"; + . + + a ; + "NatCha-745"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1401."""; + "1874-12-01"^^xsd:date; + "1874-12-31"^^xsd:date; + "Nathanson"; + "Charles"; + "December 1874"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-nathanson-charles.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/116259876"; + "PolBer-00"; + "https://isni.org/isni/0000000010255868"; + "Own"; + "https://viaf.org/viaf/54895488"; + "https://www.wikidata.org/wiki/Q4370318"; + "https://en.wikipedia.org/wiki/Bernhard_Pollini"; + "1838-12-16"^^xsd:date; + "1838-12-16"^^xsd:date; + "(Immediately after a \"Meistersinger\" performance Pollini died of cardiac paralysis)"; + "1897-11-26"^^xsd:date; + "1897-11-26"^^xsd:date; + "Pollini"; + "Bernhard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1.jpeg"; + "https://www.wikidata.org/wiki/Q4370318#/media/File:BernhardPollini.jpg"; + "Operatic Tenor,Opera Director"; + ; + ; + "Jewish" . + + a ; + "https://www.wikidata.org/wiki/Q12319158#sitelinks-wikipedia"; + "RemJea-00"; + "https://isni.org/isni/0000000081189394"; + "Own"; + "http://id.loc.gov/authorities/names/n93000729"; + "Birth name"; + "http://viaf.org/viaf/39645772"; + "https://www.wikidata.org/wiki/Q12319158#sitelinks-wikipedia"; + "https://en.wikipedia.org/wiki/Jean_R%C3%A9musat"; + "1815-05-11"^^xsd:date; + "1815-05-11"^^xsd:date; + "1880-09-01"^^xsd:date; + "1880-09-01"^^xsd:date; + "Rémusat"; + "Jean"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Musician, Composer, Conductor"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01082171"; + "https://d-nb.info/gnd/116849088"; + "SchMal-00"; + "https://isni.org/isni/0000000052598156"; + "Own"; + "https://lccn.loc.gov/nr94006615"; + "Ludwig Eisenberg: Malvina Schnorr von Carolsfeld. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/20442457"; + "https://www.wikidata.org/wiki/Q5844416"; + "https://en.wikipedia.org/wiki/Malvina_Garrigues"; + "1825-12-07"^^xsd:date; + "1825-12-07"^^xsd:date; + "1904-02-08"^^xsd:date; + "1904-02-08"^^xsd:date; + "Schnorr von Carolsfeld"; + "Malvina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Malwina_Schnorr-Carolsfeld.jpg"; + "https://www.wikidata.org/wiki/Q5844416#/media/File:Malwina_Schnorr-Carolsfeld.jpg"; + "opera singer,soprano, singing teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/117306274"; + "StrLud-00"; + "https://isni.org/isni/0000000013675999"; + "Own"; + "Österreichisches Biographisches Lexikon"; + "https://viaf.org/viaf/30309901"; + "https://www.wikidata.org/wiki/Q19971480"; + "https://en.wikipedia.org/wiki/Ludwig_Strakosch"; + "1855-11-01"^^xsd:date; + "1855-11-01"^^xsd:date; + "Part of the family Strakosch, “the sugar barons”."; + "1919-10-14"^^xsd:date; + "1919-10-14"^^xsd:date; + "Strakosch"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer"; + ; + . + + a ; + "TanAvr-729"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-avraham-itzhak.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.852."""; + "1857-11-12"^^xsd:date; + "1857-11-12"^^xsd:date; + "Tanzman"; + "Avraham Itzhak"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tantsman-avraham-itzhak.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-avraham-itzhak.htm"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1250127645"; + "TomMar-00"; + "Own"; + "Großen Sängerlexikon"; + "https://viaf.org/viaf/1198164357866813250007/"; + "https://www.wikidata.org/wiki/Q19971499"; + "https://de.wikipedia.org/wiki/Marie_Tomschik"; + "1871-02-23"^^xsd:date; + "1871-02-23"^^xsd:date; + "1930-01-01"^^xsd:date; + "1930-01-01"^^xsd:date; + "Tomschik"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/fef335e7-e4be-46b9-a8c4-e674b39aeded.jpg"; + "https://www-p1.archivportal-d.de/item/B3HDH34MFLRBPFQL2EQTTBW2SP5UARCC?facetValues%5B%5D=context%3D6CPYFKH35TYTUWTWR5CIF2CLE3Q5Y6DD&rows=20&offset=0&viewType=list&hitNumber=7"; + "Opera Singer"; + ; + . + + a ; + "Europe"; + "England"; + "EN-00"; + 5.24833e1; + -1.56667e0; + "Q21" . + + a ; + "Manchester"; + "Europe"; + "England"; + "2643123"; + "EN-MANCH-00"; + 5.34794e1; + -2.24528e0; + "Q18125"; + "https://en.wikipedia.org/wiki/Manchester" . + + a ; + "Hanover"; + "Europe"; + "Germany"; + "2910831"; + "GER-HAJ-00"; + 5.23667e1; + 9.716670000000001e0; + "Q1715"; + "https://en.wikipedia.org/wiki/Hanover" . + + a ; + "Louisville"; + "North America"; + "USA"; + "4299276"; + "USA-Louis-00"; + "Kentucky"; + 3.82561e1; + -8.57514e1; + "Q43668"; + "https://en.wikipedia.org/wiki/Louisville,_Kentucky" . + + a ; + 1254; + "Company"; + ""; + "Galton Opera Company" . + + a ; + 527; + "Theatre"; + ""; + "Her Majesty's Theatre"; + . + + a ; + 70448; + "Traveling Company"; + "Goldfaden's troupe" . + + a ; + "-"; + "https://d-nb.info/gnd/11604022X"; + "BaiIda-00"; + "-"; + "Own"; + "-"; + "-"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 208."; + "https://viaf.org/viaf/52432177"; + "https://www.wikidata.org/wiki/Q17575917"; + "https://de.wikipedia.org/wiki/Ida_Baier"; + "1863-03-16"^^xsd:date; + "1863-03-16"^^xsd:date; + "After 1906 nothing is known about her."; + "1933-07-01"^^xsd:date; + "1933-07-01"^^xsd:date; + "Baier"; + "Ida"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ida_Baier_1885_Eigner.jpg"; + "https://commons.wikimedia.org/wiki/File:Ida_Baier_1885_Eigner.jpg"; + ; + . + + a ; + " https://d-nb.info/gnd/11672482X "; + "BruLud-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 616."; + "http://viaf.org/viaf/30295122 "; + "
https://www.wikidata.org/wiki/Q948"; + "https://de.wikipedia.org/wiki/Ludwig_von_dem_Bruch"; + "1869-05-30"^^xsd:date; + "1869-05-30"^^xsd:date; + "1943-09-13"^^xsd:date; + "1943-09-13"^^xsd:date; + "Bruch"; + "Ludwig"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK192898alt.jpg"; + "https://www.theatermuseum.at/online-sammlung/detail/528395/?offset=0&lv=&cHash=8167e6eb0214475ef97a0265b7b59466"; + ; + . + + a ; + "https://d-nb.info/gnd/116750820"; + "CsiRos-00"; + "https://isni.org/isni/0000000021385596"; + "Own"; + "https://worldcat.org/identities/lccn-n2019033614/"; + "https://viaf.org/viaf/47521357"; + "https://www.wikidata.org/wiki/Q1756245"; + "1832-10-23"^^xsd:date; + "1832-10-23"^^xsd:date; + "1892-02-20"^^xsd:date; + "1892-02-20"^^xsd:date; + "Csillag"; + "Rosa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Rosa_Csillag.jpg"; + "https://de.wikipedia.org/wiki/Rosa_Csillag#/media/Datei:Rosa_Csillag_Litho.jpg"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/1225579554"; + "DavDav-3821"; + "https://isni.org/isni/0000000030111378"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/n81048375"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/D/davidov-david-II.htm + +https://en-arts.tau.ac.il/theatre/David + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.538."""; + "http://viaf.org/viaf/233144782719903542620"; + "https://www.wikidata.org/wiki/Q7019257"; + "https://pl.wikipedia.org/wiki/Dawid_Dawidow"; + "1890-05-10"^^xsd:date; + "1890-05-10"^^xsd:date; + "1975-11-13"^^xsd:date; + "1975-11-13"^^xsd:date; + "Davidov"; + "David "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/David_Davidov.jpg"; + "https://www.wikidata.org/wiki/Q7019257#/media/File:David_Davidov.jpg"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/116409681"; + "FarGer-00"; + "https://isni.org/isni/000000008130695X"; + "Own"; + "https://lccn.loc.gov/n81090616"; + "https://snaccooperative.org/ark:/99166/w6w0977b"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 1400.The New York Times: “Quick Change at Oera.: Mme. Farrar's Illness Forces Substitution of \"Rigoletto\" for \"Carmen.\"”, 5th march 1916, New York."; + "https://viaf.org/viaf/51875177"; + "https://www.wikidata.org/wiki/Q241498"; + "https://en.wikipedia.org/wiki/Geraldine_Farrar"; + "1882-02-28"^^xsd:date; + "1882-02-28"^^xsd:date; + "At the age of 40 she finished her career on stage. She was friends with the German crown prince and his family in Berlin."; + "1967-03-11"^^xsd:date; + "1967-03-11"^^xsd:date; + "Farrar"; + "Geraldine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Geraldine_Farrar_1918.png"; + "https://www.wikidata.org/wiki/Q241498#/media/File:Geraldine_Farrar_1918.png"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01385950"; + "https://d-nb.info/gnd/116855835"; + "GriGiu-01"; + "https://isni.org/isni/0000000071431300"; + "Own"; + "https://lccn.loc.gov/n85326413"; + "https://snaccooperative.org/ark:/99166/w6j67r9n"; + "https://viaf.org/viaf/42040883"; + "https://www.wikidata.org/wiki/Q287344"; + "https://en.wikipedia.org/wiki/Giulia_Grisi"; + "1811-05-22"^^xsd:date; + "1811-05-22"^^xsd:date; + """After a concert with Pauline Viardot in Wiesbaden, she contracted pneumonia during a train journey with her children to visit her husband in St Petersburg and died in a hotel in Berlin. +Burried in Paris, Friedhof Père Lachaise"""; + "1869-11-29"^^xsd:date; + "1869-11-29"^^xsd:date; + "Grisi"; + "Giulia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Giulia_grisi_donna_anna.jpeg"; + "https://www.wikidata.org/wiki/Q287344#/media/File:Giulia_grisi_donna_anna.JPG"; + "Opera singer,coloratura soprano, soprano sfogato"; + ; + . + + a ; + "https://d-nb.info/gnd/1250088429"; + "LofCis-00"; + "https://isni.org/isni/0000000027431194"; + "Own"; + "https://lccn.loc.gov/n87911813"; + "https://snaccooperative.org/ark:/99166/w6q82gvv"; + "https://viaf.org/viaf/63077614"; + "https://www.wikidata.org/wiki/Q980144"; + "https://en.wikipedia.org/wiki/Cecilia_Loftus"; + "1876-10-22"^^xsd:date; + "1876-10-22"^^xsd:date; + "Burial: Kensico Cemetery, Valhalla, New York"; + "1943-07-12"^^xsd:date; + "1943-07-12"^^xsd:date; + "Loftus"; + "Cissie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Cecilia_Loftus.jpg"; + "https://www.wikidata.org/wiki/Q980144#/media/File:Cecilia_Loftus.jpg"; + "Performer, Actress"; + ; + . + + a ; + "NerEst-2555"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/neroslavska-esther.htm +https://forward.com/life/204501/how-one-yiddish-actress-was-blocked-from-stardom/ +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.143."""; + "Neroslavska"; + "Esther"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/esther-neroslavska-web-1423584134.jpg"; + "https://forward.com/life/204501/how-one-yiddish-actress-was-blocked-from-stardom/"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/117464236"; + "SeiAnt-00"; + "Own"; + "https://lccn.loc.gov/n81104390"; + "https://snaccooperative.org/ark:/99166/w6cr63w0"; + "https://viaf.org/viaf/10624164"; + "https://www.wikidata.org/wiki/Q594113"; + "https://en.wikipedia.org/wiki/Anton_Seidl"; + "1850-05-07"^^xsd:date; + "1850-05-07"^^xsd:date; + "1898-03-28"^^xsd:date; + "1898-03-28"^^xsd:date; + "Seidl"; + "Anton"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anton_Seidl.png"; + "https://www.wikidata.org/wiki/Q594113#/media/File:Anton_Seidl.png"; + "Conductor, Chormaster"; + ; + . + + a ; + "ZibEla-3385"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-ela.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.767."""; + "1897-05-16"^^xsd:date; + "1897-05-16"^^xsd:date; + "Zibel"; + "Ela"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zibel-ela.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-ela.htm "; + ; + "Jewish" . + + a ; + "Wrocław"; + "Europe"; + "Poland"; + "3081368"; + "PL-Bres-00"; + 5.111e1; + 1.70325e1; + "Q1799"; + "https://en.wikipedia.org/wiki/Wroc%C5%82aw" . + + a ; + "Milwaukee"; + "North America"; + "USA"; + "5263045"; + "USA-MKE-00"; + "Wsconsin"; + 4.305e1; + -8.795e1; + "Q37836"; + "https://en.wikipedia.org/wiki/Milwaukee" . + + a ; + "Rochester"; + "North America"; + "USA"; + "5134086"; + "USA-NY-02"; + "New York"; + 4.31656e1; + -7.76114e1; + "Q49218"; + "https://en.wikipedia.org/wiki/Rochester,_New_York" . + + a ; + 75; + "Theatre"; + ""; + "Königliche Oper, Berlin"; + . + + a ; + "https://d-nb.info/gnd/116406364"; + "BraMar-01"; + "https://isni.org/isni/0000000043721853"; + "Own"; + "https://lccn.loc.gov/no93027456"; + "https://snaccooperative.org/ark:/99166/w6086hrx"; + "Oesterreichisches Musiklexikon."; + "https://viaf.org/viaf/39640252/"; + "https://www.wikidata.org/wiki/Q78820"; + "https://en.wikipedia.org/wiki/Marianne_Brandt_(contralto)"; + "1842-09-12"^^xsd:date; + "1842-09-12"^^xsd:date; + "1921-07-09"^^xsd:date; + "1921-07-09"^^xsd:date; + "Brandt"; + "Marianne"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Brandt_Marianne.jpg"; + "https://de.wikipedia.org/wiki/Marianne_Brandt_%28S%C3%A4ngerin%29  "; + "Opera singer"; + ; + . + + a ; + "DenVic-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Operas Colón: Di Napoli Vita, Vicente, online, http://www.operas-colon.com.ar/new/items/show/634."""; + "https://viaf.org/viaf/307393002/#Di_Napoli-Vita,_Vicenzo"; + "1860-04-04"^^xsd:date; + "1860-04-04"^^xsd:date; + "1935-01-01"^^xsd:date; + "1935-12-31"^^xsd:date; + "De Napoli Vita"; + "Vicente"; + "1935"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/116365331"; + "EgeFra-00"; + "https://isni.org/isni/0000000010440289"; + "Own"; + "https://lccn.loc.gov/no2012106942"; + "https://viaf.org/viaf/64756302"; + "https://www.wikidata.org/wiki/Q104977"; + "https://en.wikipedia.org/wiki/Franz_Egenieff"; + "1874-05-31"^^xsd:date; + "1874-05-31"^^xsd:date; + "1949-06-01"^^xsd:date; + "1949-06-01"^^xsd:date; + "Egenieff "; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Egenieff_Franz_von.jpg"; + "https://de.wikipedia.org/wiki/Franz_Egenieff "; + "Opera singer, film actor"; + ; + . + + a ; + "FenGeo-00"; + "Own"; + """listing of St Helier Baptisms from 1842 to 1909, https://www.theislandwiki.org/index.php/St_Helier_baptisms_1842-1909_Fagg_to_Fielding. +# +Ancestry.com. George B. Fentum, https://www.ancestry.ca/search/?name=George+Benjamin_Fentum&event=_Singapore&pg=3&birth=9&count=50&location=3257.3250&name_x=_1&priority=english. + # +Zubillaga-Pow Jun, Chee-Kong Ho: The Singaporean Soundscape, Singapore: National Library Board 2014, https://de.scribd.com/document/242878621/The-Singaporean-Soundscape#. +# +North China Herald. “Passengers”, 06th September 1873, p. 204: https://archive.org/details/north-china-herald-1873.09.06/page/204/mode/2up?q=G.+B.+Fentum. +# +North China Herald. “Passengers”, 09th September 1876, p. 1: https://archive.org/details/north-china-herald-1876.09.09/page/n1/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 24th August 1878, p. 190: https://archive.org/details/north-china-herald-1878.08.24/page/190/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 28th September 1883, p. 386: https://archive.org/details/north-china-herald-1883.09.28/page/386/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 09th July 1886, p. 34: https://archive.org/details/north-china-herald-1886.07.09/page/34/mode/2up?q=G.+B.+Fentum. +# +The Musical World. 18th March 1865, p. 157: https://archive.org/details/sim_musical-world_1865-03-18_43_11/page/156/mode/2up?q=G.+B.+Fentum. +# +Brief Summary of Country News. 01st May 1865, p. 61: https://archive.org/details/jstor-3354790/page/n3/mode/2up?q=G.+B.+Fentum. +# +The Magazine of Music. May 1891, p. 93: https://archive.org/details/sim_magazine-of-music_1891-05_8_5/page/92/mode/2up?q=G.+B.+Fentum. +# +The Musical Times. “Music in Australia”, 01st March 1896, p. 189: https://archive.org/details/sim_musical-times_1896-03-01_37_637/page/188/mode/2up?q=Fentum. +# +The Pipe Organ in China Project. “G.B. Fentum (1843-1914): British Organist in Singapore, Shanghai, and Australia,” http://organcn.org/blog/g-b-fentum-1843-1914-british-organist-in-singapore-shanghai-and-australia/."""; + "1843-06-09"^^xsd:date; + "1843-06-09"^^xsd:date; + "1914-09-05"^^xsd:date; + "1914-09-05"^^xsd:date; + "Fentum"; + "George Benjamin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mr-Fentum-PLC-East-Melbourne-early-20th-Century.jpg"; + "https://blogs.qub.ac.uk/specialcollections/george-benjamin-fentum-organist-at-shanghai/"; + "Musician, Conductor"; + ; + . + + a ; + "https://d-nb.info/gnd/116423374"; + "GarMar-00"; + "https://isni.org/isni/0000000115620163"; + "Own"; + "https://lccn.loc.gov/n80010421"; + "https://snaccooperative.org/ark:/99166/w67d2s5n"; + "https://viaf.org/viaf/22228088"; + "https://www.wikidata.org/wiki/Q242752"; + "https://en.wikipedia.org/wiki/Mary_Garden"; + "1874-02-20"^^xsd:date; + "1874-02-20"^^xsd:date; + "1967-01-03"^^xsd:date; + "1967-01-03"^^xsd:date; + "Garden"; + "Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Mary_Garden_2.jpg"; + "https://www.wikidata.org/wiki/Q242752#/media/File:Mary_Garden_2.jpg"; + "Opera singer,Leading Soprano, Artistic Director, Vocal advisor,teacher"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp02033511"; + "https://d-nb.info/gnd/118559389"; + "KaiJos-00"; + "https://isni.org/isni/0000000081291030"; + "Own"; + "https://lccn.loc.gov/n86091024"; + "https://snaccooperative.org/ark:/99166/w60x1wkw#resources"; + "Österreichisches Biographisches Lexikon 1815–1950"; + "https://viaf.org/viaf/50017298"; + "https://www.wikidata.org/wiki/Q697592"; + "https://en.wikipedia.org/wiki/Josef_Kainz"; + "1858-01-02"^^xsd:date; + "1858-01-02"^^xsd:date; + "died five days after his appointment as Court Theatre Director), burried at Döblinger Friedhof in Wien (honorary grave)"; + "1910-09-20"^^xsd:date; + "1910-09-20"^^xsd:date; + "Kainz"; + "Josef Gottfried Ignaz "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Kainz_by_Erwin_Raupp.jpg"; + "https://www.wikidata.org/wiki/Q697592#/media/File:Josef_Kainz_by_Erwin_Raupp.jpg"; + "Actor, Director"; + ; + . + + a ; + "KelAlf-00"; + "Own"; + """Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Alfred Kelleher, https://www.ibdb.com/broadway-production/the-grand-duchess-445245."""; + "buried in the USA"; + "Kelleher"; + "Alfred"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor"; + ; + ; + "Christian" . + + a ; + "https://d-nb.info/gnd/116760052"; + "MarBla-00"; + "https://isni.org/isni/0000000079736109"; + "Own"; + "https://lccn.loc.gov/n50041813"; + "https://snaccooperative.org/ark:/99166/w6ms450x"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2907.Barbara Boisits, Art. „Marchesi, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x0001d8a6The New York Times: „ Blanche Marchesi Coming: The Singer Is a Passenger on the Umbria -- Her Ideas and Aspirations.”, 1st january 1899, New York.The New York Times; “Music Heard Yesterday: Miss Blanche Marchesi's First Song Recital at Mendelssohn Hall”, 26th January 1899, New York.The New York Times: “Music Heard Yesterday: Mme. Blanche Marchesi's Farewell Song Recital at Carnegie Hall.”16th March 1899, New York.Chicago Daily Tribune: “Opera Season Is Over.: Ellis Company Closes A Successful Engagement. Manager and Milward Adams Both Declare the Performances at the Auditorium Have Been Satisfactory Both Artistically and Financially--Pleased with M. Alvarez's Success-Matinee Production of \"Carmen\" a Spirited, One. Pleased with Alvarez's Reception. Season a Satisfactory One. Blanche Marchesi Song Recital. PROGRAM.“ 26th February 1899, Chicago."; + "https://viaf.org/viaf/37182532"; + "https://www.wikidata.org/wiki/Q881416"; + "https://en.wikipedia.org/wiki/Blanche_Marchesi"; + "1863-04-04"^^xsd:date; + "1863-04-04"^^xsd:date; + "1940-12-15"^^xsd:date; + "1940-12-15"^^xsd:date; + "Marchesi"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Blanche_Marchesi_btv1b85969067-p025_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q881416#/media/File:Blanche_Marchesi_btv1b85969067-p025_(cropped).jpg"; + ; + . + + a ; + "NadSon-840"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nadolsky-sonia.htm + +Center for Jewish History : https://archives.cjh.org/repositories/7/archival_objects/1286065 + +https://forward.com/life/208686/throwback-thursday-the-actress-who-could-hold-her/ + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nadolsky-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1387."""; + "1867-09-01"^^xsd:date; + "1867-09-01"^^xsd:date; + "Nadolsky"; + "Sonya"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/sonya nadolsky.jpg"; + "https://archive.nyu.edu/handle/2451/56155"; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/135050057"; + "ResEdo-00"; + "https://isni.org/isni/0000000055522480"; + "Own"; + "https://lccn.loc.gov/n93015758"; + "https://snaccooperative.org/ark:/99166/w64f2310"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + "https://viaf.org/viaf/43508102"; + "https://www.wikidata.org/wiki/Q4025366"; + "1853-12-22"^^xsd:date; + "1853-12-22"^^xsd:date; + "1917-05-25"^^xsd:date; + "1917-05-25"^^xsd:date; + "de Reszke"; + "Édouard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Édouard_de_Reszke_LCCN2014698890_(cropped).jpg"; + "https://www.wikidata.org/wiki/Q4025366#/media/File:%C3%89douard_de_Reszke_LCCN2014698890_(cropped).jpg"; + "Opera Singer"; + ; + . + + a ; + "VakMor-3137"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-morris.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.66."""; + "1874-07-25"^^xsd:date; + "1874-07-25"^^xsd:date; + "Vaksman"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-morris.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-morris.htm"; + ; + "Jewish" . + + a ; + "ZinYos-3409"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zinger-yosef.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.791."""; + "1885-01-01"^^xsd:date; + "1885-12-31"^^xsd:date; + "Zinger"; + "Yosef"; + "1885"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zinger-yosef.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zinger-yosef.htm "; + ; + "Jewish" . + + a ; + "Baltimore"; + "North America"; + "USA"; + "4347778"; + "USA-Balti-00"; + "Maryland"; + 3.92894e1; + -7.66153e1; + "Q5092"; + "https://en.wikipedia.org/wiki/Baltimore" . + + a ; + "Cleveland"; + "North America"; + "USA"; + "5150529"; + "USA-Clevel-00"; + "Ohio"; + 4.14822e1; + -8.166970000000001e1; + "Q37320"; + "https://en.wikipedia.org/wiki/Cleveland" . + + a ; + 122; + "temporary festival"; + ""; + "Bayreuther Festpiele"; + . + + a ; + 696; + ""; + "Lyceum Theatre" . + + a ; + "https://d-nb.info/gnd/130104329"; + "BlaEls-00"; + "Own"; + "https://lccn.loc.gov/n84098312"; + "Kutsch/Riemens: Großes Sängerlexikon"; + "https://viaf.org/viaf/70027666"; + "https://www.wikidata.org/wiki/Q24175013"; + "https://de.wikipedia.org/wiki/Elsa_Bland"; + "1880-04-18"^^xsd:date; + "1880-04-18"^^xsd:date; + "1935-09-27"^^xsd:date; + "1935-09-27"^^xsd:date; + "Bland"; + "Elsa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Elsa_Bland_04.jpg"; + "https://www.wikidata.org/wiki/Q24175013#/media/File:Elsa_Bland_04.jpg"; + "Opera singer,soprano,singing teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/1242821562"; + "BraTer-00"; + "https://isni.org/isni/0000000001056314"; + "Own"; + "https://snaccooperative.org/ark:/99166/w63c06j6#resources"; + "https://viaf.org/viaf/51952983/"; + "https://www.wikidata.org/wiki/Q3984276"; + "1813-12-23"^^xsd:date; + "1813-12-23"^^xsd:date; + "1895-07-15"^^xsd:date; + "1895-07-15"^^xsd:date; + "Brambilla"; + "Teresa"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Teresa_Brambilla_1845.jpg"; + "https://www.wikidata.org/wiki/Q3984276#/media/File:Teresa_Brambilla_1845.jpg"; + "Opera singer"; + ; + . + + a ; + "https://www.wikidata.org/wiki/Property:P1871"; + "https://d-nb.info/gnd/116855789"; + "GriCar-00"; + "https://isni.org/isni/0000000118978371"; + "Own"; + "https://lccn.loc.gov/nr95008206"; + "https://snaccooperative.org/ark:/99166/w6n87c0p"; + "Österreichisches Biographisches Lexikon 1815–1950"; + "https://viaf.org/viaf/19946439"; + "https://www.wikidata.org/wiki/Q287812"; + "https://en.wikipedia.org/wiki/Carlotta_Grisi"; + "1819-06-28"^^xsd:date; + "1819-06-28"^^xsd:date; + "1899-05-20"^^xsd:date; + "1899-05-20"^^xsd:date; + "Grisi"; + "Carlotta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carlotta_Grisi_in_the_title_role_of_Giselle,_1842.jpg"; + "https://www.wikidata.org/wiki/Q287812#/media/File:Carlotta_Grisi_in_the_title_role_of_Giselle,_1842.jpg"; + "Dancer,opera singer"; + ; + . + + a ; + "https://www.wikidata.org/wiki/Property:P1871"; + "other sources: Munich"; + "https://d-nb.info/gnd/119164035"; + "LewAug-00"; + "Own"; + "https://lccn.loc.gov/no2002058917"; + "https://www.wikidata.org/wiki/Property:P3430"; + "https://viaf.org/viaf/815792"; + "https://www.wikidata.org/wiki/Q99351"; + "https://en.wikipedia.org/wiki/August_Lewald"; + "1792-10-14"^^xsd:date; + "1792-10-14"^^xsd:date; + "1871-03-10"^^xsd:date; + "1871-03-10"^^xsd:date; + "Lewald"; + "August"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/August_Lewald_1.jpg"; + "https://www.wikidata.org/wiki/Q99351#/media/File:August_Lewald_1.jpg"; + "Actor, Theatre Director, Intendant"; + ; + ; + "Jewish, Other" . + + a ; + "https://data.cerl.org/thesaurus/cnp01075147"; + "https://d-nb.info/gnd/116021799"; + "MamEmm-00"; + "Own"; + "https://viaf.org/viaf/62289633"; + "https://www.wikidata.org/wiki/Q17425396"; + "https://de.wikipedia.org/wiki/Emma_Mampe-Babnigg"; + "1825-02-25"^^xsd:date; + "1825-02-25"^^xsd:date; + "1904-05-05"^^xsd:date; + "1904-05-05"^^xsd:date; + "Mampé-Babnigg"; + "Emma"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer,Soprano, Singing Teacher"; + ; + . + + a ; + "-"; + "-"; + "PadMan-00"; + "-"; + "Own"; + "-"; + "-"; + """Beatriz Seibel: Historia del circo. Buenos Aires, Ediciones del Sol 2005. + +Raúl H. Castagnino: Circo, teatro gauchesco y tango. Buenos Aires, Instituto Nacional de Estudios de Teatro 1981 + +“Manuel Padín” https://everipedia.org/wiki/lang_en/manuel-padin + +Lily Franco: “El circo criollo” https://www.magicasruinas.com.ar/revdesto064b.htm"""; + "-"; + "https://www.wikidata.org/wiki/Q20016349"; + "https://es.wikipedia.org/wiki/Manuel_Pad%C3%ADn"; + "1855-11-04"^^xsd:date; + "1855-11-04"^^xsd:date; + "1922-05-05"^^xsd:date; + "1922-05-05"^^xsd:date; + "Padín"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/padin-manuel.jpg"; + "https://commons.wikimedia.org/wiki/File:Manuel_Pad%C3%ADn.jpg"; + "Actor, Magician,Circus Performer, Photographer"; + ; + . + + a ; + "VelMar-00"; + "Own"; + "Faria, J. R. (2008). Machado de Assis e os estilos de interpretação teatral de seu tempo. Revista USP, v.77, p.135-148 : https://doi.org/10.11606/issn.2316-9036.v0i77p135-148 Faria, J. R.. O teatro realista no Brasil: 1855-1865. 1989. Doctoral dissertation (Doutorado em Literatura Brasileira) - Faculdade de Filosofia, Letras e Ciências Humanas, Universidade de São Paulo, São Paulo, 1990 : https://doi.org/10.11606/T.8.1990.tde-18102022-131721 Stark, A. C. A mulher ausente: a presença de Maria Velluti (1827-1891) no teatro brasileiro. Urdimento - Revista de Estudos em Artes Cênicas, Florianópolis, v. 1, n. 34, p. 280-305, 2019. DOI: 10.5965/1414573101342019280 : https://www.revistas.udesc.br/index.php/urdimento/article/view/1414573101342019280. "; + "https://www.wikidata.org/wiki/Q64623410"; + "https://en.wikipedia.org/wiki/Maria_Velluti"; + "1827-12-10"^^xsd:date; + "1827-12-10"^^xsd:date; + "Velluti"; + "Maria"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Velluti.png"; + "https://www.wikidata.org/wiki/Q64623410#/media/File:Maria_Velluti.png"; + "Actor, Dancer, Playwright, English Teacher, Translator"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00538866"; + "https://d-nb.info/gnd/118805916"; + "WagJoh-00"; + "https://isni.org/isni/0000000066750112"; + "Own"; + "https://lccn.loc.gov/no2018063686"; + "https://snaccooperative.org/ark:/99166/w6155bj2"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 4945.The Observer: “The Early Life and Personal Apperance of Madmoiselle Wagner”, 26th April 1852, London.Erwin Angermayer: Große Frauen der Weltgeschichte. Tausend Biographien in Wort und Bild. Verlag Kaiser, Klagenfurt 1987, pp.242."; + "https://viaf.org/viaf/10642327"; + "https://www.wikidata.org/wiki/Q91730"; + "https://en.wikipedia.org/wiki/Johanna_Jachmann-Wagner"; + "1828-10-13"^^xsd:date; + "1828-10-13"^^xsd:date; + "1894-10-16"^^xsd:date; + "1894-10-16"^^xsd:date; + "Wagner"; + "Johanna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Johanna_Jachmann-Wagner_AEhrlichSängerinnen1895.jpg"; + "https://www.wikidata.org/wiki/Q91730#/media/File:Johanna_Jachmann-Wagner_AEhrlichS%C3%A4ngerinnen1895.jpg"; + ; + . + + a ; + "Cologne"; + "Europe"; + "Germany"; + "2886242"; + "GER-Col-00"; + 5.09364e1; + 6.95278e0; + "Q365"; + "https://en.wikipedia.org/wiki/Cologne" . + + a ; + 3085; + ""; + "Cinema Industry" . + + a ; + "https://d-nb.info/gnd/135337631"; + "KalBer-00"; + "https://isni.org/isni/000000011679179X"; + "Own"; + "https://lccn.loc.gov/nr98040841"; + "https://snaccooperative.org/ark:/99166/w6sb86wk"; + "Paula E. Hyman (Hrsg.): Jewish women. A comprehensive historical encyclopedia"; + "https://viaf.org/viaf/80117835"; + "https://www.wikidata.org/wiki/Q4895495"; + "https://en.wikipedia.org/wiki/Bertha_Kalich"; + "1874-05-17"^^xsd:date; + "1874-05-17"^^xsd:date; + "Burial: Mount Hebron Cemetery, Flushing NY"; + "1939-04-18"^^xsd:date; + "1939-04-18"^^xsd:date; + "Kalich"; + "Bertha"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Bertha_Kalich_1.png"; + "https://www.wikidata.org/wiki/Q4895495#/media/File:Bertha_Kalich_1.png"; + "Singer, Performer, Actress"; + ; + ; + "Jewish" . + + a ; + "other sources: 25 March 1835 in Langenargen"; + "https://data.cerl.org/thesaurus/cnp01289689"; + "https://d-nb.info/gnd/117208302"; + "NacFra-00"; + "Own"; + "https://snaccooperative.org/ark:/99166/w6w99hsx"; + "Eisenberg, Ludwig: Großes Biographisches Lexikon der Deutschen Bühne. Verlagsbuchhandlung Paul List. Leipzig 1903"; + "https://viaf.org/viaf/170971097"; + "https://www.wikidata.org/wiki/Q1447423"; + "https://en.wikipedia.org/wiki/Franz_Nachbaur"; + "1830-03-25"^^xsd:date; + "1830-03-25"^^xsd:date; + "1902-03-21"^^xsd:date; + "1902-03-21"^^xsd:date; + "Nachbaur"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Die_Gartenlaube_(1873)_b_807.jpg"; + "https://www.wikidata.org/wiki/Q1447423#/media/File:Die_Gartenlaube_(1873)_b_807.jpg"; + "Opera Singer"; + ; + . + + a ; + "-"; + "SanJus-00"; + "https://isni.org/page/search-database/"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchArg=Justo+S.+L%C3%B3pez+de+"; + "https://snaccooperative.org/view/55311558#resources"; + """Marcela García Sebastiani. “La eficacia de las redes y los resultados de los vínculos: las elites de los emigrantes españoles en la Argentina (1862-1923)”. Revista Complutense de Historia de América, Madrid: Ediciones Complutense, 2005, pp. 147-176. + +Real Academia de la Historia. “Justo Sanjurjo López de Gomara”. Madrid, online: https://dbe.rah.es/biografias/12298/justo-sanjurjo-lopez-de-gomara. + +Genealogía Familiar. “Justo Sanjurjo López de Gomara”. Buenos Aires, online: https://www.genealogiafamiliar.net/getperson.php?personID=I684054&tree=BVCZ. + +Tomás Gismera Velasco. “Justo S. López de Gomara: Brihuega en el corazón”. Guadalajara: Henares al Día, 2017, onlinehttps://henaresaldia.com/justo-s-lopez-gomara-brihuega-corazon/"""; + "https://viaf.org/viaf/search?query=local.names%20all%20%22Justo%20S.%2"; + "https://www.wikidata.org/wiki/Q55838516"; + "https://es.wikipedia.org/wiki/Justo_S._L%C3%B3pez_de_Gomara"; + "1859-05-06"^^xsd:date; + "1859-05-06"^^xsd:date; + "He was employed as a Journalist in several newspapers, and simultaneously he wrote many plays, short stories, and poems. He embodied the role of an intellectual, who combined different artistic and moral talents. Justo S. López de Gomara wrote 28 theatre plays; he was one of the precursors of the Argentinian National Theater and the sainete genre (Sebastiani: 2005, P.168), Buried in Recoleta Cemetery, Buenos Aires"; + "1923-08-12"^^xsd:date; + "1923-08-12"^^xsd:date; + "López de Gomara"; + "Justo Sanjurjo "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/justogomara.jpg"; + "https://historia-hispanica.rah.es/biografias/41607-justo-sanjurjo-lopez-de-gomara"; + "Playwright, Writer, Journalist"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp02080470"; + "https://d-nb.info/gnd/1037100972"; + "WilAur-00"; + "Own"; + "Andrea Harrandt: Jäger (-Wilczek), Familie, in: Oesterreichisches Musiklexikon. Online-Ausgabe, Wien 2002 ff., OEML: http://www.musiklexikon.ac.at/ml/musik_J/Jaeger_Familie_2.xmlKarl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, pp. 468- 469."; + "https://viaf.org/viaf/304930607"; + "https://www.wikidata.org/wiki/Q18018523"; + "https://de.wikipedia.org/wiki/Aurelie_Wilczek"; + "1845-01-20"^^xsd:date; + "1845-01-20"^^xsd:date; + """born Strusin[e]/Galizien (Strussiw/UA) +"""; + "1927-08-06"^^xsd:date; + "1927-08-06"^^xsd:date; + "Wilczek"; + "Aurelie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "-"; + "Singer, Singing Teacher"; + ; + . + + a ; + "in other sources: 02.05.1851"; + "ZeiMos-3363"; + "https://isni.org/isni/0000000066974781"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/nr99037144"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zeifert-moshe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.772."""; + "http://viaf.org/viaf/29456450"; + "https://www.wikidata.org/wiki/Q101568902"; + "1851-05-09"^^xsd:date; + "1851-05-09"^^xsd:date; + "1922-02-07"^^xsd:date; + "1922-02-07"^^xsd:date; + "Zeifert"; + "Moshe"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zeifert-moshe.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zeifert-moshe.htm"; + ; + ; + "Jewish" . + + a ; + "Liverpool"; + "Europe"; + "England (UK)"; + "2644210"; + "UK-Liv-00"; + 5.34075e1; + -2.99194e0; + "Q24826"; + "https://en.wikipedia.org/wiki/Liverpool" . + + a ; + 4784; + ""; + "Compañía de Frank Brown" . + + a ; + "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&am"; + "EbeCar-00"; + "https://isni.org/page/search-database/"; + "https://search.catalog.loc.gov/search?option=query&pageNumber=1&am"; + "https://snaccooperative.org/ark:/99166/w65x2vjz"; + """Universität Hamburg, Lexikon verfolgter Musiker und Musikerinnen der NS-Zeit (LexM): https://www.lexm.uni-hamburg.de/object/lexm_lexmperson_00002560 +Wikipedia, Carl Ebert: https://tr.wikipedia.org/wiki/Carl_Ebert +Cevad Memduh Altar: https://www.cevadmemduhaltar.itu.edu.tr/carl-ebertin-turk-tiyatro-ve-operasina-katkisi.html +Dogramaci, Burcu. „Faust“ für Ankara – Carl Ebert im türkischen Exil. In Musiktheater im Exil der NS-Zeit, edited by Peter Petersen and Claudia Maurer Zenck, 35–64. Hamburg: von Bockel Verlag, 2007."""; + "https://viaf.org/en/viaf/806518"; + "https://www.wikidata.org/wiki/Q75179"; + "https://en.wikipedia.org/wiki/Carl_Ebert"; + "1887-02-20"^^xsd:date; + "1980-05-14"^^xsd:date; + "Ebert"; + "Carl"; + "1887-02-20"; + "1980-05-14"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/ebert.png"; + "https://www.glyndebourne.com/about-us/art-at-glyndebourne/ilse-bing-portraits/"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01079519"; + "https://d-nb.info/gnd/116533846"; + "KreHei-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/45056733"; + "https://www.wikidata.org/wiki/Q5700212"; + "https://en.wikipedia.org/wiki/Heinrich_Kreuzer"; + "1819-02-16"^^xsd:date; + "1819-02-16"^^xsd:date; + "1900-10-26"^^xsd:date; + "1900-10-26"^^xsd:date; + "Kreuzer"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载 (2).png"; + "https://www.theatermuseum.at/online-sammlung/detail/613403/"; + "Opera singer, theatre director"; + ; + ; + "Jewish, Christian" . + + a ; + "https://d-nb.info/gnd/133042715"; + "KreMar-00"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://viaf.org/viaf/13488826"; + "https://www.wikidata.org/wiki/Q44583772"; + "https://de.wikipedia.org/wiki/Marie_Kreuzer"; + "1839-03-11"^^xsd:date; + "1839-03-11"^^xsd:date; + "1904-01-07"^^xsd:date; + "1904-01-07"^^xsd:date; + "Kreuzer"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera singer ,Soprano"; + ; + . + + a ; + "https://d-nb.info/gnd/117303704"; + "SchErn-00"; + "https://isni.org/isni/0000000117358242"; + "Own"; + "https://lccn.loc.gov/n86075640"; + "https://snaccooperative.org/ark:/99166/w62b8zrc"; + "Passenger Search of The Statue of Liberty - Ellis Island Foundation: Ernestine Schumann-Heink, login required, https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMTk4Mzk1ODAxOSI7/czo5OiJwYXNzZW5nZXIiOw==, and https://heritage.statueofliberty.org/passenger-details/czoxMjoiMTA1MDk2MDIwMTc3Ijs=/czo5OiJwYXNzZW5nZXIiOw==."; + "https://viaf.org/viaf/225411"; + "https://www.wikidata.org/wiki/Q79035"; + "https://en.wikipedia.org/wiki/Ernestine_Schumann-Heink"; + "1861-06-15"^^xsd:date; + "1861-06-15"^^xsd:date; + "born Libeň, Bohemia, Austrian Empire, died in Hollywood, California; Burial: Greenwood Memorial Park in San Diego"; + "1936-11-17"^^xsd:date; + "1936-11-17"^^xsd:date; + "Schumann-Heink"; + "Ernestine"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Ernestine_Schumann-Heink_1916.jpg"; + "https://de.wikipedia.org/wiki/Ernestine_Schumann-Heink#/media/Datei:Ernestine_Schumann-Heink_1916.jpg"; + "Singer, Actress"; + ; + ; + "Jewish, Christian" . + + a ; + "https://d-nb.info/gnd/118512994"; + "BoiCur-00"; + "https://isni.org/isni/0000000021461894"; + "Own"; + "https://lccn.loc.gov/n80137992"; + "Sabine Zolchow, Johanna Muschelknautz (eds.): Ich mache alles mit den Beinen … Der Schauspieler Curt Bois. Vorwerk 8, Berlin 2001"; + "https://viaf.org/viaf/51915851"; + "https://www.wikidata.org/wiki/Q66479"; + "https://en.wikipedia.org/wiki/Curt_Bois"; + "1901-04-05"^^xsd:date; + "1901-04-05"^^xsd:date; + "1991-12-25"^^xsd:date; + "1991-12-25"^^xsd:date; + "Bois"; + "Curt"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Curt_Bois_im_Schiller-Theater_-_cropped.jpg"; + "https://www.wikidata.org/wiki/Q66479#/media/File:Curt_Bois_im_Schiller-Theater_-_cropped.jpg"; + "Actor,Child Actor"; + ; + ; + "Jewish" . + + a ; + "In other sources: 1873   Place: Broža"; + "-"; + "https://d-nb.info/gnd/119260727"; + "ElkMen-1567"; + "https://isni.org/isni/0000000047237663"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/nr00033902"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/elkin-mendl.htm + +https://congressforjewishculture.org/people/2322/Elkin-Mendl-April-9-1874-April-22-1962 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1572."""; + "http://viaf.org/viaf/64813423"; + "https://www.wikidata.org/wiki/Q15714450"; + "https://ru.wikipedia.org/wiki/%D0%AD%D0%BB%D1%8C%D0%BA%D0%B8%D0%BD,_%D0%9C%D0%B5%D0%BD%D0%B4%D0%BB"; + "1874-04-09"^^xsd:date; + "1874-04-09"^^xsd:date; + "1962-04-22"^^xsd:date; + "1962-04-22"^^xsd:date; + "Elkin"; + "Mendl"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Di_Chaliastre_Mendel_Elkin_Perec_Hirszbajn_Uri_Cwi_Grinberg_Perec_Markisz_Melech_Rawicz_Izrael_Jehoszua_Singer_1922.jpg"; + "https://commons.wikimedia.org/wiki/File:Di_Chaliastre_Mendel_Elkin_Perec_Hirszbajn_Uri_Cwi_Grinberg_Perec_Markisz_Melech_Rawicz_Izrael_Jehoszua_Singer_1922.jpg   "; + ; + "Jewish" . + + a ; + "FaiBoo-00"; + "Own"; + "http://id.loc.gov/authorities/names/no2009142831"; + """ +Frederick William: Autograph collection of Frederick W., Boston: C.F. Libbie 1901, p. 47, https://archive.org/details/autographcollect00freniala/page/46/mode/2up?q=Boothroyd+Fairclough. +T. Allston Brown: A history of the New York stage from the first performance in 1732 to 1901, New York: Dodd, Mead and Co. 1903, https://archive.org/details/ahistorynewyork05browgoog/page/404/mode/2up?q=Boothroyd+Fairclough. +North China Herald. 31st August 1878, p.216: https://archive.org/details/north-china-herald-1878.08.31/page/216/mode/2up?q=Boothroyd+Fairclough. +Bai Sun: “The First Wave of Shakespearean Productions Given by Touring Troupes in Shanghai: A Historical Survey Based on Materials Preserved in The North-China Herald and The North-China Daily News,” in Journal of Humanities Across The Straits, March 2021, pp. 103-114. +National Library of New Zealand, Page 8 Advertisements Column 8, https://paperspast.natlib.govt.nz/newspapers/NZH18901119.2.53.8."""; + "http://viaf.org/viaf/100770545"; + "https://www.wikidata.org/wiki/Q107211010"; + "https://en.wikipedia.org/wiki/Boothroyd_Fairclough"; + "1825-01-01"^^xsd:date; + "1825-01-01"^^xsd:date; + "1911-09-18"^^xsd:date; + "1911-09-18"^^xsd:date; + "Fairclough"; + "Boothroyd"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/116942037"; + "MotFel-00"; + "https://isni.org/isni/0000000110633504"; + "Own"; + "https://lccn.loc.gov/no89002089"; + "https://snaccooperative.org/ark:/99166/w6862rvf"; + "Deutsche Biographie"; + "https://viaf.org/viaf/54334992"; + "https://www.wikidata.org/wiki/Q694070"; + "https://en.wikipedia.org/wiki/Felix_Mottl"; + "1856-08-24"^^xsd:date; + "1856-08-24"^^xsd:date; + """geboren Unter St. Veit bei Wien, buried at the Waldfriedhof in München, his tombstone was designed by Fritz Behn +(he had a heart attack during his 100th Tristan conducting and died as a result a few days later)"""; + "1911-07-02"^^xsd:date; + "1911-07-02"^^xsd:date; + "Mottl"; + "Felix"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Felix_Mottl.jpg"; + "https://www.wikidata.org/wiki/Q694070#/media/File:Felix_Mottl.jpg"; + "Conductor, Composer"; + ; + . + + a ; + "VakFan-3136"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-fanny.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.661."""; + "1878-02-14"^^xsd:date; + "1878-02-14"^^xsd:date; + "Vaksman"; + "Fanny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-fanny.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-fanny.htm "; + ; + "Jewish" . + + a ; + "ZigWil-3393"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zigenlaub-william.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.77."""; + "1883-09-02"^^xsd:date; + "1883-09-02"^^xsd:date; + "Zigenlaub"; + "William"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zigenloyb-william.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zigenlaub-william.htm"; + ; + "Jewish" . + + a ; + "Buffalo"; + "North America"; + "USA"; + "5110629"; + "USA-Buff-00"; + "New York"; + 4.28923e1; + -7.885939999999999e1; + "Q40435"; + "https://en.wikipedia.org/wiki/Buffalo,_New_York" . + + a ; + "Washington"; + "North America"; + "USA"; + "4140963"; + "USA-Wash-00"; + "District of Columbia"; + 3.89101e1; + -7.70147e1; + "Q61"; + "https://en.wikipedia.org/wiki/Washington,_D.C." . + + a ; + 575; + "Theatre"; + ""; + "Lyric Theatre"; + . + + a ; + "TeiAbr-3061"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/teitelbaum-abraham.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.875."""; + "1889-03-01"^^xsd:date; + "1889-03-01"^^xsd:date; + "Teitelbaum"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-teitelbaum-abraham.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/T/teitelbaum-abraham.htm"; + ; + "Jewish" . + + a ; + "ZibFri-3386"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-frida.htm + +\"Shund on Shellac or Gimpel’s Theatre, Lemberg: The Sounds of a Popular Yiddish Theatre Preserved on Gramophone Records 1904–1913 +April 17, 2024\" : https://forgottengalicia.com/shund-on-shellac-or-gimpels-theatre-lemberg/ + +Jewish Music Research Centre: https://jewish-music.huji.ac.il/index.php/en/content/frida-zibel-goldstein + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.767."""; + "1877-12-27"^^xsd:date; + "1877-12-27"^^xsd:date; + "1939-01-01"^^xsd:date; + "1939-12-31"^^xsd:date; + "Zibel"; + "Frida"; + "1939"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/frida zibel.jpg"; + "https://jewish-music.huji.ac.il/index.php/en/content/frida-zibel-goldstein"; + ; + "Jewish" . + + a ; + "São Paulo"; + "South America"; + "Brazil"; + "3448439"; + "BR-SaoPau-00"; + -2.35e1; + -4.66167e1; + "Q174"; + "https://en.wikipedia.org/wiki/S%C3%A3o_Paulo" . + + a ; + "Bayreuth"; + "Europe"; + "Germany"; + "2951825"; + "GER-Bayr-00"; + 4.99481e1; + 1.15783e1; + "Q3923"; + "https://en.wikipedia.org/wiki/Bayreuth" . + + a ; + "Bremen"; + "Europe"; + "Germany"; + "2944388"; + "GER-Brem-00"; + "Bremen"; + 5.30833e1; + 8.800000000000001e0; + "Q24879"; + "https://en.wikipedia.org/wiki/Bremen" . + + a ; + 469; + "Theatre"; + ""; + "Grand theatre"; + . + + a ; + "BieEmi-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Daniel Balmaceda, “La historia de Bieckert, cerveza y +mucho más”, Forbes Argentina, 3rd September 2019, [online], + + https://www.forbesargentina.com/editorial/la-historia-bieckert-cerveza-mucho-mas-n1325 + +Wikipedia: +Emilio Bieckert, online, https://es.wikipedia.org/wiki/Emilio_Bieckert + +Family Search: Jean Émile Bieckert, online, https://ancestors.familysearch.org/de/G3W6-M59/jean-emile-bieckert-1837-1913 + +Juan Pablo Estévez, “La historia de Bieckert: la +primera fábrica de cerveza argentina que vendió hasta malta para embarazadas”, online, +https://www.clarin.com/gourmet/historia-bieckert-primera-fabrica-cerveza-argentina-vendio-malta-embarazadas_0_6MRExDXla.html + +Ecured: Teatro Odeón Buenos Aires, online, https://www.ecured.cu/Teatro_Ode%C3%B3n_(Buenos_Aires) + +Wikipedia: Teatro Odeón (Buenos Aires), online, https://es.wikipedia.org/wiki/Teatro_Ode%C3%B3n_(Buenos_Aires)"""; + "https://www.wikidata.org/wiki/Q539348"; + "https://es.wikipedia.org/wiki/Emilio_Bieckert"; + "1837-06-16"^^xsd:date; + "1837-06-16"^^xsd:date; + "1913-07-19"^^xsd:date; + "1913-07-19"^^xsd:date; + "Bieckert"; + "Emilio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emilio_Bieckert.jpg"; + "ArgentinaenlaMemoria"; + ; + . + + a ; + "https://d-nb.info/gnd/116726954"; + "BruOtt-00"; + "https://d-nb.info/gnd/116726954"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 616.Ludwig Eisenberg: Otto Brucks. in: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. List: Leipzig 1903, p. 131Wiener Staatsoper: Aufführungsarchiv,  https://archiv.wiener-staatsoper.at/search/person/9469"; + "https://d-nb.info/gnd/116726954"; + "https://www.wikidata.org/wiki/Q17590782"; + "https://de.wikipedia.org/wiki/Otto_Brucks"; + "1858-11-28"^^xsd:date; + "1858-11-28"^^xsd:date; + "1914-01-15"^^xsd:date; + "1914-01-15"^^xsd:date; + "Brucks"; + "Otto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK167143alt.jpg"; + "https://www.theatermuseum.at/fr/onlinesammlung/detail/404383/?offset=0&lv=list "; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00696923"; + "https://d-nb.info/gnd/130803839"; + "EicJos-00"; + "Own"; + "https://viaf.org/viaf/30652911"; + "https://www.wikidata.org/wiki/Q19959346"; + "https://de.wikipedia.org/wiki/Josef_Eichberger_senior"; + "1801-11-26"^^xsd:date; + "1801-11-26"^^xsd:date; + "1862-03-05"^^xsd:date; + "1862-03-05"^^xsd:date; + "Eichberger"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Opera Singer,Soprano, Bass, Tenor, Opera Director, Theatre Director, Singing Teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/118565591"; + "KorFri-00"; + "https://isni.org/isni/000000008116201X"; + "Own"; + "https://lccn.loc.gov/n81071068"; + "https://viaf.org/viaf/37126870"; + "https://www.wikidata.org/wiki/Q78919"; + "https://en.wikipedia.org/wiki/Fritz_Kortner"; + "1892-05-12"^^xsd:date; + "1892-05-12"^^xsd:date; + "Auf dem Waldfriedhof in München, Neuer Teil, im Grab Nr. 246-W-23 beigesetzt"; + "1970-07-22"^^xsd:date; + "1970-07-22"^^xsd:date; + "Kortner "; + "Fritz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fritz-Kortner-1959.jpg"; + "https://www.wikidata.org/wiki/Q78919#/media/File:Fritz-Kortner-1959.jpg"; + "Actor, Movie director, Theater director"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/118576291"; + "MahGus-00"; + "https://isni.org/isni/0000000121358915"; + "Own"; + "https://lccn.loc.gov/n80067106"; + "https://snaccooperative.org/ark:/99166/w65r5nvx"; + "Jens Malte Fischer: Gustav Mahler. Der fremde Vertraute. Paul-Zsolnay-Verlag, Wien 2003"; + "https://viaf.org/viaf/61732497"; + "https://www.wikidata.org/wiki/Q7304"; + "https://en.wikipedia.org/wiki/Gustav_Mahler"; + "1860-07-07"^^xsd:date; + "1860-07-07"^^xsd:date; + "1911-05-08"^^xsd:date; + "1911-05-08"^^xsd:date; + "Mahler"; + "Gustav"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Composer, Conductor, Opera Director"; + ; + ; + "Jewish, Christian" . + + a ; + "https://data.cerl.org/thesaurus/cnp01437550"; + "https://d-nb.info/gnd/116760338"; + "MarSal-00"; + "https://isni.org/isni/000000008349478X"; + "Own"; + "https://worldcat.org/identities/lccn-n93072493/"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2909.Barbara Boisits;. „Marchesi, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x0001d8a6The Observer: „Music“, 19th July 1863, London.The Observer: „Music“, 13th July 1863, London."; + "https://viaf.org/viaf/277753/"; + "https://www.wikidata.org/wiki/Q3946123"; + "https://it.wikipedia.org/wiki/Salvatore_Marchesi"; + "1822-01-15"^^xsd:date; + "1822-01-15"^^xsd:date; + "Born of Italian nobility; gave up officer's career in 1840 and began to study singing; fled to North America in 1848 as a participant in the revolution."; + "1908-02-20"^^xsd:date; + "1908-02-20"^^xsd:date; + "Marchesi"; + "Salvatore"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/SalvatoreMarchesi.jpg"; + "https://www.wikidata.org/wiki/Q3946123#/media/File:SalvatoreMarchesi.jpg"; + "Opera singer, singing teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/117306207"; + "StrAle-00"; + "https://isni.org/isni/0000000010447923"; + "Own"; + "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + "https://viaf.org/viaf/64780579/"; + "https://www.wikidata.org/wiki/Q19971478"; + "https://de.wikipedia.org/wiki/Alexander_Strakosch_%28Schauspieler%29"; + "1845-12-03"^^xsd:date; + "1845-12-03"^^xsd:date; + """Part of the family Strakosch, the so called “sugar barons”, who helped to shape Viennese cultural life. +From 1880 he undertook his great recitation tours, which took him all over the world (Austria-Hungary, Germany, Russia, England, Holland, Italy, Turkey, 1887 and 1888 America)."""; + "1909-09-16"^^xsd:date; + "1909-09-16"^^xsd:date; + "Strakosch"; + "Alexander"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander_Strakosch_1909_Scolik.png"; + "https://de.wikipedia.org/wiki/Alexander_Strakosch_(Schauspieler)#/media/Datei:Alexander_Strakosch_1909_Scolik.png"; + "Singer, Actor"; + ; + ; + "Jewish, Christian" . + + a ; + "Barcelona"; + "Europe"; + "Spain"; + "3128760"; + "ES-Barc-00"; + 4.13833e1; + 2.18333e0; + "Q1492"; + "https://en.wikipedia.org/wiki/Barcelona" . + + a ; + "https://d-nb.info/gnd/116002506"; + "AbeIre-00"; + "https://isni.org/isni/0000000035722792"; + "Own"; + "https://worldcat.org/identities/lccn-n97053925/"; + "https://snaccooperative.org/ark:/99166/w6bt189x#resources"; + """Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 3-4. +Wiener Staatsoper: Aufführungsarchiv, https://archiv.wiener-staatsoper.at/search/person/7243 +Fremdenblatt - Organ für die böhmischen Kurorte, 8th July 1888, p. 2: https://anno.onb.ac.at/cgi-content/anno?aid=fbl&datum=18880708&query=%22Abendroth+Karlsbad%22~25&ref=anno-search&seite=2 + +"""; + "https://viaf.org/viaf/39572476"; + "https://www.wikidata.org/wiki/Q79002"; + "https://en.wikipedia.org/wiki/Irene_Abendroth"; + "1872-07-14"^^xsd:date; + "1872-07-14"^^xsd:date; + "1932-09-01"^^xsd:date; + "1932-09-01"^^xsd:date; + "Abendroth"; + "Irene"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK267702alt.jpg"; + "https://www.theatermuseum.at/online-sammlung/detail/546808/"; + "Opera singer"; + ; + ; + "Christian" . + + a ; + "https://d-nb.info/gnd/1249761018"; + "BroPhi-00"; + "Own"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 614.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, p. 1169. The Manchester Guardian: “Prince's Theatre: The Carl Rosa Company in \"Carmen\"”, 23th septembre 1898, Manchester.The Manchester Guardian: „Classified Ad 29 -- No Title“, 3rd Octobre 1896, Manchester.The Observer: “The Musical World”, 2nd April 1899, London.The Observer: “The Musical World: Carl Rosa Opera Queen's Hall Promenade Concerts”, 24th January, 1897, London."; + "https://viaf.org/viaf/6948164298344708630006/"; + "https://www.wikidata.org/wiki/Q18026910"; + "https://de.wikipedia.org/wiki/Philipp_Brozel"; + "1927-12-23"^^xsd:date; + "1927-12-23"^^xsd:date; + "Brozel"; + "Philipp"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1257.jpg"; + "http://operascotland.org/person/3067/Philip+Brozel"; + "Opera singer,Tenor, singing teacher"; + ; + . + + a ; + "DelFra-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Colecciones Teatrales: El desaparecido Teatro Buenos Aires, online, https://coleccionesteatrales.blogspot.com/2016/01/el-teatro-buenos-aires-muino-y-alippi.html + +Fundación Internacional Carlos Gardel: 1923 El viejo mundo, online, https://fundacioncarlosgardel.org/biografia/1923-el-viejo-mundo + +Dossier Carlos Gardel: Gardel en su debut en España, online, https://dossiercarlosgardel.blogspot.com/2010/11/gardel-en-su-debut-en-espana.html"""; + "1941-11-01"^^xsd:date; + "1941-11-01"^^xsd:date; + "Delgado"; + "Francisco"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + . + + a ; + "other sources: 1865, 1872"; + "https://d-nb.info/gnd/122427882"; + "HelAnn-00"; + "https://isni.org/isni/0000000020570853"; + "Own"; + "https://lccn.loc.gov/n79081752"; + "https://snaccooperative.org/ark:/99166/w6r90qr9"; + "https://viaf.org/viaf/305409554/"; + "https://www.wikidata.org/wiki/Q454030"; + "https://en.wikipedia.org/wiki/Anna_Held"; + "1873-03-18"^^xsd:date; + "1873-03-18"^^xsd:date; + "Birth date unclear: March 8, 18 or 19, 1872, (sources range from 1865-1873)"; + "1918-08-12"^^xsd:date; + "1918-08-12"^^xsd:date; + "Held"; + "Anna"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Anna_Held_JWS19265.jpg"; + "https://www.wikidata.org/wiki/Q454030#/media/File:Anna_Held_JWS19265.jpg"; + "Singer, Actress, Performer, Stage Actor, Film Actor"; + ; + ; + "Jewish, Christian" . + + a ; + 2270; + "Theatre"; + ""; + "Bijou Opera House" . + + a ; + 331; + "Theatre"; + ""; + "Windsor Theatre"; + . + + a ; + "BaoMig-00"; + "Own"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + "https://viaf.org/en/viaf/2385267"; + "https://www.wikidata.org/wiki/Q6014454"; + "1894-10-27"^^xsd:date; + "1961-09-17"^^xsd:date; + "Gómez Bao"; + "Miguel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Miguel_Gómez_Bao.jpg"; + "https://www.wikidata.org/wiki/Q6014454"; + ; + . + + a ; + "https://d-nb.info/gnd/1156299659"; + "BraHer-00"; + "Own"; + "https://lccn.loc.gov/n84130388"; + """ + + + + + + + +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 555-556.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.,List: Leipzig 1903, pp. 117-118. + +"""; + "https://viaf.org/viaf/21085302"; + "https://www.wikidata.org/wiki/Q5584425"; + "https://de.wikipedia.org/wiki/Hermann_Brag"; + "1860-04-01"^^xsd:date; + "1860-04-01"^^xsd:date; + "He was most famous for the embodiment of the buffo roles"; + "1936-01-03"^^xsd:date; + "1936-01-03"^^xsd:date; + "Brag"; + "Hermann"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Herman_Brag.jpg"; + "https://commons.wikimedia.org/wiki/File:Herman_Brag.jpg"; + "Opera Singer"; + ; + . + + a ; + "VilRos-00"; + "Own"; + "Fernandes, Carolina; Bulgarelli, Lais; Furtado, Mariana; Palermo, Suzana. Conheça Rose Villiot francesa eleita a primeira atriz de opereta do Rio de Janeiro. Ed.1, Unicamp, 2015 :https://viewer.joomag.com/rose-villiot-rose-villiot/0235382001448545438?page=3 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 (Newspapers of Hemeroteca Nacional Website):Jornal do Commercio (RJ). 24th December 1871. Ed. 00355, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22rose%20villiot%22&hf=memoria.bn.br&pagfis=3883 "; + "https://www.wikidata.org/wiki/Q56727166"; + "1850-01-01"^^xsd:date; + "1850-12-31"^^xsd:date; + "1908-08-07"^^xsd:date; + "1908-08-07"^^xsd:date; + "Villiot"; + "Rose"; + "1850"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/8049R_-_Rose_Villiot(Actris)_-_01,_Acervo_do_Museu_Paulista_da_USP.jpg"; + "https://www.wikidata.org/wiki/Q56727166"; + "Actress, Singer"; + ; + . + + a ; + "WeiSim-3237"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weintraub-simcha.htm + +Center for Jewish History: https://archives.cjh.org/agents/people/120505 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.687."""; + "1890-02-04"^^xsd:date; + "1890-02-04"^^xsd:date; + "Weintraub"; + "Simcha"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Simcha Weintraub.png"; + "https://archives.cjh.org/repositories/7/archival_objects/1270734"; + ; + "Jewish" . + + a ; + "Brno"; + "Europe"; + "Czech Republic"; + "3078610"; + "CZ-Brno-00"; + 4.91925e1; + 1.66083e1; + "Q14960"; + "https://en.wikipedia.org/wiki/Brno" . + + a ; + "Budapest"; + "Europe"; + "Hungary"; + "3054643"; + "HU-Buda-00"; + 4.74925e1; + 1.90514e1; + "Q1781"; + "https://en.wikipedia.org/wiki/Budapest" . + + a ; + "Brooklyn"; + "North America"; + "USA"; + "5110302"; + "USA-Brook-00"; + "New York"; + 4.06444e1; + -7.39483e1; + "Q18419"; + "https://en.wikipedia.org/wiki/Brooklyn" . + + a ; + 1001; + "Theatre"; + ""; + "K.k. priv. Theater an der Wien" . + + a ; + "CanAug-00"; + "Own"; + "STARK, Andrea Carvalho. Augusta Candiani no Rio Grande do Sul: a trajetória artística de uma cantora lírica e atriz durante a guerra do Paraguai. In.: Revista do Instituto Histórico e Geográfico do Rio Grande do Sul. n. 161, 2021: https://seer.ufrgs.br/revistaihgrgs/article/view/111527 (Newspapers of Hemeroteca Nacional Website):Jornal do Commercio. 10th February 1844. Ed. 00039, Rio de Janeiro, p.2: http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_03&pesq=augusta%20candiani&hf=memoria.bn.br&pagfis=5928 Jornal do Commercio. 18th October 1850. Ed. 00286, Rio de Janeiro, p.4: http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_04&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=1306 Jornal do Commercio. 12th August 1875. Ed. 00223, Rio de Janeiro, p.8:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22augusta%20candiani%22&hf=memoria.bn.br&pagfis=11657 O Album Semanal : Chronologico, Litterario, Critico e de Modas. 8th Februar 1852. Ed. 00025, N. 14, Rio de Janeiro, p.1:http://memoria.bn.br/DocReader/DocReader.aspx?bib=701092&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=111 O Album Semanal : Chronologico, Litterario, Critico e de Modas. 2nd May 1852. Ed. 00025, N. 25, Rio de Janeiro, p.1: http://memoria.bn.br/DocReader/DocReader.aspx?bib=701092&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=200 Gazeta de Noticias. 27th Februar 1890. Ed. 00058, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_03&pesq=%22augusta%20candiani%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=270 Gazeta de Noticias. 26th March 1890. Ed. 00085, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_03&pesq=%22augusta%20candiani%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=423"; + "https://www.wikidata.org/wiki/Q9637428"; + "https://pt.wikipedia.org/wiki/Augusta_Candiani"; + "1820-04-03"^^xsd:date; + "1820-04-03"^^xsd:date; + "1890-02-28"^^xsd:date; + "1890-02-28"^^xsd:date; + "Candiani"; + "Augusta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Retrato-de-Augusta-Candiani.jpeg"; + "https://bndigital.bn.gov.br/exposicoes/machado-de-assis-100-anos-de-uma-cartografia-inacabada/a-vida-e-uma-opera-e-uma-grande-opera/"; + "Actress, Lyric Singer, Singer teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/119243830"; + "HouHar-00"; + "https://isni.org/isni/0000000108862279"; + "Own"; + "http://id.loc.gov/authorities/names/n79096862"; + "Pseudonym/Stage name"; + "http://n2t.net/ark:/99166/w60c4t2z"; + """Passenger Search of The Statue of Liberty - Ellis Island Foundation, Weiss, Erich, login required, https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMjIzNTc3NDM3NyI7/czo5OiJwYXNzZW5nZXIiOw==. +Passenger Search of The Statue of Liberty - Ellis Island Foundation, Houdini, Harry, login required, https://heritage.statueofliberty.org/passenger-result. +Britannica.com, Harry Houdini | Biography & Facts | Britannica, https://www.britannica.com/biography/Harry-Houdini. """; + "http://viaf.org/viaf/34465218"; + "https://www.wikidata.org/wiki/Q131545#sitelinks-wikipedia"; + "https://en.wikipedia.org/wiki/Harry_Houdini"; + "1874-03-24"^^xsd:date; + "1874-03-24"^^xsd:date; + "1926-10-31"^^xsd:date; + "1926-10-31"^^xsd:date; + "Houdini"; + "Harry"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harry_Houdini.png"; + "https://en.wikipedia.org/wiki/Harry_Houdini#/media/File:Harry_Houdini.png"; + "Magician,Circus Performer"; + ; + ; + "jewish" . + + a ; + "https://d-nb.info/gnd/1250088534"; + "KreEli-00"; + "Own"; + "Ludwig Eisenberg: Elise Stephanie Kreuzer. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + "https://www.wikidata.org/wiki/Q60997963"; + "https://de.wikipedia.org/wiki/Elise_Stephanie_Kreuzer"; + "1845-09-08"^^xsd:date; + "1845-09-08"^^xsd:date; + "died in Huntlosen bei Oldenburg"; + "1936-09-03"^^xsd:date; + "1936-09-03"^^xsd:date; + "Kreuzer"; + "Elise Stephanie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/g.jpeg"; + "https://geneee.org/elise/kreuzer?lang=de"; + "Opera Singer ,Soprano"; + ; + "Jewish, Christian" . + + a ; + "MeyMor-00"; + "Own"; + "Other"; + "https://www.wikidata.org/wiki/Q6913810"; + "https://en.wikipedia.org/wiki/Morris_Meyerfeld_Jr."; + "1855-11-17"^^xsd:date; + "1855-11-17"^^xsd:date; + "1935-06-20"^^xsd:date; + "1935-06-20"^^xsd:date; + "Meyerfeld"; + "Morris"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Morris_Meyerfeld.jpg"; + "https://en.wikipedia.org/wiki/File:Morris_Meyerfeld.jpg"; + "Founder, Manager"; + ; + . + + a ; + "https://d-nb.info/gnd/1250127602"; + "RusAnn-00"; + "https://isni.org/isni/0000000080781302"; + "Own"; + "https://lccn.loc.gov/no2004031548"; + "https://snaccooperative.org/ark:/99166/w65b0t16"; + """Digital collections: \"Images related to Annie Russell\", https://digitalcollections.nypl.org/search/index?keywords=Annie+Russell#. +Ancestry. com, “Einwanderung und Reisen: Alle Suchergebnisse für Annie Russel“, https://www.ancestry.de/search/categories/40/?name=Annie_Russel&birth=1864_england-grossbritannien_3251&birth_x=0-0-0&gender=f. """; + "https://viaf.org/viaf/41547682"; + "https://www.wikidata.org/wiki/Q4769421"; + "https://en.wikipedia.org/wiki/Annie_Russell"; + "1864-01-12"^^xsd:date; + "1864-01-12"^^xsd:date; + "buried in St. Stephen's Cemetery in Millburn, New Jersey"; + "1936-01-16"^^xsd:date; + "1936-01-16"^^xsd:date; + "Russell"; + "Annie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/800px-Annie_Russell_001.jpg"; + "https://en.wikipedia.org/wiki/Annie_Russell#/media/File:Annie_Russell_001.jpg"; + "Actress,Theatre Teacher"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01385712"; + "https://d-nb.info/gnd/117197408"; + "TagMar-00"; + "https://isni.org/isni/0000000081016477"; + "Own"; + "https://lccn.loc.gov/n50047856"; + "https://snaccooperative.org/ark:/99166/w6dr2xv8"; + "Biographisches Lexikon des Kaiserthums Oesterreich."; + "https://viaf.org/viaf/22408351"; + "https://www.wikidata.org/wiki/Q203990"; + "https://en.wikipedia.org/wiki/Marie_Taglioni"; + "1804-04-23"^^xsd:date; + "1804-04-23"^^xsd:date; + "1884-04-22"^^xsd:date; + "1884-04-22"^^xsd:date; + "Taglioni"; + "Marie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Maria_Taglioni_Kriehuber.jpg"; + "https://www.wikidata.org/wiki/Q203990#/media/File:Maria_Taglioni_Kriehuber.jpg"; + "Dancer"; + . + + a ; + "https://data.cerl.org/thesaurus/cnp00651802"; + "https://d-nb.info/gnd/117350370"; + "ThoFra-00"; + "https://isni.org/isni/0000000448864684"; + "Own"; + "Biographisches Lexikon des Kaiserthums Oesterreich"; + "https://viaf.org/viaf/25377562"; + "https://www.wikidata.org/wiki/Q18411760"; + "https://en.wikipedia.org/wiki/Franz_Thom%C3%A9"; + "1807-11-21"^^xsd:date; + "1807-11-21"^^xsd:date; + "1872-05-22"^^xsd:date; + "1872-05-22"^^xsd:date; + "Thomé"; + "Franz"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Thome_Franz.gif"; + "https://de.wikipedia.org/wiki/Franz_Thom%C3%A9"; + "Theatre Director, Actor"; + ; + . + + a ; + "Bucharest"; + "Europe"; + "Romania"; + "683506"; + "ROU-Buch-00"; + 4.44325e1; + 2.61039e1; + "Q19660"; + "https://en.wikipedia.org/wiki/Bucharest" . + + a ; + 747; + "Theatre"; + ""; + "Teatro Politeama Argentino " . + + a ; + "AdlSam-740"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.3."""; + "1868-01-01"^^xsd:date; + "1868-12-31"^^xsd:date; + "Buried in Vienna"; + "1925-11-26"^^xsd:date; + "Adler"; + "Sam"; + "1868"; + "26.11.1925"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Sam Adler.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/lex-adler-sam.jpg"; + ; + ; + "Jewish" . + + a ; + "CamJua-00"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchArg=Juan+Comorera&searc"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Enric Juliana, “Opinión” in: La Vanguardia. Catalonia, 21 January 2021 [online edition], https://conversacionsobrehistoria.info/2021/01/21/la-maldicion-de-joan-comorera/Real Academia de la Historia: Juan Comorera Soler, online, https://dbe.rah.es/biografias/4760/joan-comorera-solerWikipedia: Joan Comorera, online, https://en.wikipedia.org/wiki/Joan_ComoreraDossier Carlos Gardel: Gardel en su debut en España, online, https://dossiercarlosgardel.blogspot.com/2010/11/gardel-en-su-debut-en-espana.html + +"""; + "https://viaf.org/viaf/54987269/#Comorera,_Joan,_1895 "; + "https://wikidata.org/wiki/Q2500336"; + "1894-09-05"^^xsd:date; + "1960-05-07"^^xsd:date; + "Camorera"; + "Juan"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Juan Comorera.jpg"; + "https://en.wikipedia.org/wiki/Joan_Comorera "; + ; + ; + "Atheist" . + + a ; + "GuaAlf-00"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchCode=LCCN&searchArg=200"; + """Laura Mogliani (comp.): Entre la tradición y lamodernidad. Historia del Instituto Nacional de Estudios de Teatro (1936-2022),Buenos Aires: Ministry of Culture of Argentina 2023. + +Federico Peltzer: Homenaje a Alfredo de la Guardia ensu centenario. Online,https://www.letras.edu.ar/wwwisis/index/arti/Boletin1999-253-254_433-440.pdf pp. 433-440. + +Consello da Cultura Galega, Fondos Documentais, Online,https://consellodacultura.gal/fondos_documentais/epistolarios/persoas.php?p=1844 + +Instituto Nacional de Estudios de Teatro (INET): Revistade Estudios de Teatro, Online, https://inet.cultura.gob.ar/noticia/revista-de-estudios-de-teatro/Tito + +Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."""; + "https://viaf.org/processed/ARBABN%7C000052681"; + "https://www.wikidata.org/wiki/Q17037808"; + "https://en.wikipedia.org/wiki/Alfredo_de_la_Guardia"; + "1899-12-08"^^xsd:date; + "1899-12-08"^^xsd:date; + "1974-02-06"^^xsd:date; + "1974-02-06"^^xsd:date; + "de la Guardia"; + "Alfredo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alfredo_de_la_Guardia.jpg"; + """Laura Mogliani (comp.): Entre la tradición y la modernidad. Historia del Instituto Nacional de +Estudios de Teatro (1936-2022), Buenos Aires: Ministry of Culture of Argentina +2023.

"""; + ; + . + + a ; + "https://d-nb.info/gnd/118710281"; + "HemFri-00"; + "https://isni.org/isni/0000000117478113"; + "Own"; + "https://lccn.loc.gov/n82139118"; + "https://snaccooperative.org/ark:/99166/w62v2krq"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2029-2030.Boston Daily Globe: ”Her First Boston Appearance.: Frieda Hempel, Coloratura Soprano, Here to Sing Rosina in Tonight's Opera.”, 20th January 1913, Boston.Chicago Daily Tribune: “Chicago to Share Galli-Curci with Metropolitan: Frieda Hempel Engaged for Next Season Here.”, 9th February 1921, Chicago.Chicago Daily Tribune: “American Now: Manager Puts German Born Opera Singer Under Protection of Stars and Stripes.”, 9th June 1918, Chicago.Chicago Daily Tribune:”Miss Hempel Is Star of \"Lucia\" Revival.”, 8th January 1914, Chicago.Chicago Daily Tribune: “News of Musical Events: Miss Frieda Hempel Has Triumph in \"Traviata.\"”, 6th January 1914, Chicago.The Los Angelos Times: She Looks Her Roles, Too.: Coloratura Star of Chicago Opera.”, 31st march 1921, Los Angelos.The New York Times: “Frieda Hempel Wed; is American Citizen: Metropolitan Opera Star, Born in Germany, Marries Wm. B. Kahn in St. James's Lutheran Church”., 9th June 1918, New York.The New York Times: “Frieda Hempel Robbed.: Gems Were Stolen on Train, Now Apartment Is Ransacked”,29th April 1918, New York. The New York Times: “Opera Stars Regret Break: \"Sorry, Because I Love America,\" Says Frieda Hempel;-All Mozart Day.”, 4th February 1917, New York.The New York Times: “Frieda Hempel Sings Eva.: Wins Great Success in \"Die Meistersinger\" -- Mme. Homer, Magdalene”., 28th march 1914, New York.The New York Times: “Les Huguenots' at Metropolitan: First Appearance in America of Miss Frieda Hempel, Coloratura Soprano. Handsome Scenic Outfit A Cast in Which Excellent Singers Were Not Heard to Their Best Advantage”., 28th Decembre 1912, New York.The New York Times: “Mme. Frieda Hempel ill.: Coloratura Soprano May Not Appear at the Metropolitan”,.30th October 1912, New York.The New York Times: “ Opera Novelities For Metropolitan: \" Boris Gudounow,\" a Russian Work, by Moussorgsky, and \"Cyrano de Bergerac.\" Then \"Madame Sans-Gene\" Season to Open with \"The Magic Flute,\" with Frieda Hempel, Coloratura Soprano -- Other New Singers.”, 7th August 1912, New York.The New York Times: “Frieda Hempel Coming: Engaged for Metropolitan at Salary Said to be $60,000 a Season.”, 24th December 1911, New York.The Washington Post: “Frieda Hempel is Bride.: Becomes American Citizen and Will Continue to Sing in Opera.”, 9th June 1918, Washington.The Washington Post: “Kreisler Barred from Youngstown: Engagement of Frieda Hempel Also Is Canceled.”, 11th novembre 1917, Washington.The Washington Post: “DIVA LE"; + "https://viaf.org/viaf/17437634"; + "https://www.wikidata.org/wiki/Q86727"; + "https://en.wikipedia.org/wiki/Frieda_Hempel"; + "1884-06-26"^^xsd:date; + "1884-06-26"^^xsd:date; + "She devoted herself entirely to concert singing and became famous in particular for her 'Jenny Lind concerts' (the first of which she gave in October 1920 to mark the centenary of the great singer's birth), in which she performed in the centers of American musical life in costume and with the repertoire of the unforgettable Swedish singer."; + "1955-10-07"^^xsd:date; + "1955-10-07"^^xsd:date; + "Hempel"; + "Frieda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frieda_Hempel.jpg"; + "https://www.wikidata.org/wiki/Q86727#/media/File:Frieda_Hempel.jpg"; + "Singer, Singing Teacher"; + ; + . + + a ; + "Iași"; + "Europe"; + "Romania"; + "675810"; + "ROU-Jassy-00"; + 4.71569e1; + 2.75903e1; + "Q46852"; + "https://en.wikipedia.org/wiki/Ia%C8%99i" . + + a ; + "New Orleans"; + "North America"; + "USA"; + "4335045"; + "USA-NewOrl-00"; + "Louisiana"; + 2.99547e1; + -9.0075e1; + "Q34404"; + "https://en.wikipedia.org/wiki/New_Orleans" . + + a ; + "St. Louis"; + "North America"; + "USA"; + "4407066"; + "USA-StLouis-00"; + "Missouri"; + 3.86272e1; + -9.01978e1; + "Q38022"; + "https://en.wikipedia.org/wiki/St._Louis" . + + a ; + "https://www.deutsche-biographie.de/132307545.html"; + "BarMar-00"; + "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000083855549%COKIE=U50"; + "Own"; + "https://www.loc.gov/item/2014700794/"; + "https://snaccooperative.org/view/9163171#biography"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Virginia Sánchez Rodríguez. “María Barrientos, la diva olvidada” in The Conversation: May 6th 2019. [Online-edition]: https://theconversation.com/maria-barrientos-la-diva-olvidada-115272 + +Real Academia de la Historia. María Barrientos. Online: https://dbe.rah.es/biografias/8054/maria-barrientos + +Biografías y vidas. María Barrientos. Online: https://www.biografiasyvidas.com/biografia/b/barrientos_maria.htm + +Ecured. María Barrientos. Online: https://www.ecured.cu/Mar%C3%ADa_Barrientos + +Wikipedia. María Barrientos. Online, https://es.wikipedia.org/wiki/Mar%C3%ADa_Barrientos"""; + "https://viaf.org/viaf/57770137/#Barrientos,_Mar%C3%ADa,_1884-1946"; + "https://www.wikidata.org/wiki/Q4888169"; + "https://en.wikipedia.org/wiki/Maria_Barrientos"; + "1884-05-10"^^xsd:date; + "1884-05-10"^^xsd:date; + "1946-08-08"^^xsd:date; + "1946-08-08"^^xsd:date; + "Barrientos"; + "María"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barrientos, María.jfif"; + "https://es.wikipedia.org/wiki/Mar%C3%ADa_Barrientos"; + ; + . + + a ; + "https://d-nb.info/gnd/116655577"; + "ConHei-00"; + "https://isni.org/isni/0000000048794912"; + "Own"; + "https://lccn.loc.gov/nr2003031428"; + "https://snaccooperative.org/ark:/99166/w6bk1q6j"; + """Karl Richter: +Conried, Heinrich. In: Neue Deutsche Biographie (NDB). Band 3, Duncker & +Humblot, Berlin 1957, ISBN 3-428-00184-2, S. 341 f. (https://daten.digitale-sammlungen.de/0001/bsb00016319/images/index.html?seite=357). + +Cohn Heinrich. +In: Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen +Akademie der Wissenschaften, Wien 1957, S. 150. https://www.biographien.ac.at/oebl_1/150.pdf + +Grange William: +The Astonishing Career of Heinrich Conried. In: Paul S. Ulrich, Gunilla +Dahlberg, Horst Fassel (Hrsg.), Im Spiegel der Theatergeschichte : +deutschsprachiges Theater im Wechsel von Raum und Zeit, Thalia Germanica Band +15. Berlin / Münster: Lit 2015. S. 225–"""; + "https://viaf.org/viaf/32753970/"; + "https://www.wikidata.org/wiki/Q85491"; + "https://en.wikipedia.org/wiki/Heinrich_Conried"; + "1855-09-03"^^xsd:date; + "1855-09-03"^^xsd:date; + "1909-04-27"^^xsd:date; + "1909-04-27"^^xsd:date; + "Conried"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Heinrich_Conried.jpg"; + "Unknown photographer, Newspaper \"Der Tag“, 29 May 1902, p. 7."; + ; + ; + "Jewish" . + + a ; + "DarFau-00"; + "Own"; + """Tito Livio +Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. +Ediciones del Carro de Tespis 1961. + +Óperas Colón: +Da Rosa, Faustino. Online, https://http://www.operas-colon.com.ar/new/items/show/652 + +Gabriela Neme: \"Tucumán +está destinada a ser como Niza, joya del Mediterráneo\": la fascinante +historia del Teatro San Martín. Online, https://www.eltucumano.com/noticia/libre/295169/tucuman-esta-destinada-a-ser-como-niza-joya-del-mediterraneo-la-fascinante-historia-del-teatro-san-martin + +18. Faustino Da +Rosa. Online, https://margaritaxirgu.es/castellano/vivencia/18darosa/darosa.htm"""; + "1861-01-01"^^xsd:date; + "1861-12-31"^^xsd:date; + "1936-05-16"^^xsd:date; + "1936-05-16"^^xsd:date; + "Da Rosa"; + "Faustino"; + "1861"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Faustino da Rosa.jpg"; + "https://margaritaxirgu.es/castellano/vivencia/18darosa/darosa.htm

"; + ; + . + + a ; + "other sources: 6 May 1914"; + "RafPab-00"; + "Own"; + "Migration-Related"; + """Raúl H. Castagnino, “Pablo Raffetto, el Bárnum Genovés” in Castagnino: El circo criollo. Buenos Aires: Ed. Plus Ultra 1969. pp. 48-65. + +Beatriz Seibel, “La escena de la Organización Nacional: compañías europeas” in: Historia del Teatro Argentino. Desde los rituales hasta 1930, Buenos Aires: Corregidor 2002. pp. 132-262. + +Fray Mocho. “El famoso Raffetto”. 23th January 1914. N°91. Buenos Aires.  José J. Podestá. Medio siglo de farándula. Memorias de José J. Podestá. Buenos Aires: Subsecretaría de Cultura, 1986. pp. 21-54 + +Arnaldo J. Cunietti-Ferrando, “El famoso Raffetto”. IV. N°18. Historias de la ciudad. Buenos Aires: 2002 https://buenosaireshistoria.org/juntas/el-famoso-raffetto/"""; + "1842-04-23"^^xsd:date; + "1842-04-23"^^xsd:date; + "Namechange 1869-12-19 till 1913-04-06, buried in Buenos Aires, Argentina"; + "1913-05-06"^^xsd:date; + "1913-05-06"^^xsd:date; + "Raffetto"; + "Pablo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RaffettoPablo.jpg"; + "

http://historiaycuriosidadesdelilusionismo.blogspot.com/2009/11/una-de-circo-el-40-onzas-y-los-magos.html

"; + "Circus Performer, Director, Impresario, Founder"; + ; + . + + a ; + "Europe"; + "Europe"; + "6255148"; + "Europe"; + 5.4526e1; + 1.52551e1; + "Q46"; + "https://en.wikipedia.org/wiki/Europe" . + + a ; + "Stockholm"; + "Europe"; + "Sweden"; + "2673730"; + "SE-Stock-00"; + 5.93294e1; + 1.80686e1; + "Q1754"; + "https://en.wikipedia.org/wiki/Stockholm" . + + a ; + "other sources: 30 July 1868"; + "https://d-nb.info/gnd/1249759331"; + "BecMar-00"; + "https://isni.org/isni/0000000038516230"; + "Own"; + "https://lccn.loc.gov/n99284548"; + "Birth name"; + "https://snaccooperative.org/ark:/99166/w6x197g4#resources"; + "Billboard (ed.): 1919-01-25: Vol 31 Iss 4, https://archive.org/details/sim_billboard_1919-01-25_31_4/page/8/mode/2up?q=Martin+Beck+dies.St. Louis Post-Dispatch (ed.): 1940-11-16: Vol 93 Iss 72, https://archive.org/details/per_st-louis-post-dispatch_1940-11-16_93_72/page/n3/mode/2up?q=Martin+Beck+dies.Los Angeles Times  1940-11-17: Vol 59, https://archive.org/details/sim_los-angeles-times_los-angeles-times_1940-11-17_59/page/n7/mode/2up?q=Martin+Beck%2C+Producer+1884. The New York Times (ed.): \"Martin Beck Dies. Theatre Veteran. Manager, Producer and Actor, Builder of the Palace, Stricken Here at 71. Began Orpheum Circuit. Headed Variety Group in West for 27 Years. Came to U.S. as Immigrant at 18\". November 17, 1940, https://www.nytimes.com/1940/11/17/archives/martin-beck-dies-theatre-veteran-manager-producer-and-actor-builder.html.Britannica (ed.): “Martin Beck, American theatre manager, owner, and impresario”, https://www.britannica.com/biography/Martin-Beck.American Experience (ed.): \"Martin Beck (1867-1940)\", https://www.pbs.org/wgbh/americanexperience/features/houdini-beck/. "; + "https://viaf.org/viaf/46099984"; + "https://www.wikidata.org/wiki/Q6774972"; + "https://en.wikipedia.org/wiki/Martin_Beck_(vaudeville)"; + "1868-07-31"^^xsd:date; + "1868-07-31"^^xsd:date; + "https://en.wikipedia.org/wiki/Martin_Beck_(vaudeville), buried in Salem Fields Cemetery, Brooklyn, New York"; + "1940-11-16"^^xsd:date; + "1940-11-16"^^xsd:date; + "Beck"; + "Martin"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Beck_Martin.jpg"; + "https://www.britannica.com/biography/Martin-Beck"; + "Founder, Manager, Agent, Actor"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/11927395"; + "DreLou-00"; + "https://isni.org/isni/0000000063962152"; + "Own"; + "https://lccn.loc.gov/no98097391"; + "https://snaccooperative.org/ark:/99166/w69w0mv7#resources"; + """Drew, Louisa (Lane). Autobiographycal sketch of Mrs. John Drew, New York: Charles Scribner‘s Sons, 1899, https://archive.org/details/autobiographica00taylgoog/page/n8/mode/2up +# +Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994. """; + "https://viaf.org/viaf/11927395/"; + "https://www.wikidata.org/wiki/Q3837642"; + "https://en.wikipedia.org/wiki/Louisa_Lane_Drew"; + "1820-01-10"^^xsd:date; + "1820-01-10"^^xsd:date; + """born Lambeth Parish, London died in Larchmont Manor, +New York; burial: Mount Vernon Cemetery, Philadelphia, Pennsylvania"""; + "1897-08-31"^^xsd:date; + "1897-08-31"^^xsd:date; + "Drew"; + "Louisa Lane"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Louisa_Lane.jpg"; + "https://www.wikidata.org/wiki/Q3837642#/media/File:Louisa_Lane.jpg"; + "Actress, Theater maneger, Businesswoman"; + ; + . + + a ; + "LyoPau-00"; + "Own"; + "Birth name"; + "Callipo, Daniela Mantarro. As Grandes Estrelas do Alcazar Lyrique do Rio De Janeiro: A Edificação De Um Mito. In.: Historiæ, Rio Grande, v. 8, n. 2, p. 31-46, 2017: https://periodicos.furg.br/hist/article/download/7908/5162/22630 Callipo, Daniela Mantarro. O Teatro Musicado Francês no Rio De Janeiro Oitocentista: sucesso, ruína, aplausos e críticas. In.: Miscelânea, Assis, v. 31, p. 49-64, 2022: https://seer.assis.unesp.br/index.php/miscelanea/article/view/2211 SALGADO, Suzana. The Teatro Solis: 150 years of Opera, Concert and Ballet in Montevideo. USA: Wesleyan University Press, 2003. (Newspapers of Hemeroteca Nacional Website):Correio Mercantil, e Instructivo, Politico, Universal. 30th December 1859. Ed. 00356, Rio de Janeiro, p.4: https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&pesq=%22pauline%20lyon%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=17060 Courrier Du Brésil : Politique, Litterature, Revue des Theatres, Sciences et Arts, Industrie, Commerce. 4th September 1859. Ed. 00036, Rio de Janeiro, p.8: https://memoria.bn.br/DocReader/DocReader.aspx?bib=709719&pesq=%22pauline%20lyon%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=1418 Jornal do Commercio. 9th June 1897. Ed.00159, Rio de Janeiro, p.1: https://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_08&pesq=%22pauline%20lyon%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=25028 Correio Mercantil, e Instructivo, Politico, Universal. 25th July 1856. Ed. 00204, Rio de Janeiro, p.4.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=12143 Correio Mercantil, e Instructivo, Politico, Universal. 1st March 1859. Ed. 00060, Rio de Janeiro, p.2.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=15868Correio Mercantil, e Instructivo, Politico, Universal. 4th August 1860. Ed. 00215, Rio de Janeiro, p.4.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=17922 L'Écho du Brésil : Et de L'Amerique du Sud - Ce Journal parait tous dimanches. 19th February 1860. Ed. 00043, Rio de Janeiro, p.15.https://memoria.bn.br/DocReader/DocReader.aspx?bib=386189&pesq=%22pauline%20lyon%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=701 Entreacto : Jornal Illustrado com retratos e caricaturas. 12nd May 1860. Ed. 00002, Rio de Janeiro, p.5.https://memoria.bn.br/DocReader/DocReader.aspx?bib=758817&pesq=%22pauline%20lyon%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=9O Mercantil. 13rd J"; + "1876-01-01"^^xsd:date; + "1876-12-31"^^xsd:date; + "Lyon"; + "Pauline"; + "1876"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "-"; + "Actor, Director" . + + a ; + "http://d-nb.info/gnd/1260675254"; + "ZheLey-3381"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zhelazo-leyzer.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.797."""; + "http://viaf.org/viaf/20165624600942240455"; + "1877-09-21"^^xsd:date; + "1877-09-21"^^xsd:date; + "Zhelazo"; + "Leyzer"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leyzer Zhelazo.png"; + "https://archives.cjh.org/repositories/7/archival_objects/1285762"; + ; + "Jewish" . + + a ; + "Europe"; + "Russia"; + "2017370"; + "RU-00"; + 6.0e1; + 9.0e1; + "Q159"; + "https://en.wikipedia.org/wiki/Russia" . + + a ; + "ArnMar-1177"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/arnstein-mark.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 5, Mexico City: 1967, p.4414."""; + "1878-01-02"^^xsd:date; + "1878-01-02"^^xsd:date; + "Arnstein"; + "Mark"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-arnstein-mark.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/A/lex-arnstein-mark.jpg"; + ; + "Jewish" . + + a ; + "-"; + "https://d-nb.info/gnd/116447745"; + "CapVic-00"; + "https://isni.org/isni/0000000083840064"; + "Own"; + "https://lccn.loc.gov/n84193515"; + "https://snaccooperative.org/ark:/99166/w6m92d1p"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon."; + "https://viaf.org/viaf/54900525"; + "https://www.wikidata.org/wiki/Q3557211"; + "https://en.wikipedia.org/wiki/Victor_Capoul"; + "1839-02-27"^^xsd:date; + "1839-02-27"^^xsd:date; + """In 1905 he was invited by the Fonotipia label to make one of the earliest recordings in history. +The artist is said to have lost his entire fortune through speculation - with the exception of a small farm in southwestern France, the Château de Lartus, where he retired."""; + "1924-02-18"^^xsd:date; + "1924-02-18"^^xsd:date; + "Capoul"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Victor_Capoul.jpg"; + "https://commons.wikimedia.org/wiki/File:Victor_Capoul.jpg"; + "opera singer"; + ; + . + + a ; + "https://d-nb.info/gnd/1057653187"; + "DegEus-00"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchArg=Eusebio+de+Gorbea&s"; + """Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Manuel Aznar Soler, “El Caracol y la Sala Rex (1928-1929)”, online: https://www.revistapausa.cat/el-caracol-y-la-sala-rex-1928-1929/ + +Ministerio de Cultura de España, Detalle del premiado Eusebio de Gorbea, online, https://www.cultura.gob.es/premiado/mostrarDetalleAction.do?prev_layout=premiadoResultado&layout=premiadoFicha&cache=init&language=es&id=24227 + +Eusebio de Gorbea Lemmi. Online, https://www.epdlp.com/escritor.php?id=16981 + +Wikipedia. Eusebio de Gorbea. Online: https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi"""; + "https://viaf.org/viaf/87019742/"; + "https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi"; + "1881-03-23"^^xsd:date; + "1881-03-23"^^xsd:date; + "1948-12-17"^^xsd:date; + "1948-12-17"^^xsd:date; + "de Gorbea"; + "Eusebio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Eusebio de Gorbea.jpg"; + "https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi

"; + ; + . + + a ; + "Honolulu"; + "North America"; + "USA"; + "5856195"; + "USA-Honul-00"; + "Hawaii"; + 2.13089e1; + -1.57826e2; + "Q18094"; + "https://en.wikipedia.org/wiki/Honolulu" . + + a ; + 72439; + """Kleines Theater Unter den Linden +"""; + . + + a ; + "FurCoe-00"; + "https://isni.org/isni/0000000108304410"; + "Own"; + "https://lccn.loc.gov/no90024351"; + "Birth name"; + "http://n2t.net/ark:/99166/w6n660tt"; + "Faria, J. R. (2008). Machado de Assis e os estilos de interpretação teatral de seu tempo. Revista USP, (77), p. 135-148 : https://doi.org/10.11606/issn.2316-9036.v0i77p135-148 Faria, J. R. (2008). O teatro realista no Brasil: 1855-1865. 1989. Doctoral dissertation (Doutorado em Literatura Brasileira) - Faculdade de Filosofia, Letras e Ciências Humanas, Universidade de São Paulo, São Paulo, 1990 : https://doi.org/10.11606/T.8.1990.tde-18102022-131721 Gonçalves, M. C., & Messer Levin, O. (2017). Furtado Coelho e sua atuação no Teatro Ginásio Dramático, do Rio de Janeiro. Convergência Lusíada, v.25, n.32 :  https://convergencialusiada.com.br/rcl/article/view/84 Junior, Luiz Americo Lisboa. Teatro português no Brasil : do Império à Primeira República. Master thesis (Mestrado em História, na especialidade de História e Cultura do Brasil) – Faculdade de Letras of University of Lisbon. Lisbon, 2020 : http://hdl.handle.net/10451/44149  Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021 : http://hdl.handle.net/10451/48198 Simões, Lucinda. Memorieas: factos e impressões. SA Litho-Typographia Fluminese, 1922.Sobrinho, Francisco Antonio Filgueiras. Estudos biográficos: Teatro I – Furtado Coelho. Pernambuco: R. de Mattos, 1863 : https://play.google.com/books/reader?id=7TAbAAAAYAAJ&pg=GBS.PA18&hl=pt Zambrano, Gustavo. A trajetória artística de Furtado Coelho nos palcos brasileiros: (1856-1867). Master's thesis defended at Universidade Estadual Paulista “Júlio de Mesquita Filho”, Instituto de Biociências, Letras e Ciências Exatas. São José do Rio Preto, 2018 : https://repositorio.unesp.br/handle/11449/152956 "; + "http://viaf.org/viaf/50471542"; + "https://www.wikidata.org/wiki/Q10286657"; + "https://pt.wikipedia.org/wiki/Furtado_Coelho"; + "1831-12-28"^^xsd:date; + "1831-12-28"^^xsd:date; + "Cemitério dos Prazeres, Lisboa"; + "1900-02-13"^^xsd:date; + "1900-02-13"^^xsd:date; + "Coelho"; + "Furtado"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Furtado_Coelho.jpg"; + "https://www.wikidata.org/wiki/Q10286657#/media/File:Furtado_Coelho.jpg"; + "Actor, Impresario, Founder, Playwright, Composer"; + ; + . + + a ; + "GroPau-00"; + "Own"; + "https://catalog.loc.gov/vwebv/search?searchArg=Paul+Groussac&searc"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + "https://viaf.org/en/viaf/106964814"; + "https://www.wikidata.org/wiki/Q2550159"; + "1848-02-15"^^xsd:date; + "1929-06-27"^^xsd:date; + "Groussac"; + "Paul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Groussac.jpg"; + "https://es.wikipedia.org/wiki/Paul_Groussac"; + ; + . + + a ; + "HerLui-00"; + "Own"; + "https://snaccooperative.org/view/13159888#resources"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Ecured, Lus Bayón Herrera, online: https://www.ecured.cu/Luis_Bay%C3%B3n_Herrera + +Orlando del Greco, Todo Tango, online: mso-themecolor:background1;mso-ansi-language:ES-AR\">https://www.todotango.com/creadores/biografia/313/Luis-Bayon-Herrera/ + +Real Academia de la Historia, Luis Bayón Herrera,online: mso-ansi-language:ES-AR\">https://dbe.rah.es/biografias/46506/luis-bayon-herrera + +Luis Perrière. Los vascos del tango. Online, https://rauldeloshoyos.com/luis-bayon-herrera-un-tropezon-raul-los-hoyos/"""; + "https://viaf.org/viaf/87140235/#Bay%C3%B3n_Herrera,_Luis,_1889-1956"; + "https://www.wikidata.org/wiki/Q6700358"; + "https://en.wikipedia.org/wiki/Luis_Bay%C3%B3n_Herrera"; + "1889-09-23"^^xsd:date; + "1889-09-23"^^xsd:date; + "1956-03-30"^^xsd:date; + "1956-03-30"^^xsd:date; + "Bayón Herrera"; + "Luis"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Luis_Bayón_Herrera.jpg"; + "https://www.discogs.com/fr/artist/1296673-Luis-Bay%C3%B3n-Herrera-"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/117139947"; + "JoaAma-00"; + "https://isni.org/isni/0000000066772370"; + "Own"; + "https://lccn.loc.gov/no00035271"; + "https://snaccooperative.org/view/18378859"; + """Beatrix Borchard: Amalie Joachim in Troppau und Hermannstadt. In: Freia Hoffmann (ed.): Reiseberichte von Musikerinnen des 19. Jahrhunderts: Quellentexte, Biographien und Kommentare. Hildesheim 2011, pp. 197–212. +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 5003-5004. +Ludwig Eisenberg: Amalie Joachim. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert., Leipzig: List 1903, p. 483. + +"""; + "https://viaf.org/viaf/47532229/"; + "https://www.wikidata.org/wiki/Q86910"; + "https://en.wikipedia.org/wiki/Amalie_Joachim"; + "1839-05-10"^^xsd:date; + "1839-05-10"^^xsd:date; + "buried in Kaiser Wilhelm Memorial Cemetery in Berlin."; + "1899-02-03"^^xsd:date; + "1899-02-03"^^xsd:date; + "Joachim"; + "Amalie"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Amalie_Joachim,Photographie_von_J._C._Schaarwächter.jpg"; + "https://www.wikidata.org/wiki/Q86910#/media/File:Amalie_Joachim,Photographie_von_J._C._Schaarw%C3%A4chter.jpg"; + "opera singer, concert singer"; + ; + . + + a ; + "Riga"; + "Europe"; + "Latvia"; + "456172"; + "LV-RIX-00"; + 5.69489e1; + 2.41064e1; + "Q1773"; + "https://en.wikipedia.org/wiki/Riga" . + + a ; + "https://d-nb.info/gnd/143736051"; + "AloEnz-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Inmigración a la Argentina 1850-1960: escritores (página2), online, https://www.monografias.com/trabajos32/inmigracion-escritores/inmigracion-escritores2Wikipedia. + +Los afincaos. Online, https://es.wikipedia.org/wiki/Los_afincaosTodo colección. Aloisi, Enzo: El crimen de Liniers, online, https://www.todocoleccion.net/libros-antiguos-teatro/aloisi-enzo-crimen-liniers-comedia-policial-un-acto-cinco-cuadros-bambalinas-n-189~x40031348 + +James Troiano. “Life as Theater in Aloisi’s Nada dePirandello, por favor” in: Revista de literatura hispánica: No. 34, Article 15. [Online-Edition]: https://digitalcommons.providence.edu/inti/vol1/iss34/15Family Search. Enzo Aloisi, online: https://ancestors.familysearch.org/de/G2PG-T3L/enzo-luis-humberto-v%C3%ADctor-manuel-aloisi-1886-1975"""; + "https://viaf.org/processed/ARBABN%7C000057365"; + "1886-04-02"^^xsd:date; + "1886-04-02"^^xsd:date; + "1975-05-02"^^xsd:date; + "1975-05-02"^^xsd:date; + "Aloisi"; + "Enzo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Enzo_Aloisi.jpg"; + "FamilySearch.com"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/134817826"; + "CahCha-00"; + "https://isni.org/isni/0000000055524304"; + "Own"; + "https://lccn.loc.gov/n97064362"; + "http://n2t.net/ark:/99166/w6m045wn"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 681-682.Richard Dyer: Cahier, Mme Charles. In: Laura Williams Macy: The Grove Book of Opera Singers, Oxford: University Press, 2008 p. 69.The New York Times: “Music Here and There“, 17th Novembre 1912, New York."; + "https://viaf.org/viaf/46048961"; + "https://www.wikidata.org/wiki/Q60608471"; + "https://en.wikipedia.org/wiki/Sara_Cahier"; + "1870-01-08"^^xsd:date; + "1870-01-08"^^xsd:date; + "She sang the premiere of Gustav Mahler's Lied von der Erde in Munich."; + "1951-04-15"^^xsd:date; + "1951-04-15"^^xsd:date; + "Cahier"; + "Sarah Charles"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Madame_Charles_Cahier_-_The_grand_opera_singers_of_to-day_(1912).jpg"; + "https://de.wikipedia.org/wiki/Mme._Charles_Cahier#/media/Datei:Madame_Charles_Cahier_-_The_grand_opera_singers_of_to-day_(1912).jpg"; + "singer, singing teacher"; + ; + . + + a ; + "GalSus-00"; + "https://isni.org/isni/0000000047378925"; + "Own"; + "http://n2t.net/ark:/99166/w6hv0ck8
"; + "Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. Internet Broadway Database(ed.): Susan Galton in Broadway, https://www.ibdb.com/broadway-cast-staff/susan-galton-433825. "; + "http://viaf.org/viaf/68761999"; + "https://www.wikidata.org/wiki/Q21557524"; + "https://en.wikipedia.org/wiki/Susan_Galton"; + "1849-01-01"^^xsd:date; + "1849-01-01"^^xsd:date; + "1918-01-01"^^xsd:date; + "1918-01-01"^^xsd:date; + "Galton"; + "Susan"; + "1849"; + "1918"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/图片 1.jpg"; + "https://en.wikipedia.org/wiki/Susan_Galton#/media/File:Miss_Susan_Galton.jpg"; + ; + "Christian" . + + a ; + "Porto"; + "Europe"; + "Portugal"; + "2735943"; + "PT-Porto-00"; + 4.11494e1; + -8.61056e0; + "Q36433"; + "https://en.wikipedia.org/wiki/Porto" . + + a ; + "Europe"; + "Romania"; + "798549"; + "ROU-00"; + 4.6e1; + 2.5e1; + "Q218"; + "https://en.wikipedia.org/wiki/Romania" . + + a ; + 71224; + "גאָלדפאדעןס טרופּע - Avraham Goldfaden's troupe" . + + a ; + "other sources: 23 April 1850"; + "BauRos-00"; + "https://isni.org/isni/0000000012096194"; + "Own"; + "Callipo, Daniela Mantarro. De vedete à poeta: a trajetória de Rose Méryss. In Miscelânea, Assis, v. 24, p. 145-163, jul.-dez., 2018. https://seer.assis.unesp.br/index.php/miscelanea/article/view/1222 Prado, Décio de Almeida. História concisa do teatro brasileiro: 1570-1908. São Paulo: Editora da Universidade de São Paulo, 1999.Ruiz, Roberto. Teatro de revista no Brasil: do início a I Guerra Mundial. Rio de Janeiro : INACEN, 1988. "; + "http://viaf.org/viaf/47078175"; + "1850-01-23"^^xsd:date; + "1850-01-23"^^xsd:date; + "1929-07-01"^^xsd:date; + "1929-07-01"^^xsd:date; + "Baudon"; + "Rose Marie "; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/image_atelier_nadar_portrait_de_ros_ph53813_336226.jpg"; + "https://www.parismuseescollections.paris.fr/fr/musee-carnavalet/oeuvres/portrait-de-rose-marie-baudon-ap-1901-dite-rose-meryss-actrice-de-theatre#infos-principales"; + "Actor, Customier, French Theacher, Painter, Writer, Hotel founder"; + ; + . + + a ; + "https://d-nb.info/gnd/1226784682"; + "DeaPie-00"; + "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000073158889&TERMS"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Wikipedia. Pierina Dealessi, online: https://es.wikipedia.org/wiki/Pierina_Dealessi + +Wikiwand. Pierina Dealessi, online: https://www.wikiwand.com/es/Pierina_Dealessi + +IMDb. Pierina Dealessi, online: https://www.imdb.com/name/nm0212663/"""; + "https://viaf.org/viaf/102354879/"; + "https://www.wikidata.org/wiki/Q6075434"; + "https://en.wikipedia.org/wiki/Pierina_Dealessi"; + "1894-12-25"^^xsd:date; + "1894-12-25"^^xsd:date; + "1983-01-21"^^xsd:date; + "1983-01-21"^^xsd:date; + "Dealessi"; + "Pierina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Pierina Dealessi.jpg"; + "https://www.imdb.com/name/nm0212663/I"; + ; + . + + a ; + "EusArt-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.   + +Carmen Fraga González. “Arturo Nemesio Eusevi Valladares. Labor artística en Madrid, Tenerife y Argentina” in: Guaraguao, No. 66/67, Canarias y América (2021), pp. 149-172 (24 pages), [Online Edition]: https://www.jstor.org/stable/27111235  + +Museo del Dibujo y la Ilustración: “Eusevi, Arturo Nemesio”, online, https://museodeldibujo.com.ar/obras_muestras/artistas.php?ida=140&a=Eusevi%2C+Arturo+Nemesio   + +Arte de la Argentina: “Eusevi, Arturo Nemesio”, online, https://www.artedelaargentina.com.ar/disciplinas/artista/pintura/arturo-nemesio-eusevi"""; + "https://viaf.org/processed/DNB%7C1207262293"; + "1860-12-19"^^xsd:date; + "1860-12-19"^^xsd:date; + "1933-11-20"^^xsd:date; + "1933-11-20"^^xsd:date; + "Eusevi"; + "Arturo"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Eusevi, Arturo Nemesio.jpg"; + "https://museodeldibujo.com.ar/obras_muestras/artistas.php?ida=140&a=Eusevi%2C+Arturo+Nemesio

"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/134729455"; + "LevMis-00"; + "https://isni.org/isni/0000000080991799"; + "Own"; + "http://id.loc.gov/authorities/names/n87110967"; + "https://snaccooperative.org/view/60971773"; + "North China Herald. 17th October, 1925, p. 105: https://archive.org/details/north-china-herald-1925.10.17/page/104/mode/2up?q=Mischa+Levitzki."; + "http://viaf.org/viaf/19868342"; + "https://www.wikidata.org/wiki/Q506276"; + "https://en.wikipedia.org/wiki/Mischa_Levitzki"; + "1898-05-25"^^xsd:date; + "1898-05-25"^^xsd:date; + "buried at Mount Lebanon Cemetery"; + "1941-01-02"^^xsd:date; + "1941-01-02"^^xsd:date; + "Levitzki"; + "Mischa"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/图片 2.png"; + "https://en.wikipedia.org/wiki/File:MischaLevitzki1925.png"; + ; + ; + "Jewish" . + + a ; + "https://d-nb.info/gnd/1250127599"; + "ReiCat-00"; + "https://isni.org/isni/0000000023548299"; + "Own"; + """Edward T. James (ed.): Notable American Women, 1607–1950, Cambridge, MA: The Belknap Press of Harvard University Press, 1971.   + Women in World History: A Biographical Encyclopedia of Reignolds, Catherine Mary (1836–1911), https://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/reignolds-catherine-mary-1836-1911.    + Catherine Mary Reignolds-Winslow: Yesterdays with Actors, Boston, Cupples and Hurd, 1887, https://archive.org/details/yesterdayswitha00wins/page/n15/mode/2up.   """; + "https://viaf.org/viaf/65363170"; + "https://www.wikidata.org/wiki/Q61890447"; + "https://en.wikipedia.org/wiki/Kate_Reignolds"; + "1836-05-16"^^xsd:date; + "1836-05-16"^^xsd:date; + """Burial: Springfield Cemetery, Springfield, Hampden County, Massachusetts +"""; + "1911-07-11"^^xsd:date; + "1911-07-11"^^xsd:date; + "Reignolds"; + "Catherine-Mary"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/reignoldsmary.jpg"; + "https://en.wikipedia.org/wiki/Kate_Reignolds#/media/File:Catherine_Mary_Reignolds_Winslow,_oval_portrait.jpg"; + "Actress"; + ; + . + + a ; + "Graz"; + "Europe"; + "Austria"; + "2778067"; + "AT-Graz-00"; + 4.70708e1; + 1.54386e1; + "Q13298"; + "https://en.wikipedia.org/wiki/Graz" . + + a ; + "BalHel-00"; + "Own"; + "Birth name"; + "PEREIRA, Esteves; RODRIGUES, Guilherme. Dicionário Histórico, Corográfico,Heráldico, Biográfico, Bibliográfico, Numismático e Artístico. Volume VII : https://www.arqnet.pt/dicionario/balsemao_rodrigues.htmlVASCONCELOS, Thaís. A trajetória de Lima Penante e o espaço teatral no Amazonas no século XIX. In.: ARTERIAIS, V.6, N.11, 2020 : https://periodicos.ufpa.br/index.php/ppgartes/article/view/11023 STARK, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321 (Newspapers of Hemeroteca Nacional Website)Gazeta de Noticias. 27th June 1880. Ed. 00177, Rio de Janeiro, p.6: http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=863 Gazeta de Noticias. 13th August 1884. Ed. 00226, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=7369 Gazeta de Noticias. 8th November 1884. Ed. 00313, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=7776 Jornal do Commercio. 4th July 1877. Ed. 00184, Rio de Janeiro, p.6:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=16242 Jornal do Commercio. 18th June 1878. Ed. 00164, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=18611 Correio da Manhã. 12th February 1893.Ed. 02548, Lisboa, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=890529&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=11625 Jornal do Commercio. 21st April 1892. Ed. 00111, Rio de Janeiro, p.10:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_08&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=7230 Correio Paulistano. 26th March 1895. Ed. 11517, São Paulo, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=090972_05&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=6153 O Commercio de São Paulo. 5th August 1900. Ed. 02291, São Paulo, p.1:http://memoria.bn.br/DocReader/DocReader.aspx?bib=227900&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memori"; + "https://www.wikidata.org/wiki/Q97013754"; + "https://pt.wikipedia.org/wiki/Helena_Balsem%C3%A3o"; + "1850-01-01"^^xsd:date; + "1850-12-31"^^xsd:date; + "Cemetery of Agramonte in Porto"; + "1903-02-21"^^xsd:date; + "1903-02-21"^^xsd:date; + "Balsemão"; + "Helena"; + "1850"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actress , Director, Theatre Entrepreneur,Trader"; + ; + . + + a ; + "WhiTho-00"; + "Own"; + "https://id.loc.gov/authorities/names/no2009043646.html"; + """# +Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Thomas Whiffen in Broadway, https://www.ibdb.com/broadway-cast-staff/thomas-whiffen-64703."""; + "https://viaf.org/viaf/83621397/"; + "https://www.wikidata.org/wiki/Q106565806"; + "1842-01-01"^^xsd:date; + "1845-12-31"^^xsd:date; + "1897-10-10"^^xsd:date; + "1897-10-12"^^xsd:date; + "Whiffen"; + "Thomas"; + "between 1842 and 1845"; + "between 10 and 12 October 1897"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor"; + ; + . + + a ; + "other sources:1845 in Lyon"; + "http://data.cerl.org/thesaurus/cnp01390285"; + "AimMar-00"; + "https://isni.org/isni/0000000052775503"; + "Own"; + """Callipo, Daniela Mantarro. As Grandes Estrelas Do Alcazar Lyrique Do Rio De Janeiro: A Edificação De Um Mito. In.: Historiæ, Rio Grande, v. 8, n. 2, p. 31-46, 2017: https://periodicos.furg.br/hist/article/download/7908/5162/22630 Menezes, Lená Medeiros de. (Re)inventando a noite: o Alcazar Lyrique e a cocotte comédiénne no Rio de Janeiro oitocentista. In.: Revista Rio de Janeiro, n. 20-21, jan.-dez, 2007. http://www.forumrio.uerj.br/publicacoes_fase3_n20_21.htm (Newspapers from American National Congress) The sun. 14th March 1896. New York, p. 7. +https://www.loc.gov/resource/sn83030272/1896-03-14/ed-1/?sp=7&q=Aim%C3%A9e+Tronchon&r=-0.05,0.663,0.359,0.184,0 + +Public ledger. 20th March 1872. Memphis, Tennessee, p. 2. +https://www.loc.gov/resource/sn85033673/1872-03-20/ed-1/?sp=2&q=+Aimee+actress&r=0.275,0.545,0.446,0.229,0 Salt Lake evening Democrat. 23rd May 1885. Salt Lake City, Utah, p.4 +https://www.loc.gov/resource/sn85058117/1885-05-23/ed-1/?sp=4&q=+Aimee+actress&r=0.232,0.09,0.505,0.259,0 + +New York dispatch. 25th December 1870. New York, p.4. +https://www.loc.gov/resource/sn85026214/1870-12-25/ed-1/?sp=4&q=+Aimee+actress&r=0.232,-0.036,1.18,0.605,0 New York dispatch. 29th October 1871. New York, p.5. +https://www.loc.gov/resource/sn85026214/1871-10-29/ed-1/?sp=5&q=+Aimee+actress&r=0.019,0.068,0.277,0.142,0 +New Orleans Republican. 18th February 1872. New Orleans, LA, p.5. +https://www.loc.gov/resource/sn83016555/1872-02-18/ed-1/?sp=5&q=+Aimee+actress&r=0.079,-0.021,0.92,0.472,0 + +New York dispatch. 13rd October 1872. New York, p.8. +https://www.loc.gov/resource/sn85026214/1872-10-13/ed-1/?sp=8&q=+Aimee+actress&r=0.157,0.422,0.219,0.112,0 Chicago tribune. 21st March 1872. Chicago, Ill., p.5. +https://www.loc.gov/resource/sn82014064/1872-03-21/ed-1/?sp=5&q=+Aimee+actress&r=0.215,-0.072,0.544,0.279,0 New Orleans Republican. 9th February 1873. New Orleans, LA, p. 2. +https://www.loc.gov/resource/sn83016555/1873-02-09/ed-1/?sp=2&q=+Aimee+actress&r=0.438,0.926,0.414,0.212,0 Evening star. 16th January 1873. Washington, D.C., p. 4. +https://www.loc.gov/resource/sn83045462/1873-01-16/ed-1/?sp=4&q=+Aimee+actress&r=0.008,0.966,0.264,0.135,0 +New York dispatch. 16th March 1873. New York, p.5. +https://www.loc.gov/resource/sn85026214/1873-03-16/ed-1/?sp=5&q=+Aimee+actress&r=0.088,0.783,0.307,0.158,0 + +Memphis daily appeal. 15th March 1873. Memphis, Tenn., p.4. +https://www.loc.gov/resource/sn83045160/1873-03-15/ed-1/?sp=4&q=+Aimee+actress&r=0.29,-0.048,0.534,0.274,0 +New York dispatch. 13rd April 1873. New York, p.8. +https://www.loc.gov/resource/sn85026214/1873-04-13/ed-1/?sp=8&q=+Aimee+actress&r=0.178,0.113,0.227,0.116,0 +The Cincinnati daily star. 27th September 1879. Fourth Edition. Cincinnati, Ohio, p.4. +https://www.loc."""; + "https://viaf.org/viaf/51982521/"; + "https://www.wikidata.org/wiki/Q4934643"; + "1852-01-01"^^xsd:date; + "1852-12-31"^^xsd:date; + "1887-10-02"^^xsd:date; + "1887-10-02"^^xsd:date; + "Aimée"; + "Marie"; + "1852"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Aimée.jpg"; + "https://www.wikidata.org/wiki/Q4934643"; + "Actor, Singer, Dancer"; + ; + . + + a ; + "https://d-nb.info/gnd/118810715"; + "BorHei-00"; + "https://isni.org/isni/0000000080831867"; + "Own"; + "https://id.loc.gov/authorities/names/n85201304.html"; + "Börnstein, Heinrich: Fünfundsiebzig Jahre in der Alten und Neuen Welt. Memoiren eines Unbedeutenden. Vol. 1 and 2, Leipzig: Otto Wigand 1881.Wienbibliothek im Rathaus: https://www.digital.wienbibliothek.at/name/view/2982632"; + "https://viaf.org/de/viaf/3267298"; + "https://www.wikidata.org/wiki/Q87331"; + "https://en.wikipedia.org/wiki/Henry_Boernstein"; + "1805-11-04"^^xsd:date; + "1805-11-04"^^xsd:date; + "1892-09-10"^^xsd:date; + "1892-09-10"^^xsd:date; + "Börnstein"; + "Heinrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1-Henry-Boernstein.jpg"; + "Heinrich Börnstein, Visitenkarte, ca. 1873, Jean-Baptiste Feilner. Missouri Historical Society, St. Louis, Photographs and Prints Collection"; + ; + ; + "Christian" . + + a ; + "https://data.cerl.org/thesaurus/cnp01078559"; + "https://d-nb.info/gnd/116421029"; + "GarMan-01"; + "https://isni.org/isni/0000000108836310"; + "Own"; + "https://lccn.loc.gov/n83070053"; + "https://snaccooperative.org/ark:/99166/w67d33n1"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 1638-1639.The Observer: “The Early Life and Personal Apperance of Madmoiselle Wagner”, 26th April 1852, London./Riemens: Großes Sängerlexikon"; + "https://viaf.org/viaf/29630509"; + "https://www.wikidata.org/wiki/Q333183"; + "https://en.wikipedia.org/wiki/Manuel_Garc%C3%ADa_(baritone)"; + "1805-03-17"^^xsd:date; + "1805-03-17"^^xsd:date; + "1906-07-01"^^xsd:date; + "1906-07-01"^^xsd:date; + "García Junior"; + "Manuel"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuel_Garcia_(John_Singer_Sargent_1905).png"; + "https://www.wikidata.org/wiki/Q333183#/media/File:Manuel_Garcia_(John_Singer_Sargent_1905).png"; + "Opera singer,baritone, singing teacher,music teacher"; + ; + . + + a ; + "PacReg-00"; + "https://isni.org/page/search-database/"; + "Own"; + """Santiago Sylvester, “Regina Pacini”, in Centro Virtual Cervantes, 15th November 2006, online https://cvc.cervantes.es/el_rinconete/anteriores/noviembre_06/15112006_01.htm  + +“Regina Pacini”: Efemérides radicales. Hombres, mujeres y hechos de la Unión Cívica Radical día por día, online, http://www.efemeridesradicales.com.ar/Indice/R/Regina_Pacini/Regina_Pacini.html + +“Regina Pacini, la soprano portuguesa que abrazó y protegió a la cultura argentina”. Ministerio de Cultura Argentina, 6th January 2020, online, https://www.cultura.gob.ar/regina-pacini-la-soprano-portuguesa-que-abrazo-y-protegio-la-cultura-a-8662/ + +“La historia de amor de Marcelo T. de Alvear y Regina Pacini: un escándalo, una ceremonia a solas y un amor para toda la vida”, Infobae [Online-Edition]  https://www.infobae.com/sociedad/2021/01/04/la-historia-de-amor-de-marcelo-t-de-alvear-y-regina-pacini-un-escandalo-una-ceremonia-a-solas-y-un-amor-para-toda-la-vida/ + +1871-1965 Regina Pacini. https://casadelteatro.org.ar/regina-pacini/"""; + "https://viaf.org/viaf/206990/#Pacini,_Regina,_1871-1965"; + "https://www.wikidata.org/wiki/Q9067599"; + "https://en.wikipedia.org/wiki/Regina_Pacini"; + "1871-01-06"^^xsd:date; + "1871-01-06"^^xsd:date; + "died in Don Torcuato, Province of Buenos Aires"; + "1965-09-18"^^xsd:date; + "1965-09-18"^^xsd:date; + "Pacini"; + "Regina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Regina_Pacini.jpg"; + "https://en.wikipedia.org/wiki/Regina_Pacini"; + "Singer, Actor"; + ; + . + + a ; + "Brussels"; + "Europe"; + "Belgium"; + "2800866"; + "BE-BRU-00"; + 5.085e1; + 4.35e0; + "Q239"; + "https://en.wikipedia.org/wiki/Brussels" . + + a ; + "https://d-nb.info/gnd/126097429"; + "BodRob-00"; + " https://isni.org/isni/0000000115924132"; + "Own"; + "https://lccn.loc.gov/n81084042"; + "https://snaccooperative.org/ark:/99166/w66x0dwm#resources"; + """MGG + +Portmann, Werner, und Siegbert Wolf. „Ja, ich kämpfte“ : von Revolutionsträumen, „Luftmenschen“ und Kindern des Schtetls ; Biographien radikaler Jüdinnen und Juden. 1. Aufl. Münster: Unrast, 2006. +"""; + "https://viaf.org/viaf/8368943"; + "https://www.wikidata.org/wiki/Q326252"; + "https://en.wikipedia.org/wiki/Robert_Bodanzky"; + "1879-03-20"^^xsd:date; + "1879-03-20"^^xsd:date; + "1923-02-11"^^xsd:date; + "1923-02-11"^^xsd:date; + "Bodanzky"; + "Robert"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zygmunt_Skwirczyński_Robert_Bodanzky_1911.jpg"; + "https://de.wikipedia.org/wiki/Robert_Bodanzky#/media/Datei:Zygmunt_Skwirczy%C5%84ski_Robert_Bodanzky_1911.jpg"; + "Operetta, Schlager Author, Director, Journalist, Actor,Emcee"; + ; + ; + " Jewish" . + + a ; + " https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=t"; + "GiuRob-00"; + "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000083491175&TERM"; + "Own"; + "https://id.loc.gov/authorities/names/n81042129.html"; + "https://snaccooperative.org/?count=10&start=0&entity_type=&"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Centro de Documentación e Investigación de la Cultura de Izquierdas. Diccionario Biográfico de las Izquierdas Latinoamericanas: “Giusti, Roberto F.”, online: https://diccionario.cedinci.org/giusti-roberto-f/Facultad de Filosofía y Letras de la Universidad de Buenos Aires. Filo Digital Archivos: “Giusti, Roberto”, online: http://archivos.filo.uba.ar/index.php/Detail/entities/665Fermín Estrella Gutiérrez, “Roberto F. Giusti: su vida, su obra”, Buenos Aires, Asociación Dante Alighieri, 1980."; + "https://viaf.org/en/viaf/search?field=local.names&index=viaf&s"; + "https://www.wikidata.org/wiki/Q25417610"; + "1887-03-10"^^xsd:date; + "1978-05-06"^^xsd:date; + "Giusti"; + "Roberto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Giusti_Roberto.JPG"; + "https://www.wikidata.org/wiki/Q25417610"; + ; + . + + a ; + "https://d-nb.info/gnd/117469513"; + "SemMar-00"; + "https://isni.org/isni/0000000083493859"; + "Own"; + "https://lccn.loc.gov/n82001308"; + "https://snaccooperative.org/ark:/99166/w66h4gwt"; + "E.W. Allen: The Biograph and Review, New York: the New York Public Library, 1879."; + "https://viaf.org/viaf/197617"; + "https://www.wikidata.org/wiki/Q265698"; + "https://en.wikipedia.org/wiki/Marcella_Sembrich"; + "1858-02-15"^^xsd:date; + "1858-02-15"^^xsd:date; + "Sembrich traveled across the United States and Europe singing in major cities including Dresden, London, Madrid, Paris, St. Petersburg, New York. Burial: Johannisfriedhof Tolkewitz, Dresden, Germany"; + "1935-01-11"^^xsd:date; + "1935-01-11"^^xsd:date; + "Sembrich"; + "Marcelina"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marcella_Sembrich_-_portrait.jpg"; + "https://en.wikipedia.org/wiki/File:Marcella_Sembrich_-_portrait.jpg"; + "Singer, Musician,Theatre Teacher"; + ; + . + + a ; + "Frankfurt"; + "Europe"; + "Germany"; + "2925533"; + "GER-Ffm-00"; + 5.01167e1; + 8.68333e0; + "Q1794"; + "https://en.wikipedia.org/wiki/Frankfurt" . + + a ; + 157; + "Theatre"; + ""; + "Metropolitain Opera, New York"; + . + + a ; + "LeaCar-00"; + "https://isni.org/isni/0000000067753606"; + "Own"; + "http://id.loc.gov/authorities/names/no98107189"; + "Belfort Palmeira, Natasha (2018). O entreato da belle époque: a cena nacional e luso-brasileira. Convergência Lusíada, v.28, n.37, p.58-68 : https://convergencialusiada.com.br/rcl/article/view/211 Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198 "; + "http://viaf.org/viaf/9467942"; + "1878-12-17"^^xsd:date; + "1878-12-17"^^xsd:date; + "Leal"; + "Carlos"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Actor, Playwriter, Director, Cartoonist, Advertiser"; + . + + a ; + "ZilKar-3399"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zilberman-karl.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.783."""; + "1883-01-01"^^xsd:date; + "1883-12-31"^^xsd:date; + "Zilberman"; + "Karl"; + "1883"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zilberman-karl.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/Z/zilberman-karl.htm "; + ; + "Jewish" . + + a ; + "Europe"; + "Poland"; + "798544"; + "PL-00"; + 5.2e1; + 2.0e1; + "Q36"; + "https://en.wikipedia.org/wiki/Poland" . + + a ; + "ConSan-00"; + "Own"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + "1884-05-07"^^xsd:date; + "1884-05-07"^^xsd:date; + "Contento"; + "Santiago"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + . + + a ; + "Shanghai"; + "Asia"; + "China"; + "1796236"; + "CN-SH-00"; + 3.12333e1; + 1.21467e2; + "Q8686"; + "https://en.wikipedia.org/wiki/Shanghai" . + + a ; + "http://data.cerl.org/thesaurus/cnp02150882"; + "https://d-nb.info/gnd/1089754426"; + "BraMar-02"; + "https://isni.org/isni/0000000046175309"; + "Own"; + "http://id.loc.gov/authorities/names/no2002104866"; + "http://n2t.net/ark:/99166/w6377n14"; + """Fondazione Adkins Chiti: Donne in Musica, Sonstige. Le lombarde in musica. Roma: Colombo, 2009. + +Laura Macy. “Brambilla, Marietta.” The Grove Book of Opera Singers, 2nd ed., Oxford University Press, 2008. + +MGG + +"""; + "http://viaf.org/viaf/32265598"; + "https://www.wikidata.org/wiki/Q3847905"; + "https://en.wikipedia.org/wiki/Marietta_Brambilla"; + "1807-06-06"^^xsd:date; + "1807-06-06"^^xsd:date; + "1875-11-06"^^xsd:date; + "1875-11-06"^^xsd:date; + "Brambilla "; + "Marietta"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marietta_Brambilla_1828.jpg"; + "https://commons.wikimedia.org/wiki/File:Marietta_Brambilla_1828.jpg"; + ; + . + + a ; + "https://d-nb.info/gnd/143945599"; + "AmaLui-00"; + "Own"; + "https://snaccooperative.org/view/19562106#resources"; + """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Luis Perrière: Teatro, +letras, letristas. Luis César Amadori, Raúl de los Hoyos-online, https://rauldeloshoyos.com/luis-cesar-amadori-raul-de-los-hoyos/ + +Busca +Biografías: Luis César Amadori. Online: https://www.buscabiografias.com/biografia/verDetalle/7397/Luis%20Cesar%20Amadori + +Néstor Pinsón: Luis César Amadori, Todo Tango-online, https://www.todotango.com/creadores/biografia/508/Luis-Cesar-Amadori/ + +Diccionario de Directores del Cine Mexicano: Amadori, +Luis César. Online, +https://diccionariodedirectoresdelcinemexicano.com/directores-cine-mex/amadori-luis-cesar/"""; + "https://viaf.org/viaf/6652869/#Amadori,_Luis_C%C3%A9sar,_1902-1977"; + "https://www.wikidata.org/wiki/Q472866"; + "https://en.wikipedia.org/wiki/Luis_C%C3%A9sar_Amadori"; + "1902-05-28"^^xsd:date; + "1902-05-28"^^xsd:date; + "1977-06-05"^^xsd:date; + "1977-06-05"^^xsd:date; + "Amadori"; + "Luis César"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Luis_Cesar_Amadori.jpg"; + "https://www.buscabiografias.com/biografia/verDetalle/7397/Luis%20Cesar%20Amadori

"; + ; + . + + a ; + "https://d-nb.info/gnd/117052477"; + "JagFer-01"; + "Own"; + """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Leipzig: List 1903, pp. 468- 469. +# +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. +# +Gedenktafel im Foyer des Bayreuther Festspielhauses, Bayreuther Festspiele 1876, (c) RWA Nationalarchiv Bayreuth, https://www.bayreuther-festspiele.de/festspiele/historie/ +Wiener Staatsoper Archiv: https://archiv.wiener-staatsoper.at/search/person/8120 +"""; + "https://viaf.org/viaf/13074670"; + "https://www.wikidata.org/wiki/Q18020135"; + "https://de.wikipedia.org/wiki/Ferdinand_J%C3%A4ger_%28S%C3%A4nger%2C_1839%29"; + "1839-12-25"^^xsd:date; + "1839-12-25"^^xsd:date; + "1902-06-13"^^xsd:date; + "1902-06-13"^^xsd:date; + "Jäger"; + "Ferdinand"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载 (1).png"; + "https://www.theatermuseum.at/online-sammlung/detail/542585/"; + "Singer, Theatre Teacher"; + ; + . + + a ; + "http://d-nb.info/gnd/1057253391"; + "NovAlb-00"; + "https://isni.org/isni/000000006636932X"; + "Own"; + "https://lccn.loc.gov/no97036998"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Argentores: 1910-2000. 90 años. \"Semblanzas. Alberto Novión\", Buenos Aires: Sociedad General de Autores de la Argentina 2000. + +Alberto Novión. Edition and foreword by Osvaldo Pellettieri: Alberto Novión. La transición al grotesco criollo, Buenos Aires: Eudeba 2002. + +Nora Glickman and Gloria F. Waldman: Argentine Jewish Theatre: a critical anthology, Lewisburg: Bucknell Univ. Press 1996. + +María González Rouco: Alberto Novión: un vasco en escena. Online, https://letras-uruguay.espaciolatino.com/aaa/gonzalez_rouco_maria/alberto_novion.htm + +La Capital: Fotos de familia. El gran álbum de Mar del Plata. Online, https://www.lacapitalmdp.com/contenidos/fotosfamilia/fotos/8226Wikipedia. + +Alberto Novión. Online, https://es.wikipedia.org/wiki/Alberto_Novi%C3%B3n + +"""; + "https://viaf.org/viaf/53754721"; + "https://www.wikidata.org/wiki/Q5663380"; + "https://es.wikipedia.org/wiki/Alberto_Novi%C3%B3n"; + "1881-02-09"^^xsd:date; + "1881-02-09"^^xsd:date; + "1937-11-25"^^xsd:date; + "1937-11-25"^^xsd:date; + "Novión"; + "Alberto "; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alberto Novión.jpg"; + """Argentores. 1910-2000. 90 años. Semblanzas. Alberto Novión: Sociedad General de Autores de la Argentina 2000.

"""; + ; + . + + a ; + "Europe"; + "Germany"; + "2921044"; + "GER-00"; + 5.1e1; + 9.0e0; + "Q183"; + "https://en.wikipedia.org/wiki/Germany" . + + a ; + "Montevideo"; + "South America"; + "Uruguay"; + "3441575"; + "URY-Montvid-00"; + -3.48667e1; + -5.61667e1; + "Q1335"; + "https://en.wikipedia.org/wiki/Montevideo" . + + a ; + "other sources: 1834"; + "LucMan-00"; + "Own"; + "Stark, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321 Salles, Vicente. Épocas do Teatro no Grão-Pará ou apresentação do teatro de época.Tomo 1. Belém: Ed. UFPA, 1994.Sousa Bastos, A Carteira do Artista. Apontamentos para a História do TheatroPortuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898."; + "1833-01-01"^^xsd:date; + "1833-12-31"^^xsd:date; + "(There are texts that state that she was Italian, having arrived in Brazil with her father at the age of three. The most states that she was born in Lisbon, daughter of Italian parents.)"; + "1899-05-28"^^xsd:date; + "1899-05-28"^^xsd:date; + "Lucci"; + "Manuella"; + "1833"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuella Lucci.png"; + "Stark, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321"; + "Actress, Singer, Entrepreneur "; + ; + . + + a ; + "Los Angeles"; + "North America"; + "USA"; + "5368361"; + "USA-LosAng-00"; + "California"; + 3.41017e1; + -1.18327e2; + "Q65"; + "https://en.wikipedia.org/wiki/Los_Angeles" . + + a ; + 71; + "Theatre"; + ""; + "Hofoper Wien" . + + a ; + "Europe"; + "United Kingdom"; + "2635167"; + "UK-00"; + 5.22e1; + -1.22e0; + "Q145"; + "https://en.wikipedia.org/wiki/United_Kingdom" . + + a ; + "https://d-nb.info/gnd/1061552861"; + "BenJac-1252"; + "https://isni.org/isni/0000000119508339"; + "Tau Cooperation"; + ""; + """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/ben-ami-jacob.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.184. +Internet Broadway Database, Jacob Ben-Ami: https://www.ibdb.com/broadway-cast-staff/jacob-ben-ami-14154. +Anna Quindlen: \"Jacob Ben-Ami, Actor, Dies at 86; A Founder of Jewish Art Theater\", The New York Times, 1977-07-23: https://www.nytimes.com/1977/07/23/archives/jacob-benami-actor-dies-at-86-a-founder-of-jewish-art-theater.html +Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"""; + "https://viaf.org/de/viaf/68835836"; + "https://www.wikidata.org/wiki/Q24203455"; + "https://en.wikipedia.org/wiki/Jacob_Ben-Ami"; + "1890-12-23"^^xsd:date; + "1890-12-23"^^xsd:date; + "Buried in New York City"; + "1977-07-02"^^xsd:date; + "Ben-Ami"; + "Jacob"; + "1890-12-23"; + "1977-07-02"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-ben-ami-jacob.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/B/lex-ben-ami-jacob.jpg"; + ; + ; + "Jewish" . + + a ; + "WeiJos-3230"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weinstock-joseph.htm + +Center for Jewish History: https://archives.cjh.org/agents/people/121275 + +Kuligowska-Korzeniewska, Anna, and Edna Nahshon. “The Polish Shulamis: Jewish Drama On The Polish Stage In The Late 19th-Early 20th Centuries.” Jewish Theatre. vol. 8. United States: BRILL, 2009. p. 83.. + +Newspapers: + +The Hebrew Standarts, 13th June 1930, p.2: https://trove.nla.gov.au/newspaper/article/121835373?searchTerm=Joseph%20Weinstock + +Jewish Telegraphic Agency Archive : https://www.jta.org/archive/veteran-jewish-actor-drops-dead-in-milwaukee-theatre + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.69."""; + "http://viaf.org/viaf/279157132"; + "1858-04-19"^^xsd:date; + "1858-04-19"^^xsd:date; + "1930-04-02"^^xsd:date; + "1930-04-02"^^xsd:date; + "Weinstock"; + "Joseph"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Joseph Weinstock.png"; + "https://archives.cjh.org/repositories/7/archival_objects/1227196"; + ; + ; + "Jewish" . + + a ; + "Milan"; + "Europe"; + "Italy"; + "3173435"; + "IT-Mila-00"; + 4.54669e1; + 9.19e0; + "Q490"; + "https://en.wikipedia.org/wiki/Milan" . + + a ; + "Place of burial: Lodz Jewish cemetery"; + "FeiSig-714"; + "https://isni.org/isni/0000000408226725"; + "Tau Cooperation"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/F/feinman-sigmund.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 4, New York: 1963, p.2544."""; + "http://viaf.org/viaf/300742204"; + "https://www.wikidata.org/wiki/Q18821878"; + "1862-04-28"^^xsd:date; + "1862-04-28"^^xsd:date; + "Buried in Lodz Jewish cemetery"; + "1909-07-01"^^xsd:date; + "1909-07-01"^^xsd:date; + "Feinman"; + "Sigmund"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Captura de Tela 2025-07-07 às 20.44.19.png"; + "https://archives.cjh.org/repositories/7/archival_objects/1285949"; + ; + ; + "Jewish" . + + a ; + "AreEnr-00"; + "Own"; + """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. + +Ediciones del Carro de Tespis 1961.“Enrique Arellano”. Revista Chantecler: No 12, Córdoba, 1912, [Online Edition]: https://archivoteatrodecordoba.artes.unc.edu.ar/enrique-arellano-revista-chantecler-no12-cordoba-1912/ + +Patricia Verónica Fischer, “Elías Alipi” in: Osvaldo Pellettieri (dir): De Eduardo de Filippo a Tita Merello. Del cómico italiano al ‘actor nacional’ argentino. Buenos Aires: Galerna 2003. + +Jorge Dubatti: Cien años de teatro argentino. Desde 1910 hasta nuestros días, Buenos Aires: Editorial Biblios 2012. + +Wikipedia. Enrique Arellano, online: https://es.wikipedia.org/wiki/Enrique_Arellano + +“Pepe Cibrián y Ana María Campoy”, online: https://trujaman.net/2021/03/06/pepe-cibrian-y-ana-maria-campoy/"""; + "www.wikidata.org/wiki/Q5833033"; + "https://es.wikipedia.org/wiki/Enrique_Arellano"; + "1876-10-02"^^xsd:date; + "1876-10-02"^^xsd:date; + "1945-08-23"^^xsd:date; + "1945-08-23"^^xsd:date; + "Arellano"; + "Enrique"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + ; + . + + a ; + "https://d-nb.info/gnd/173483437"; + "YouBer-3320"; + "https://isni.org/isni/0000000403632783"; + "Tau Cooperation"; + "http://id.loc.gov/authorities/names/nr2003000574"; + ""; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Y/young-bernard.htm + +Leksikon Fun Der Nayer Yidisher Literatur: https://congressforjewishculture.org/people/3926/Young,%20Boaz%20(March%201870%E2%80%93December%2020,%201955) + +Mayn lebn in teatr (My Life in the Theatre), Bernard Young, 1950: https://archive.org/details/nybc207961/page/n17/mode/2up  + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.914."""; + "http://viaf.org/viaf/19618884"; + "https://www.wikidata.org/wiki/Q4931569"; + "https://en.wikipedia.org/wiki/Boaz_Young"; + "1870-03-01"^^xsd:date; + "1870-03-31"^^xsd:date; + "1955-12-20"^^xsd:date; + "1955-12-20"^^xsd:date; + "Young"; + "Bernard"; + "March 1870"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Boaz Young1.png"; + "Mayn lebn in teatr (My Life in the Theatre), Bernard Young, 1950: https://archive.org/details/nybc207961/page/n17/mode/2up"; + ; + ; + "Jewish" . + + a ; + 1101; + "Company"; + ""; + "Bandmann-Beaudet Company" . + + a ; + "PynMar-00"; + "Own"; + "Birth name"; + "Englishromanticopera(ed.): The Pyne SistersMary Ann, Susan, Louisa, https://www.englishromanticopera.org/singers/Pyne_Sisters.htm."; + "1819-01-01"^^xsd:date; + "1819-12-31"^^xsd:date; + "1892-03-01"^^xsd:date; + "1892-03-31"^^xsd:date; + "Pyne"; + "Mary Ann"; + "1819"; + "March 1892"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Musician, Singer,Theatre Teacher, Manager"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01340457"; + "https://d-nb.info/gnd/116760206"; + "MarMat-00"; + "https://isni.org/isni/0000000368513040"; + "Own"; + "https://lccn.loc.gov/no88000133"; + "https://snaccooperative.org/ark:/99166/w60p19tk"; + "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2908-2909.Frost, Reinhard: Marchesi, Mathilde. Artikel aus der Frankfurter Biographie (1994/96) in: Frankfurter Personenlexikon (Onlineausgabe), https://frankfurter-personenlexikon.de/node/448"; + "https://viaf.org/viaf/9929266"; + "https://www.wikidata.org/wiki/Q437075"; + "https://en.wikipedia.org/wiki/Mathilde_Marchesi"; + "1821-03-24"^^xsd:date; + "1821-03-24"^^xsd:date; + "1913-11-17"^^xsd:date; + "1913-11-17"^^xsd:date; + "Marchesi"; + "Mathilde"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Matilde_Marchesi.jpg"; + "https://www.wikidata.org/wiki/Q437075#/media/File:Matilde_Marchesi.jpg"; + "singer, singing teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/1192844165"; + "PinAnt-00"; + "https://isni.org/isni/0000000067800142"; + "Own"; + "http://id.loc.gov/authorities/names/no98103852"; + "Birth name"; + "http://n2t.net/ark:/99166/w64c7b6b"; + "Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198"; + "http://viaf.org/viaf/56234964"; + "https://www.wikidata.org/wiki/Q9619981"; + "https://pt.wikipedia.org/wiki/Ant%C3%B3nio_Pinheiro"; + "1867-11-21"^^xsd:date; + "1867-11-21"^^xsd:date; + "1943-03-02"^^xsd:date; + "1943-03-02"^^xsd:date; + "Pinheiro "; + "António"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/António_Pinheiro.jpg"; + "https://www.wikidata.org/wiki/Q9619981"; + "Actor, Director, Theatre Teacher, Technician, Impresario"; + ; + . + + a ; + "HelJac-00"; + "Own"; + "Ferreira, Aléxia Lorrana Silva. Jacinto Heller: Repertório de um empresário teatral (1875-1885). In.: Cadernos Letra e Ato, v.6, n.6: Unicamp publionline: Campinas, 2016, p.28-41: https://www.publionline.iar.unicamp.br/index.php/letraeato/article/view/585 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Bastos, Sousa. A Carteira do Artista. Apontamentos para a História do Theatro Portuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898.(Newspapers of Hemeroteca Nacional Website):Correio da Manhã. 12th September 1931. Ed.11271, Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_04&pesq=%22jacintho%20heller%22&pasta=ano%20193&hf=memoria.bn.br&pagfis=8507 Jornal do Brasil. 20th June 1905. Ed. 00171, Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=030015_02&pesq=%22jacintho%20heller%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=16856 Jornal do Brasil. 6th November 1909. Ed. 00310, Rio de Janeiro, p.12:https://memoria.bn.br/DocReader/DocReader.aspx?bib=030015_02&pesq=%22jacintho%20heller%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=35226Correio Mercantil, e Instructivo, Politico, Universal. 18th July 1855. Ed. 00207, Rio de Janeiro, p.3. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=10690 Correio Mercantil, e Instructivo, Politico, Universal. 24th January 1856. Ed. 00024, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=11417 Correio Mercantil, e Instructivo, Politico, Universal. 23th March 1856. Ed. 00082, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=11651 Correio Mercantil, e Instructivo, Politico, Universal. 10th August 1856. Ed. 00229, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=12243 Correio Mercantil, e Instructivo, Politico, Universal. 2nd Juny 1858. Ed. 00149, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=14801 Correio Mercantil, e Instructivo, Politico, Universal. 20th November 1863. Ed. 00319, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280"; + "https://www.wikidata.org/wiki/Q56727129"; + "1834-03-04"^^xsd:date; + "1834-03-04"^^xsd:date; + "Cemetery São João Batista, Rio de Janeiro"; + "1909-11-05"^^xsd:date; + "1909-11-05"^^xsd:date; + "Heller"; + "Jacinto"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/8032R_-_Jacinto_Heller(Empr._Theatral)_-_01,_Acervo_do_Museu_Paulista_da_USP.jpg"; + "https://www.wikidata.org/wiki/Q56727129"; + "Actor, Director"; + ; + . + + a ; + "Madrid"; + "Europe"; + "Spain"; + "3117735"; + "ES-Mad-00"; + 4.04167e1; + -3.71667e0; + "Q2807"; + "https://en.wikipedia.org/wiki/Madrid" . + + a ; + "Place of Burial: Sleepy Hollow Cemetery, NY"; + "https://d-nb.info/gnd/116215119"; + "BodArt-00"; + """https://isni.org/isni/ 0000000081386865 """; + "Own"; + "https://lccn.loc.gov/no89002518"; + "https://snaccooperative.org/ark:/99166/w6ww7m1d#resources"; + """MGG Online: https://www.mgg-online.com/articles/mgg01698/1.0/mgg01698Österreichisches + +Österreichisches Musiklexikon Online: https://musiklexikon.ac.at/ml/musik_B/Bodanzky_Brueder.xml + +Beaumont, Anthony (2000). “Zemlinsky”. Ithaca, NY: Cornell University Press. ISBN 0-8014-3803-9. + +Horowitz, Joseph (2005). Classical Music in America: A History of Its Rise and Fall. New York, NY: W. W. Norton and Company. ISBN 0-393-05717-8. + +Kwasny, Ralf; Ullrich Scheideler. \"... und dem künstlerisch Mutigen fühle ich mich verwandt.\" Arnold Schönberg und sein früher Förderer Artur Bodanzky, in: ÖMZ 56 (2001), H. 3-4, S. 28–39. + +Nedbal, Martin; Czech-German Collaborations at the Metropolitan Opera in the Early Twentieth Century. Journal of Austrian-American History 18 May 2022; 6 (1): 14–43. doi: https://doi.org/10.5325/jaustamerhist.6.1.0014 + +Mugmon, Matthew. Aaron Copland and the American Legacy of Gustav Mahler. NED-New edition. Boydell & Brewer, 2019. + + +"""; + "https://viaf.org/viaf/59288996"; + "https://www.wikidata.org/wiki/Q714276"; + "https://en.wikipedia.org/wiki/Artur_Bodanzky"; + "1877-12-16"^^xsd:date; + "1877-12-16"^^xsd:date; + "1939-11-23"^^xsd:date; + "1939-11-23"^^xsd:date; + "Bodanzky"; + "Artur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Artur_Bodanzky,_by_Herman_Mishkin.jpg"; + "https://www.wikidata.org/wiki/Q714276#/media/File:Artur_Bodanzky,_by_Herman_Mishkin.jpg"; + "Violinist, Conductor"; + ; + ; + "Jewish" . + + a ; + "Prague"; + "Europe"; + "Czech Republic"; + "3067696"; + "CZ-Prag-00"; + 5.00833e1; + 1.44167e1; + "Q1085"; + "https://en.wikipedia.org/wiki/Prague" . + + a ; + "Łódź"; + "Europe"; + "Poland"; + "3093133"; + "PL-Lod-00"; + 5.175e1; + 1.94667e1; + "Q580"; + "https://en.wikipedia.org/wiki/%C5%81%C3%B3d%C5%BA" . + + a ; + "CunAnt-00"; + "https://isni.org/page/search-database/"; + "Own"; + "https://www.loc.gov/search/?all=True&q=Antonio+Cunill+Cabanellas&st=li"; + "Birth name"; + """Primera Plana, “Teatro. El creador de la Comedia Nacional, Antonio Cunill Cabanellas”, 21. June 1966 https://www.magicasruinas.com.ar/revistero/1/cunill-cabanellas.htm . + +Antonio Cunill Cabanellas https://es.wikipedia.org/wiki/Antonio_Cunill_Cabanellas   + +Aporte de Cunill Cabanellas https://www.argentina.gob.ar/cultura/teatrocervantes/historia/cunill + +Conrado Ramonet, “Notas sobre la relación entre Adriá Gual y Antoni Cunill i Cabanellas” file:///C:/Users/ra78hon/Downloads/145348-Text%20de%20l'article-247994-1-10-20100520.pdf + +Antonio Cunill Cabanellas https://www.ecured.cu/Antonio_Cunill_Cabanellas  + +Antonio Cunill Cabanellas, online: https://www.ecured.cu/Antonio_Cunill_Cabanellas """; + "https://viaf.org/viaf/16175631/#Cunill_Cabanellas,_Antonio,_1894-1969"; + "https://www.wikidata.org/wiki/Q4776556"; + "https://en.wikipedia.org/wiki/Antonio_Cunill_Cabanellas"; + "1894-08-27"^^xsd:date; + "1894-08-27"^^xsd:date; + "1969-02-18"^^xsd:date; + "1969-02-18"^^xsd:date; + "Cunill Cabanellas"; + "Antonio"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Antonio_Cunill_Cabanellas.jpg"; + "https://es.wikipedia.org/wiki/Antonio_Cunill_Cabanellas"; + "Playwright, Actor, Director"; + ; + . + + a ; + "Saint Petersburg"; + "Europe"; + "Russia"; + "498817"; + "RU-StPet-00"; + 5.99375e1; + 3.03086e1; + "Q656"; + "https://en.wikipedia.org/wiki/Saint_Petersburg" . + + a ; + 1098; + "Theatre"; + ""; + "Opera House" . + + a ; + "-"; + "Place of Burial: Jewish Cemetery in Queens"; + "-"; + "WalSau-3206"; + "-"; + "Tau Cooperation"; + "-"; + ""; + "-"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-saul.htm + +In the Jewish Cemetery in Queens Journal - Grand Street, Vol. 9, No. 3 (Spring, 1990), pp. 174-181 : https://www.jstor.org/stable/25007379 + +Belling, Veronica-Sue. THE HISTORY OF YIDDISH THEATRE IN SOUTH AFRICA FROM THE LATE NINETEENTH CENTURY TO 1960, Dissertation submitted in fulfilment of the requirements for the award of the degree of Master of Arts in Jewish Civilization, Department of Hebrew and Jewish Studies, Faculty of the Humanities, University of Cape Town, 2003. https://open.uct.ac.za/items/86e0d713-7c23-4efc-b272-d84752e3668d + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.649."""; + "-"; + "-"; + "-"; + "1873-02-03"^^xsd:date; + "1873-02-03"^^xsd:date; + "1933-03-13"^^xsd:date; + "1933-03-13"^^xsd:date; + "Wallerstein"; + "Saul"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-wallerstein-saul.jpg"; + "https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-saul.htm"; + ; + ; + "Jewish" . + + a ; + "other sources: 9 April 1943"; + "BroFra-00"; + "Own"; + "Birth name"; + """Laura Mogliani: \"Frank Brown, un clown inglés en Buenos Aires\", en Historia del circo en Buenos Aires: de los volatineros a la formación universitaria. Universidad Nacional Tres de Febrero 2017. PP. 37-49 + +Beatriz Seibel: Vida de circo. Rosita de la Plata. Una estrella argentina en el mundo, Buenos Aires: Ed. Corregidor 2012 + +Raúl H. Castagnino: El circo criollo, Buenos Aires: Ed. Plus Ultra 1969 + +Rubén Darío, “Frank Brown. (Medalla)” in: 3.1897 Buenos Aires: April, 18 1897. P.12 + +La vida de Rubén Darío: Wikisource, https://es.wikisource.org/wiki/La_vida_de_Rub%C3%A9n_Dar%C3%ADo:_XLVIIAtlántida. + +Ilustración Semanal Argentina. Buenos Aires: 24th April 1924. Year VII. N° 316. P.26 + +Fray Mocho. “El campeón tirador de chocolate. Frank Brown entrevistado por Fray Mocho”. 1912. P.55-57. + +Martín Fierro. Segunda época. Buenos Aires: 20th March 1924. Year 1 N° 2. P. 12 + +Mundo Argentino. “El señor Frank Brown. Rosita de la Plata, su compañera del circo y de la vida, es la última persona que ríe con Frank Brown”, Buenos Aires: 20th July 1931. N° 1069. P. 14-15 + +The Standard. “Frank Brown of Circus Fame”, Buenos Aires: 1st May 1930. P.73"""; + "https://www.wikidata.org/wiki/Q2889120"; + "https://en.wikipedia.org/wiki/Frank_Brown_(entertainer)"; + "1858-09-06"^^xsd:date; + "1858-09-06"^^xsd:date; + "1943-04-24"^^xsd:date; + "1943-04-24"^^xsd:date; + "Brown"; + "Frank"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/frank_brown.jpg"; + "https://www.infobae.com/sociedad/2021/04/09"; + "Circus Performer,Director,Founder,Impresario"; + ; + . + + a ; + "MccJoh-00"; + "https://isni.org/isni/0000000052704326"; + "Own"; + "http://id.loc.gov/authorities/names/nr2002042852"; + "https://snaccooperative.org/ark:/99166/w6gh9kwf"; + "Liz Evers: McCullough, John Edward, in Dictionary of Irish biography, 2019, https://doi.org/10.3318/dib.010107.v1. William Winter: In Memory of John McCullough. New York: De Vinne Press, 1889. "; + "http://viaf.org/viaf/24540331"; + "https://www.wikidata.org/wiki/Q6231329"; + "https://en.wikipedia.org/wiki/John_McCullough_(actor)"; + "1832-11-14"^^xsd:date; + "1832-11-14"^^xsd:date; + "1885-11-08"^^xsd:date; + "1885-11-08"^^xsd:date; + "McCullough"; + "John"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-John_Edward_McCullough.jpg"; + "https://en.wikipedia.org/wiki/John_McCullough_(actor)#/media/File:John_Edward_McCullough.jpg"; + ; + . + + a ; + "Boston"; + "North America"; + "USA"; + "4930956"; + "USA-Bost-00"; + "Massachusetts"; + 4.23581e1; + -7.106359999999999e1; + "Q100"; + "https://en.wikipedia.org/wiki/Boston" . + + a ; + "Hamburg"; + "Europe"; + "Germany"; + "2911298"; + "GER-HH-00"; + 5.35653e1; + 1.00014e1; + "Q1055"; + "https://en.wikipedia.org/wiki/Hamburg" . + + a ; + "Leipzig"; + "Europe"; + "Germany"; + "2879139"; + "GER-Leip-00"; + 5.13333e1; + 1.23833e1; + "Q2079"; + "https://en.wikipedia.org/wiki/Leipzig" . + + a ; + "San Francisco"; + "North America"; + "USA"; + "5391959"; + "USA-SanFranc-02"; + "California"; + 3.77775e1; + -1.22416e2; + "Q62"; + "https://en.wikipedia.org/wiki/San_Francisco" . + + a ; + "Munich"; + "Europe"; + "Germany"; + "2867714"; + "GER-MUC-00"; + 4.81333e1; + 1.15667e1; + "Q1726"; + "https://en.wikipedia.org/wiki/Munich" . + + a ; + "Lviv"; + "Europe"; + "Ukraine"; + "702550"; + "UA-Lv-00"; + 4.983e1; + 2.40142e1; + "Q36036"; + "https://en.wikipedia.org/wiki/Lviv" . + + a ; + "Dresden"; + "Europe"; + "Germany"; + "2935022"; + "GER-Dresd-00"; + 5.105e1; + 1.374e1; + "Q1731"; + "https://en.wikipedia.org/wiki/Dresden" . + + a ; + "Odesa"; + "Europe"; + "Ukraine"; + "698740"; + "UA-Od-00"; + 4.64857e1; + 3.07434e1; + "Q1874"; + "https://en.wikipedia.org/wiki/Odessa" . + + a ; + "Philadelphia"; + "North America"; + "USA"; + "4560349"; + "USA-Phila-00"; + "Pennsylvania"; + 3.99528e1; + -7.51636e1; + "Q1345"; + "https://en.wikipedia.org/wiki/Philadelphia" . + + a ; + "https://d-nb.info/gnd/11669517X"; + "GodAra-00"; + "https://isni.org/isni/0000000066775037"; + "Own"; + "http://id.loc.gov/authorities/names/no2009050527"; + "Birth name"; + "http://n2t.net/ark:/99166/w64f22j9"; + """# +Sophie Drinker Institut. Markus Gärtner: Europäische Instrumentalistinnen des 18. und 19. Jahrhunderts, https://www.sophie-drinker-institut.de/goddard-arabella. +# +Hongyu Gong: “Beginnings of Beethoven in Shanghai (1861-1880)”, in Musicology in China, 2016, Issue 1, pp.36-43. +# +Melanie Spanswick: British female pianists and teachers: Arabella Goddard, https://melaniespanswick.com/2012/04/01/british-female-pianists-and-teachers-arabella-goddard/."""; + "https://viaf.org/viaf/52448227/"; + "https://www.wikidata.org/wiki/Q4783331"; + "https://en.wikipedia.org/wiki/Arabella_Goddard"; + "1836-01-12"^^xsd:date; + "1836-01-12"^^xsd:date; + "1922-04-06"^^xsd:date; + "1922-04-06"^^xsd:date; + "Goddard"; + "Arabella"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/800px-Arabella_Goddard.jpg"; + "https://en.wikipedia.org/wiki/Arabella_Goddard#/media/File:Arabella_Goddard.jpg"; + "Musician, Composer, Theatre Teacher"; + . + + a ; + "Hollywood (Los Angeles)"; + "North America"; + "USA"; + "5357527"; + "USA-Holly-00"; + "California"; + 3.40926e1; + -1.1832e2; + "Q34006"; + "https://en.wikipedia.org/wiki/Hollywood,_Los_Angeles" . + + a ; + "https://d-nb.info/gnd/118652613"; + "BarVic-00"; + "https://isni.org/isni/0000000009056829"; + "Own"; + "http://n2t.net/ark:/99166/w63v18bj"; + """Berst, Julius l: Odyssee eines Theatermannes. Erinnerungen aus 7 Jahrzehnten. Berlin- +Grunewald: arani 1963. + +Berstl, Julius (Hrsg.): 25 Jahre Berliner Theater und Victor Barnowsky. Gustav Kiepenheuer, Berlin 1930. + +Margot Berthold, \"Barnowsky, Viktor\" in: Neue Deutsche Biographie 1, Historische Kommission bei der Bayrischen Akademie der Wissenschaften [ed.], Duncker&Humboldt: Berlin, 1953, p. 596, Online-Edition, https://www.deutsche-biographie.de/pnd118652613.html#ndbcontent. + + +"""; + "https://viaf.org/viaf/3481149068531965730003"; + "https://www.wikidata.org/wiki/Q2522209"; + "https://de.wikipedia.org/wiki/Victor_Barnowsky"; + "1875-09-10"^^xsd:date; + "1875-09-10"^^xsd:date; + "1952-08-09"^^xsd:date; + "1952-08-09"^^xsd:date; + "Barnowsky"; + "Victor"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Barnowsky_(BerlLeben_1908-05).jpg"; + "https://commons.wikimedia.org/wiki/File:Victor_Barnowsky_(BerlLeben_1908-05).jpg"; + "Actor, Theater director"; + ; + . + + a ; + "1850-01-01- 1850-12-31"; + "GalMar-00"; + "Own"; + "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.José Antonio Saldías: Figuras del teatro argentino a fines del siglo XIX: Mariano Galé, Volume 2: Centro de Estudiantes, Fac. de Filosofía y Letras 1985José Antonio Saldías: Mariano Galé: benemérito del teatro argentino: Instituto Nacional de Estudios de Teatro: Volume 22 1947"; + "1922-10-11"^^xsd:date; + "Galé"; + "Mariano"; + "1850"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Galé_Mariano.jpg"; + ; + . + + a ; + 1083; + "Theatre"; + ""; + "Grand Opera House" . + + a ; + "other dates: 01.01.1855"; + "-"; + "other dates: 31 March 1926, Place of Burial: Mount Carmel Cemetery"; + " http://d-nb.info/gnd/118643878"; + "AdlJac-706"; + "https://isni.org/isni/0000000066761831"; + "Tau Cooperation"; + "https://lccn.loc.gov/n86124164"; + ""; + "http://n2t.net/ark:/99166/w6hx1x7g"; + """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-jacob-p.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.13."""; + "http://viaf.org/viaf/30330277"; + "https://www.wikidata.org/wiki/Q2660878"; + "https://en.wikipedia.org/wiki/Jacob_Pavlovich_Adler"; + "1855-02-12"^^xsd:date; + "1855-02-12"^^xsd:date; + "Buried in Mount Carmel Cemetery, New York"; + "1926-04-01"^^xsd:date; + "1926-04-01"^^xsd:date; + "Adler"; + "Jacob P."; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Jacob_Adler.jpg"; + "https://www.wikidata.org/wiki/Q2660878#/media/File:Jacob_Adler.jpg"; + ; + ; + "Jewish" . + + a ; + "SimLuc-00"; + "Own"; + """Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198 Junior, Luiz Americo Lisboa. Teatro português no Brasil : do Império à Primeira República. Master thesis (Mestrado em História, na especialidade de História e Cultura do Brasil) – Faculdade de Letras of University of Lisbon. Lisbon, 2020: http://hdl.handle.net/10451/44149  Simões, Lucinda. Memorieas: factos e impressões. SA Litho-Typographia Fluminese, 1922: https://books.google.de/books?id=oW8yAQAAMAAJ&printsec=frontcover&hl=pt-BR&source=gbs_ge_summary_r&cad=0 +v=onepage&q&f=false (Portuguese National Library):O povo do Algarve. 6th July 1917. Ed. 94. Tavira, p.3.https://bndigital.bnportugal.gov.pt/viewer/180622?medianame=374670_1917-07-06_000003&q=%22lucinda%20sim%C3%B5es%22 +page=3&viewer=picture&o=search&n=0&q=%22lucinda%20sim%C3%B5es%22 O povo do Algarve. 20th July 1917. Ed. 96. Tavira, p.1.https://bndigital.bnportugal.gov.pt/viewer/180650?medianame=374670_1917-07-20_000001&q=%22lucinda%20sim%C3%B5es%22%20%221917%22 +page=1&viewer=picture&o=search&n=0&q=%22lucinda%20sim%C3%B5es%22%20%221917%22 (Newspapers of Hemeroteca Nacional Website):Diário do Rio De Janeiro. Year 55, Number 143, Rio de Janeiro, 26.05.1872: http://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pagfis=28788 O Paiz. 18th October 1919. Ed. 12791. Rio de Janeiro, p. 4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&Pesq=%22lucinda%20sim%c3%b5es%22%20%221917%22&pagfis=44684 A Tribuna. 24th November 1922. Ed. 00242. São Paulo, p. 9:https://memoria.bn.br/DocReader/DocReader.aspx?bib=153931_00&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=47697 Pacotilha. 27th October 1920. Ed. 00254. São Luiz, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=168319_02&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=13943 Pacotilha. 19th Dezember 1922. Ed. 00297. São Luiz, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=168319_02&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=16584Gazeta de Notícias. 12th March 1917. Ed. 00071. Rio de Janeiro, p.6: https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&am"""; + "https://www.wikidata.org/wiki/Q104322025 "; + "https://en.wikipedia.org/wiki/Lucinda_Sim%C3%B5es"; + "1850-12-17"^^xsd:date; + "1850-12-17"^^xsd:date; + "1928-05-21"^^xsd:date; + "1928-05-21"^^xsd:date; + "Simões"; + "Lucinda"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lucinda_Simões_-_Teatro_D._Maria_II.jpg"; + "https://www.wikidata.org/wiki/Q104322025"; + "Actress, Director, Entrepreneur, Declamation Teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/118656651"; + "BerJul-00"; + "https://isni.org/isni/0000000114410666"; + "Own"; + "https://lccn.loc.gov/nr99024646"; + """Berst, Julius l: Odyssee eines Theatermannes. Erinnerungen aus 7 Jahrzehnten. Berlin-Grunewald: arani 1963. + +Fischer, Ernst: Verleger, Buchhändler und Antiquare Aus Deutschland und Österreich in der Emigration Nach 1933: Ein Biographisches Handbuch. Berlin/Boston: Walter de Gruyter GmbH, 2020. +"""; + "https://viaf.org/viaf/32790153"; + "https://www.wikidata.org/wiki/Q1328402"; + "https://de.wikipedia.org/wiki/Julius_Berstl"; + "1883-08-06"^^xsd:date; + "1883-08-06"^^xsd:date; + "1975-12-08"^^xsd:date; + "1975-12-08"^^xsd:date; + "Berstl"; + "Julius"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/b6ea9648-6b48-4be9-a359-75a2f2dc4f98.avif"; + "https://www.berliner-zeitung.de/kultur-vergnuegen/literatur/schlimme-zeiten-julius-berstls-grossartiger-roman-berlin-schlesischer-bahnhof-li.287502"; + "Writer"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01439117"; + "Place of Burial: Villa Wahnfried in Bayreuth, Germany"; + "https://d-nb.info/gnd/118594117"; + "WagRic-00"; + "https://isni.org/isni/0000000122779084"; + "Own"; + "https://lccn.loc.gov/n79089831"; + "https://snaccooperative.org/ark:/99166/w6f769wx"; + """Wagner, Richard. My Life, 1813-1883. Vol.1. New York : Dodd, Mead and Company, 1911: https://archive.org/details/mylifewagner01wagniala/page/n9/mode/2up +Wagner, Richard. My Life, 1813-1883. Vol.2. New York : Dodd, Mead and Company, 1911: https://archive.org/details/myliferichwagner02wagnuoft + +Richard Wagner Museum - Luzern: https://www.richard-wagner-museum.ch/geschichte/tribschener-zeit/Richard Wagner Verband International e.V. Über Richard Wagner: https://www.richard-wagner.org/rwvi/de/richard-wagner/ueber-rw/ + +LEMO - Lebendiges Museum Online: https://www.dhm.de/lemo/biografie/richard-wagner +Wagnermania. Vol. 276. Zaragoza, 2023: http://www.wagnermania.com/biografia/ """; + "https://viaf.org/viaf/29732107"; + "https://www.wikidata.org/wiki/Q1511"; + "https://en.wikipedia.org/wiki/Richard_Wagner"; + "1813-05-22"^^xsd:date; + "1813-05-22"^^xsd:date; + "1883-02-13"^^xsd:date; + "1883-02-13"^^xsd:date; + "Wagner"; + "Richard"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Wagner_Richard.jpg"; + "https://de.wikipedia.org/wiki/Richard_Wagner"; + "Composer, Conducter, Theater Director"; + ; + ; + "Christian" . + + a ; + "https://d-nb.info/gnd/1272648788"; + "HerAde-00"; + "https://isni.org/isni/0000000053522196"; + "Own"; + "https://lccn.loc.gov/no2005100154"; + "https://viaf.org/viaf/4670295/"; + "https://en.wikipedia.org/wiki/Adelaide_Herrmann"; + "https://en.wikipedia.org/wiki/Adelaide_Herrmann"; + "1853-08-11"^^xsd:date; + "1853-08-11"^^xsd:date; + "The Queen of Magic in 1899, buried in Woodlawn Cemetery in New York"; + "1932-02-19"^^xsd:date; + "1932-02-19"^^xsd:date; + "Herrmann"; + "Adelaide"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Adelaide Herrmann.jpg"; + "https://commons.wikimedia.org/wiki/File:Adelaide_Herrmann,_head-and-shoulders_portrait,_facing_right_LCCN94500214.jpg"; + "Dancer, Circus Performer,Magician"; + ; + ; + "Christian" . + + a ; + "other sources: 23.05.1823, 23.05.1827"; + "http://data.cerl.org/thesaurus/cnp00651797"; + "other source: 08 April 1890"; + "https://d-nb.info/gnd/1200564383"; + "StrFri-00"; + "https://isni.org/isni/0000000013676000"; + "Own"; + "Birth name"; + """Ludwig Eisenberg: Ludwig Eisenberg’s Großes Biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert, Leipzig: Verlagsbuchhandlung Paul List 1903, pp. 1008-1009.  +Alexander von Weilen, „Friedrich Strampfer“ in: Allgemeine Deutsche Biographie 36, Historische Kommission bei der Königlichen Akademie der Wissenschaften [ed.], Duncker&Humboldt: Leipzig, 1893, pp. 496-497 [Online-Edition], https://www.deutsche-biographie.de/sfz81647.html#adbcontent +A. Heinrich: Almanach für Freunde der Schauspielkunst 12–17, Berlin: Self-published, 1849–1853. +A. Heinrich: Deutscher Bühnenalmanach 18–23,Berlin: Kommissions-Verlag Laffar, 1854–1859. +Ingrid Bigler-Marschall, „Strampfer, Friedrich (Ernst Wolfgang)“ in: Deutsches Theaterlexikon 4, Wilhelm Kosch (ed.), München: K. G. Saur Verlag, 1998, p.2381.  +Constantin von Wurzbach: Biographisches Lexikon des Kaiserthums Oesterreich: enthaltend die Lebensskizzen der denkwürdigen Personen, welche 1750 bis 1850 im Kaiserstaate und in seinen Kronländern gelebt haben 39, Wien: kaiserlich-königliche Hof- und Staatsdruckerei, 1879, pp. 232-237. +"""; + "http://viaf.org/viaf/30309929"; + "https://www.wikidata.org/wiki/Q27598665"; + "https://en.wikipedia.org/wiki/Friedrich_Strampfer"; + "1823-07-24"^^xsd:date; + "1823-07-24"^^xsd:date; + "1890-04-07"^^xsd:date; + "1890-04-07"^^xsd:date; + "Strampfer"; + "Friedrich"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Friedrich_Strampfer_Wien_Museum_Online_Sammlung_49786_372_1.jpg"; + """Wiener Museum, Inv. Nr. 49786_372 +"""; + "Actor, Impresario, Director, Reciter, Farmer,Theatre Teacher"; + ; + ; + "Christian" . + + a ; + "Chicago"; + "North America"; + "USA"; + "4887398"; + "USA-CHIC-00"; + "Illinois"; + 4.18819e1; + -8.762779999999999e1; + "Q1297"; + "https://en.wikipedia.org/wiki/Chicago" . + + a ; + "https://data.cerl.org/thesaurus/cnp00538806"; + "https://d-nb.info/gnd/118804375"; + "ViaPau-00"; + "https://isni.org/isni/000000010915619X"; + "Own"; + "https://lccn.loc.gov/n50019659"; + "https://snaccooperative.org/ark:/99166/w6251w1r#resources"; + "Research project: Pauline Viardot- Orte und Wege europäischer Kulturvermittlung durch Musik,  https://www.pauline-viardot.de/index.html Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 4887-4889. Beatrix Borchard: „Erben, weitertragen, verwandeln – der Weg zur Selbstbestimmung einer Sängerin. Pauline Viardot-Garcia (1821–1910)“ in: Nicole K. Strohmann und Antje Tumat (edd.); with the cooperation of Lukas Kurz and Juana Zimmermann: Bühnenrollen und Identitätskonzepte. Karrierestrategien von Künstlerinnen im Theater des 19. Jahrhunderts, Hannover: 2016, pp. 73–91. Beatrix Borchard: Pauline Viardot-Garcia: Fülle des Lebens. Köln: Böhlau 2016.Volker Hagedorn: Pauline Viardot-García: Schluss mit Diva und Deko. Zum 200. Geburtstag von Pauline Viardot-García: Sie erweiterte die Möglichkeiten der weiblichen Stimme.  in: Die Zeit, 04. Januar 2021, Hamburg: 2021. https://www.zeit.de/2021/01/pauline-viardot-garcia-opernsaengerin-musik-komponistinPauline Viardot-García:  Pauline Viardot - Julius Rietz : Der Briefwechsel 1858 - 1874, Beatrix Borchard, Miriam-Alexandra Wigbers (edd.),Hildesheim: Olms, 2021."; + "https://viaf.org/viaf/73929645"; + "https://www.wikidata.org/wiki/Q122998"; + "https://en.wikipedia.org/wiki/Pauline_Viardot"; + "1821-07-18"^^xsd:date; + "1821-07-18"^^xsd:date; + "Concert and opera tours to London, Wien, Prag, Berlin, Dresden, Weimar, Pest and Dublin. Burried at Paris, Montmartre (catholic)"; + "1910-05-18"^^xsd:date; + "1910-05-18"^^xsd:date; + "Viardot-García"; + "Pauline"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Pauline_Viardot-Garcia_3.jpg"; + "https://www.wikidata.org/wiki/Q122998#/media/File:Pauline_Viardot-Garcia_3.jpg "; + "Singer, Composer, Musician, Teacher (Theatre-related), Editor"; + ; + . + + a ; + "https://d-nb.info/gnd/119119013"; + "GolAbr-00"; + " https://isni.org/isni/0000000081463621"; + "Own"; + "https://lccn.loc.gov/n87933242"; + "https://snaccooperative.org/ark:/99166/w60k2c91#resources"; + "Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldfaden-abraham.htm"; + "https://viaf.org/viaf/66613610"; + "https://www.wikidata.org/wiki/Q330024"; + "https://en.wikipedia.org/wiki/Abraham_Goldfaden"; + "1840-07-24"^^xsd:date; + "1840-07-24"^^xsd:date; + "Consider the Father of Yiddish Theater"; + "1908-01-09"^^xsd:date; + "1908-01-09"^^xsd:date; + "Goldfaden"; + "Abraham"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Abraham_Goldfaden.png"; + "https://www.wikidata.org/wiki/Q330024#/media/File:Abraham_Goldfaden.png"; + "Poet, Playwright, Director, Actor, Dramatist, Composer, Scenic Designer, Acting Instructor, Impresario"; + ; + ; + "Jewish, Other" . + + a ; + "http://d-nb.info/gnd/1073481700"; + "NapArt-00"; + "https://isni.org/isni/0000000083655993 "; + "Own"; + "http://id.loc.gov/authorities/names/n83127010"; + "https://isni.org/isni/0000000083655993 "; + "Frias, Visconte Sanches de. Arthur Napoleão: Resenha comemorativa de sua vida pessoal e artística (1845-1922). Lisbon, 1913:https://archive.org/details/arthurnapoleaore00fria/page/n7/mode/2up  Salgado, Suzana. The Teatro Solis: 150 years of Opera, Concert and Ballet in Montevideo. USA: Wesleyan University Press, 2003. Brazilian Music Academy, „Patronos: Arthur Napoleão“, online source: https://abmusica.org.br/academicos/#patronos (Newspapers of Hemeroteca Nacional Website):Gazeta de Notícias. 24th November 1901. Ed.00328, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=3206 Gazeta de Notícias. 25th July 1902. Ed.00206, Rio de Janeiro, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4319Gazeta de Notícias. 5th October 1902. Ed.00278, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4674 Gazeta de Notícias. 15th October 1902. Ed.00288, Rio de Janeiro, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4723 Gazeta de Notícias. 5th December 1902. Ed.00339, Rio de Janeiro, p.3:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4966 Gazeta de Notícias. 26th August 1908. Ed.00239, Rio de Janeiro, p.3:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=18097Gazeta de Notícias. 24th July 1909. Ed.00175, Rio de Janeiro, p.8:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=20192 Gazeta de Notícias. 9th October 1909. Ed.00282, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&Pesq=%22arthur%20napoleao%22&pagfis=21035 Correio da Manhã. 28th January 1924. Ed.09088, Rio de Janeiro, p.8:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_03&pesq=%22arthur%20napoleao%22&pasta=ano%20192&hf=memoria.bn.br&pagfis=18113(Memorys of Arthur Napoleão published in „Correio da Manhã“ Newspaper)"; + "http://viaf.org/viaf/24867923 "; + "https://www.wikidata.org/wiki/Q265288 "; + "https://en.wikipedia.org/wiki/Arthur_Napole%C3%A3o_dos_Santos"; + "1843-03-06"^^xsd:date; + "1843-03-06"^^xsd:date; + "1925-05-12"^^xsd:date; + "1925-05-12"^^xsd:date; + "Napoleão"; + "Arthur"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Artur_Napoleão_(Maio_1889)_-_Emilio_Biel_e_C.ª_(Museu_Bordalo_Pinheiro).png"; + "https://www.wikidata.org/wiki/Q265288#/media/File:Artur_Napole%C3%A3o_(Maio_1889)_-_Emilio_Biel_e_C.%C2%AA_(Museu_Bordalo_Pinheiro).png"; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01927932"; + "https://d-nb.info/gnd/172270715"; + "FisCla-00"; + "https://isni.org/isni/0000000049531807"; + "Own"; + "https://lccn.loc.gov/nr95044548"; + "https://snaccooperative.org/ark:/99166/w6gm983f#resources"; + """Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.90-91. + +Maeder, Clara Fisher. Autobiography of Clara Fisher Maeder. Edited by Douglas Taylor. New York: The Dunlap Society, 1897, https://books.google.de/books?id=UWc7AQAAMAAJ&hl=pt-BR&pg=PA11#v=onepage&q&f=false """; + "https://viaf.org/viaf/56504951"; + "https://www.wikidata.org/wiki/Q5125982"; + "https://en.wikipedia.org/wiki/Clara_Fisher"; + "1811-07-14"^^xsd:date; + "1811-07-14"^^xsd:date; + "died in Metuchen, New Jersey; Burial: Woodlawn Cemetery, New York "; + "1898-11-12"^^xsd:date; + "1898-11-12"^^xsd:date; + "Fisher"; + "Clara"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Inman,_Henry_-_Portrait_of_Clara_Fisher_-_Google_Art_Project.jpg"; + "https://www.wikidata.org/wiki/Q5125982#/media/File:Inman,_Henry_-_Portrait_of_Clara_Fisher_-_Google_Art_Project.jpg"; + "Actress, Singing Actress, Drama teacher, Elocution teacher"; + ; + . + + a ; + "https://d-nb.info/gnd/132478765"; + "MarMax-00"; + "https://isni.org/isni/0000000063125389"; + "Own"; + "http://id.loc.gov/authorities/names/nr95035336"; + "Birth name"; + "http://n2t.net/ark:/99166/w6j98bdf"; + """Lætitia Corbière: “Les Strakosch, les Maretzek et les Grau : imprésarios moraves à New York,” https://www.transatlantic-cultures.org/pt/catalog/les-strakosch-les-maretzek-et-les-grau-impresarios-moraves-a-new-york. +# +Max Maretzek: Crotchets and Quavers: or, Revelations of an Opera Manager in America, 1855."""; + "http://viaf.org/viaf/17548909"; + "https://www.wikidata.org/wiki/Q456347#sitelinks-wikipedia"; + "https://en.wikipedia.org/wiki/Max_Maretzek"; + "1821-06-28"^^xsd:date; + "1821-06-28"^^xsd:date; + "1897-05-14"^^xsd:date; + "1897-05-14"^^xsd:date; + "Maretzek"; + "Max"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Max_Maretzek_001.png"; + "https://de.wikipedia.org/wiki/Max_Maretzek#/media/Datei:Max_Maretzek_001.png"; + "Composer, Conductor, Impresario, Founder, Manager, Theatre Teacher"; + ; + . + + a ; + "Lisbon"; + "Europe"; + "Portugal"; + "2267057"; + "PT-Liss-00"; + 3.87167e1; + -9.16667e0; + "Q597"; + "https://en.wikipedia.org/wiki/Lisbon" . + + a ; + "North America"; + "USA"; + "6252001"; + "USA-00"; + 4.0e1; + -1.0e2; + "Q30"; + "https://en.wikipedia.org/wiki/United_States" . + + a ; + "Warsaw"; + "Europe"; + "Poland"; + "756135"; + "PL-WA-00"; + 5.22333e1; + 2.10167e1; + "Q270"; + "https://en.wikipedia.org/wiki/Warsaw" . + + a ; + "https://data.cerl.org/thesaurus/cnp01322611"; + "https://d-nb.info/gnd/118780026"; + "LinJen-00"; + "https://isni.org/isni/0000000079779109"; + "Own"; + "https://lccn.loc.gov/n80024529"; + "Pseudonym/Stage name"; + "https://snaccooperative.org/ark:/99166/w61c23kj"; + """Henry Scott Holland, W. S. Rockstro: Jenny Lind. Ihre Laufbahn als Künstlerin. 1820 bis 1851. Band I. F. A. Brockhaus, Leipzig 1891; Jenny Lind. Ihre Laufbahn als Künstlerin. 1820 bis 1851. Zweiter Band (1891). + +Ellis Island records, Passenger Record: Jenny Lind arrived in America in 1850, her companions, Giovanni Belletti and Julius Benedict, were also on the passenger list. https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMTk5OTYwNjk2NSI7/czo4OiJtYW5pZmVzdCI7#passengerListAnchor. """; + "https://viaf.org/viaf/74649260"; + "https://www.wikidata.org/wiki/Q231345"; + "https://en.wikipedia.org/wiki/Jenny_Lind"; + "1820-10-06"^^xsd:date; + "1820-10-06"^^xsd:date; + "From 1850 to 1852 she went on a grand tour of the USA organised by P. T. Barnum, where she was to perform in 150 concerts, at a fee of $1,000 per performance; however, she reneged on her contract after some time, paid Barnum compensation of $30,000, and gave the last 60 concerts on her own meaning that she now no longer had to share the income with Barnum and could donate all the more money to charity (in the USA, but also later in Sweden and Great Britain)."; + "1887-11-02"^^xsd:date; + "1887-11-02"^^xsd:date; + "Lind"; + "Jenny"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Jenny_lind_colour.jpg"; + "https://de.wikipedia.org/wiki/Jenny_Lind#/media/Datei:Jenny_lind_colour.jpg"; + "Singer, Actor, Theatre Teacher"; + ; + ; + "Protestantism" . + + a ; + "other sources: 12 March 1844"; + "other sources: 26 November 1936"; + "https://d-nb.info/gnd/1250084199"; + "WhiBla-00"; + "https://isni.org/isni/0000000057213673"; + "Own"; + "https://lccn.loc.gov/no2009043651"; + "Marriage"; + "https://snaccooperative.org/ark:/99166/w6cv7gf4#resources"; + """# +Passenger Search of The Statue of Liberty - Ellis Island Foundation: Blanche Whiffen, login required, https://heritage.statueofliberty.org/passenger-result. +# +Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Mrs. Thomas Whiffen in Broadway, https://www.ibdb.com/broadway-cast-staff/mrs-thomas-whiffen-69049. +# +A Glimpse of Theater History, MRS. WHIFFEN, in Internet Archive, https://web.archive.org/web/20061029072816/http://www.wayneturney.20m.com/whiffenmrs.htm. """; + "https://viaf.org/viaf/83621425"; + "https://www.wikidata.org/wiki/Q83526"; + "https://en.wikipedia.org/wiki/Blanche_Whiffen"; + "1845-03-12"^^xsd:date; + "1845-03-12"^^xsd:date; + " Burial: Cremated, Specifically: Location of ashes is unknown, but possibly in England. "; + "1936-11-25"^^xsd:date; + "1936-11-25"^^xsd:date; + "Galton Whiffen"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Whiffin_Blanche.JPG"; + "https://en.wikipedia.org/wiki/Blanche_Whiffen#/media/File:Blanche_Whiffin_1.JPG"; + "Actor"; + ; + . + + a ; + "-"; + "https://d-nb.info/gnd/124787827"; + "ArrBla-00"; + "https://isni.org/isni/0000000050347185"; + "Own"; + "https://lccn.loc.gov/no89010654 "; + "https://snaccooperative.org/ark:/99166/w6sr3mtw#resources"; + """Arral, Blanche: The Extraordinary Operatic Adventures of Blanche Arral. Portland, Cambridge: Amadeus Press, 2002. +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 158-159. +The New York Times: “Mme. Arral's Recital.: A Programme of Varied Character Given in Aeolian Hall.” 5th Novembre 1912, New York. +The New York Times: “Mme. Arral's Concert.: Operatic Airs, with Orchestral Accompaniment, Given in Carnegie Hall.”  25th Octobre 1909, New York."""; + "https://viaf.org/viaf/2679689/"; + "https://www.wikidata.org/wiki/Q881398"; + "https://en.wikipedia.org/wiki/Blanche_Arral"; + "1864-10-10"^^xsd:date; + "1864-10-10"^^xsd:date; + "In 1908, she met American author Jack London and his wife in Suva, Fiji, after which London later gave her a brief mention as Lucille Arral in his novella Smoke Bellew."; + "1945-03-03"^^xsd:date; + "1945-03-03"^^xsd:date; + "Arral"; + "Blanche"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/BlancheArral1909.jpg"; + "https://www.wikidata.org/wiki/Q881398#/media/File:BlancheArral1909.jpg "; + ; + . + + a ; + "https://data.cerl.org/thesaurus/cnp01319580"; + "https://d-nb.info/gnd/118583719"; + "MonLol-00"; + "https://isni.org/isni/0000000063026460"; + "Own"; + "https://lccn.loc.gov/n50004180"; + "https://snaccooperative.org/ark:/99166/w6sx6fkj"; + "https://viaf.org/viaf/67257793"; + "https://www.wikidata.org/wiki/Q161154"; + "1821-02-17"^^xsd:date; + "1821-02-17"^^xsd:date; + "Marita Krauss: “Ich habe dem starken Geschlecht überall den Fehdehandschuh hingeworfen”. Das Leben der Lola Montez, München: C.H. Beck, 22021."; + "1861-01-17"^^xsd:date; + "1861-01-17"^^xsd:date; + "Montez"; + "Lola"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + "Dancer,Actress"; + ; + . + + a ; + "-"; + "http://d-nb.info/gnd/118899252"; + "MirCar-00"; + "https://isni.org/isni/0000000449432103 "; + "Own"; + "-"; + "https://snaccooperative.org/view/29317775#resources "; + "CASTRO, Ruy. Carmen: uma biografia. São Paulo: Companhia das Letras, 2005."; + "http://viaf.org/viaf/309804448 "; + "https://www.wikidata.org/wiki/Q121655 "; + "https://en.wikipedia.org/wiki/Carmen_Miranda"; + "1909-02-09"^^xsd:date; + "1909-02-09"^^xsd:date; + "1955-08-05"^^xsd:date; + "1955-08-05"^^xsd:date; + "Miranda"; + "Carmen"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carmen_Miranda_1941.jpeg"; + "https://www.wikidata.org/wiki/Q121655#/media/File:Carmen_Miranda_1941.JPG "; + ; + ; + "Christian" . + + a ; + "-"; + "https://d-nb.info/gnd/138342660"; + "BenCha-00"; + "https://isni.org/isni/0000000107750195"; + "Own"; + "https://lccn.loc.gov/n87860281"; + "https://snaccooperative.org/ark:/99166/w6cv4t7f"; + """https://de.wikipedia.org/wiki/Charles_Bennett_(Autor) + +Bennett, Charles. Hitchcock's Partner in Suspense: The Life of Screenwriter Charles Bennett. University Press of Kentucky, 2014. https://www-jstor-org.emedien.ub.uni-muenchen.de/stable/j.ctt5vkkwb +"""; + "https://viaf.org/viaf/106977894"; + "https://www.wikidata.org/wiki/Q329009"; + "https://en.wikipedia.org/wiki/Charles_Bennett_(screenwriter)"; + "1899-08-02"^^xsd:date; + "1899-08-02"^^xsd:date; + "1995-06-15"^^xsd:date; + "1995-06-15"^^xsd:date; + "Bennett"; + "Charles"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charles Bennet.webp"; + "https://www.themoviedb.org/person/3599-charles-bennett "; + "Playwright, screenwriter"; + ; + . + + a ; + """other sources: 17 or 27 August 1866 + +"""; + "https://d-nb.info/gnd/1271165740"; + "MarJul-00"; + "https://isni.org/isni/0000000026435097"; + "Own"; + "https://lccn.loc.gov/n82143187"; + "https://snaccooperative.org/ark:/99166/w6pk0k2t"; + """Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994. +# +\"Marlowe, Julia\" Notable American Women, Vol. 2, 4th ed., The Belknap Press of Harvard University Press, 1975. +John D. Barry: Julia Marlowe. Boston: R. G. Badger, 1899. +Charles Edward Russell: Julia Marlowe, Her Life and Art, New York: D. Appleton and company, 1926. +Julia Marlowe and E. H. Sothern: Julia Marlowe's Story, edited by Fairfax Downey, New York: Rinehart, 1954. +Sothern and Marlowe papers (1860-1950), held by the Billy Rose Theatre Division, New York Public Library for the Performing Arts, https://archives.nypl.org/mss/2820. +Guide to the Edward Albert Filene papers, 1918-1937 P-164, Part of the American Jewish Historical Society Repository, 2009, https://archives.cjh.org/repositories/3/resources/2799. +Margherita Arlina Hamm: Eminent Actors in Their Homes, New York: 1902. +Garff B. Wilson: A History of American Acting, Bloomington Indiana University Press, 1966. +William Winter: Vagrant Memories, New York: 1915, repr. New York: 1970. +William C. Young: Famous Actors and Actresses on the American Stage, Vol. 2. New York: 1975. +Julia Marlowe: \"How to Succeed on the Stage,\" Metropolitan: September 1909, pp. 287–288. +Women in World History: A Biographical Encyclopedia of Marlowe, Julia (1866–1950), https://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/marlowe-julia-1866-1950. """; + "https://viaf.org/viaf/23494416/"; + "https://www.wikidata.org/wiki/Q6306561"; + "https://en.wikipedia.org/wiki/Julia_Marlowe"; + "1865-08-17"^^xsd:date; + "1865-08-17"^^xsd:date; + "Burial: Brompton Cemetery, Royal Borough of Kensington and Chelsea, Greater London, England "; + "1950-11-12"^^xsd:date; + "1950-11-12"^^xsd:date; + "Marlow"; + "Julia"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Julia_Marlowe_photograph_(cropped).jpg"; + "https://en.wikipedia.org/wiki/Julia_Marlowe#/media/File:Julia_Marlowe_photograph_(cropped).jpg"; + "Actress"; + ; + . + + a ; + "other sources: between Novembre 1839 and Decembre 1840"; + "https://d-nb.info/gnd/116048441"; + "BanDan-00"; + "https://isni.org/isni/000000011653075X"; + "Own"; + "http://id.loc.gov/authorities/names/n2007051300"; + "http://n2t.net/ark:/99166/w67955j7"; + """ +Ancestry.com. (ed.): Daniel E. Bandmann, Hellgate, Montana, 1900 US Census. https://www.ancestry.de/search/categories/40/?name=Daniel++E._Bandmann&birth=1837_Kassel&birth_x=5-0-0&count=50&gender=m&name_x=_1 + +The Statue of Liberty - Ellis Island Foundation (ed.): SS Fanny Kirchner Passenger List, 11st November 1861, Daniel Bandmann. + +Christopher B. Balme: The Globalization of Theatre 1870–1930: The Theatrical Networks of Maurice E. Bandmann, Cambridge: 2019. + +Bear Bones Historians (ed.): Jewish Settlers in Montana: Daniel E. Bandmann, https://www.bearboneshistorians.org/copy-of-leslie-fiedler. + +Lisa J. Warrington: “Herr Daniel Bandmann and Shakespeare vs the World,” in Theatrescapes Global Media and Translocal Publics (1850-1950), 2016, Vol. 1 No. 2, pp.56-70. + +Nicole Anae: “The German-Jew that Bandmann Drew: Daniel E. Bandmann’s Shylock on the Australian Colonial Stage, 1869–1870,” in Special Issue On Shakespeare And Ben Jonson, Vol. 12, 2016, pp. 389-410, https://www.tandfonline.com/doi/abs/10.1080/17450918.2016.1196723?journalCode=rshk20. + +North China Herald. 12rd May 1882, p.498, pp.515-516: https://archive.org/details/north-china-herald-1882.05.26/page/568/mode/2up?q=Bandmann. + +James Grant Wilson (ed.): The Memorial History of the City of New-York, New York: New York History Co., 1892-93, p. 495. + +Graham, Franklin: Histrionic Montreal: Annals of the Montreal stage, with biographical and critical notices of the plays and players of a century, Montreal: J. Lovell, 1902, p. 240-p.243"""; + "http://viaf.org/viaf/59826007"; + "https://www.wikidata.org/wiki/Q5217035"; + "https://en.wikipedia.org/wiki/Daniel_E._Bandmann"; + "1837-11-01"^^xsd:date; + "1837-11-01"^^xsd:date; + "1905-11-23"^^xsd:date; + "1905-11-23"^^xsd:date; + "Bandmann"; + "Daniel Edward"; + "male"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harvard_Theatre_Collection_-_D._E._Bandmann_TCS_1.1050_-_cropped.jpg"; + "https://en.wikipedia.org/wiki/Daniel_E._Bandmann#/media/File:Harvard_Theatre_Collection_-_D._E._Bandmann_TCS_1.1050_-_cropped.jpg"; + "Actor, Manager, Rancher"; + ; + ; + "Jewish" . + + a ; + "Rio de Janeiro"; + "South America"; + "Brazil"; + "3451190"; + "BR-RdJ-00"; + -2.29114e1; + -4.32059e1; + "Q8678"; + "https://en.wikipedia.org/wiki/Rio_de_Janeiro" . + + a ; + "Paris"; + "Europe"; + "France"; + "2988507"; + "FR-PARIS-00"; + 4.88566e1; + 2.35222e0; + "Q90"; + "https://en.wikipedia.org/wiki/Paris" . + + a ; + "Berlin"; + "Europe"; + "Germany"; + "2950159"; + "GER-BER-00"; + 5.252e1; + 1.3405e1; + "Q64"; + "https://en.wikipedia.org/wiki/Berlin" . + + a ; + "Vienna"; + "Europe"; + "Austria"; + "2761369"; + "AT-VIE-00"; + 4.821e1; + 1.63634e1; + "Q1741"; + "https://en.wikipedia.org/wiki/Vienna" . + + a ; + "London"; + "Europe"; + "England (UK)"; + "2643743"; + "UK-LDN-00"; + 5.15072e1; + -1.275e-1; + "Q84"; + "https://en.wikipedia.org/wiki/London" . + + a ; + "Buenos Aires"; + "South America"; + "Argentina"; + "3435910"; + "ARG-BA-00"; + -3.45997e1; + -5.83819e1; + "Q1486"; + "https://en.wikipedia.org/wiki/Buenos_Aires" . + + a ; + "New York"; + "North America"; + "USA"; + "5128581"; + "USA-NY-00"; + "New York"; + 4.07128e1; + -7.40061e1; + "Q60"; + "https://en.wikipedia.org/wiki/New_York_City" . + + a ; + "-"; + "https://d-nb.info/gnd/118992023"; + "ModHel-00"; + "https://isni.org/isni/0000000109098508"; + "Own"; + "https://lccn.loc.gov/n79105715"; + "https://snaccooperative.org/ark:/99166/w6bg2sv7"; + """Helena Modjeska: Memories and Impressions of Helena Modjeska: An Autobiography, New York and London: Benjamin Blom, 1910. +Helena Modrzejewska: Listy, Vol. 1 and 2, ed. by Alicja Kędziora and Emil Orzechowski. Warszawa: PIW 2015. +Beth Holmgren: Starring Madame Modjeska: On Tour in Poland and America, Bloomington: Indiana University Press, 2012.  +Helena Modjeska: US Theatrical Tours, From 1877-1907, Polish actress Helena Modjeska toured the United States and Canada. Explore these maps to learn about her historic career. Hosted by OC Parks. October 8, 2022: https://storymaps.arcgis.com/stories/385c21595f534869ad9a64a1349c0c0d +\"Helena Modjeska scrapbook\" Volume 1, The New York Public Library Digital Collections. 1877 - 1898. Billy Rose Theatre Division, The New York Public Library. https://digitalcollections.nypl.org/items/56fa7820-fd8e-0132-8cd4-58d385a7bbd0 +\"Helena Modjeska scrapbook\" Volume 2, The New York Public Library Digital Collections. 1878 - 1897. Billy Rose Theatre Division, The New York Public Library. https://digitalcollections.nypl.org/items/6a39f2b0-fd8e-0132-d628-58d385a7bbd0 +"""; + "https://viaf.org/viaf/64807810"; + "https://www.wikidata.org/wiki/Q454653"; + "https://en.wikipedia.org/wiki/Helena_Modjeska"; + "1840-10-12"^^xsd:date; + "1840-10-12"^^xsd:date; + "Bay Island, Newport Beach, near Los Angeles her body was returned to Poland for the burial at Rakowicky Cemetery, Cracow"; + "1909-04-08"^^xsd:date; + "1909-04-08"^^xsd:date; + "Modjeska"; + "Helena"; + "female"; + "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Helena_Modjeska_ca._1890_by_Sarony_(Gardner_Mus_ARC006444)_-_crop.jpg"; + "https://en.wikipedia.org/wiki/File:Helena_Modjeska_ca._1890_by_Sarony_(Gardner_Mus_ARC006444)_-_crop.jpg"; + "Stage director, Actress"; + ; + ; + "Catholic" . diff --git a/data/graph-02.ttl b/data/graph-02.ttl new file mode 100644 index 0000000..20ca5da --- /dev/null +++ b/data/graph-02.ttl @@ -0,0 +1,185949 @@ +@prefix base: . +@prefix rdf: . +@prefix rdfs: . +@prefix xsd: . + +base:location\/ARG-BahBlanca-00 a base:location; + base:location\#City base:City-BahiaBlanca; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3865086"; + base:location\#IDLocation "ARG-BahBlanca-00"; + base:location\#latitude -3.87253e1; + base:location\#longitude -6.22742e1; + base:location\#wikidata "Q54108"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bah%C3%ADa_Blanca" . + +base:location\/ARG-Carhue-00 a base:location; + base:location\#City base:City-Carhu\%C3\%A9; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3862634"; + base:location\#IDLocation "ARG-Carhue-00"; + base:location\#latitude -3.71796e1; + base:location\#longitude -6.27601e1; + base:location\#wikidata "Q54117"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Carhu%C3%A9" . + +base:location\/ARG-Ituz-00 a base:location; + base:location\#City base:City-Ituzaing\%C3\%B3; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3433359"; + base:location\#IDLocation "ARG-Ituz-00"; + base:location\#State base:State-BuenosAiresProvince; + base:location\#latitude -3.46522e1; + base:location\#longitude -5.8675e1; + base:location\#wikidata "Q615244"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ituzaing%C3%B3,_Buenos_Aires" . + +base:location\/ARG-Reco-00 a base:location; + base:location\#City base:City-Recoleta\%28BuenosAires\%29; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3429595"; + base:location\#IDLocation "ARG-Reco-00"; + base:location\#latitude -3.45906e1; + base:location\#longitude -5.83906e1; + base:location\#wikidata "Q1010253"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Recoleta,_Buenos_Aires" . + +base:location\/AT-Traun-00 a base:location; + base:location\#City base:City-Traunsee; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2763410"; + base:location\#IDLocation "AT-Traun-00"; + base:location\#latitude 4.78667e1; + base:location\#longitude 1.38e1; + base:location\#wikidata "Q250907"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Traunsee" . + +base:location\/AT-Wieslb-00 a base:location; + base:location\#City base:City-Wieselburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2761314"; + base:location\#IDLocation "AT-Wieslb-00"; + base:location\#latitude 4.81333e1; + base:location\#longitude 1.51389e1; + base:location\#wikidata "Q661734"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wieselburg" . + +base:location\/Aze-DiJeSt-148 a base:location; + base:location\#City base:City-Baku; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Azerbaijan; + base:location\#IDLocation "Aze-DiJeSt-148"; + base:location\#latitude 4.03667e1; + base:location\#longitude 4.98352e1; + base:location\#wikidata "Q9248"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/BR-BelHor-00 a base:location; + base:location\#City base:City-BeloHorizonte; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3470127"; + base:location\#IDLocation "BR-BelHor-00"; + base:location\#latitude -1.99167e1; + base:location\#longitude -4.39333e1; + base:location\#wikidata "Q42800"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Belo_Horizonte" . + +base:location\/BR-JuFor-00 a base:location; + base:location\#City base:City-JuizdeFora; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3459505"; + base:location\#IDLocation "BR-JuFor-00"; + base:location\#latitude -2.17523e1; + base:location\#longitude -4.33509e1; + base:location\#wikidata "Q193019"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Juiz_de_Fora" . + +base:location\/BY-Broz-00 a base:location; + base:location\#City base:City-Bro\%C5\%BEa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "BY-Broz-00"; + base:location\#State base:State-Babrujsk; + base:location\#latitude 5.29658e1; + base:location\#longitude 2.9115e1; + base:location\#wikidata "Q16274643" . + +base:location\/Bel-DiJeSt-1 a base:location; + base:location\#City base:City-Lunna; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#GeoNamesID "625816"; + base:location\#IDLocation "Bel-DiJeSt-1"; + base:location\#latitude 5.34547e1; + base:location\#longitude 2.42614e1; + base:location\#wikidata "Q1011346"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lunna,_Belarus" . + +base:location\/Bel-DiJeSt-53 a base:location; + base:location\#City base:City-VitebskRegion; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-53"; + base:location\#latitude 5.53333e1; + base:location\#longitude 2.9e1; + base:location\#wikidata "Q185700"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/CA-StCath-00 a base:location; + base:location\#City base:City-St\.Catharines; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-StCath-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.31583e1; + base:location\#longitude -7.92458e1; + base:location\#wikidata "Q126805" . + +base:location\/CH-Veve-00 a base:location; + base:location\#City base:City-Vevey; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#IDLocation "CH-Veve-00"; + base:location\#latitude 4.64592e1; + base:location\#longitude 6.84194e0; + base:location\#wikidata "Q68160"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Vevey" . + +base:location\/CH-Zur-01 a base:location; + base:location\#City base:City-Mariafeld\%28Meilen\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2659703"; + base:location\#IDLocation "CH-Zur-01"; + base:location\#State base:State-Z\%C3\%BCrich; + base:location\#latitude 4.72705e1; + base:location\#longitude 8.641389999999999e0; + base:location\#wikidata "Q68261"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Feldmeilen" . + +base:location\/CN-DiJeSt-116 a base:location; + base:location\#City base:City-Harbin; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#IDLocation "CN-DiJeSt-116"; + base:location\#latitude 4.575e1; + base:location\#longitude 1.26633e2; + base:location\#wikidata "Q42956"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/CN-Tian-00 a base:location; + base:location\#City base:City-Tianjin; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#GeoNamesID "1792947"; + base:location\#IDLocation "CN-Tian-00"; + base:location\#latitude 3.91333e1; + base:location\#longitude 1.17183e2; + base:location\#wikidata "Q11736"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tianjin" . + +base:location\/COL-Barranq-00 a base:location; + base:location\#City base:City-Barranquilla; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Columbia; + base:location\#GeoNamesID "3689147"; + base:location\#IDLocation "COL-Barranq-00"; + base:location\#latitude 1.09727e1; + base:location\#longitude -7.47958e1; + base:location\#wikidata "Q62823"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Barranquilla" . + +base:location\/COL-Bogot-00 a base:location; + base:location\#City base:City-Bogot\%C3\%A1; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Columbia; + base:location\#GeoNamesID "3688689"; + base:location\#IDLocation "COL-Bogot-00"; + base:location\#latitude 4.59889e0; + base:location\#longitude -7.40808e1; + base:location\#wikidata "Q2841"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bogot%C3%A1" . + +base:location\/CSTR-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-CostaRica; + base:location\#GeoNamesID "3624060"; + base:location\#IDLocation "CSTR-00"; + base:location\#latitude 1.0e1; + base:location\#longitude -8.4e1; + base:location\#wikidata "Q800"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Costa_Rica" . + +base:location\/CZ-Prag-01 a base:location; + base:location\#City base:City-Libe\%C5\%88\%28Prague\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3071966"; + base:location\#IDLocation "CZ-Prag-01"; + base:location\#latitude 5.01114e1; + base:location\#longitude 1.44733e1; + base:location\#wikidata "Q2003486"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Libe%C5%88_(Prag)" . + +base:location\/CZ-Straz-00 a base:location; + base:location\#City base:City-Str\%C3\%A1\%C5\%BE; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#IDLocation "CZ-Straz-00"; + base:location\#latitude 4.8977e1; + base:location\#longitude 1.35824e1; + base:location\#wikidata "Q30514" . + +base:location\/ELSL-SanSalv-00 a base:location; + base:location\#City base:City-SanSalvador; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-ElSalvador; + base:location\#GeoNamesID "3583361"; + base:location\#IDLocation "ELSL-SanSalv-00"; + base:location\#latitude 1.36833e1; + base:location\#longitude -8.91833e1; + base:location\#wikidata "Q3110"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Salvador" . + +base:location\/EN-LeamSpa-00 a base:location; + base:location\#City base:City-LeamingtonSpa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-LeamSpa-00"; + base:location\#latitude 5.22919e1; + base:location\#longitude -1.53583e0; + base:location\#wikidata "Q546635"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leamington_Spa" . + +base:location\/EN-Leeds-00 a base:location; + base:location\#City base:City-Leeds; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Leeds-00"; + base:location\#latitude 5.37975e1; + base:location\#longitude -1.54361e0; + base:location\#wikidata "Q39121"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leeds" . + +base:location\/ES-Leon-00 a base:location; + base:location\#City base:City-Le\%C3\%B3n; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3118532"; + base:location\#IDLocation "ES-Leon-00"; + base:location\#latitude 4.25997e1; + base:location\#longitude -5.57167e0; + base:location\#wikidata "Q15699"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Le%C3%B3n,_Spain" . + +base:location\/ES-Martin-00 a base:location; + base:location\#City base:City-Mart\%C3\%ADnez; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Martin-00"; + base:location\#latitude 4.06308e1; + base:location\#longitude -5.34833e0; + base:location\#wikidata "Q1769968" . + +base:location\/FR-Toul-00 a base:location; + base:location\#City base:City-Toulon; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2972328"; + base:location\#IDLocation "FR-Toul-00"; + base:location\#latitude 4.31258e1; + base:location\#longitude 5.93056e0; + base:location\#wikidata "Q44160"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Toulon" . + +base:location\/GER-Ballen-00 a base:location; + base:location\#City base:City-Ballenstedt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2953060"; + base:location\#IDLocation "GER-Ballen-00"; + base:location\#latitude 5.172e1; + base:location\#longitude 1.12375e1; + base:location\#wikidata "Q50886"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ballenstedt" . + +base:location\/GER-Jev-00 a base:location; + base:location\#City base:City-Middoge\%28Wangerland\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2871247"; + base:location\#IDLocation "GER-Jev-00"; + base:location\#latitude 5.36347e1; + base:location\#longitude 7.8436e0; + base:location\#wikidata "Q1931935"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wangerland" . + +base:location\/GER-Karslb-00 a base:location; + base:location\#City base:City-Karlsbad; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2953481"; + base:location\#IDLocation "GER-Karslb-00"; + base:location\#latitude 4.89144e1; + base:location\#longitude 8.50639e0; + base:location\#wikidata "Q542659"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Karlsbad_(Baden)" . + +base:location\/GER-Lang-00 a base:location; + base:location\#City base:City-Langenargen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2881263"; + base:location\#IDLocation "GER-Lang-00"; + base:location\#latitude 4.76e1; + base:location\#longitude 9.54167e0; + base:location\#wikidata "Q532326"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Langenargen" . + +base:location\/GER-Neuh-00 a base:location; + base:location\#City base:City-Neuhaldensleben\%28Haldensleben\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2911584"; + base:location\#IDLocation "GER-Neuh-00"; + base:location\#latitude 5.22833e1; + base:location\#longitude 1.14167e1; + base:location\#wikidata "Q186557"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Haldensleben" . + +base:location\/GR-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Greece; + base:location\#IDLocation "GR-00"; + base:location\#latitude 3.9e1; + base:location\#longitude 2.2e1; + base:location\#wikidata "Q41" . + +base:location\/IE-Castl-00 a base:location; + base:location\#City base:City-Castlemaine; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#IDLocation "IE-Castl-00"; + base:location\#State base:State-CountyKerry; + base:location\#latitude 5.21681e1; + base:location\#longitude -9.70083e0; + base:location\#wikidata "Q3775979"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Castlemaine,_County_Kerry" . + +base:location\/IN-Vara-00 a base:location; + base:location\#City base:City-Varanasi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-India; + base:location\#IDLocation "IN-Vara-00"; + base:location\#latitude 2.53185e1; + base:location\#longitude 8.29853e1; + base:location\#wikidata "Q1321140"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Varanasi" . + +base:location\/IT-CarUri-00 a base:location; + base:location\#City base:City-CarateUrio; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "6534414"; + base:location\#IDLocation "IT-CarUri-00"; + base:location\#State base:State-Como; + base:location\#latitude 4.58667e1; + base:location\#longitude 9.116669999999999e0; + base:location\#wikidata "Q244231"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Carate_Urio" . + +base:location\/IT-Gori-00 a base:location; + base:location\#City base:City-Gorizia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3175986"; + base:location\#IDLocation "IT-Gori-00"; + base:location\#latitude 4.59333e1; + base:location\#longitude 1.36167e1; + base:location\#wikidata "Q6596"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gorizia" . + +base:location\/IT-ROgLomb-00 a base:location; + base:location\#City base:City-Robeccod\%27Oglio; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3169210"; + base:location\#IDLocation "IT-ROgLomb-00"; + base:location\#latitude 4.52667e1; + base:location\#longitude 1.00833e1; + base:location\#wikidata "Q42245"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Robecco_d%27Oglio" . + +base:location\/IT-Umb-00 a base:location; + base:location\#City base:City-Umbria; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#IDLocation "IT-Umb-00"; + base:location\#latitude 4.31121e1; + base:location\#longitude 1.23888e1; + base:location\#wikidata "Q1280"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Umbria" . + +base:location\/JPN-Hyo-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Japan; + base:location\#GeoNamesID "1862047"; + base:location\#IDLocation "JPN-Hyo-00"; + base:location\#State base:State-Hy\%C5\%8DgoPrefecture; + base:location\#latitude 3.5e1; + base:location\#longitude 1.34916e2; + base:location\#wikidata "Q130290"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hy%C5%8Dgo_Prefecture" . + +base:location\/JPN-Kobe-00 a base:location; + base:location\#City base:City-Kobe; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Japan; + base:location\#GeoNamesID "1859171"; + base:location\#IDLocation "JPN-Kobe-00"; + base:location\#latitude 3.46903e1; + base:location\#longitude 1.35196e2; + base:location\#wikidata "Q48320"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kobe" . + +base:location\/LV-Cour-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#GeoNamesID "460496"; + base:location\#IDLocation "LV-Cour-00"; + base:location\#State base:State-Courland; + base:location\#latitude 5.7e1; + base:location\#longitude 2.2e1; + base:location\#wikidata "Q185072"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/Courland" . + +base:location\/Mol-DiJeSt-13 a base:location; + base:location\#City base:City-Tiraspol; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Moldova; + base:location\#IDLocation "Mol-DiJeSt-13"; + base:location\#latitude 4.685e1; + base:location\#longitude 2.96333e1; + base:location\#wikidata "Q132572"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/NL-Zwo-00 a base:location; + base:location\#City base:City-Zwolle; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2743477"; + base:location\#IDLocation "NL-Zwo-00"; + base:location\#latitude 5.25125e1; + base:location\#longitude 6.08861e0; + base:location\#wikidata "Q793"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Zwolle" . + +base:location\/NLD-Hag-00 a base:location; + base:location\#City base:City-TheHague; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Hag-00"; + base:location\#latitude 5.208e1; + base:location\#longitude 4.31e0; + base:location\#wikidata "Q36600"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/The_Hague" . + +base:location\/NZ-Pat-00 a base:location; + base:location\#City base:City-P\%C4\%81tea; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Pat-00"; + base:location\#latitude -3.97542e1; + base:location\#longitude 1.74473e2; + base:location\#wikidata "Q2056659" . + +base:location\/PA-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Panama; + base:location\#GeoNamesID "3703430"; + base:location\#IDLocation "PA-00"; + base:location\#latitude 8.695069999999999e0; + base:location\#longitude -8.00629e1; + base:location\#wikidata "Q804"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Panama" . + +base:location\/PA-Col-00 a base:location; + base:location\#City base:City-Col\%C3\%B3n; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Panama; + base:location\#GeoNamesID "3712076"; + base:location\#IDLocation "PA-Col-00"; + base:location\#latitude 9.341670000000001e0; + base:location\#longitude -7.98944e1; + base:location\#wikidata "Q12825018"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Col%C3%B3n,_Panama" . + +base:location\/PRY-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Paraguay; + base:location\#GeoNamesID "3437598"; + base:location\#IDLocation "PRY-00"; + base:location\#latitude -2.32667e1; + base:location\#longitude -5.80833e1; + base:location\#wikidata "Q733"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Paraguay" . + +base:location\/PT-Assunc-00 a base:location; + base:location\#City base:City-Assun\%C3\%A7\%C3\%A3o; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "8012599"; + base:location\#IDLocation "PT-Assunc-00"; + base:location\#State base:State-Arronches; + base:location\#latitude 3.91072e1; + base:location\#longitude -7.27417e0; + base:location\#wikidata "Q2868"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Arronches" . + +base:location\/Pol-DiJeSt-139 a base:location; + base:location\#City base:City-Bia\%C5\%82ystok; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-139"; + base:location\#latitude 5.31167e1; + base:location\#longitude 2.31667e1; + base:location\#wikidata "Q761"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-90 a base:location; + base:location\#City base:City-Skierniewice; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-90"; + base:location\#latitude 5.19569e1; + base:location\#longitude 2.0143e1; + base:location\#wikidata "Q2734"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rom-DiJeSt-66 a base:location; + base:location\#City base:City-Giurgiu; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-66"; + base:location\#latitude 4.39e1; + base:location\#longitude 2.59667e1; + base:location\#wikidata "Q202351"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rom-DiJeSt-67 a base:location; + base:location\#City base:City-Roman; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-67"; + base:location\#latitude 4.693e1; + base:location\#longitude 2.693e1; + base:location\#wikidata "Q202458"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/SE-000 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2661886"; + base:location\#IDLocation "SE-000"; + base:location\#latitude 6.3e1; + base:location\#longitude 1.6e1; + base:location\#wikidata "Q34"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sweden" . + +base:location\/SK-NytC-00 a base:location; + base:location\#City base:City-NyitraCounty; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#IDLocation "SK-NytC-00"; + base:location\#latitude 4.83167e1; + base:location\#longitude 1.80833e1; + base:location\#wikidata "Q371208"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nyitra_County" . + +base:location\/UA-Obl-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "689558"; + base:location\#IDLocation "UA-Obl-00"; + base:location\#State base:State-VinnytsiaOblast; + base:location\#latitude 4.893e1; + base:location\#longitude 2.869e1; + base:location\#wikidata "Q166709"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vinnytsia_Oblast" . + +base:location\/UK-Engl-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "UK-Engl-00"; + base:location\#latitude 5.24833e1; + base:location\#longitude -1.56667e0; + base:location\#wikidata "Q21" . + +base:location\/UK-Petb-00 a base:location; + base:location\#City base:City-Peterborough; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2640354"; + base:location\#IDLocation "UK-Petb-00"; + base:location\#latitude 5.25725e1; + base:location\#longitude -2.43056e-1; + base:location\#wikidata "Q172438"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Peterborough" . + +base:location\/UK-Worc-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2633560"; + base:location\#IDLocation "UK-Worc-00"; + base:location\#State base:State-Worcestershire; + base:location\#latitude 5.22e1; + base:location\#longitude 2.16667e0; + base:location\#wikidata "Q23135"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Worcestershire" . + +base:location\/USA-Aub-00 a base:location; + base:location\#City base:City-Auburn; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Aub-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.26053e1; + base:location\#longitude -8.5485e1; + base:location\#wikidata "Q79728" . + +base:location\/USA-Auror-00 a base:location; + base:location\#City base:City-Aurora; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Auror-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.17639e1; + base:location\#longitude -8.829000000000001e1; + base:location\#wikidata "Q22595"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Aurora,_Illinois" . + +base:location\/USA-BattleVer-00 a base:location; + base:location\#City base:City-Battleboro; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-BattleVer-00"; + base:location\#State base:State-Vermont; + base:location\#latitude 4.286e1; + base:location\#longitude -7.263290000000001e1; + base:location\#wikidata "Q26300877" . + +base:location\/USA-CA-03 a base:location; + base:location\#City base:City-Landsides; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4350049"; + base:location\#IDLocation "USA-CA-03"; + base:location\#State base:State-SouthernCalifornia; + base:location\#latitude 3.4e1; + base:location\#longitude -1.17e2; + base:location\#wikidata "Q5021271"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/California_landslides" . + +base:location\/USA-CA-06 a base:location; + base:location\#City base:City-SanJacinto; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5392090"; + base:location\#IDLocation "USA-CA-06"; + base:location\#State base:State-California; + base:location\#latitude 3.37872e1; + base:location\#longitude -1.16967e2; + base:location\#wikidata "Q985265"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Jacinto,_California" . + +base:location\/USA-Decat-00 a base:location; + base:location\#City base:City-Decatur; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Decat-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.37714e1; + base:location\#longitude -8.42978e1; + base:location\#wikidata "Q986200" . + +base:location\/USA-Durh-00 a base:location; + base:location\#City base:City-Durham; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Durh-00"; + base:location\#State base:State-NorthCarolina; + base:location\#latitude 3.59875e1; + base:location\#longitude -7.89072e1; + base:location\#wikidata "Q49229"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Durham_(North_Carolina)" . + +base:location\/USA-FairmV-00 a base:location; + base:location\#City base:City-Fairmount; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-FairmV-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.94814e1; + base:location\#longitude -8.01433e1 . + +base:location\/USA-Hilo-00 a base:location; + base:location\#City base:City-Hilo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5855927"; + base:location\#IDLocation "USA-Hilo-00"; + base:location\#State base:State-Hawaii; + base:location\#latitude 1.97294e1; + base:location\#longitude -1.5509e2; + base:location\#wikidata "Q216258"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hilo,_Hawaii" . + +base:location\/USA-Kau-00 a base:location; + base:location\#City base:City-Kauai; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5848514"; + base:location\#IDLocation "USA-Kau-00"; + base:location\#State base:State-Hawaii; + base:location\#latitude 2.2075e1; + base:location\#longitude -1.595e2; + base:location\#wikidata "Q201026"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kauai" . + +base:location\/USA-Lafay-00 a base:location; + base:location\#City base:City-Lafayette; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Lafay-00"; + base:location\#State base:State-Louisiana; + base:location\#latitude 3.02169e1; + base:location\#longitude -9.20264e1; + base:location\#wikidata "Q128891" . + +base:location\/USA-LasVeg-00 a base:location; + base:location\#City base:City-LasVegas; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5506956"; + base:location\#IDLocation "USA-LasVeg-00"; + base:location\#State base:State-Nevada; + base:location\#latitude 3.6175e1; + base:location\#longitude -1.15136e2; + base:location\#wikidata "Q23768"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Las_Vegas" . + +base:location\/USA-LeavW-00 a base:location; + base:location\#City base:City-Leavenworth; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LeavW-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.75964e1; + base:location\#longitude -1.20665e2; + base:location\#wikidata "Q1025813" . + +base:location\/USA-LincM-00 a base:location; + base:location\#City base:City-Lincoln; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LincM-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.24258e1; + base:location\#longitude -7.13044e1; + base:location\#wikidata "Q663035" . + +base:location\/USA-Maui-00 a base:location; + base:location\#City base:City-Maui; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5850862"; + base:location\#IDLocation "USA-Maui-00"; + base:location\#State base:State-Hawaii; + base:location\#latitude 2.08075e1; + base:location\#longitude -1.56331e2; + base:location\#wikidata "Q188705"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Maui" . + +base:location\/USA-Michigan a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5001836"; + base:location\#IDLocation "USA-Michigan"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.42333e1; + base:location\#longitude -8.483329999999999e1; + base:location\#wikidata "Q1166"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Michigan" . + +base:location\/USA-MuncIl-00 a base:location; + base:location\#City base:City-Muncie; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-MuncIl-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.01161e1; + base:location\#longitude -8.784310000000001e1; + base:location\#wikidata "Q2039265"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Muncie,_Illinois" . + +base:location\/USA-NYNorw-00 a base:location; + base:location\#City base:City-Norwich; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NYNorw-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.25319e1; + base:location\#longitude -7.55217e1; + base:location\#wikidata "Q1380484" . + +base:location\/USA-NewJers-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NewJers-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.0e1; + base:location\#longitude -7.45e1; + base:location\#wikidata "Q1408"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Jersey" . + +base:location\/USA-Oshk-00 a base:location; + base:location\#City base:City-Oshkosh; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Oshk-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.14025e1; + base:location\#longitude -1.02346e2; + base:location\#wikidata "Q965063" . + +base:location\/USA-PeoI-00 a base:location; + base:location\#City base:City-Peoria; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-UAS; + base:location\#IDLocation "USA-PeoI-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.14619e1; + base:location\#longitude -9.28014e1; + base:location\#wikidata "Q56277946"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Peoria,_Iowa" . + +base:location\/USA-Quinc-01 a base:location; + base:location\#City base:City-Quincy; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Quinc-01"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.22528e1; + base:location\#longitude -7.100279999999999e1; + base:location\#wikidata "Q49143" . + +base:location\/USA-Sarat-00 a base:location; + base:location\#City base:City-SaratogaSprings; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5136334"; + base:location\#IDLocation "USA-Sarat-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.30832e1; + base:location\#longitude -7.37848e1; + base:location\#wikidata "Q1144357"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saratoga_Springs,_New_York" . + +base:location\/USA-Vict-00 a base:location; + base:location\#City base:City-Victoria; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Vict-00"; + base:location\#State base:State-Texas; + base:location\#latitude 2.88169e1; + base:location\#longitude -9.69933e1; + base:location\#wikidata "Q784496"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Victoria,_British_Columbia" . + +base:location\/USA-Warr-00 a base:location; + base:location\#City base:City-Warren; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Warr-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.24919e1; + base:location\#longitude -8.30239e1; + base:location\#wikidata "Q499401" . + +base:location\/USA-Wisc-00 a base:location; + base:location\#City base:City-Wisconsin; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5279468"; + base:location\#IDLocation "USA-Wisc-00"; + base:location\#latitude 4.46243e1; + base:location\#longitude -8.99941e1; + base:location\#wikidata "Q1537"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wisconsin" . + +base:location\/Ukr-DiJeSt-131 a base:location; + base:location\#City base:City-Zolochiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-131"; + base:location\#latitude 4.98075e1; + base:location\#longitude 2.49031e1; + base:location\#wikidata "Q623594"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-26 a base:location; + base:location\#City base:City-Nadvirna; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-26"; + base:location\#latitude 4.86333e1; + base:location\#longitude 2.45833e1; + base:location\#wikidata "Q156820"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-28 a base:location; + base:location\#City base:City-Cherkasy; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-28"; + base:location\#latitude 4.94444e1; + base:location\#longitude 3.20597e1; + base:location\#wikidata "Q157055"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-87 a base:location; + base:location\#City base:City-Zlatopil; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-87"; + base:location\#latitude 4.88219e1; + base:location\#longitude 3.16539e1; + base:location\#wikidata "Q2578764"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Uni-DiJeSt-10 a base:location; + base:location\#City base:City-Whitechapel; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "Uni-DiJeSt-10"; + base:location\#latitude 5.15164e1; + base:location\#longitude -6.91667e-2; + base:location\#wikidata "Q124539"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Uni-DiJeSt-56 a base:location; + base:location\#City base:City-Harlem; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-UnitedStates; + base:location\#IDLocation "Uni-DiJeSt-56"; + base:location\#latitude 4.0809e1; + base:location\#longitude -7.394840000000001e1; + base:location\#wikidata "Q189074"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/WestEurope a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-WestEurope; + base:location\#IDLocation "WestEurope"; + base:location\#latitude 5.3e1; + base:location\#longitude 9.0e0; + base:location\#wikidata "Q27496"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Western_Europe" . + +base:migration_table\/10 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 10; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/100 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 100; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BukChr-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/1004 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1829"; + base:migration_table\#DateEnd_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1829-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1829"; + base:migration_table\#DateStart_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1829-01-01"^^xsd:date; + base:migration_table\#IDMig 1004; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-01; + base:migration_table\#ref-IDStartPlace base:location\/MX-MX-00; + base:migration_table\#via "New York" . + +base:migration_table\/1009 a base:migration_table; + base:migration_table\#DateEnd_Max "1912-12-27"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-10-30"^^xsd:date; + base:migration_table\#DateStart_Max "1912-12-27"^^xsd:date; + base:migration_table\#DateStart_Min "1912-10-30"^^xsd:date; + base:migration_table\#IDMig 1009; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/HemFri-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/1014 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1955"; + base:migration_table\#DateStart_Max "1955-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1955-01-01"^^xsd:date; + base:migration_table\#IDMig 1014; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/HemFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1019 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1862"; + base:migration_table\#DateEnd_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1862-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1862"; + base:migration_table\#DateStart_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-01-01"^^xsd:date; + base:migration_table\#IDMig 1019; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-HAJ-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/102 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 102; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Toulo-00 . + +base:migration_table\/1023 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 1023; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HAJ-00 . + +base:migration_table\/1024 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1850"; + base:migration_table\#DateEnd_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1850-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 1024; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/SI-Marb-00 . + +base:migration_table\/1029 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1854"; + base:migration_table\#DateEnd_Min "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1854"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1854-01-01"^^xsd:date; + base:migration_table\#IDMig 1029; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Trup-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/103 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 103; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/1034 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1854"; + base:migration_table\#DateEnd_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1854-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1854"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1854-01-01"^^xsd:date; + base:migration_table\#IDMig 1034; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/RO-Herm-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Trup-00 . + +base:migration_table\/1039 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1854"; + base:migration_table\#DateEnd_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1854-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1854"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1854-01-01"^^xsd:date; + base:migration_table\#IDMig 1039; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/JoaAma-00; + base:migration_table\#ref-IDStartPlace base:location\/RO-Herm-00 . + +base:migration_table\/104 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 104; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1044 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1879"; + base:migration_table\#DateEnd_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1879-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 1044; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/AreEnr-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/1049 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1893"; + base:migration_table\#DateEnd_Max "1893-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1893-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1893"; + base:migration_table\#DateStart_Max "1893-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1893-01-01"^^xsd:date; + base:migration_table\#IDMig 1049; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AreEnr-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/105 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1874"; + base:migration_table\#DateStart_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1874-01-01"^^xsd:date; + base:migration_table\#IDMig 105; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1053 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 1053; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/1054 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 1054; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ES-Barc-00; + base:migration_table\#ref-IDPerson base:person\/BarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/1059 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 1059; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/106 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 106; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1064 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1874 and 1875"; + base:migration_table\#DateEnd_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1874-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1874 and 1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1874-01-01"^^xsd:date; + base:migration_table\#IDMig 1064; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/BE-Lieg-00 . + +base:migration_table\/1069 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "probably before 8th Dezember 1882"; + base:migration_table\#DateEnd_Max "1882-12-08"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "probably before 8th Dezember 1882"; + base:migration_table\#DateStart_Max "1882-12-08"^^xsd:date; + base:migration_table\#IDMig 1069; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/BE-BRU-00 . + +base:migration_table\/107 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 107; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1074 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Summer 1891"; + base:migration_table\#DateEnd_Max "1891-09-23"^^xsd:date; + base:migration_table\#DateEnd_Min "1891-06-24"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Summer 1891"; + base:migration_table\#DateStart_Max "1891-09-23"^^xsd:date; + base:migration_table\#DateStart_Min "1891-06-24"^^xsd:date; + base:migration_table\#IDMig 1074; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Paris – St. Petersburg (October 1891)" . + +base:migration_table\/1079 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "December 1894"; + base:migration_table\#DateEnd_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1894-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1894"; + base:migration_table\#DateStart_Max "1894-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1894-09-01"^^xsd:date; + base:migration_table\#IDMig 1079; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-StPet-00 . + +base:migration_table\/108 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1877"; + base:migration_table\#DateStart_Max "1877-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-01-01"^^xsd:date; + base:migration_table\#IDMig 108; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/1084 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1860"; + base:migration_table\#DateEnd_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1860-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 1084; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/CarRit-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Malaga-00 . + +base:migration_table\/1089 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1885"; + base:migration_table\#DateEnd_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1885-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 1089; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/CasJul-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/109 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 109; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1094 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1910"; + base:migration_table\#DateEnd_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1910-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 1094; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/ConSan-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Tries-00 . + +base:migration_table\/1099 a base:migration_table; + base:migration_table\#IDMig 1099; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BecMar-00; + base:migration_table\#ref-IDStartPlace base:location\/SK-Lipt-00 . + +base:migration_table\/11 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 11; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/110 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 110; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/1104 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 1104; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Altenb-00; + base:migration_table\#ref-IDPerson base:person\/BruLud-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/1109 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1908"; + base:migration_table\#DateEnd_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1908-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 1109; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BruLud-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/111 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 111; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/MC-MtCarlo-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1114 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 1114; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BruLud-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1119 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915"; + base:migration_table\#DateEnd_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 1119; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/BruLud-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/112 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 112; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/MC-MtCarlo-00 . + +base:migration_table\/1129 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1877"; + base:migration_table\#DateEnd_Max "1877-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1877-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1877"; + base:migration_table\#DateStart_Max "1877-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-01-01"^^xsd:date; + base:migration_table\#IDMig 1129; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BruOtt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Rott-00 . + +base:migration_table\/113 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 113; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/BE-BRU-00 . + +base:migration_table\/1134 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1879"; + base:migration_table\#DateEnd_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1879-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 1134; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BruOtt-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1139 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 1139; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-Met-00; + base:migration_table\#ref-IDPerson base:person\/BruOtt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Brand-00 . + +base:migration_table\/114 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 114; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CapVic-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1144 a base:migration_table; + base:migration_table\#IDMig 1144; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Indy-00; + base:migration_table\#via "Indianapolis" . + +base:migration_table\/1149 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 1149; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-Niz-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Nice" . + +base:migration_table\/115 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 115; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ChaCha-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1154 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 1154; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Niz-00; + base:migration_table\#via "Nice" . + +base:migration_table\/1159 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1913"; + base:migration_table\#DateEnd_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1913-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1911"; + base:migration_table\#DateStart_Max "1911-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1911-01-01"^^xsd:date; + base:migration_table\#IDMig 1159; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/116 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1952"; + base:migration_table\#DateStart_Max "1952-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1952-01-01"^^xsd:date; + base:migration_table\#IDMig 116; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/CH-CorsVev-00; + base:migration_table\#ref-IDPerson base:person\/ChaCha-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/1164 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1913"; + base:migration_table\#DateEnd_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1913-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1913"; + base:migration_table\#DateStart_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1913-01-01"^^xsd:date; + base:migration_table\#IDMig 1164; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SE-Stock-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1169 a base:migration_table; + base:migration_table\#IDMig 1169; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Phila-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Salzb-00 . + +base:migration_table\/117 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 117; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/ChrRud-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ddorf-00 . + +base:migration_table\/1174 a base:migration_table; + base:migration_table\#IDMig 1174; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Salzb-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/NOR-Nores-00 . + +base:migration_table\/1179 a base:migration_table; + base:migration_table\#IDMig 1179; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/NOR-Nores-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Zur-00 . + +base:migration_table\/118 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1898"; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 118; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/ChrRud-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1184 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 1184; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CH-Zur-00; + base:migration_table\#ref-IDPerson base:person\/CahCha-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00 . + +base:migration_table\/1189 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896-1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1896-1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 1189; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MarBla-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/119 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1913"; + base:migration_table\#DateStart_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1913-01-01"^^xsd:date; + base:migration_table\#IDMig 119; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ChrRud-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/1194 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1918"; + base:migration_table\#DateEnd_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1918-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1918"; + base:migration_table\#DateStart_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-01-01"^^xsd:date; + base:migration_table\#IDMig 1194; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MarBla-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1199 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1930"; + base:migration_table\#DateEnd_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1930-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1930"; + base:migration_table\#DateStart_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1930-01-01"^^xsd:date; + base:migration_table\#IDMig 1199; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MarBla-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/12 a base:migration_table; + base:migration_table\#IDMig 12; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/AhnEle-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/120 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 120; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/CogRos-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1204 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1849"; + base:migration_table\#DateEnd_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1849-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 1204; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MarMat-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ffm-00 . + +base:migration_table\/1209 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1854"; + base:migration_table\#DateEnd_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1854-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1854"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1854-01-01"^^xsd:date; + base:migration_table\#IDMig 1209; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MarMat-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/121 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1873"; + base:migration_table\#DateStart_Max "1873-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1873-01-01"^^xsd:date; + base:migration_table\#IDMig 121; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/CogRos-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/1214 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1861"; + base:migration_table\#DateEnd_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1861-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 1214; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MarMat-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1219 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1908"; + base:migration_table\#DateEnd_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1908-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 1219; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MarMat-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/122 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1877"; + base:migration_table\#DateStart_Max "1877-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-01-01"^^xsd:date; + base:migration_table\#IDMig 122; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/CogRos-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/1224 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1895"; + base:migration_table\#DateEnd_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1895-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 1224; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DarFau-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/1229 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 1229; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DenVic-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Nap-00 . + +base:migration_table\/123 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 123; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/CunAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/1234 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1939"; + base:migration_table\#DateEnd_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1939-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1939"; + base:migration_table\#DateStart_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1939-01-01"^^xsd:date; + base:migration_table\#IDMig 1234; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/DegEus-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/1239 a base:migration_table; + base:migration_table\#DateEnd_Max "1939-11-05"^^xsd:date; + base:migration_table\#DateEnd_Min "1939-11-05"^^xsd:date; + base:migration_table\#DateStart_Max "1939-10-19"^^xsd:date; + base:migration_table\#DateStart_Min "1939-10-19"^^xsd:date; + base:migration_table\#IDMig 1239; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DegEus-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Roch-00; + base:migration_table\#via "La Pallice, La Rochella, Buenos Aires" . + +base:migration_table\/124 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 124; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/DamWal-00 . + +base:migration_table\/1244 a base:migration_table; + base:migration_table\#IDMig 1244; + base:migration_table\#ref-IDDestPlace base:location\/CL-00; + base:migration_table\#ref-IDPerson base:person\/DelNic-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Coruna-00 . + +base:migration_table\/1249 a base:migration_table; + base:migration_table\#IDMig 1249; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DelNic-00; + base:migration_table\#ref-IDStartPlace base:location\/CL-00 . + +base:migration_table\/125 a base:migration_table; + base:migration_table\#DateEnd_Min "1885-03-20"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#DateStart_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-01-01"^^xsd:date; + base:migration_table\#IDMig 125; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/CarGae-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-00 . + +base:migration_table\/1254 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1901"; + base:migration_table\#DateEnd_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1901-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 1254; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DeaPie-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Tur-00 . + +base:migration_table\/1259 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1910"; + base:migration_table\#DateEnd_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1910-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 1259; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/DelFra-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-00 . + +base:migration_table\/126 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1834"; + base:migration_table\#DateEnd_Max "1834-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1834-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 126; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/DouEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/1264 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1885"; + base:migration_table\#DateEnd_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1885-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1885-02-09"^^xsd:date; + base:migration_table\#DateStart_Min "1885-02-09"^^xsd:date; + base:migration_table\#IDMig 1264; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/NovAlb-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Bayo-00 . + +base:migration_table\/1269 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 1269; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/NovAlb-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/127 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1851"; + base:migration_table\#DateEnd_Max "1851-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1851-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 127; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/DouEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/1274 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1846"; + base:migration_table\#IDMig 1274; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/1279 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#IDMig 1279; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/128 a base:migration_table; + base:migration_table\#DateStart_Min "1827-06-07"^^xsd:date; + base:migration_table\#IDMig 128; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/DreLou-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1284 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1844"; + base:migration_table\#IDMig 1284; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Wzbrg-00 . + +base:migration_table\/1289 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1844"; + base:migration_table\#IDMig 1289; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/129 a base:migration_table; + base:migration_table\#IDMig 129; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Jamaica-00; + base:migration_table\#ref-IDPerson base:person\/DreLou-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1294 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1846"; + base:migration_table\#IDMig 1294; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/1299 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#IDMig 1299; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/13 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "18th June 1864"; + base:migration_table\#DateEnd_Max "1864-06-18"^^xsd:date; + base:migration_table\#DateEnd_Min "1864-06-18"^^xsd:date; + base:migration_table\#IDMig 13; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/AimMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/130 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 130; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/DreLou-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Jamaica-00 . + +base:migration_table\/1304 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#IDMig 1304; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/1309 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#IDMig 1309; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00 . + +base:migration_table\/131 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 131; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/EgeFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Niederw-00 . + +base:migration_table\/1314 a base:migration_table; + base:migration_table\#IDMig 1314; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00 . + +base:migration_table\/1319 a base:migration_table; + base:migration_table\#IDMig 1319; + base:migration_table\#ref-IDPerson base:person\/WagJoh-00 . + +base:migration_table\/132 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 132; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/EgeFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/1324 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "17th December 1909"; + base:migration_table\#DateEnd_Max "1909-12-17"^^xsd:date; + base:migration_table\#DateEnd_Min "1909-12-17"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1324; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/MirCar-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00 . + +base:migration_table\/1329 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "17th May 1939"; + base:migration_table\#DateEnd_Max "1939-05-17"^^xsd:date; + base:migration_table\#DateEnd_Min "1939-05-17"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "4th May 1939"; + base:migration_table\#DateStart_Max "1939-05-04"^^xsd:date; + base:migration_table\#DateStart_Min "1939-05-04"^^xsd:date; + base:migration_table\#IDMig 1329; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MirCar-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/133 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 133; + base:migration_table\#ref-IDDestPlace base:location\/AT-Salzb-00; + base:migration_table\#ref-IDPerson base:person\/EibAnt-00 . + +base:migration_table\/1334 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "25th October 1940"; + base:migration_table\#DateEnd_Max "1940-11-15"^^xsd:date; + base:migration_table\#DateEnd_Min "1940-10-25"^^xsd:date; + base:migration_table\#DateStart_Max "1940-10-02"^^xsd:date; + base:migration_table\#DateStart_Min "1940-10-02"^^xsd:date; + base:migration_table\#IDMig 1334; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-LosAng-00; + base:migration_table\#ref-IDPerson base:person\/MirCar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "Rio de Janeiro (10th July 1940) - New York (15th or 17th October 1940 - Chicago October 1940" . + +base:migration_table\/1339 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "before 1848"; + base:migration_table\#IDMig 1339; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Sici-00 . + +base:migration_table\/134 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 134; + base:migration_table\#ref-IDDestPlace base:location\/SK-Brat-00; + base:migration_table\#ref-IDPerson base:person\/EibKar-00 . + +base:migration_table\/1344 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1848"; + base:migration_table\#DateEnd_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 1344; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/1349 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1852"; + base:migration_table\#DateEnd_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 1349; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/135 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 135; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/EibKar-00 . + +base:migration_table\/1354 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1852"; + base:migration_table\#DateEnd_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 1354; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1359 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1859"; + base:migration_table\#DateEnd_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1859-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 1359; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/136 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 136; + base:migration_table\#ref-IDDestPlace base:location\/CH-Bas-00; + base:migration_table\#ref-IDPerson base:person\/EibKar-00 . + +base:migration_table\/1364 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1861"; + base:migration_table\#DateEnd_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1861-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 1364; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Col-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1369 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1869"; + base:migration_table\#DateEnd_Max "1969-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1869"; + base:migration_table\#DateStart_Max "1969-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 1369; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Col-00 . + +base:migration_table\/137 a base:migration_table; + base:migration_table\#IDMig 137; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ffm-00; + base:migration_table\#ref-IDPerson base:person\/EibKar-00 . + +base:migration_table\/1374 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1881"; + base:migration_table\#DateEnd_Max "1881-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1881-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#DateStart_Max "1881-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1881-01-01"^^xsd:date; + base:migration_table\#IDMig 1374; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MarSal-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1379 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1866"; + base:migration_table\#DateEnd_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 1379; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/ResFre-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/138 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 138; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1384 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1864"; + base:migration_table\#DateEnd_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1864-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 1384; + base:migration_table\#ref-IDDestPlace base:location\/GER-Kas-00; + base:migration_table\#ref-IDPerson base:person\/rescar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ffm-00 . + +base:migration_table\/1389 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1866"; + base:migration_table\#DateEnd_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 1389; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/rescar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Kas-00 . + +base:migration_table\/139 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 139; + base:migration_table\#ref-IDDestPlace base:location\/FR-Strb-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1394 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1869"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1869"; + base:migration_table\#DateStart_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 1394; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/rescar-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/1399 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1879"; + base:migration_table\#DateEnd_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1879-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 1399; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/rescar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/14 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "30th August 1868"; + base:migration_table\#DateStart_Max "1868-08-30"^^xsd:date; + base:migration_table\#DateStart_Min "1868-08-30"^^xsd:date; + base:migration_table\#IDMig 14; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AimMar-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/140 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 140; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1404 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "before 1865"; + base:migration_table\#DateEnd_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1860-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "before 1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 1404; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/ResFre-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ffm-00 . + +base:migration_table\/1409 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1864"; + base:migration_table\#DateEnd_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1864-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 1409; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/NL-AMS-00; + base:migration_table\#ref-IDPerson base:person\/resjoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ffm-00 . + +base:migration_table\/141 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 141; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1414 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1865"; + base:migration_table\#DateEnd_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1865-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 1414; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Wzbrg-00; + base:migration_table\#ref-IDPerson base:person\/resjoh-00; + base:migration_table\#ref-IDStartPlace base:location\/NL-AMS-00 . + +base:migration_table\/1419 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1869"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1869"; + base:migration_table\#DateStart_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 1419; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/resjoh-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Wzbrg-00 . + +base:migration_table\/142 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 142; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1424 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "after 1873"; + base:migration_table\#DateEnd_Max "1916-12-16"^^xsd:date; + base:migration_table\#DateEnd_Min "1873-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "after 1873"; + base:migration_table\#DateStart_Max "1916-12-16"^^xsd:date; + base:migration_table\#DateStart_Min "1873-01-01"^^xsd:date; + base:migration_table\#IDMig 1424; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/resjoh-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/143 a base:migration_table; + base:migration_table\#IDMig 143; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1434 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 1434; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/BR-SaoPau-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Pira-00 . + +base:migration_table\/1439 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 1439; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/BR-Pira-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/144 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1932"; + base:migration_table\#DateStart_Max "1932-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1932-01-01"^^xsd:date; + base:migration_table\#IDMig 144; + base:migration_table\#ref-IDDestPlace base:location\/AT-Perch-00; + base:migration_table\#ref-IDPerson base:person\/EibRiz-00 . + +base:migration_table\/1444 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1892-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 1444; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Manaus-00 . + +base:migration_table\/1449 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 1449; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-Manaus-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Bel-00 . + +base:migration_table\/145 a base:migration_table; + base:migration_table\#IDMig 145; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/EibSie-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/1454 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 1454; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-Bel-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1459 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "December 1843"; + base:migration_table\#DateEnd_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1843-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1459; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/CanAug-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/146 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 146; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/EicJos-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/1464 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "January 1868"; + base:migration_table\#DateEnd_Max "1868-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1464; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RioGra-0; + base:migration_table\#ref-IDPerson base:person\/CanAug-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1469 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "May 1869"; + base:migration_table\#DateEnd_Max "1869-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1469; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-PortAleg-00; + base:migration_table\#ref-IDPerson base:person\/CanAug-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RioGra-0 . + +base:migration_table\/147 a base:migration_table; + base:migration_table\#IDMig 147; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/EicJos-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1474 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "December 1869"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1474; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RioGra-0; + base:migration_table\#ref-IDPerson base:person\/CanAug-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-PortAleg-00 . + +base:migration_table\/1479 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "December 1875"; + base:migration_table\#DateEnd_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1875-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1479; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/CanAug-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RioGra-0 . + +base:migration_table\/148 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1826"; + base:migration_table\#DateStart_Max "1826-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1826-01-01"^^xsd:date; + base:migration_table\#IDMig 148; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/EicJos-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/1484 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1870"; + base:migration_table\#DateEnd_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 1484; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/ConHei-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Biala-00 . + +base:migration_table\/1489 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "01.10.1874"; + base:migration_table\#DateEnd_Max "1874-10-01"^^xsd:date; + base:migration_table\#DateEnd_Min "1874-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "30.09.1874"; + base:migration_table\#DateStart_Max "1874-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1874-09-30"^^xsd:date; + base:migration_table\#IDMig 1489; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/ConHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/149 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1827-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1827-01-01"^^xsd:date; + base:migration_table\#IDMig 149; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Kas-00; + base:migration_table\#ref-IDPerson base:person\/EicJos-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/1494 a base:migration_table; + base:migration_table\#IDMig 1494; + base:migration_table\#ref-IDPerson base:person\/ConHei-00 . + +base:migration_table\/1499 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1898"; + base:migration_table\#DateEnd_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1898"; + base:migration_table\#DateStart_Max "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 1499; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AloEnz-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Flor-00 . + +base:migration_table\/15 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 15; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/AimMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Paris – London – New York" . + +base:migration_table\/150 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 150; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/EicJos-00; + base:migration_table\#ref-IDStartPlace base:location\/RUS-Kali-00 . + +base:migration_table\/1504 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 1504; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BellV-00; + base:migration_table\#ref-IDPerson base:person\/AloEnz-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/1509 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 1509; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AloEnz-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BellV-00 . + +base:migration_table\/151 a base:migration_table; + base:migration_table\#IDMig 151; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/ElsHer-00 . + +base:migration_table\/1514 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1514; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1519 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "May 1891"; + base:migration_table\#DateEnd_Max "1891-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1891-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1519; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/152 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 152; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/ElsHer-00 . + +base:migration_table\/1524 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "June 1893"; + base:migration_table\#DateEnd_Max "1893-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1893-06-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1524; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1529 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1529; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/153 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 153; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/ElsHer-00 . + +base:migration_table\/1534 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1534; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1539 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "5th May 1872"; + base:migration_table\#DateEnd_Max "1872-05-05"^^xsd:date; + base:migration_table\#DateEnd_Min "1872-05-05"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 1539; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/SimLuc-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/154 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1865"; + base:migration_table\#DateEnd_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1865-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 154; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/SG-00; + base:migration_table\#ref-IDPerson base:person\/FenGeo-00; + base:migration_table\#ref-IDStartPlace base:location\/Channel-StHel . + +base:migration_table\/1544 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 1544; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/HerLui-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Bilb-00 . + +base:migration_table\/1549 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 1549; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/EusArt-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Tener-00 . + +base:migration_table\/155 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1872"; + base:migration_table\#DateEnd_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1872-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 155; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CN-SH-00; + base:migration_table\#ref-IDPerson base:person\/FenGeo-00; + base:migration_table\#ref-IDStartPlace base:location\/SG-00 . + +base:migration_table\/1551 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1853"; + base:migration_table\#DateEnd_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1853-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 1551; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BieEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Barr-00 . + +base:migration_table\/1554 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1858"; + base:migration_table\#DateEnd_Max "1858-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1858-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1858"; + base:migration_table\#DateStart_Max "1858-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1858-01-01"^^xsd:date; + base:migration_table\#IDMig 1554; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/CL-Santiago-00; + base:migration_table\#ref-IDPerson base:person\/BieEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/1559 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1859"; + base:migration_table\#DateEnd_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1859-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 1559; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BieEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/CL-Santiago-00 . + +base:migration_table\/156 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "July 1886"; + base:migration_table\#DateEnd_Max "1886-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1886"; + base:migration_table\#DateStart_Max "1886-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-07-01"^^xsd:date; + base:migration_table\#IDMig 156; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AUS-Vict-00; + base:migration_table\#ref-IDPerson base:person\/FenGeo-00; + base:migration_table\#ref-IDStartPlace base:location\/CN-SH-00 . + +base:migration_table\/1564 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 1564; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AmaLui-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Pesca-00 . + +base:migration_table\/1569 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1918"; + base:migration_table\#DateStart_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-01-01"^^xsd:date; + base:migration_table\#IDMig 1569; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Cord-00; + base:migration_table\#ref-IDPerson base:person\/AmaLui-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/157 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 157; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/FerAma-00 . + +base:migration_table\/1574 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1921"; + base:migration_table\#DateEnd_Max "1921-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1921-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1921"; + base:migration_table\#DateStart_Max "1921-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1921-01-01"^^xsd:date; + base:migration_table\#IDMig 1574; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AmaLui-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-Cord-00 . + +base:migration_table\/1579 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1956"; + base:migration_table\#DateEnd_Max "1956-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1956-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1956"; + base:migration_table\#DateStart_Max "1956-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1956-01-01"^^xsd:date; + base:migration_table\#IDMig 1579; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/ES-Mad-00; + base:migration_table\#ref-IDPerson base:person\/AmaLui-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/158 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1854"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1854-01-01"^^xsd:date; + base:migration_table\#IDMig 158; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-Rom-00; + base:migration_table\#ref-IDPerson base:person\/FerAma-00 . + +base:migration_table\/1584 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1975"; + base:migration_table\#DateEnd_Max "1975-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1975-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1975"; + base:migration_table\#DateStart_Max "1975-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1975-09-01"^^xsd:date; + base:migration_table\#IDMig 1584; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AmaLui-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/1589 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "01.07.1876"; + base:migration_table\#DateEnd_Max "1876-07-01"^^xsd:date; + base:migration_table\#DateEnd_Min "1876-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "30.06.1876"; + base:migration_table\#DateStart_Max "1876-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1876-06-30"^^xsd:date; + base:migration_table\#IDMig 1589; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/ConHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/159 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 159; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/FerAma-00 . + +base:migration_table\/1594 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "01.09.1877"; + base:migration_table\#DateEnd_Max "1877-09-01"^^xsd:date; + base:migration_table\#DateEnd_Min "1877-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "After 05.07.1877"; + base:migration_table\#DateStart_Max "1877-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-07-05"^^xsd:date; + base:migration_table\#IDMig 1594; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Brem-00; + base:migration_table\#ref-IDPerson base:person\/ConHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/1599 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "04.09.1878"; + base:migration_table\#DateEnd_Max "1878-09-04"^^xsd:date; + base:migration_table\#DateEnd_Min "1878-09-04"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Ca. 25.08.1878"; + base:migration_table\#DateStart_Max "1878-08-25"^^xsd:date; + base:migration_table\#DateStart_Min "1878-08-23"^^xsd:date; + base:migration_table\#IDMig 1599; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ConHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Brem-00 . + +base:migration_table\/16 a base:migration_table; + base:migration_table\#DateStart_Min "1879-09-24"^^xsd:date; + base:migration_table\#IDMig 16; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AimMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "" . + +base:migration_table\/160 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 160; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/FerAma-00 . + +base:migration_table\/1604 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1911"; + base:migration_table\#DateEnd_Max "1911-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1911-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1911"; + base:migration_table\#DateStart_Max "1911-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1911-01-01"^^xsd:date; + base:migration_table\#IDMig 1604; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GuaAlf-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/1609 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 1609; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/NapArt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00; + base:migration_table\#via "Paris" . + +base:migration_table\/161 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1827-10-06"^^xsd:date; + base:migration_table\#DateStart_Min "1827-09-01"^^xsd:date; + base:migration_table\#IDMig 161; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/FisCla-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1614 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1853-1854 (two months stay)"; + base:migration_table\#DateStart_Max "1854-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 1614; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/NapArt-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "Paris" . + +base:migration_table\/1619 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between May and June 1866"; + base:migration_table\#DateEnd_Max "1866-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "May 1866"; + base:migration_table\#DateStart_Max "1866-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-05-01"^^xsd:date; + base:migration_table\#IDMig 1619; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/NapArt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/162 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "March 1856"; + base:migration_table\#DateEnd_Max "1856-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1856-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 162; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/FurCoe-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00; + base:migration_table\#via "" . + +base:migration_table\/1624 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "March 1867"; + base:migration_table\#DateStart_Max "1867-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-03-01"^^xsd:date; + base:migration_table\#IDMig 1624; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/NapArt-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/1629 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "May 1868"; + base:migration_table\#DateStart_Max "1868-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-05-01"^^xsd:date; + base:migration_table\#IDMig 1629; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/NapArt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/163 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 163; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/FurCoe-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00; + base:migration_table\#via "" . + +base:migration_table\/1639 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 1639; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/AmoEdu-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Chieti-00 . + +base:migration_table\/164 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1891"; + base:migration_table\#DateEnd_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1891-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 164; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/FurCoe-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00; + base:migration_table\#via "" . + +base:migration_table\/1644 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1858 and 1862"; + base:migration_table\#DateStart_Fuzzy "between 1858 and 1862"; + base:migration_table\#IDMig 1644; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-StOm-00; + base:migration_table\#ref-IDPerson base:person\/GalSus-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1649 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1861 and 1864"; + base:migration_table\#DateStart_Fuzzy "between 1861 and 1864"; + base:migration_table\#IDMig 1649; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GalSus-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/165 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 165; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/FurCoe-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00; + base:migration_table\#via "" . + +base:migration_table\/1654 a base:migration_table; + base:migration_table\#DateEnd_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between July and August 1868"; + base:migration_table\#DateStart_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Min "1868-07-11"^^xsd:date; + base:migration_table\#IDMig 1654; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GalSus-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1659 a base:migration_table; + base:migration_table\#IDMig 1659; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/MilGeo-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/166 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 166; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/JohGad-00; + base:migration_table\#ref-IDStartPlace base:location\/NL-00 . + +base:migration_table\/1664 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1905"; + base:migration_table\#DateEnd_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1905-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 1664; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/LevMis-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Krem-00 . + +base:migration_table\/1669 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 1669; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/LevMis-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/167 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "May 1899"; + base:migration_table\#DateStart_Max "1899-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-05-01"^^xsd:date; + base:migration_table\#IDMig 167; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/JohGad-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1674 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1911-1913"; + base:migration_table\#DateEnd_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1911-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1911-1913"; + base:migration_table\#DateStart_Max "1913-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1911-01-01"^^xsd:date; + base:migration_table\#IDMig 1674; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/LevMis-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/1679 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915-1916"; + base:migration_table\#DateEnd_Max "1916-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1915-1916"; + base:migration_table\#DateStart_Max "1916-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 1679; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/LevMis-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/168 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "June 1899"; + base:migration_table\#DateStart_Max "1899-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1899-06-01"^^xsd:date; + base:migration_table\#IDMig 168; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Bayr-00; + base:migration_table\#ref-IDPerson base:person\/JohGad-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/1684 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1850"; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#IDMig 1684; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/FaiBoo-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/169 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 169; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/JohGad-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Bayr-00 . + +base:migration_table\/17 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 17; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Brno-00; + base:migration_table\#ref-IDPerson base:person\/AlbHer-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/170 a base:migration_table; + base:migration_table\#IDMig 170; + base:migration_table\#ref-IDDestPlace base:location\/GER-NeuStrel-00; + base:migration_table\#ref-IDPerson base:person\/GalCar-00 . + +base:migration_table\/171 a base:migration_table; + base:migration_table\#IDMig 171; + base:migration_table\#ref-IDDestPlace base:location\/GER-Brem-00; + base:migration_table\#ref-IDPerson base:person\/GalCar-00 . + +base:migration_table\/172 a base:migration_table; + base:migration_table\#IDMig 172; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/GalCar-00 . + +base:migration_table\/173 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 173; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/GalCar-00 . + +base:migration_table\/174 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 174; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/GalCae-00 . + +base:migration_table\/175 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 175; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/GalCae-00 . + +base:migration_table\/176 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1898"; + base:migration_table\#DateEnd_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Min "1874-02-17"^^xsd:date; + base:migration_table\#IDMig 176; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/GalCae-00 . + +base:migration_table\/177 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1898"; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 177; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/GalCae-00 . + +base:migration_table\/178 a base:migration_table; + base:migration_table\#IDMig 178; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/GalGeo-00 . + +base:migration_table\/179 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 179; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/GalGeo-00 . + +base:migration_table\/18 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 18; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AlbHer-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/180 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#DateStart_Max "1881-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1881-01-01"^^xsd:date; + base:migration_table\#IDMig 180; + base:migration_table\#ref-IDDestPlace base:location\/CA-Montr-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/SCT-Aberd-00 . + +base:migration_table\/181 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 181; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00 . + +base:migration_table\/182 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 182; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00 . + +base:migration_table\/183 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 183; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/184 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 184; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/185 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 185; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/186 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1930"; + base:migration_table\#DateStart_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1930-01-01"^^xsd:date; + base:migration_table\#IDMig 186; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00 . + +base:migration_table\/187 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1935"; + base:migration_table\#DateStart_Max "1935-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1935-01-01"^^xsd:date; + base:migration_table\#IDMig 187; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/188 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1939"; + base:migration_table\#DateStart_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1939-01-01"^^xsd:date; + base:migration_table\#IDMig 188; + base:migration_table\#ref-IDDestPlace base:location\/SCT-00; + base:migration_table\#ref-IDPerson base:person\/GarMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00 . + +base:migration_table\/189 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 189; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GeoWil-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/19 a base:migration_table; + base:migration_table\#IDMig 19; + base:migration_table\#ref-IDDestPlace base:location\/GER-Augsb-00; + base:migration_table\#ref-IDPerson base:person\/AlbHer-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/190 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1917"; + base:migration_table\#DateStart_Max "1917-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1917-01-01"^^xsd:date; + base:migration_table\#IDMig 190; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GeoWil-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/191 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 191; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GerBer-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/192 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 192; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/GilAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/193 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1964"; + base:migration_table\#DateStart_Max "1964-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1964-01-01"^^xsd:date; + base:migration_table\#IDMig 193; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GilAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Louis-00 . + +base:migration_table\/194 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 194; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GluAlm-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Jassy-00 . + +base:migration_table\/195 a base:migration_table; + base:migration_table\#IDMig 195; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/GluAlm-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/196 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1848"; + base:migration_table\#DateEnd_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 196; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GodAra-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/197 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 197; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-00; + base:migration_table\#ref-IDPerson base:person\/GodAra-00 . + +base:migration_table\/2 a base:migration_table; + base:migration_table\#IDMig 2; + base:migration_table\#ref-IDPerson base:person\/AbeTsi-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-00 . + +base:migration_table\/20 a base:migration_table; + base:migration_table\#IDMig 20; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/AlbHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Augsb-00 . + +base:migration_table\/201 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 1883 and 1885"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 201; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00 . + +base:migration_table\/202 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 202; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/203 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 07.07.1888 and 31.07.1889"; + base:migration_table\#DateStart_Max "1889-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-07"^^xsd:date; + base:migration_table\#IDMig 203; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/204 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 01.11.1903 and 02.12.1903"; + base:migration_table\#DateEnd_Max "1903-12-02"^^xsd:date; + base:migration_table\#DateEnd_Min "1903-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "November 1903"; + base:migration_table\#DateStart_Max "1903-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1903-11-01"^^xsd:date; + base:migration_table\#IDMig 204; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/205 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1832"; + base:migration_table\#DateStart_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1832-01-01"^^xsd:date; + base:migration_table\#IDMig 205; + base:migration_table\#ref-IDDestPlace base:location\/HR-Viz-00; + base:migration_table\#ref-IDPerson base:person\/GriCar-00 . + +base:migration_table\/206 a base:migration_table; + base:migration_table\#IDMig 206; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GriCar-00 . + +base:migration_table\/207 a base:migration_table; + base:migration_table\#IDMig 207; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GriCar-00 . + +base:migration_table\/2074 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "January 1898"; + base:migration_table\#DateEnd_Max "1898-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1897-10-21"^^xsd:date; + base:migration_table\#DateStart_Min "1897-10-21"^^xsd:date; + base:migration_table\#IDMig 2074; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CSTR-SanJos-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/BE-BRU-00; + base:migration_table\#via "Paris-New York-Puerto Limón" . + +base:migration_table\/2078 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring 1898"; + base:migration_table\#DateEnd_Max "1898-06-23"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-03-24"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "January 1898"; + base:migration_table\#DateStart_Max "1898-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 2078; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NewOrl-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/CSTR-SanJos-00 . + +base:migration_table\/208 a base:migration_table; + base:migration_table\#IDMig 208; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/GriCar-00 . + +base:migration_table\/2082 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring 1898"; + base:migration_table\#DateEnd_Max "1898-06-23"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-03-24"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Spring 1898"; + base:migration_table\#DateStart_Max "1898-06-23"^^xsd:date; + base:migration_table\#DateStart_Min "1898-03-24"^^xsd:date; + base:migration_table\#IDMig 2082; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NewOrl-00 . + +base:migration_table\/2086 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between1898 and 1899"; + base:migration_table\#DateEnd_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between1898 and 1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 2086; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/209 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 209; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CH-StJn-00; + base:migration_table\#ref-IDPerson base:person\/GriCar-00 . + +base:migration_table\/2090 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1902"; + base:migration_table\#DateEnd_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1902-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 2090; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/EG-Cairo-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/BE-BRU-00 . + +base:migration_table\/2094 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1903"; + base:migration_table\#DateEnd_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1903-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 2094; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/VN-HAN-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/EG-Cairo-00; + base:migration_table\#via "Long tour without fix residence (New York- Saigon)" . + +base:migration_table\/2098 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 2098; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SG-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/VN-HAN-00; + base:migration_table\#via "Hong Kong - Shanghai" . + +base:migration_table\/21 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1845"; + base:migration_table\#DateStart_Max "1845-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1845-01-01"^^xsd:date; + base:migration_table\#IDMig 21; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AlbMar-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/210 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1838"; + base:migration_table\#DateStart_Max "1838-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1838-01-01"^^xsd:date; + base:migration_table\#IDMig 210; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GriErn-00 . + +base:migration_table\/2102 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Autumn 1908"; + base:migration_table\#DateEnd_Max "1908-12-23"^^xsd:date; + base:migration_table\#DateEnd_Min "1908-09-24"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 2102; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/SG-00; + base:migration_table\#via "Tour in Australia, New Zealand, Pacific Islands (2 years without fix residence)" . + +base:migration_table\/2106 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probable in 1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 2106; + base:migration_table\#ref-IDDestPlace base:location\/USA-Jersey-00; + base:migration_table\#ref-IDPerson base:person\/ArrBla-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02; + base:migration_table\#via "New York-Liege and other cities in Europe- tour in US" . + +base:migration_table\/2107 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 2107; + base:migration_table\#ref-IDDestPlace base:location\/HU-Ofen-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mnhm-00 . + +base:migration_table\/211 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "October 1833"; + base:migration_table\#DateStart_Max "1833-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1833-10-01"^^xsd:date; + base:migration_table\#IDMig 211; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDPerson base:person\/GriGiu-01; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/2110 a base:migration_table; + base:migration_table\#IDMig 2110; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/AubDan-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Caen-00 . + +base:migration_table\/2114 a base:migration_table; + base:migration_table\#IDMig 2114; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/2117 a base:migration_table; + base:migration_table\#IDMig 2117; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Karlsb-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2118 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 2118; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AT-Weid-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2119 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "short after her birth"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-11-01"^^xsd:date; + base:migration_table\#IDMig 2119; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-113; + base:migration_table\#ref-IDPerson base:person\/AbrBin-742; + base:migration_table\#ref-IDStartPlace base:location\/Rus-DiJeSt-127 . + +base:migration_table\/212 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 212; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/GriGiu-01 . + +base:migration_table\/2120 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 2120; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/AbrBin-742; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-113; + base:migration_table\#via "" . + +base:migration_table\/2121 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 2121; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/AbrBin-742; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00; + base:migration_table\#via "" . + +base:migration_table\/2122 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2122; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-Krak-00; + base:migration_table\#ref-IDPerson base:person\/AdlIsr-1121; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2123 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1925"; + base:migration_table\#DateStart_Max "1925-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1925-01-01"^^xsd:date; + base:migration_table\#IDMig 2123; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ISR-00; + base:migration_table\#ref-IDPerson base:person\/AdlIsr-1121; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2124 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1882"; + base:migration_table\#DateEnd_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1882-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably  December 1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-12-01"^^xsd:date; + base:migration_table\#IDMig 2124; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Bel-DiJeSt-107; + base:migration_table\#ref-IDPerson base:person\/AntRiv-1161; + base:migration_table\#ref-IDStartPlace base:location\/BY-Zhuk-00; + base:migration_table\#via "" . + +base:migration_table\/2125 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 2125; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-57; + base:migration_table\#ref-IDPerson base:person\/AntRiv-1161; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-107; + base:migration_table\#via "" . + +base:migration_table\/2126 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1928"; + base:migration_table\#DateStart_Max "1928-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1928-01-01"^^xsd:date; + base:migration_table\#IDMig 2126; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AxeMin-1205; + base:migration_table\#ref-IDStartPlace base:location\/ARG-00; + base:migration_table\#via "" . + +base:migration_table\/2128 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 2128; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BelMor-1243; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-65; + base:migration_table\#via "" . + +base:migration_table\/2129 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2129; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/DK-00; + base:migration_table\#ref-IDPerson base:person\/BelMor-1243; + base:migration_table\#ref-IDStartPlace base:location\/PL-00; + base:migration_table\#via "" . + +base:migration_table\/213 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 213; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GroAde-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/2130 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 2130; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-122; + base:migration_table\#ref-IDPerson base:person\/BelAdo-1246; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-72; + base:migration_table\#via "" . + +base:migration_table\/2131 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2131; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ROU-00; + base:migration_table\#ref-IDPerson base:person\/BenBen-1256; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-101; + base:migration_table\#via "" . + +base:migration_table\/2132 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2132; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BenBen-1256; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00; + base:migration_table\#via "" . + +base:migration_table\/2133 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1867"; + base:migration_table\#DateStart_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-01-01"^^xsd:date; + base:migration_table\#IDMig 2133; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-Wzbrg-00; + base:migration_table\#ref-IDPerson base:person\/BenBen-1256; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00; + base:migration_table\#via "" . + +base:migration_table\/2134 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2134; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Iwa-00; + base:migration_table\#ref-IDPerson base:person\/BerRud-1262; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2135 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2135; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/BerLeo-1264; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00; + base:migration_table\#via "" . + +base:migration_table\/2136 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 2136; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-Galz-00; + base:migration_table\#ref-IDPerson base:person\/BerYit-1275; + base:migration_table\#ref-IDStartPlace base:location\/LT-Viln-00; + base:migration_table\#via "" . + +base:migration_table\/2137 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 2137; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/CH-00; + base:migration_table\#ref-IDPerson base:person\/BerYit-1275; + base:migration_table\#ref-IDStartPlace base:location\/PL-Galz-00; + base:migration_table\#via "" . + +base:migration_table\/2138 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2138; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/BerYit-1275; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "" . + +base:migration_table\/2139 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1928-1930"; + base:migration_table\#DateStart_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1928-01-01"^^xsd:date; + base:migration_table\#IDMig 2139; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ISR-TelAv-00; + base:migration_table\#ref-IDPerson base:person\/BerYit-1275; + base:migration_table\#ref-IDStartPlace base:location\/ISR-00; + base:migration_table\#via "" . + +base:migration_table\/214 a base:migration_table; + base:migration_table\#IDMig 214; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/GroAde-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2140 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2140; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BerBer-859; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "" . + +base:migration_table\/2141 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2141; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BerBer-859; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2142 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 2142; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Rom-DiJeSt-97; + base:migration_table\#ref-IDPerson base:person\/BlaLeo-1000; + base:migration_table\#ref-IDStartPlace base:location\/Mol-DiJeSt-73; + base:migration_table\#via "" . + +base:migration_table\/2143 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 2143; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BoyRaf-791; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "" . + +base:migration_table\/2144 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1900-01-05"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 2144; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2145 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2145; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00; + base:migration_table\#via "" . + +base:migration_table\/2146 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2146; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "" . + +base:migration_table\/2147 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2147; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-Sib-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/RU-00; + base:migration_table\#via "" . + +base:migration_table\/2148 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2148; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-96; + base:migration_table\#ref-IDPerson base:person\/ElkMen-1567; + base:migration_table\#via "" . + +base:migration_table\/2149 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2149; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Chark-00; + base:migration_table\#ref-IDPerson base:person\/ElkMen-1567; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-96; + base:migration_table\#via "" . + +base:migration_table\/215 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 23.08.1924 and 04.09.1924"; + base:migration_table\#DateStart_Max "1924-09-04"^^xsd:date; + base:migration_table\#DateStart_Min "1924-08-23"^^xsd:date; + base:migration_table\#IDMig 215; + base:migration_table\#ref-IDDestPlace base:location\/USA-Madi-00; + base:migration_table\#ref-IDPerson base:person\/HagUta-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/2150 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 2150; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-Mosk-00; + base:migration_table\#ref-IDPerson base:person\/EntJoe-1574; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-77; + base:migration_table\#via "" . + +base:migration_table\/2151 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 2151; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/EntJoe-1574; + base:migration_table\#ref-IDStartPlace base:location\/RU-Mosk-00; + base:migration_table\#via "" . + +base:migration_table\/2152 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1885-86"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 2152; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "" . + +base:migration_table\/2153 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2153; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/IN-Mumb-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "" . + +base:migration_table\/2154 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2154; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/IN-Mumb-00; + base:migration_table\#via "" . + +base:migration_table\/2155 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2155; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-Lod-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/RU-00; + base:migration_table\#via "" . + +base:migration_table\/2156 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2156; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2157 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-05"^^xsd:date; + base:migration_table\#IDMig 2157; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-62; + base:migration_table\#via "" . + +base:migration_table\/2158 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2158; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "" . + +base:migration_table\/2159 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2159; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/RU-StPet-00; + base:migration_table\#via "" . + +base:migration_table\/216 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 216; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/HamOsc-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-SZ-00 . + +base:migration_table\/2160 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2160; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Bessar-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/UA-00; + base:migration_table\#via "" . + +base:migration_table\/2161 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2161; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ROU-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/Bessar-00; + base:migration_table\#via "" . + +base:migration_table\/2162 a base:migration_table; + base:migration_table\#IDMig 2162; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-96; + base:migration_table\#ref-IDPerson base:person\/GilLou-1764; + base:migration_table\#via "" . + +base:migration_table\/2163 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "circa 1881"; + base:migration_table\#IDMig 2163; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/GolSam-1821; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-58; + base:migration_table\#via "" . + +base:migration_table\/2165 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2165; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/GolSam-1829; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-16 . + +base:migration_table\/2166 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2166; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ARG-00; + base:migration_table\#ref-IDPerson base:person\/HadEst-1958; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "" . + +base:migration_table\/2167 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "before 1942"; + base:migration_table\#IDMig 2167; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/KomIsr-2131; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-31; + base:migration_table\#via "" . + +base:migration_table\/2168 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1942"; + base:migration_table\#DateEnd_Max "1942-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1942-07-15"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1942"; + base:migration_table\#DateStart_Max "1942-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1940-06-16"^^xsd:date; + base:migration_table\#IDMig 2168; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Fra-DiJeSt-64; + base:migration_table\#ref-IDPerson base:person\/KomIsr-2131; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Lyon" . + +base:migration_table\/217 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1837"; + base:migration_table\#DateEnd_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1837-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 217; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/HelJac-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00 . + +base:migration_table\/2171 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2171; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/KomMax-2133; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "" . + +base:migration_table\/2172 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#DateStart_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-01-01"^^xsd:date; + base:migration_table\#IDMig 2172; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LatIze-LatIze-927; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00; + base:migration_table\#via "" . + +base:migration_table\/2173 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 2173; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/MonLaz-2502; + base:migration_table\#ref-IDStartPlace base:location\/Lit-DiJeSt-82; + base:migration_table\#via "" . + +base:migration_table\/2174 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-02-08"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-02-08"^^xsd:date; + base:migration_table\#IDMig 2174; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ZA-00; + base:migration_table\#ref-IDPerson base:person\/MonLaz-2502; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "" . + +base:migration_table\/2175 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 2175; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/MonLaz-2502; + base:migration_table\#ref-IDStartPlace base:location\/ZA-00; + base:migration_table\#via "" . + +base:migration_table\/2176 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1881"; + base:migration_table\#DateEnd_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1880-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-09-01"^^xsd:date; + base:migration_table\#IDMig 2176; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/NadSon-840; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-58; + base:migration_table\#via "" . + +base:migration_table\/2177 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 2177; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/NatCha-745; + base:migration_table\#ref-IDStartPlace base:location\/BY-Minsk-00; + base:migration_table\#via "" . + +base:migration_table\/2178 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1900-01-04"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 2178; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/NatCha-745; + base:migration_table\#ref-IDStartPlace base:location\/ZA-Joburg; + base:migration_table\#via "" . + +base:migration_table\/2179 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2179; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-57; + base:migration_table\#ref-IDPerson base:person\/NerEst-2555; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-122; + base:migration_table\#via "" . + +base:migration_table\/218 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between 1878 and 1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between 1878 and 1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 218; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/HerAde-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2180 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2180; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Pol-DiJeSt-83; + base:migration_table\#ref-IDPerson base:person\/NozItz-2579; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "" . + +base:migration_table\/2181 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2181; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-Lomza-00; + base:migration_table\#ref-IDPerson base:person\/NozItz-2579; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-83; + base:migration_table\#via "" . + +base:migration_table\/2182 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2182; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/NozItz-2579; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lomza-00; + base:migration_table\#via "" . + +base:migration_table\/2183 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2183; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Bel-DiJeSt-61; + base:migration_table\#ref-IDPerson base:person\/ReiBin-2748; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-16; + base:migration_table\#via "" . + +base:migration_table\/2184 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2184; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/TR-Ist-00; + base:migration_table\#ref-IDPerson base:person\/RosAdo-2777; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Buch-00; + base:migration_table\#via "" . + +base:migration_table\/2185 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2185; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Egy-DiJeSt-145; + base:migration_table\#ref-IDPerson base:person\/RosAdo-2777; + base:migration_table\#ref-IDStartPlace base:location\/TR-Ist-00; + base:migration_table\#via "" . + +base:migration_table\/2186 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#IDMig 2186; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/EG-Cairo-00; + base:migration_table\#ref-IDPerson base:person\/RosAdo-2777; + base:migration_table\#via "" . + +base:migration_table\/2187 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2187; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/RosAdo-2777; + base:migration_table\#ref-IDStartPlace base:location\/USA-00; + base:migration_table\#via "" . + +base:migration_table\/2188 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 2188; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/SeiLeo-2882; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-24; + base:migration_table\#via "" . + +base:migration_table\/2189 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2189; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-Clevel-00; + base:migration_table\#ref-IDPerson base:person\/Sim_2979; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "" . + +base:migration_table\/219 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1842"; + base:migration_table\#DateStart_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1842-01-01"^^xsd:date; + base:migration_table\#IDMig 219; + base:migration_table\#ref-IDDestPlace base:location\/USA-Phila-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/IE-Ldnder-00 . + +base:migration_table\/2190 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2190; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/SimMor-720; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-58; + base:migration_table\#via "" . + +base:migration_table\/2191 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 2191; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/SinAbe-2985; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "" . + +base:migration_table\/2192 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 2192; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/TanAvr-729; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2193 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2193; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/TanBer-748; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2195 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 2195; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/TimAdo-3076; + base:migration_table\#ref-IDStartPlace base:location\/DK-Kop-00; + base:migration_table\#via "" . + +base:migration_table\/2196 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2196; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/TorSam-3082; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2197 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 2197; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/TorSam-3082; + base:migration_table\#ref-IDStartPlace base:location\/USA-NHav-00; + base:migration_table\#via "" . + +base:migration_table\/2198 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2198; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/ZwiLou-814; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00; + base:migration_table\#via "" . + +base:migration_table\/2199 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2199; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/VakFan-3136; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/22 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 22; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AlbMar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/220 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 220; + base:migration_table\#ref-IDDestPlace base:location\/USA-Wash-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Phila-00 . + +base:migration_table\/2200 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2200; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/EN-MANCH-00; + base:migration_table\#ref-IDPerson base:person\/VakFan-3136; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "" . + +base:migration_table\/2201 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2201; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/ZA-00; + base:migration_table\#ref-IDPerson base:person\/VakFan-3136; + base:migration_table\#ref-IDStartPlace base:location\/EN-MANCH-00; + base:migration_table\#via "" . + +base:migration_table\/2202 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 2202; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/VakFan-3136; + base:migration_table\#ref-IDStartPlace base:location\/ZA-00; + base:migration_table\#via "Family" . + +base:migration_table\/2203 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1927"; + base:migration_table\#DateStart_Max "1927-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1927-01-01"^^xsd:date; + base:migration_table\#IDMig 2203; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/VakFan-3136; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "" . + +base:migration_table\/2204 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2204; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/VakMor-3137; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/2205 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1900-01-04"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 2205; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/VakRoz-3138; + base:migration_table\#ref-IDStartPlace base:location\/ZA-00; + base:migration_table\#via "" . + +base:migration_table\/2206 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2206; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/VakRoz-3138; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "" . + +base:migration_table\/2207 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 2207; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WalEll-3202; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "Family" . + +base:migration_table\/2208 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2208; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/WalHym-3204; + base:migration_table\#ref-IDStartPlace base:location\/BY-Grod-00; + base:migration_table\#via "" . + +base:migration_table\/2209 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "he moved in his school years"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1858-04-19"^^xsd:date; + base:migration_table\#IDMig 2209; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-19; + base:migration_table\#ref-IDPerson base:person\/WeiJos-3230; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-142; + base:migration_table\#via "He lived in Zhytomyr probably until between 1878 and 1881." . + +base:migration_table\/221 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 221; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2210 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1914"; + base:migration_table\#DateStart_Max "1914-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1914-01-01"^^xsd:date; + base:migration_table\#IDMig 2210; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/RU-00; + base:migration_table\#ref-IDPerson base:person\/WeiSim-3237; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "" . + +base:migration_table\/2211 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "between March 1870 and 1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-03-01"^^xsd:date; + base:migration_table\#IDMig 2211; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-7; + base:migration_table\#via "" . + +base:migration_table\/2212 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 2212; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/2213 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2213; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "" . + +base:migration_table\/2214 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 2214; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "" . + +base:migration_table\/2215 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably around 1932"; + base:migration_table\#DateEnd_Max "1932-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1932-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1928"; + base:migration_table\#DateStart_Max "1928-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1928-09-01"^^xsd:date; + base:migration_table\#IDMig 2215; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/RU-Mosk-00; + base:migration_table\#via "Buenos Aires - Baltimore - Boston" . + +base:migration_table\/2216 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1917"; + base:migration_table\#DateStart_Max "1917-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1917-03-01"^^xsd:date; + base:migration_table\#IDMig 2216; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "Tour in Russia and in Kyev" . + +base:migration_table\/2217 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 2217; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Bel-DiJeSt-117; + base:migration_table\#ref-IDPerson base:person\/ZeiMos-3363; + base:migration_table\#ref-IDStartPlace base:location\/Lit-DiJeSt-74; + base:migration_table\#via "" . + +base:migration_table\/2218 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2218; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/ZheLey-3381; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-150; + base:migration_table\#via "" . + +base:migration_table\/2219 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1924"; + base:migration_table\#DateStart_Max "1924-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1924-01-01"^^xsd:date; + base:migration_table\#IDMig 2219; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZheLey-3381; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00; + base:migration_table\#via "" . + +base:migration_table\/222 a base:migration_table; + base:migration_table\#IDMig 222; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02 . + +base:migration_table\/2220 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2220; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/ZibEla-3385; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "" . + +base:migration_table\/2221 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 2221; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZibEla-3385; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2222 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2222; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/PL-Galz-00; + base:migration_table\#ref-IDPerson base:person\/ZibEla-3385; + base:migration_table\#ref-IDStartPlace base:location\/USA-Brook-00; + base:migration_table\#via "" . + +base:migration_table\/2223 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2223; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/ZilWol-3397; + base:migration_table\#ref-IDStartPlace base:location\/PL-00; + base:migration_table\#via "" . + +base:migration_table\/2224 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#IDMig 2224; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-Phila-00; + base:migration_table\#ref-IDPerson base:person\/ZilKar-3399; + base:migration_table\#ref-IDStartPlace base:location\/UK-Liv-00; + base:migration_table\#via "" . + +base:migration_table\/2225 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy ""; + base:migration_table\#IDMig 2225; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Rom-DiJeSt-45; + base:migration_table\#ref-IDPerson base:person\/ZinYos-3409; + base:migration_table\#ref-IDStartPlace base:location\/Rom-DiJeSt-102; + base:migration_table\#via "" . + +base:migration_table\/2226 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1882"; + base:migration_table\#DateEnd_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1882-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 2226; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/AdlJac-706; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "Long tour around Russia, Ukraine, Poland - Kobelyaki shtetl -  Poltava -  Smila- Pereyeslav - Chernigov Daugavpils-Minsk- Bobruisk - Vitebsk- Rostov - Riga" . + +base:migration_table\/2229 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "March 1887"; + base:migration_table\#DateEnd_Max "1887-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1887-03-01"^^xsd:date; + base:migration_table\#IDMig 2229; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/AdlJac-706; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "New York" . + +base:migration_table\/223 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 223; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2230 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1857"; + base:migration_table\#DateStart_Max "1857-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1857-01-01"^^xsd:date; + base:migration_table\#IDMig 2230; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-19; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-STARO-00; + base:migration_table\#via "" . + +base:migration_table\/2231 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1867"; + base:migration_table\#DateStart_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-01-01"^^xsd:date; + base:migration_table\#IDMig 2231; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/Crim-Simf-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-19; + base:migration_table\#via "" . + +base:migration_table\/2232 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 2232; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/Crim-Simf-00; + base:migration_table\#via "" . + +base:migration_table\/2233 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "between 01.01.1875 and 23.07.1875"; + base:migration_table\#DateStart_Max "1875-07-23"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 2233; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "" . + +base:migration_table\/2234 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy ""; + base:migration_table\#DateStart_Fuzzy "May 1897"; + base:migration_table\#DateStart_Max "1897-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-05-01"^^xsd:date; + base:migration_table\#IDMig 2234; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "" . + +base:migration_table\/2238 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 01.01.1875 and 23.07.1875"; + base:migration_table\#DateStart_Max "1875-07-23"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 2238; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00 . + +base:migration_table\/224 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1857"; + base:migration_table\#DateStart_Max "1857-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1857-01-01"^^xsd:date; + base:migration_table\#IDMig 224; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/2242 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 2242; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UA-Czern-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/2243 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "Autumn 1876"; + base:migration_table\#DateStart_Max "1876-12-21"^^xsd:date; + base:migration_table\#DateStart_Min "1876-09-22"^^xsd:date; + base:migration_table\#IDMig 2243; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ROU-Jassy-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Czern-00 . + +base:migration_table\/2246 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "just before Passover 1879"; + base:migration_table\#DateStart_Max "1879-04-06"^^xsd:date; + base:migration_table\#DateStart_Min "1879-04-01"^^xsd:date; + base:migration_table\#IDMig 2246; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Jassy-00 . + +base:migration_table\/225 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 225; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/HerAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2254 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "October 1889"; + base:migration_table\#DateEnd_Max "1889-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 29.07.1889 and 31.10.1889"; + base:migration_table\#DateStart_Max "1889-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-07-29"^^xsd:date; + base:migration_table\#IDMig 2254; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2258 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "October 1890"; + base:migration_table\#DateStart_Max "1890-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-10-01"^^xsd:date; + base:migration_table\#IDMig 2258; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/226 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 226; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-MKE-00; + base:migration_table\#ref-IDPerson base:person\/HolVic-00 . + +base:migration_table\/2262 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between July 1892 and December 1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1892-07-01"^^xsd:date; + base:migration_table\#IDMig 2262; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Buch-00 . + +base:migration_table\/2266 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 15.12.1891 and 31.07.1892"; + base:migration_table\#DateStart_Max "1892-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-12-15"^^xsd:date; + base:migration_table\#IDMig 2266; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ROU-Buch-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/227 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 227; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/HolVic-00 . + +base:migration_table\/2270 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 2270; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GolAbr-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2274 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring"; + base:migration_table\#DateEnd_Max "1814-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1814-03-01"^^xsd:date; + base:migration_table\#DateStart_Max "1813-07-08"^^xsd:date; + base:migration_table\#DateStart_Min "1813-07-08"^^xsd:date; + base:migration_table\#IDMig 2274; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00; + base:migration_table\#via "Harburg, Karlsbad, Prague" . + +base:migration_table\/2278 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "December 1821"; + base:migration_table\#DateEnd_Max "2025-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "2025-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "December 1821"; + base:migration_table\#DateStart_Max "1821-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1821-12-01"^^xsd:date; + base:migration_table\#IDMig 2278; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Olo-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/228 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 228; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/HolVic-00 . + +base:migration_table\/2282 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "End of July 1825"; + base:migration_table\#DateEnd_Max "1825-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1825-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of July 1825"; + base:migration_table\#DateStart_Max "1825-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1825-07-01"^^xsd:date; + base:migration_table\#IDMig 2282; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Olo-00 . + +base:migration_table\/2286 a base:migration_table; + base:migration_table\#DateEnd_Max "1826-06-08"^^xsd:date; + base:migration_table\#DateEnd_Min "1826-06-08"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "May 1826"; + base:migration_table\#DateStart_Max "1826-05-26"^^xsd:date; + base:migration_table\#DateStart_Min "1826-05-26"^^xsd:date; + base:migration_table\#IDMig 2286; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/229 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 229; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/HolVic-00 . + +base:migration_table\/2290 a base:migration_table; + base:migration_table\#DateEnd_Max "1829-08-15"^^xsd:date; + base:migration_table\#DateEnd_Min "1829-08-15"^^xsd:date; + base:migration_table\#DateStart_Max "1829-07-07"^^xsd:date; + base:migration_table\#DateStart_Min "1829-07-07"^^xsd:date; + base:migration_table\#IDMig 2290; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/2294 a base:migration_table; + base:migration_table\#DateEnd_Max "1827-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1827-04-11"^^xsd:date; + base:migration_table\#DateStart_Max "1827-04-10"^^xsd:date; + base:migration_table\#DateStart_Min "1827-04-10"^^xsd:date; + base:migration_table\#IDMig 2294; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2298 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "November 1829"; + base:migration_table\#DateEnd_Max "1829-11-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1829-11-16"^^xsd:date; + base:migration_table\#DateStart_Max "1829-10-20"^^xsd:date; + base:migration_table\#DateStart_Min "1829-10-20"^^xsd:date; + base:migration_table\#IDMig 2298; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ROU-Timis-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "Buda" . + +base:migration_table\/23 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "16th Fabruary 1863"; + base:migration_table\#DateEnd_Max "1863-02-16"^^xsd:date; + base:migration_table\#DateEnd_Min "1863-02-16"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 23; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/ArnJos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/230 a base:migration_table; + base:migration_table\#DateEnd_Max "1878-07-03"^^xsd:date; + base:migration_table\#DateEnd_Min "1878-07-03"^^xsd:date; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 230; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/HouHar-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/2302 a base:migration_table; + base:migration_table\#DateEnd_Max "1830-03-25"^^xsd:date; + base:migration_table\#DateEnd_Min "1830-03-25"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1830"; + base:migration_table\#DateStart_Max "1830-03-25"^^xsd:date; + base:migration_table\#DateStart_Min "1830-03-01"^^xsd:date; + base:migration_table\#IDMig 2302; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/HU-Ofen-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Timis-00 . + +base:migration_table\/2306 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "September 1830"; + base:migration_table\#DateEnd_Max "1830-09-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1830-09-08"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1830"; + base:migration_table\#DateStart_Max "1830-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1830-09-08"^^xsd:date; + base:migration_table\#IDMig 2306; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Ofen-00; + base:migration_table\#via "Vienna" . + +base:migration_table\/231 a base:migration_table; + base:migration_table\#IDMig 231; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/IbuJ-00; + base:migration_table\#ref-IDStartPlace base:location\/NL-00 . + +base:migration_table\/2310 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "End of May"; + base:migration_table\#DateEnd_Max "1831-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1831-05-20"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of May 1831"; + base:migration_table\#DateStart_Max "1831-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1831-05-20"^^xsd:date; + base:migration_table\#IDMig 2310; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/2314 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "End of May 1831"; + base:migration_table\#DateEnd_Max "1831-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1831-05-20"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of May 1831"; + base:migration_table\#DateStart_Max "1831-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1831-05-20"^^xsd:date; + base:migration_table\#IDMig 2314; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/2318 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "September 1831"; + base:migration_table\#DateEnd_Max "1831-09-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1831-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1831"; + base:migration_table\#DateStart_Max "1831-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1831-09-01"^^xsd:date; + base:migration_table\#IDMig 2318; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-StPolt-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/232 a base:migration_table; + base:migration_table\#IDMig 232; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/SG-00; + base:migration_table\#ref-IDPerson base:person\/IbuJ-00 . + +base:migration_table\/2322 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1832"; + base:migration_table\#DateEnd_Max "1831-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1832-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "April 1832"; + base:migration_table\#DateStart_Max "1832-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1832-04-01"^^xsd:date; + base:migration_table\#IDMig 2322; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-StPolt-00; + base:migration_table\#via "Italy" . + +base:migration_table\/2326 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "End of March"; + base:migration_table\#DateEnd_Max "1833-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1833-03-24"^^xsd:date; + base:migration_table\#DateStart_Max "1833-03-24"^^xsd:date; + base:migration_table\#DateStart_Min "1833-03-24"^^xsd:date; + base:migration_table\#IDMig 2326; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Linz-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/233 a base:migration_table; + base:migration_table\#IDMig 233; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CN-HKG-00; + base:migration_table\#ref-IDPerson base:person\/IbuJ-00; + base:migration_table\#ref-IDStartPlace base:location\/SG-00 . + +base:migration_table\/2330 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring 1839"; + base:migration_table\#DateEnd_Max "1839-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1839-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Spring 1839"; + base:migration_table\#DateStart_Max "1839-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1839-03-01"^^xsd:date; + base:migration_table\#IDMig 2330; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/HR-Zagr-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Linz-00 . + +base:migration_table\/2334 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1840"; + base:migration_table\#DateEnd_Max "1840-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1840-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1840"; + base:migration_table\#DateStart_Max "1840-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1840-07-01"^^xsd:date; + base:migration_table\#IDMig 2334; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-Tries-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/HR-Zagr-00 . + +base:migration_table\/2338 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "June 1944"; + base:migration_table\#DateEnd_Max "1944-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1944-06-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "May 1944"; + base:migration_table\#DateStart_Max "1944-05-31"^^xsd:date; + base:migration_table\#DateStart_Min "1944-05-01"^^xsd:date; + base:migration_table\#IDMig 2338; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BenCha-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Holly-00 . + +base:migration_table\/234 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "March 1875"; + base:migration_table\#DateEnd_Max "1875-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1875-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1875"; + base:migration_table\#DateStart_Max "1875-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-03-01"^^xsd:date; + base:migration_table\#IDMig 234; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CN-SH-00; + base:migration_table\#ref-IDPerson base:person\/IbuJ-00; + base:migration_table\#ref-IDStartPlace base:location\/CN-HKG-00 . + +base:migration_table\/2342 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between May and June 1945"; + base:migration_table\#DateEnd_Max "1945-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1945-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between May and June 1945"; + base:migration_table\#DateStart_Max "1945-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1945-05-01"^^xsd:date; + base:migration_table\#IDMig 2342; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Holly-00; + base:migration_table\#ref-IDPerson base:person\/BenCha-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2344 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 2344; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/ZilWol-3397; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00 . + +base:migration_table\/2346 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 2346; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/Lit-DiJeSt-111 . + +base:migration_table\/235 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "before 1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 235; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/JagEls-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Schwer-00 . + +base:migration_table\/2350 a base:migration_table; + base:migration_table\#IDMig 2350; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2354 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1902"; + base:migration_table\#DateEnd_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1902-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 2354; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ZA-Cpt-00; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2358 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1910"; + base:migration_table\#DateEnd_Max "1910-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1910-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 2358; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/ZA-Joburg . + +base:migration_table\/236 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 236; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mein-00; + base:migration_table\#ref-IDPerson base:person\/JagEls-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2362 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "because of the World War"; + base:migration_table\#IDMig 2362; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2366 a base:migration_table; + base:migration_table\#IDMig 2366; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GolSam-1829; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/237 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1893"; + base:migration_table\#DateStart_Max "1893-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1893-01-01"^^xsd:date; + base:migration_table\#IDMig 237; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/JagEls-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mein-00 . + +base:migration_table\/238 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 238; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/JagFer-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2382 a base:migration_table; + base:migration_table\#DateStart_Max "1917-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1917-01-01"^^xsd:date; + base:migration_table\#IDMig 2382; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/GolSam-1829; + base:migration_table\#ref-IDStartPlace base:location\/ARG-00 . + +base:migration_table\/2386 a base:migration_table; + base:migration_table\#IDMig 2386; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/HadEst-1958; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-114 . + +base:migration_table\/239 a base:migration_table; + base:migration_table\#DateStart_Min "1913-12-31"^^xsd:date; + base:migration_table\#IDMig 239; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/JagFer-00 . + +base:migration_table\/2391 a base:migration_table; + base:migration_table\#DateEnd_Max "1849-04-20"^^xsd:date; + base:migration_table\#DateEnd_Min "1849-04-20"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "ca. 20 January 1849; departure from Le Havre on 4 April"; + base:migration_table\#DateStart_Max "1849-01-21"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-20"^^xsd:date; + base:migration_table\#IDMig 2391; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-StLouis-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Le Havre, New Orleans" . + +base:migration_table\/2395 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "October 1841"; + base:migration_table\#DateEnd_Max "1841-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Begin of September"; + base:migration_table\#DateStart_Max "1841-09-10"^^xsd:date; + base:migration_table\#DateStart_Min "1841-09-01"^^xsd:date; + base:migration_table\#IDMig 2395; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mnhm-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Tries-00; + base:migration_table\#via "Italy, Tyrol, Munich, Augsburg, Ulm, Stuttgart" . + +base:migration_table\/2398 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "03.12.1841"; + base:migration_table\#DateEnd_Max "1841-12-03"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "ca. 03.12.1841"; + base:migration_table\#DateStart_Max "1841-12-03"^^xsd:date; + base:migration_table\#DateStart_Min "1841-12-01"^^xsd:date; + base:migration_table\#IDMig 2398; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mainz-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mnhm-00 . + +base:migration_table\/24 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1803"; + base:migration_table\#DateStart_Max "1803-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1803-01-01"^^xsd:date; + base:migration_table\#IDMig 24; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AubDan-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/240 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1921"; + base:migration_table\#DateStart_Max "1921-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1921-01-01"^^xsd:date; + base:migration_table\#IDMig 240; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/JagFer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00 . + +base:migration_table\/2402 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "April 1842"; + base:migration_table\#DateEnd_Max "1842-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1842-04-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "April 1842"; + base:migration_table\#DateStart_Max "1842-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1842-04-01"^^xsd:date; + base:migration_table\#IDMig 2402; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mainz-00; + base:migration_table\#via "Strasbourg" . + +base:migration_table\/241 a base:migration_table; + base:migration_table\#DateEnd_Min "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Beginning of the 1890s"; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 241; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/JagFer-01; + base:migration_table\#ref-IDStartPlace base:location\/GER-Bayr-00 . + +base:migration_table\/2410 a base:migration_table; + base:migration_table\#DateEnd_Max "1849-05-15"^^xsd:date; + base:migration_table\#DateEnd_Min "1849-05-15"^^xsd:date; + base:migration_table\#DateStart_Max "1849-05-15"^^xsd:date; + base:migration_table\#DateStart_Min "1849-05-15"^^xsd:date; + base:migration_table\#IDMig 2410; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-High-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-StLouis-00 . + +base:migration_table\/2414 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "March 1850"; + base:migration_table\#DateEnd_Max "1850-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1850-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1850"; + base:migration_table\#DateStart_Max "1850-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-03-01"^^xsd:date; + base:migration_table\#IDMig 2414; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-StLouis-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-High-00 . + +base:migration_table\/2418 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "August 1869"; + base:migration_table\#DateEnd_Max "1869-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1868"; + base:migration_table\#DateStart_Max "1868-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-07-01"^^xsd:date; + base:migration_table\#IDMig 2418; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Brem-00; + base:migration_table\#via "Wiesbaden, Italy, Baden" . + +base:migration_table\/242 a base:migration_table; + base:migration_table\#IDMig 242; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/JanEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Rohrsch-00 . + +base:migration_table\/2422 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "September 1861"; + base:migration_table\#DateEnd_Max "1861-09-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1861-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "August 1861"; + base:migration_table\#DateStart_Max "1861-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-08-01"^^xsd:date; + base:migration_table\#IDMig 2422; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Brem-00; + base:migration_table\#ref-IDPerson base:person\/BorHei-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-StLouis-00; + base:migration_table\#via "Washington, New York" . + +base:migration_table\/2428 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 2428; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/BerYit-1275; + base:migration_table\#ref-IDStartPlace base:location\/CH-00 . + +base:migration_table\/243 a base:migration_table; + base:migration_table\#IDMig 243; + base:migration_table\#ref-IDDestPlace base:location\/GER-Goerl-00; + base:migration_table\#ref-IDPerson base:person\/JanEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/2433 a base:migration_table; + base:migration_table\#IDMig 2433; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/2438 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1919"; + base:migration_table\#DateStart_Max "1919-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1919-01-01"^^xsd:date; + base:migration_table\#IDMig 2438; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/244 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1927"; + base:migration_table\#DateStart_Max "1927-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1927-01-01"^^xsd:date; + base:migration_table\#IDMig 244; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/JanEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Goerl-00 . + +base:migration_table\/2443 a base:migration_table; + base:migration_table\#IDMig 2443; + base:migration_table\#ref-IDDestPlace base:location\/ISR-00; + base:migration_table\#ref-IDPerson base:person\/DavDav-3821; + base:migration_table\#ref-IDStartPlace base:location\/UA-00 . + +base:migration_table\/245 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1928"; + base:migration_table\#DateStart_Max "1928-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1928-01-01"^^xsd:date; + base:migration_table\#IDMig 245; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/JanEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2458 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1922"; + base:migration_table\#DateStart_Max "1922-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1922-01-01"^^xsd:date; + base:migration_table\#IDMig 2458; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ElkMen-1567; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/246 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1947"; + base:migration_table\#DateStart_Max "1947-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1947-01-01"^^xsd:date; + base:migration_table\#IDMig 246; + base:migration_table\#ref-IDDestPlace base:location\/AT-00; + base:migration_table\#ref-IDPerson base:person\/JanEmi-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/2463 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 2463; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/ElkMen-1567; + base:migration_table\#ref-IDStartPlace base:location\/BY-Minsk-00 . + +base:migration_table\/2468 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 2468; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BY-Minsk-00; + base:migration_table\#ref-IDPerson base:person\/ElkMen-1567; + base:migration_table\#ref-IDStartPlace base:location\/Bel-00 . + +base:migration_table\/247 a base:migration_table; + base:migration_table\#IDMig 247; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/2473 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2473; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/GolIts-1826; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Bot-00 . + +base:migration_table\/2478 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1892"; + base:migration_table\#DateEnd_Max "1892-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1892-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 2478; + base:migration_table\#ref-IDDestPlace base:location\/ROU-Buch-00; + base:migration_table\#ref-IDPerson base:person\/GolIts-1826; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/248 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 248; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/2483 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1899-1900"; + base:migration_table\#DateEnd_Max "1900-01-04"^^xsd:date; + base:migration_table\#DateEnd_Min "1899-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 2483; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/GroJos-1913; + base:migration_table\#ref-IDStartPlace base:location\/TR-Const-00 . + +base:migration_table\/2488 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1905"; + base:migration_table\#DateEnd_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1905-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 2488; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/HeySam-1997; + base:migration_table\#ref-IDStartPlace base:location\/Bessar-00 . + +base:migration_table\/249 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1873"; + base:migration_table\#DateStart_Max "1873-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1873-01-01"^^xsd:date; + base:migration_table\#IDMig 249; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2498 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1888"; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 2498; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/HurCha-2035; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/25 a base:migration_table; + base:migration_table\#IDMig 25; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/BaiIda-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/250 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 250; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/2503 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-05"^^xsd:date; + base:migration_table\#IDMig 2503; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/JuvKal-2061; + base:migration_table\#ref-IDStartPlace base:location\/UA-Czern-00 . + +base:migration_table\/2508 a base:migration_table; + base:migration_table\#IDMig 2508; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-00; + base:migration_table\#ref-IDPerson base:person\/KomLea-2132; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-57 . + +base:migration_table\/251 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 251; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2513 a base:migration_table; + base:migration_table\#IDMig 2513; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KopLou-2137; + base:migration_table\#ref-IDStartPlace base:location\/LT-00 . + +base:migration_table\/2518 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 2518; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/MerWol-2448; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/252 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 252; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/JanFan-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2523 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 2523; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/2528 a base:migration_table; + base:migration_table\#IDMig 2528; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/253 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 253; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/JesOlg-00; + base:migration_table\#ref-IDStartPlace base:location\/DK-00 . + +base:migration_table\/2533 a base:migration_table; + base:migration_table\#IDMig 2533; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/2538 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 2538; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/SouthAmerica . + +base:migration_table\/254 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1900"; + base:migration_table\#DateEnd_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1900-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 254; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Oliv-00; + base:migration_table\#ref-IDPerson base:person\/JesOlg-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/2543 a base:migration_table; + base:migration_table\#IDMig 2543; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SouthAmerica; + base:migration_table\#ref-IDPerson base:person\/EpsFan-1579; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2548 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1925"; + base:migration_table\#DateStart_Max "1925-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1925-01-01"^^xsd:date; + base:migration_table\#IDMig 2548; + base:migration_table\#ref-IDDestPlace base:location\/ISR-00; + base:migration_table\#ref-IDPerson base:person\/FeiRac-1622; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00 . + +base:migration_table\/255 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 255; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KaiJos-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Moson-00 . + +base:migration_table\/2553 a base:migration_table; + base:migration_table\#IDMig 2553; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GilLou-1764; + base:migration_table\#ref-IDStartPlace base:location\/USA-Newa-00 . + +base:migration_table\/2558 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 2558; + base:migration_table\#ref-IDDestPlace base:location\/USA-Newa-00; + base:migration_table\#ref-IDPerson base:person\/GilLou-1764; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-96 . + +base:migration_table\/256 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 256; + base:migration_table\#ref-IDPerson base:person\/KaiJos-00 . + +base:migration_table\/2563 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1890"; + base:migration_table\#DateEnd_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1890-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 2563; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/NadSon-840; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2568 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1887"; + base:migration_table\#DateEnd_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1887-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 2568; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/NadSon-840; + base:migration_table\#ref-IDStartPlace base:location\/AT-00 . + +base:migration_table\/257 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 257; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KaiJos-00 . + +base:migration_table\/2573 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 2573; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-00; + base:migration_table\#ref-IDPerson base:person\/NadSon-840; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00 . + +base:migration_table\/2578 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1904"; + base:migration_table\#DateEnd_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1904-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 2578; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ZA-Joburg; + base:migration_table\#ref-IDPerson base:person\/WalSau-3206; + base:migration_table\#ref-IDStartPlace base:location\/ZA-Cpt-00 . + +base:migration_table\/258 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 258; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KaiJos-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/2583 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 2583; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BlaYet-1319; + base:migration_table\#ref-IDStartPlace base:location\/Lit-DiJeSt-111 . + +base:migration_table\/2588 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 2588; + base:migration_table\#ref-IDDestPlace base:location\/ZA-00; + base:migration_table\#ref-IDPerson base:person\/DaySam-1479; + base:migration_table\#ref-IDStartPlace base:location\/UA-Od-00; + base:migration_table\#via "London" . + +base:migration_table\/259 a base:migration_table; + base:migration_table\#IDMig 259; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/KalBer-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/2593 a base:migration_table; + base:migration_table\#DateEnd_Max "1841-05-02"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-05-02"^^xsd:date; + base:migration_table\#DateStart_Max "1841-05-01"^^xsd:date; + base:migration_table\#DateStart_Min "1841-05-01"^^xsd:date; + base:migration_table\#IDMig 2593; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/2598 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "June 1841"; + base:migration_table\#DateEnd_Max "1841-06-13"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-06-06"^^xsd:date; + base:migration_table\#DateStart_Max "1841-06-05"^^xsd:date; + base:migration_table\#DateStart_Min "1841-06-05"^^xsd:date; + base:migration_table\#IDMig 2598; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/26 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1880"; + base:migration_table\#DateEnd_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 26; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BaiIda-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/260 a base:migration_table; + base:migration_table\#IDMig 260; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/KalBer-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/2603 a base:migration_table; + base:migration_table\#DateEnd_Max "1854-02-19"^^xsd:date; + base:migration_table\#DateEnd_Min "1854-02-19"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between 15 and 18 February 1854"; + base:migration_table\#DateStart_Max "1854-02-18"^^xsd:date; + base:migration_table\#DateStart_Min "1854-02-15"^^xsd:date; + base:migration_table\#IDMig 2603; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2608 a base:migration_table; + base:migration_table\#IDMig 2608; + base:migration_table\#ref-IDPerson base:person\/StrFri-00 . + +base:migration_table\/261 a base:migration_table; + base:migration_table\#IDMig 261; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ROU-00; + base:migration_table\#ref-IDPerson base:person\/KalBer-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/2613 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably in 1920s"; + base:migration_table\#DateStart_Max "1929-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 2613; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/WeiJos-3230; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "He spent most of his life on the road performing in different cities in Europe, in 1901 went to the United States performing in different cities there and Canada. In his later years, he settled in Chicago." . + +base:migration_table\/2618 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably in 1880s, stayed for 2 years"; + base:migration_table\#DateStart_Max "1989-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 2618; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/WeiJos-3230; + base:migration_table\#via "He lived in Zhitomir until he finished secondary school, probably around 1880, when he began his itinerant life, performing in different cities." . + +base:migration_table\/262 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 262; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KalBer-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00 . + +base:migration_table\/2623 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1921"; + base:migration_table\#DateStart_Max "1921-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1921-01-01"^^xsd:date; + base:migration_table\#IDMig 2623; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/WeiSim-3237; + base:migration_table\#ref-IDStartPlace base:location\/RU-00 . + +base:migration_table\/2628 a base:migration_table; + base:migration_table\#IDMig 2628; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WeiSim-3237; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "Antwerp - Berlin" . + +base:migration_table\/263 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1914"; + base:migration_table\#DateStart_Max "1914-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1914-01-01"^^xsd:date; + base:migration_table\#IDMig 263; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-LosAng-00; + base:migration_table\#ref-IDPerson base:person\/KalBer-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2633 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 1906 and 1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 2633; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/WeiSim-3237; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/2638 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "beginning of 1915"; + base:migration_table\#DateStart_Max "1915-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 2638; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/264 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "April 1869"; + base:migration_table\#DateEnd_Max "1869-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-04-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between March and April 1869"; + base:migration_table\#DateStart_Max "1869-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1869-03-01"^^xsd:date; + base:migration_table\#IDMig 264; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Phila-00; + base:migration_table\#ref-IDPerson base:person\/KelAlf-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2648 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "probably April 1927"; + base:migration_table\#DateEnd_Max "1927-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1927-04-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1925"; + base:migration_table\#DateStart_Max "1925-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1925-01-01"^^xsd:date; + base:migration_table\#IDMig 2648; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/RU-Mosk-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "Tour in Soviet Union" . + +base:migration_table\/265 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1821"; + base:migration_table\#DateStart_Max "1821-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1821-01-01"^^xsd:date; + base:migration_table\#IDMig 265; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2653 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1924"; + base:migration_table\#DateStart_Max "1924-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1924-01-01"^^xsd:date; + base:migration_table\#IDMig 2653; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/YouBer-3320; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2658 a base:migration_table; + base:migration_table\#IDMig 2658; + base:migration_table\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:migration_table\/266 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1832"; + base:migration_table\#DateStart_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1832-01-01"^^xsd:date; + base:migration_table\#IDMig 266; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2663 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "before 1873"; + base:migration_table\#DateStart_Max "1873-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 2663; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Lit-DiJeSt-111; + base:migration_table\#ref-IDPerson base:person\/ZeiMos-3363; + base:migration_table\#ref-IDStartPlace base:location\/Bel-DiJeSt-117 . + +base:migration_table\/2668 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 2668; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZeiMos-3363; + base:migration_table\#ref-IDStartPlace base:location\/Lit-DiJeSt-111 . + +base:migration_table\/2669 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "August 1814"; + base:migration_table\#DateEnd_Max "1814-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1814-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "August 1814"; + base:migration_table\#DateStart_Max "1814-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1814-08-01"^^xsd:date; + base:migration_table\#IDMig 2669; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/267 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1846"; + base:migration_table\#DateStart_Max "1846-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1846-01-01"^^xsd:date; + base:migration_table\#IDMig 267; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2673 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1831"; + base:migration_table\#DateEnd_Max "1831-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1831-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1831-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1831-01-01"^^xsd:date; + base:migration_table\#IDMig 2673; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/2678 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "January 1833"; + base:migration_table\#DateEnd_Max "1833-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1833-01-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "January 1833"; + base:migration_table\#DateStart_Max "1833-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1833-01-01"^^xsd:date; + base:migration_table\#IDMig 2678; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Wzbrg-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/268 a base:migration_table; + base:migration_table\#IDMig 268; + base:migration_table\#ref-IDDestPlace base:location\/IT-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/2683 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "15th January 1834"; + base:migration_table\#DateEnd_Max "1834-01-15"^^xsd:date; + base:migration_table\#DateEnd_Min "1834-01-15"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 6th January  and 15th January  1834"; + base:migration_table\#DateStart_Max "1834-01-15"^^xsd:date; + base:migration_table\#DateStart_Min "1834-01-06"^^xsd:date; + base:migration_table\#IDMig 2683; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Wzbrg-00 . + +base:migration_table\/2688 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1835"; + base:migration_table\#DateEnd_Max "1835-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1835-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1835"; + base:migration_table\#DateStart_Max "1835-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1835-01-01"^^xsd:date; + base:migration_table\#IDMig 2688; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Magdb-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/269 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 269; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/2693 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring 1858"; + base:migration_table\#DateEnd_Max "1858-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1858-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Spring 1858"; + base:migration_table\#DateStart_Max "1858-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1858-03-01"^^xsd:date; + base:migration_table\#IDMig 2693; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/CH-Luc-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Ven-00 . + +base:migration_table\/2694 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Fall 1869"; + base:migration_table\#DateEnd_Max "1869-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Fall 1869"; + base:migration_table\#DateStart_Max "1869-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-09-01"^^xsd:date; + base:migration_table\#IDMig 2694; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/2698 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Spring 1865"; + base:migration_table\#DateEnd_Max "1865-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1865-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Spring 1865"; + base:migration_table\#DateStart_Max "1865-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1865-03-01"^^xsd:date; + base:migration_table\#IDMig 2698; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-Krak-00; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-29 . + +base:migration_table\/27 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1866"; + base:migration_table\#DateEnd_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 27; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00 . + +base:migration_table\/270 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1862"; + base:migration_table\#DateStart_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-01-01"^^xsd:date; + base:migration_table\#IDMig 270; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2703 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "April 1863"; + base:migration_table\#DateEnd_Max "1863-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1863-04-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "April 1863"; + base:migration_table\#DateStart_Max "1863-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1863-04-01"^^xsd:date; + base:migration_table\#IDMig 2703; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-29; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/2708 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "2025-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-03-01"^^xsd:date; + base:migration_table\#IDMig 2708; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-LA-00; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Orange-00 . + +base:migration_table\/271 a base:migration_table; + base:migration_table\#IDMig 271; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-MA-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/2713 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1888"; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 2713; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-Orange-00; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02 . + +base:migration_table\/2714 a base:migration_table; + base:migration_table\#IDMig 2714; + base:migration_table\#ref-IDDestPlace base:location\/PL-Lod-00; + base:migration_table\#ref-IDPerson base:person\/ZheLey-3381; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/2719 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably after 1906"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 2719; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZibFri-3386; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/272 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1877"; + base:migration_table\#DateStart_Max "1877-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-01-01"^^xsd:date; + base:migration_table\#IDMig 272; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/KemFra-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2724 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably 1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 2724; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/ZibFri-3386; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2729 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably 1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 2729; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZibFri-3386; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/273 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 273; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDPerson base:person\/KeeLau-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/274 a base:migration_table; + base:migration_table\#IDMig 274; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/KeeLau-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2744 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 2744; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZigWil-3393; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-126; + base:migration_table\#via "Brownville" . + +base:migration_table\/275 a base:migration_table; + base:migration_table\#DateStart_Min "1854-10-23"^^xsd:date; + base:migration_table\#IDMig 275; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AUS-00; + base:migration_table\#ref-IDPerson base:person\/KeeLau-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02 . + +base:migration_table\/2754 a base:migration_table; + base:migration_table\#IDMig 2754; + base:migration_table\#ref-IDDestPlace base:location\/UK-Liv-00; + base:migration_table\#ref-IDPerson base:person\/ZilKar-3399; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Jassy-00 . + +base:migration_table\/2759 a base:migration_table; + base:migration_table\#IDMig 2759; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ZinYos-3409; + base:migration_table\#ref-IDStartPlace base:location\/Rom-DiJeSt-45; + base:migration_table\#via "Dresden" . + +base:migration_table\/276 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "January 1855"; + base:migration_table\#DateStart_Max "1855-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 276; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/KeeLau-00; + base:migration_table\#ref-IDStartPlace base:location\/AUS-00 . + +base:migration_table\/2764 a base:migration_table; + base:migration_table\#IDMig 2764; + base:migration_table\#ref-IDDestPlace base:location\/USA-MKE-00; + base:migration_table\#ref-IDPerson base:person\/ZinYos-3409; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/277 a base:migration_table; + base:migration_table\#IDMig 277; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02 . + +base:migration_table\/2774 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "probably 1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 2774; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/AdlJac-706; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00; + base:migration_table\#via "London" . + +base:migration_table\/278 a base:migration_table; + base:migration_table\#IDMig 278; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/279 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1932"; + base:migration_table\#DateStart_Max "1932-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1932-01-01"^^xsd:date; + base:migration_table\#IDMig 279; + base:migration_table\#ref-IDDestPlace base:location\/CH-Asc-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/2794 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between 1889 and 1892"; + base:migration_table\#DateStart_Max "1892-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2794; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/AdlJac-706; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "Łódź - Lviv" . + +base:migration_table\/2799 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 2799; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/ROU-00; + base:migration_table\#ref-IDPerson base:person\/FeiSig-714; + base:migration_table\#ref-IDStartPlace base:location\/Mol-DiJeSt-73 . + +base:migration_table\/28 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1870"; + base:migration_table\#DateEnd_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 28; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Porto-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/280 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 280; + base:migration_table\#ref-IDDestPlace base:location\/SE-Stock-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/2804 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 2804; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/FeiSig-714; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/2809 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 2809; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/FeiSig-714; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/281 a base:migration_table; + base:migration_table\#IDMig 281; + base:migration_table\#ref-IDDestPlace base:location\/CZ-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00 . + +base:migration_table\/2814 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "August 1886"; + base:migration_table\#DateStart_Max "1886-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-08-01"^^xsd:date; + base:migration_table\#IDMig 2814; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/FeiSig-714; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00 . + +base:migration_table\/282 a base:migration_table; + base:migration_table\#IDMig 282; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-00 . + +base:migration_table\/283 a base:migration_table; + base:migration_table\#IDMig 283; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/284 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1934"; + base:migration_table\#DateStart_Max "1934-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1934-01-01"^^xsd:date; + base:migration_table\#IDMig 284; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/285 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "September 1937"; + base:migration_table\#DateStart_Max "1937-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1937-09-01"^^xsd:date; + base:migration_table\#IDMig 285; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/286 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1941"; + base:migration_table\#DateStart_Max "1941-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1941-01-01"^^xsd:date; + base:migration_table\#IDMig 286; + base:migration_table\#ref-IDDestPlace base:location\/USA-LosAng-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2869 a base:migration_table; + base:migration_table\#IDMig 2869; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/CiaCes-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-00 . + +base:migration_table\/287 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1947"; + base:migration_table\#DateStart_Max "1947-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1947-01-01"^^xsd:date; + base:migration_table\#IDMig 287; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/KorFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/2879 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1945"; + base:migration_table\#DateEnd_Max "1945-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1945-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1945"; + base:migration_table\#DateStart_Max "1945-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1945-10-01"^^xsd:date; + base:migration_table\#IDMig 2879; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/2884 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1945"; + base:migration_table\#DateEnd_Max "1945-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1945-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1940"; + base:migration_table\#DateStart_Max "1940-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1940-08-01"^^xsd:date; + base:migration_table\#IDMig 2884; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/MX-MX-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/2889 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1931"; + base:migration_table\#DateEnd_Max "1931-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1931-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1931"; + base:migration_table\#DateStart_Max "1931-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1931-06-01"^^xsd:date; + base:migration_table\#IDMig 2889; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/ES-Barc-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/289 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 289; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Brno-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Ofen-00 . + +base:migration_table\/2891 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1930"; + base:migration_table\#DateEnd_Max "1930-11-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1930-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1930"; + base:migration_table\#DateStart_Max "1930-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1930-11-01"^^xsd:date; + base:migration_table\#IDMig 2891; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/2894 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1919"; + base:migration_table\#DateEnd_Max "1919-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1919-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1919"; + base:migration_table\#DateStart_Max "1919-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-10-01"^^xsd:date; + base:migration_table\#IDMig 2894; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/2896 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1919"; + base:migration_table\#DateEnd_Max "1919-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1919-07-30"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1918"; + base:migration_table\#DateStart_Max "1918-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1918-09-01"^^xsd:date; + base:migration_table\#IDMig 2896; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ES-Barc-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/2899 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1918"; + base:migration_table\#DateEnd_Max "1918-08-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1918-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1918"; + base:migration_table\#DateStart_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-01-01"^^xsd:date; + base:migration_table\#IDMig 2899; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Catal-00 . + +base:migration_table\/29 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1874"; + base:migration_table\#DateEnd_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1874-01-01"^^xsd:date; + base:migration_table\#IDMig 29; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00 . + +base:migration_table\/290 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 290; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/2900 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1847"; + base:migration_table\#DateEnd_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1847-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 2900; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-Phila-00; + base:migration_table\#ref-IDPerson base:person\/MccJoh-00; + base:migration_table\#ref-IDStartPlace base:location\/IE-Ldnder-00; + base:migration_table\#via "famine, financial hardship" . + +base:migration_table\/2902 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Summer 1823"; + base:migration_table\#DateEnd_Max "1823-09-22"^^xsd:date; + base:migration_table\#DateEnd_Min "1823-06-21"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between1823 and Summer 1823"; + base:migration_table\#DateStart_Max "1823-09-22"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 2902; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/IN-Danap-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/IE-00; + base:migration_table\#via "Calcutta" . + +base:migration_table\/2907 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "November 1823"; + base:migration_table\#DateEnd_Max "1823-11-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1823-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "November 1823"; + base:migration_table\#DateStart_Max "1823-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1823-11-01"^^xsd:date; + base:migration_table\#IDMig 2907; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/IN-Calc-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/IN-Danap-00 . + +base:migration_table\/291 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 291; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mainz-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/2912 a base:migration_table; + base:migration_table\#DateEnd_Max "1827-05-19"^^xsd:date; + base:migration_table\#DateEnd_Min "1827-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1826-12-26"^^xsd:date; + base:migration_table\#IDMig 2912; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/UK-Montr-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/IN-00; + base:migration_table\#via "Madras, London" . + +base:migration_table\/2917 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1831"; + base:migration_table\#DateEnd_Max "1831-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1831-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1831"; + base:migration_table\#DateStart_Max "1831-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1831-01-01"^^xsd:date; + base:migration_table\#IDMig 2917; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-Durh-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Montr-00 . + +base:migration_table\/292 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 292; + base:migration_table\#ref-IDDestPlace base:location\/PL-Krak-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mainz-00 . + +base:migration_table\/2922 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1837"; + base:migration_table\#DateEnd_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1837-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably 1832-09-14"; + base:migration_table\#DateStart_Max "1832-09-14"^^xsd:date; + base:migration_table\#IDMig 2922; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/EN-Bath-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Durh-00 . + +base:migration_table\/2927 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1837"; + base:migration_table\#DateEnd_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1837-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 2927; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/IE-Dubl-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/EN-Bath-00; + base:migration_table\#via "Rathbeggan" . + +base:migration_table\/293 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 293; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/2932 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1839"; + base:migration_table\#DateEnd_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1839-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1838-09-18"^^xsd:date; + base:migration_table\#IDMig 2932; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/IN-Karn-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Liv-00; + base:migration_table\#via "Calcutta, Bernares" . + +base:migration_table\/2937 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1840"; + base:migration_table\#DateEnd_Max "1840-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1840-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1840"; + base:migration_table\#DateStart_Max "1840-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1840-01-01"^^xsd:date; + base:migration_table\#IDMig 2937; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-EDI-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/IN-Barei-00; + base:migration_table\#via "Calcutta, Portsmouth, London" . + +base:migration_table\/294 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 294; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Olo-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/2942 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between 1841 and 1842"; + base:migration_table\#DateEnd_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between 1841 and 1842"; + base:migration_table\#DateStart_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1841-01-01"^^xsd:date; + base:migration_table\#IDMig 2942; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/ES-Cad-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/2947 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably 1843"; + base:migration_table\#DateEnd_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1843-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably 1843"; + base:migration_table\#DateStart_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1843-01-01"^^xsd:date; + base:migration_table\#IDMig 2947; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-00; + base:migration_table\#via "Sothhampton" . + +base:migration_table\/295 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 295; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/KreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Olo-00 . + +base:migration_table\/2952 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between November 1843 and January 1844"; + base:migration_table\#DateEnd_Max "1844-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1843-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between November 1843 and January 1844"; + base:migration_table\#DateStart_Max "1844-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1843-10-01"^^xsd:date; + base:migration_table\#IDMig 2952; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00; + base:migration_table\#via "Szczecin, Gdansk, Königsberg" . + +base:migration_table\/2957 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "February 1844"; + base:migration_table\#DateEnd_Max "1844-02-29"^^xsd:date; + base:migration_table\#DateEnd_Min "1844-02-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "February 1844"; + base:migration_table\#DateStart_Max "1844-02-29"^^xsd:date; + base:migration_table\#DateStart_Min "1844-02-01"^^xsd:date; + base:migration_table\#IDMig 2957; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-StPet-00 . + +base:migration_table\/296 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1836"; + base:migration_table\#DateStart_Max "1836-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1836-01-01"^^xsd:date; + base:migration_table\#IDMig 296; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/2962 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Summer 1845"; + base:migration_table\#DateEnd_Max "1845-09-22"^^xsd:date; + base:migration_table\#DateEnd_Min "1845-06-21"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between February and March 1844"; + base:migration_table\#DateStart_Max "1844-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1844-02-01"^^xsd:date; + base:migration_table\#IDMig 2962; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-Paris-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/2967 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1846-10-05"; + base:migration_table\#DateEnd_Max "1846-10-05"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between July 1846 and 1846-10-05"; + base:migration_table\#DateStart_Max "1846-10-05"^^xsd:date; + base:migration_table\#DateStart_Min "1846-07-01"^^xsd:date; + base:migration_table\#IDMig 2967; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Paris-00; + base:migration_table\#via "Ostend, Heidelberg, Bad Homburg, Stuttgart" . + +base:migration_table\/297 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 297; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Salzb-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/2972 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between 1848-02-11 and 1848-02-24"; + base:migration_table\#DateEnd_Max "1848-02-24"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-02-11"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between 1848-02-11 and 1848-02-24 "; + base:migration_table\#DateStart_Max "1848-02-24"^^xsd:date; + base:migration_table\#DateStart_Min "1848-02-11"^^xsd:date; + base:migration_table\#IDMig 2972; + base:migration_table\#ref-IDDestPlace base:location\/GER-Lind-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00; + base:migration_table\#via "Großhesselohe, Obermenzing, Pasing" . + +base:migration_table\/2977 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between February and March 1848"; + base:migration_table\#DateEnd_Max "1848-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-02-01"^^xsd:date; + base:migration_table\#DateStart_Max "1848-02-24"^^xsd:date; + base:migration_table\#IDMig 2977; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/CH-Bern-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Lind-00; + base:migration_table\#via "Romanshorn, Munich" . + +base:migration_table\/298 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1839"; + base:migration_table\#DateStart_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1839-01-01"^^xsd:date; + base:migration_table\#IDMig 298; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ffm-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Salzb-00 . + +base:migration_table\/2982 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1848"; + base:migration_table\#DateEnd_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 2982; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ffm-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Bern-00 . + +base:migration_table\/2987 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between March and April 1848"; + base:migration_table\#DateEnd_Max "1848-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between March and April 1848"; + base:migration_table\#DateStart_Max "1848-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1848-03-01"^^xsd:date; + base:migration_table\#IDMig 2987; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CH-GEN-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Bern-00; + base:migration_table\#via "Lausanne, Vevey" . + +base:migration_table\/299 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 299; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Darm-00 . + +base:migration_table\/2992 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Between November and December 1848"; + base:migration_table\#DateEnd_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "November 1848"; + base:migration_table\#DateStart_Max "1848-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1848-11-01"^^xsd:date; + base:migration_table\#IDMig 2992; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-GEN-00 . + +base:migration_table\/2997 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "September 1849"; + base:migration_table\#DateEnd_Max "0849-09-30"^^xsd:date; + base:migration_table\#DateEnd_Min "0849-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1849"; + base:migration_table\#DateStart_Max "1849-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "0849-09-01"^^xsd:date; + base:migration_table\#IDMig 2997; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-Paris-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "Paris, Marseille, Barcelona, Cádiz, Boulogne" . + +base:migration_table\/3 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 3; + base:migration_table\#ref-IDPerson base:person\/AbeTsi-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/30 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1903"; + base:migration_table\#DateEnd_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 30; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/PT-Porto-00; + base:migration_table\#ref-IDPerson base:person\/BalHel-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-SaoPau-00 . + +base:migration_table\/300 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 300; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/3002 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "August 1850"; + base:migration_table\#DateEnd_Max "1850-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1850-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "August 1850"; + base:migration_table\#DateStart_Max "1850-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-08-01"^^xsd:date; + base:migration_table\#IDMig 3002; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-Paris-01; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/3007 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "August 1853"; + base:migration_table\#DateEnd_Max "1853-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1853-01-08"^^xsd:date; + base:migration_table\#IDMig 3007; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-GrVall-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "Cities of her America-Tour" . + +base:migration_table\/301 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1862"; + base:migration_table\#DateStart_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-01-01"^^xsd:date; + base:migration_table\#IDMig 301; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/3012 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably August 1856"; + base:migration_table\#DateEnd_Max "1856-08-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1856-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1856"; + base:migration_table\#DateStart_Max "1856-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-07-01"^^xsd:date; + base:migration_table\#IDMig 3012; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Honul-00 . + +base:migration_table\/3017 a base:migration_table; + base:migration_table\#DateEnd_Max "1856-12-16"^^xsd:date; + base:migration_table\#DateStart_Max "1856-11-20"^^xsd:date; + base:migration_table\#IDMig 3017; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MonLol-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02; + base:migration_table\#via "Nicaragua" . + +base:migration_table\/3019 a base:migration_table; + base:migration_table\#DateEnd_Max "1821-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1821-06-30"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1821"; + base:migration_table\#DateStart_Max "1821-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1821-01-18"^^xsd:date; + base:migration_table\#IDMig 3019; + base:migration_table\#ref-IDDestPlace base:location\/USA-Norf-00; + base:migration_table\#ref-IDPerson base:person\/Boojun-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/302 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1867"; + base:migration_table\#DateStart_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-01-01"^^xsd:date; + base:migration_table\#IDMig 302; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Cob-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/3024 a base:migration_table; + base:migration_table\#IDMig 3024; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/FonAgu-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-PiedM-00 . + +base:migration_table\/3029 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 3029; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/FreEnr-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-00 . + +base:migration_table\/303 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1869"; + base:migration_table\#DateStart_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 303; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KreHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Kobl-00 . + +base:migration_table\/3034 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1888"; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 3034; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GalMar-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-00 . + +base:migration_table\/3039 a base:migration_table; + base:migration_table\#IDMig 3039; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GeaMig-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-00 . + +base:migration_table\/304 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 304; + base:migration_table\#ref-IDDestPlace base:location\/HU-Oedb-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Salzb-00 . + +base:migration_table\/3044 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1895"; + base:migration_table\#DateEnd_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1895-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1895-01-01"^^xsd:date; + base:migration_table\#IDMig 3044; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GiuRob-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-00 . + +base:migration_table\/3049 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1908"; + base:migration_table\#DateEnd_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1908-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 3049; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BasJoa-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-CanOn-00 . + +base:migration_table\/305 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 305; + base:migration_table\#ref-IDDestPlace base:location\/GER-Augsb-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Oedb-00 . + +base:migration_table\/3054 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1930"; + base:migration_table\#DateEnd_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1930-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 3054; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BaoMig-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Malaga-00 . + +base:migration_table\/3059 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 3059; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GroPau-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-Tucum-00 . + +base:migration_table\/306 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 306; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-SZ-00 . + +base:migration_table\/3060 a base:migration_table; + base:migration_table\#IDMig 3060; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Tucum-00; + base:migration_table\#ref-IDPerson base:person\/GroPau-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/3064 a base:migration_table; + base:migration_table\#IDMig 3064; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/GroPau-00; + base:migration_table\#ref-IDStartPlace base:location\/AR-SAnt-00 . + +base:migration_table\/3065 a base:migration_table; + base:migration_table\#DateEnd_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of 1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-08-01"^^xsd:date; + base:migration_table\#IDMig 3065; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AR-SAnt-00; + base:migration_table\#ref-IDPerson base:person\/GroPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Toulo-00; + base:migration_table\#via "Paris. \"Anita\" ship." . + +base:migration_table\/3068 a base:migration_table; + base:migration_table\#IDMig 3068; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/SanMan-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/307 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 307; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Brno-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/3071 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915"; + base:migration_table\#DateEnd_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 3071; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/SanMan-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Coruna-00 . + +base:migration_table\/3073 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1946"; + base:migration_table\#DateEnd_Max "1946-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1946-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1940"; + base:migration_table\#DateStart_Max "1940-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1940-01-01"^^xsd:date; + base:migration_table\#IDMig 3073; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/MX-MX-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/3077 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1951"; + base:migration_table\#DateEnd_Max "1951-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1951-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1951"; + base:migration_table\#DateStart_Max "1951-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1951-01-01"^^xsd:date; + base:migration_table\#IDMig 3077; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/ES-Catal-00; + base:migration_table\#ref-IDPerson base:person\/CamJua-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/3078 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "Probably December 1922"; + base:migration_table\#DateStart_Max "1922-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1922-12-01"^^xsd:date; + base:migration_table\#IDMig 3078; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AdlSam-740; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00 . + +base:migration_table\/308 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 308; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/3083 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of 1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-09-01"^^xsd:date; + base:migration_table\#IDMig 3083; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-Lod-00; + base:migration_table\#ref-IDPerson base:person\/ArnMar-1177; + base:migration_table\#ref-IDStartPlace base:location\/RU-00 . + +base:migration_table\/3088 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 3088; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/ArnMar-1177; + base:migration_table\#ref-IDStartPlace base:location\/PL-Lod-00 . + +base:migration_table\/309 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 309; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mainz-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/3093 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "End of 1919"; + base:migration_table\#DateEnd_Max "1919-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1919-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1916"; + base:migration_table\#DateStart_Max "1916-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1916-01-01"^^xsd:date; + base:migration_table\#IDMig 3093; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Bel-DiJeSt-2; + base:migration_table\#ref-IDPerson base:person\/ArnMar-1177 . + +base:migration_table\/3098 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1924"; + base:migration_table\#DateEnd_Max "1924-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1924-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1924"; + base:migration_table\#DateStart_Max "1924-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1924-01-01"^^xsd:date; + base:migration_table\#IDMig 3098; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-00; + base:migration_table\#ref-IDPerson base:person\/ArnMar-1177; + base:migration_table\#ref-IDStartPlace base:location\/SouthAmerica . + +base:migration_table\/31 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1852"; + base:migration_table\#DateEnd_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 31; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BanDan-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Kas-00 . + +base:migration_table\/310 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 310; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mainz-00 . + +base:migration_table\/3103 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1924"; + base:migration_table\#DateEnd_Max "1924-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1924-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 3103; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/EN-00; + base:migration_table\#ref-IDPerson base:person\/AdlSte-1127; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/311 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 311; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mainz-00; + base:migration_table\#ref-IDPerson base:person\/KreMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/3113 a base:migration_table; + base:migration_table\#IDMig 3113; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-29; + base:migration_table\#ref-IDPerson base:person\/AxeRuk-1207 . + +base:migration_table\/3118 a base:migration_table; + base:migration_table\#IDMig 3118; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-29; + base:migration_table\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:migration_table\/312 a base:migration_table; + base:migration_table\#IDMig 312; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/KroSel-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/3123 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "Probably 1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 3123; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/BecBer-1238; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-17 . + +base:migration_table\/3128 a base:migration_table; + base:migration_table\#IDMig 3128; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/Pol-DiJeSt-17; + base:migration_table\#ref-IDPerson base:person\/BecBer-1238 . + +base:migration_table\/313 a base:migration_table; + base:migration_table\#IDMig 313; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/KroSel-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/3133 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1914"; + base:migration_table\#DateStart_Max "1914-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1914-01-01"^^xsd:date; + base:migration_table\#IDMig 3133; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/BecBer-1238; + base:migration_table\#ref-IDStartPlace base:location\/Pol-DiJeSt-17 . + +base:migration_table\/314 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 314; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/KroSel-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/3143 a base:migration_table; + base:migration_table\#IDMig 3143; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/DK-Kop-00; + base:migration_table\#ref-IDPerson base:person\/BelMor-1243 . + +base:migration_table\/3148 a base:migration_table; + base:migration_table\#IDMig 3148; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Rus-DiJeSt-3; + base:migration_table\#ref-IDPerson base:person\/BelAdo-1246; + base:migration_table\#ref-IDStartPlace base:location\/Ukr-DiJeSt-122 . + +base:migration_table\/315 a base:migration_table; + base:migration_table\#IDMig 315; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/KroSel-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/3153 a base:migration_table; + base:migration_table\#IDMig 3153; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/Ukr-DiJeSt-122; + base:migration_table\#ref-IDPerson base:person\/BelAdo-1246; + base:migration_table\#ref-IDStartPlace base:location\/Rus-DiJeSt-3 . + +base:migration_table\/3155 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably 1902"; + base:migration_table\#DateEnd_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1902-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably 1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 3155; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Goett-00 . + +base:migration_table\/316 a base:migration_table; + base:migration_table\#IDMig 316; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/KroSel-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/3160 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1890"; + base:migration_table\#DateEnd_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1890-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 3160; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-Goett-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-FrankfOd-00 . + +base:migration_table\/3165 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1888"; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Between September und October 1883"; + base:migration_table\#DateStart_Max "1883-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-09-01"^^xsd:date; + base:migration_table\#IDMig 3165; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-FrankfOd-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Bernb-00; + base:migration_table\#via "St. Gallen (Switzerland) - “kleinen Ort in Bayern”" . + +base:migration_table\/317 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 317; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KupCae-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/318 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 318; + base:migration_table\#ref-IDDestPlace base:location\/GER-Augsb-00; + base:migration_table\#ref-IDPerson base:person\/KupCae-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/3180 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1940"; + base:migration_table\#DateEnd_Max "1940-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1940-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1940"; + base:migration_table\#DateStart_Max "1940-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1940-01-01"^^xsd:date; + base:migration_table\#IDMig 3180; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Huyt-00 . + +base:migration_table\/3185 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1939"; + base:migration_table\#DateEnd_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1939-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1939"; + base:migration_table\#DateStart_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1939-01-01"^^xsd:date; + base:migration_table\#IDMig 3185; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-Huyt-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/319 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 319; + base:migration_table\#ref-IDDestPlace base:location\/HU-Pest-00; + base:migration_table\#ref-IDPerson base:person\/KupCae-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Augsb-00 . + +base:migration_table\/3190 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably 1905"; + base:migration_table\#DateEnd_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1905-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably 1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 3190; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/32 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1820"; + base:migration_table\#DateStart_Max "1820-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1820-01-01"^^xsd:date; + base:migration_table\#IDMig 32; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BarDom-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Nap-00 . + +base:migration_table\/320 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 320; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/KupCae-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/3200 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Probably 1941"; + base:migration_table\#DateEnd_Max "1941-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1941-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Probably 1941"; + base:migration_table\#DateStart_Max "1941-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1941-01-01"^^xsd:date; + base:migration_table\#IDMig 3200; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BarVic-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Holly-00 . + +base:migration_table\/3205 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1937"; + base:migration_table\#DateEnd_Max "1937-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1937-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1937"; + base:migration_table\#DateStart_Max "1937-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1937-01-01"^^xsd:date; + base:migration_table\#IDMig 3205; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Holly-00; + base:migration_table\#ref-IDPerson base:person\/BarVic-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/321 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1872"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 321; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/KupCae-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/3210 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1868"; + base:migration_table\#DateEnd_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 3210; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/LinWil-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "with his Wife" . + +base:migration_table\/322 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1826"; + base:migration_table\#DateStart_Max "1826-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1826-01-01"^^xsd:date; + base:migration_table\#IDMig 322; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Hall-00; + base:migration_table\#ref-IDPerson base:person\/LauHei-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Swid-00 . + +base:migration_table\/323 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1828"; + base:migration_table\#DateStart_Max "1828-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1828-01-01"^^xsd:date; + base:migration_table\#IDMig 323; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/LauHei-00 . + +base:migration_table\/324 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1832"; + base:migration_table\#DateStart_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1832-01-01"^^xsd:date; + base:migration_table\#IDMig 324; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/LauHei-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Bres-00 . + +base:migration_table\/325 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 325; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/LauHei-00 . + +base:migration_table\/326 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1911"; + base:migration_table\#DateEnd_Max "1911-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1911-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 326; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/LeaCar-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/327 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 327; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/LeaCar-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/3270 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1954"; + base:migration_table\#DateEnd_Max "1954-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1954-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1954"; + base:migration_table\#DateStart_Max "1954-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1954-01-01"^^xsd:date; + base:migration_table\#IDMig 3270; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-LosAng-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/3275 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1948"; + base:migration_table\#DateEnd_Max "1948-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1948-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1948"; + base:migration_table\#DateStart_Max "1948-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1948-01-01"^^xsd:date; + base:migration_table\#IDMig 3275; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-LosAng-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/EN-00 . + +base:migration_table\/328 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 328; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/LehLill-00 . + +base:migration_table\/3280 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1947"; + base:migration_table\#DateEnd_Max "1947-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1947-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1947"; + base:migration_table\#DateStart_Max "1947-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1947-01-01"^^xsd:date; + base:migration_table\#IDMig 3280; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/EN-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/TR-Ank-00 . + +base:migration_table\/3285 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1939"; + base:migration_table\#DateEnd_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1939-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1939"; + base:migration_table\#DateStart_Max "1939-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1939-01-01"^^xsd:date; + base:migration_table\#IDMig 3285; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/TR-Ank-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Zur-00 . + +base:migration_table\/329 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 329; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/LehLill-00 . + +base:migration_table\/3290 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1933"; + base:migration_table\#DateEnd_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1933-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 3290; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CH-Zur-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/3295 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1954"; + base:migration_table\#DateEnd_Max "1954-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1954-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1954"; + base:migration_table\#DateStart_Max "1954-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1954-01-01"^^xsd:date; + base:migration_table\#IDMig 3295; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/EbeCar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-LosAng-00 . + +base:migration_table\/33 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1826"; + base:migration_table\#DateStart_Max "1826-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1826-01-01"^^xsd:date; + base:migration_table\#IDMig 33; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/BarDom-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/330 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 330; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/LehLill-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/3300 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1897-05-10"; + base:migration_table\#DateEnd_Max "1897-05-10"^^xsd:date; + base:migration_table\#DateEnd_Min "1897-05-10"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1897-01-22"; + base:migration_table\#DateStart_Max "1897-01-22"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-22"^^xsd:date; + base:migration_table\#IDMig 3300; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/HU-00; + base:migration_table\#ref-IDPerson base:person\/AntAnd-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Belgium, Germany, Russia, Ukraine, Romania, Ottoman, Greece, Egypt, Italy" . + +base:migration_table\/3305 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1894"; + base:migration_table\#DateEnd_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1894-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 3305; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/TR-Ist-00; + base:migration_table\#ref-IDPerson base:person\/AntAnd-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/3307 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1914-06-28"; + base:migration_table\#DateStart_Max "1914-06-28"^^xsd:date; + base:migration_table\#DateStart_Min "1914-06-28"^^xsd:date; + base:migration_table\#IDMig 3307; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/TR-Ist-00; + base:migration_table\#ref-IDPerson base:person\/AntAnd-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/331 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 331; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/LehMar-00 . + +base:migration_table\/3315 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1912"; + base:migration_table\#DateEnd_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1912-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 3315; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BenJac-1252 . + +base:migration_table\/332 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1867"; + base:migration_table\#DateStart_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-01-01"^^xsd:date; + base:migration_table\#IDMig 332; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/LehMar-00 . + +base:migration_table\/333 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 333; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/LehMar-00 . + +base:migration_table\/334 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 334; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/LehMar-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/335 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 335; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/LehMar-00 . + +base:migration_table\/336 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 336; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LeiLil-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/337 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1815"; + base:migration_table\#DateStart_Max "1815-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1815-01-01"^^xsd:date; + base:migration_table\#IDMig 337; + base:migration_table\#ref-IDDestPlace base:location\/PL-WA-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/338 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1816"; + base:migration_table\#DateStart_Max "1816-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1816-01-01"^^xsd:date; + base:migration_table\#IDMig 338; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/339 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1818"; + base:migration_table\#DateStart_Max "1818-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1818-01-01"^^xsd:date; + base:migration_table\#IDMig 339; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/340 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1821"; + base:migration_table\#DateStart_Max "1821-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1821-01-01"^^xsd:date; + base:migration_table\#IDMig 340; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Brno-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/341 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1824"; + base:migration_table\#DateStart_Max "1824-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1824-01-01"^^xsd:date; + base:migration_table\#IDMig 341; + base:migration_table\#ref-IDDestPlace base:location\/GER-Nur-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/342 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1832"; + base:migration_table\#DateEnd_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1832-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1831"; + base:migration_table\#DateStart_Max "1831-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1831-01-01"^^xsd:date; + base:migration_table\#IDMig 342; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/343 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1833"; + base:migration_table\#DateStart_Max "1833-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1833-01-01"^^xsd:date; + base:migration_table\#IDMig 343; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/344 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1834"; + base:migration_table\#DateStart_Max "1834-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1834-01-01"^^xsd:date; + base:migration_table\#IDMig 344; + base:migration_table\#ref-IDDestPlace base:location\/GER-STR-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/345 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 345; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/LewAug-00 . + +base:migration_table\/346 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "July 1841"; + base:migration_table\#DateEnd_Max "1841-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1841"; + base:migration_table\#DateStart_Max "1841-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1841-07-01"^^xsd:date; + base:migration_table\#IDMig 346; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LinJen-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00; + base:migration_table\#via "Just for two years" . + +base:migration_table\/348 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between December 1855 and June 1856"; + base:migration_table\#DateEnd_Max "1856-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1855-12-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between December 1855 and June 1856"; + base:migration_table\#DateStart_Max "1856-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1855-12-01"^^xsd:date; + base:migration_table\#IDMig 348; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/LinJen-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00; + base:migration_table\#via "With her husband Otto Goldschmidt" . + +base:migration_table\/35 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1936"; + base:migration_table\#DateEnd_Max "1936-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1936-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 35; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BarVic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00; + base:migration_table\#via "Paris and other european cities" . + +base:migration_table\/350 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Fall 1852"; + base:migration_table\#DateEnd_Max "1852-12-21"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-09-22"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Fall 1852"; + base:migration_table\#DateStart_Max "1852-12-21"^^xsd:date; + base:migration_table\#DateStart_Min "1852-09-22"^^xsd:date; + base:migration_table\#IDMig 350; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/LinJen-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00; + base:migration_table\#via "After the tours in USA. Her Husband is a German." . + +base:migration_table\/355 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1840 and 1866"; + base:migration_table\#DateEnd_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1840-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1840 and 1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1840-01-01"^^xsd:date; + base:migration_table\#IDMig 355; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/CN-SH-00; + base:migration_table\#ref-IDPerson base:person\/LitRob-00; + base:migration_table\#ref-IDStartPlace base:location\/EN-MANCH-00; + base:migration_table\#via "Liverpool" . + +base:migration_table\/356 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 356; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/LoeMar-00 . + +base:migration_table\/357 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 357; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LofCis-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/358 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1898"; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 358; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/LofCis-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/359 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 359; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LofCis-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/36 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 36; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/CH-00; + base:migration_table\#ref-IDPerson base:person\/BasAlb-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/360 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1923"; + base:migration_table\#DateStart_Max "1923-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1923-01-01"^^xsd:date; + base:migration_table\#IDMig 360; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LofCis-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/361 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1922"; + base:migration_table\#DateStart_Max "1922-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1922-01-01"^^xsd:date; + base:migration_table\#IDMig 361; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/LubErn-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/362 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 362; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/363 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1841"; + base:migration_table\#DateEnd_Max "1841-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 363; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-Salva-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/364 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "July 1842"; + base:migration_table\#DateEnd_Max "1842-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1842-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 364; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-Recif-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Salva-00 . + +base:migration_table\/365 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 365; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-SaoLuis-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Recif-00 . + +base:migration_table\/366 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 366; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-Bel-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-SaoLuis-00 . + +base:migration_table\/367 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 367; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-Recif-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Bel-00 . + +base:migration_table\/368 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 368; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-Bel-00; + base:migration_table\#ref-IDPerson base:person\/LucMan-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-Recif-00 . + +base:migration_table\/369 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1852"; + base:migration_table\#DateEnd_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 369; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/37 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1938"; + base:migration_table\#DateStart_Max "1938-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1938-01-01"^^xsd:date; + base:migration_table\#IDMig 37; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/BasAlb-00 . + +base:migration_table\/370 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1853"; + base:migration_table\#DateEnd_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1853-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 370; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/371 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "at 22nd July 1856 or 1st August 1856"; + base:migration_table\#DateEnd_Max "1856-08-01"^^xsd:date; + base:migration_table\#DateEnd_Min "1856-08-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 371; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/372 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateEnd_Max "1858-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1856 and 1858"; + base:migration_table\#DateStart_Min "1856-08-01"^^xsd:date; + base:migration_table\#IDMig 372; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/373 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1st November 1858"; + base:migration_table\#DateEnd_Max "1858-11-01"^^xsd:date; + base:migration_table\#DateEnd_Min "1858-11-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 373; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/374 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1858 and 1869"; + base:migration_table\#DateStart_Min "1858-11-01"^^xsd:date; + base:migration_table\#IDMig 374; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/375 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1858 and 1869"; + base:migration_table\#DateStart_Min "1858-11-01"^^xsd:date; + base:migration_table\#IDMig 375; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/376 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1858 and 1869"; + base:migration_table\#DateStart_Min "1858-11-01"^^xsd:date; + base:migration_table\#IDMig 376; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/377 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1858 and 1869"; + base:migration_table\#DateStart_Min "1858-11-01"^^xsd:date; + base:migration_table\#IDMig 377; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/378 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1869"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 378; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/379 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "-"; + base:migration_table\#DateStart_Fuzzy "7th June 1897"; + base:migration_table\#DateStart_Max "1897-06-07"^^xsd:date; + base:migration_table\#DateStart_Min "1897-06-07"^^xsd:date; + base:migration_table\#IDMig 379; + base:migration_table\#ref-IDDestPlace base:location\/PT-00; + base:migration_table\#ref-IDPerson base:person\/LyoPau-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/38 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1946"; + base:migration_table\#DateStart_Max "1946-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1946-01-01"^^xsd:date; + base:migration_table\#IDMig 38; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/BasAlb-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/380 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 380; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Bohe-00 . + +base:migration_table\/381 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1882"; + base:migration_table\#DateEnd_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1882-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#DateStart_Max "1881-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1881-01-01"^^xsd:date; + base:migration_table\#IDMig 381; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/382 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 382; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Olo-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/383 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 383; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Kas-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Olo-00 . + +base:migration_table\/384 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1885"; + base:migration_table\#DateStart_Max "1885-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-07-01"^^xsd:date; + base:migration_table\#IDMig 384; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Kas-00 . + +base:migration_table\/385 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "May 1888"; + base:migration_table\#DateEnd_Max "1888-05-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1886"; + base:migration_table\#DateStart_Max "1886-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-07-01"^^xsd:date; + base:migration_table\#IDMig 385; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/386 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "March 1891"; + base:migration_table\#DateEnd_Max "1891-03-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1891-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "October 1888"; + base:migration_table\#DateStart_Max "1888-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-10-01"^^xsd:date; + base:migration_table\#IDMig 386; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/387 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 387; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00 . + +base:migration_table\/388 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between April 1897 and December 1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-04-01"^^xsd:date; + base:migration_table\#IDMig 388; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/389 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "February 1911"; + base:migration_table\#DateEnd_Max "1911-02-28"^^xsd:date; + base:migration_table\#DateEnd_Min "1911-02-01"^^xsd:date; + base:migration_table\#DateStart_Min "1907-12-20"^^xsd:date; + base:migration_table\#IDMig 389; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Cherb-00 . + +base:migration_table\/39 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 39; + base:migration_table\#ref-IDDestPlace base:location\/CH-00; + base:migration_table\#ref-IDPerson base:person\/BasEls-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/390 a base:migration_table; + base:migration_table\#DateStart_Max "1911-04-08"^^xsd:date; + base:migration_table\#DateStart_Min "1911-04-08"^^xsd:date; + base:migration_table\#IDMig 390; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MahGus-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00; + base:migration_table\#via "New York- Cherbourg-Paris- Vienna" . + +base:migration_table\/391 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1843"; + base:migration_table\#DateStart_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1843-01-01"^^xsd:date; + base:migration_table\#IDMig 391; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/MamEmm-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/392 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 392; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MamEmm-00 . + +base:migration_table\/393 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1870"; + base:migration_table\#DateEnd_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 393; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/MarJul-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Litchf-00 . + +base:migration_table\/394 a base:migration_table; + base:migration_table\#IDMig 394; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MarMax-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/395 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1842"; + base:migration_table\#DateEnd_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1842-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1842"; + base:migration_table\#DateStart_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1842-01-01"^^xsd:date; + base:migration_table\#IDMig 395; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MarMax-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/396 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1844"; + base:migration_table\#DateEnd_Max "1844-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1844-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1844"; + base:migration_table\#DateStart_Max "1844-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1844-01-01"^^xsd:date; + base:migration_table\#IDMig 396; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-Ldn-00; + base:migration_table\#ref-IDPerson base:person\/MarMax-00 . + +base:migration_table\/397 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "September 1848"; + base:migration_table\#DateEnd_Max "1848-09-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September 1848"; + base:migration_table\#DateStart_Max "1848-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1848-09-01"^^xsd:date; + base:migration_table\#IDMig 397; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MarMax-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Ldn-00 . + +base:migration_table\/398 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 398; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MauVic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/399 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1874"; + base:migration_table\#DateEnd_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1874-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1874"; + base:migration_table\#DateStart_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1874-01-01"^^xsd:date; + base:migration_table\#IDMig 399; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/MeyMor-00; + base:migration_table\#ref-IDStartPlace base:location\/GR-Bever-00 . + +base:migration_table\/4 a base:migration_table; + base:migration_table\#IDMig 4; + base:migration_table\#ref-IDPerson base:person\/AbeTsi-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-00 . + +base:migration_table\/40 a base:migration_table; + base:migration_table\#DateStart_Min "1939-04-01"^^xsd:date; + base:migration_table\#IDMig 40; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/BasEls-00 . + +base:migration_table\/400 a base:migration_table; + base:migration_table\#IDMig 400; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-00 . + +base:migration_table\/401 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915"; + base:migration_table\#DateEnd_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1912"; + base:migration_table\#DateStart_Max "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 401; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00 . + +base:migration_table\/402 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915"; + base:migration_table\#DateEnd_Max "1915-10-27"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-10-27"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-10-27"^^xsd:date; + base:migration_table\#DateStart_Min "1915-10-27"^^xsd:date; + base:migration_table\#IDMig 402; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00; + base:migration_table\#via "Copenhagen" . + +base:migration_table\/403 a base:migration_table; + base:migration_table\#IDMig 403; + base:migration_table\#ref-IDDestPlace base:location\/NL-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00 . + +base:migration_table\/404 a base:migration_table; + base:migration_table\#IDMig 404; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00 . + +base:migration_table\/405 a base:migration_table; + base:migration_table\#IDMig 405; + base:migration_table\#ref-IDDestPlace base:location\/BE-00; + base:migration_table\#ref-IDPerson base:person\/MimMis-00 . + +base:migration_table\/406 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "October 1876"; + base:migration_table\#DateEnd_Max "1876-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1876-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1876"; + base:migration_table\#DateStart_Max "1876-07-13"^^xsd:date; + base:migration_table\#DateStart_Min "1876-07-01"^^xsd:date; + base:migration_table\#IDMig 406; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Anah-00; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00; + base:migration_table\#via "Bremen, New York, Los Angeles" . + +base:migration_table\/408 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "January 1877"; + base:migration_table\#DateEnd_Max "1877-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1877-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "January 1877"; + base:migration_table\#DateStart_Max "1877-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1877-01-01"^^xsd:date; + base:migration_table\#IDMig 408; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/ModHel-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Anah-00 . + +base:migration_table\/41 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1946"; + base:migration_table\#DateStart_Max "1946-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1946-01-01"^^xsd:date; + base:migration_table\#IDMig 41; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/BasEls-00 . + +base:migration_table\/415 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "approx. 1886"; + base:migration_table\#DateEnd_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "approx. 1886"; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 415; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#reason2 base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/MosMin-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Sindlf-00 . + +base:migration_table\/416 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 416; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Bayr-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/417 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 417; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00 . + +base:migration_table\/418 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 418; + base:migration_table\#ref-IDDestPlace base:location\/GER-Karls-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/419 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 419; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00 . + +base:migration_table\/42 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "23rd September 1870"; + base:migration_table\#DateEnd_Max "1870-09-23"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-09-23"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 42; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/BauRos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/420 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 420; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00 . + +base:migration_table\/421 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 421; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/MotFel-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/422 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 422; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/CH-Bas-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Tettn-00 . + +base:migration_table\/423 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 423; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Bas-00 . + +base:migration_table\/424 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 424; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/425 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1857"; + base:migration_table\#DateStart_Max "1857-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1857-01-01"^^xsd:date; + base:migration_table\#IDMig 425; + base:migration_table\#ref-IDDestPlace base:location\/GER-Pass-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/426 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 426; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HAJ-00 . + +base:migration_table\/427 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 427; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/428 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 428; + base:migration_table\#ref-IDDestPlace base:location\/GER-Darm-00; + base:migration_table\#ref-IDPerson base:person\/NacFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/429 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 429; + base:migration_table\#ref-IDDestPlace base:location\/CH-00; + base:migration_table\#ref-IDPerson base:person\/NazAll-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-Yal-00 . + +base:migration_table\/43 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1916"; + base:migration_table\#DateEnd_Max "1916-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1916-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 43; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BauRos-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/430 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 430; + base:migration_table\#ref-IDDestPlace base:location\/RU-00; + base:migration_table\#ref-IDPerson base:person\/NazAll-00 . + +base:migration_table\/431 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 431; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/NazAll-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-Mosk-00 . + +base:migration_table\/432 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1918"; + base:migration_table\#DateStart_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-01-01"^^xsd:date; + base:migration_table\#IDMig 432; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-CA-00; + base:migration_table\#ref-IDPerson base:person\/NazAll-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/433 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1930"; + base:migration_table\#DateStart_Max "1930-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1930-01-01"^^xsd:date; + base:migration_table\#IDMig 433; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/NazAll-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CA-00 . + +base:migration_table\/434 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 434; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/NebHei-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Krak-00 . + +base:migration_table\/435 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "February 1905"; + base:migration_table\#DateStart_Max "1905-02-28"^^xsd:date; + base:migration_table\#DateStart_Min "1905-02-01"^^xsd:date; + base:migration_table\#IDMig 435; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/NebHei-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/436 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 436; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-00; + base:migration_table\#ref-IDPerson base:person\/NebHei-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/437 a base:migration_table; + base:migration_table\#DateEnd_Min "1912-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1912-01-01"^^xsd:date; + base:migration_table\#IDMig 437; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/438 a base:migration_table; + base:migration_table\#DateEnd_Min "1916-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1916-01-01"^^xsd:date; + base:migration_table\#IDMig 438; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/439 a base:migration_table; + base:migration_table\#DateEnd_Min "1922-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1922-09-01"^^xsd:date; + base:migration_table\#IDMig 439; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/44 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1874"; + base:migration_table\#DateEnd_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1874-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 44; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BauRos-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/440 a base:migration_table; + base:migration_table\#DateEnd_Min "1928-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1928-01-01"^^xsd:date; + base:migration_table\#IDMig 440; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/441 a base:migration_table; + base:migration_table\#DateEnd_Min "1931-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1931-01-01"^^xsd:date; + base:migration_table\#IDMig 441; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/442 a base:migration_table; + base:migration_table\#DateEnd_Min "1932-02-28"^^xsd:date; + base:migration_table\#DateStart_Min "1932-02-01"^^xsd:date; + base:migration_table\#IDMig 442; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/443 a base:migration_table; + base:migration_table\#DateEnd_Min "1934-09-29"^^xsd:date; + base:migration_table\#DateStart_Min "1934-09-29"^^xsd:date; + base:migration_table\#IDMig 443; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PacReg-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/444 a base:migration_table; + base:migration_table\#IDMig 444; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PadMan-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-00 . + +base:migration_table\/445 a base:migration_table; + base:migration_table\#IDMig 445; + base:migration_table\#ref-IDDestPlace base:location\/URY-Montvid-00; + base:migration_table\#ref-IDPerson base:person\/PadMan-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/446 a base:migration_table; + base:migration_table\#DateEnd_Min "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 446; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/PadMan-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/447 a base:migration_table; + base:migration_table\#DateEnd_Min "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 447; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Chaca-00; + base:migration_table\#ref-IDPerson base:person\/PadMan-00; + base:migration_table\#ref-IDStartPlace base:location\/URY-Montvid-00 . + +base:migration_table\/448 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 448; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/PanAle-00; + base:migration_table\#ref-IDStartPlace base:location\/GR-Andr-00; + base:migration_table\#via "Panama - New York - Seattle" . + +base:migration_table\/449 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1897 and 1898"; + base:migration_table\#DateEnd_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1897-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1897 and 1898"; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 449; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CA-Daws-00; + base:migration_table\#ref-IDPerson base:person\/PanAle-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02; + base:migration_table\#via "Yukon Territory" . + +base:migration_table\/45 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "16th April 1875"; + base:migration_table\#DateEnd_Max "1875-04-16"^^xsd:date; + base:migration_table\#DateEnd_Min "1875-04-16"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 45; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/BauRos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/450 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1902"; + base:migration_table\#DateEnd_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1902-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 450; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-Seat-00; + base:migration_table\#ref-IDPerson base:person\/PanAle-00; + base:migration_table\#ref-IDStartPlace base:location\/CA-Daws-00 . + +base:migration_table\/451 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1844"; + base:migration_table\#DateStart_Max "1844-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1844-01-01"^^xsd:date; + base:migration_table\#IDMig 451; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/PatAde-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/452 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 452; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/PatAde-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/453 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#DateStart_Max "1881-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1881-01-01"^^xsd:date; + base:migration_table\#IDMig 453; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/PatAde-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/454 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1914"; + base:migration_table\#DateStart_Max "1914-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1914-01-01"^^xsd:date; + base:migration_table\#IDMig 454; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-Craigy-00; + base:migration_table\#ref-IDPerson base:person\/PatAde-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/455 a base:migration_table; + base:migration_table\#DateEnd_Max "1889-10-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-09-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "September/October 1889"; + base:migration_table\#DateStart_Max "1889-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-09-01"^^xsd:date; + base:migration_table\#IDMig 455; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/PhiAdo-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/456 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1891"; + base:migration_table\#DateEnd_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1891-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 456; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/PinAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/457 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "July 1896"; + base:migration_table\#DateEnd_Max "1896-07-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-07-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 457; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/PinAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/458 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1920"; + base:migration_table\#DateEnd_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1920-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 458; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Porto-00; + base:migration_table\#ref-IDPerson base:person\/PinAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/459 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1923"; + base:migration_table\#DateEnd_Max "1923-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1923-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 459; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/PinAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Porto-00 . + +base:migration_table\/46 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between May 1884 and December 1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1884-05-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between May 1884 and December 1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-05-01"^^xsd:date; + base:migration_table\#IDMig 46; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/BecMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-00; + base:migration_table\#via "Bremen" . + +base:migration_table\/460 a base:migration_table; + base:migration_table\#IDMig 460; + base:migration_table\#ref-IDPerson base:person\/PolBer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Col-00 . + +base:migration_table\/461 a base:migration_table; + base:migration_table\#IDMig 461; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/PolBer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dess-00 . + +base:migration_table\/462 a base:migration_table; + base:migration_table\#IDMig 462; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/PolBer-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/463 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 463; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDPerson base:person\/PolBer-00 . + +base:migration_table\/464 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 464; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/PolBer-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/465 a base:migration_table; + base:migration_table\#IDMig 465; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/PolBer-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-StPet-00 . + +base:migration_table\/466 a base:migration_table; + base:migration_table\#DateEnd_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 11.07.1868 and 18.08.1868"; + base:migration_table\#DateStart_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Min "1868-07-11"^^xsd:date; + base:migration_table\#IDMig 466; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/PynMar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/467 a base:migration_table; + base:migration_table\#IDMig 467; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/PynMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/468 a base:migration_table; + base:migration_table\#DateEnd_Max "1869-12-19"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-12-19"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 01.01.1869 and 18.12.1869"; + base:migration_table\#DateStart_Max "1869-12-18"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 468; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/RafPab-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Genoa-00 . + +base:migration_table\/469 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 469; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/RehAda-00; + base:migration_table\#ref-IDStartPlace base:location\/IE-SligCounty-00 . + +base:migration_table\/47 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "April 1937"; + base:migration_table\#DateEnd_Max "1937-04-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1937-04-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1937"; + base:migration_table\#DateStart_Max "1937-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1937-03-01"^^xsd:date; + base:migration_table\#IDMig 47; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Holly-00; + base:migration_table\#ref-IDPerson base:person\/BenCha-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "New York (date of arrival: 16th March 1937)" . + +base:migration_table\/470 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 470; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-Cumb-00; + base:migration_table\#ref-IDPerson base:person\/RehAda-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/471 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1850"; + base:migration_table\#DateEnd_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1850-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 471; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/ReiCat-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/472 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1855"; + base:migration_table\#DateStart_Max "1855-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1855-01-01"^^xsd:date; + base:migration_table\#IDMig 472; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ReiCat-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00 . + +base:migration_table\/473 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1857"; + base:migration_table\#DateStart_Max "1857-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1857-01-01"^^xsd:date; + base:migration_table\#IDMig 473; + base:migration_table\#ref-IDDestPlace base:location\/USA-StLouis-00; + base:migration_table\#ref-IDPerson base:person\/ReiCat-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/474 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1830"; + base:migration_table\#DateEnd_Max "1830-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1830-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1830"; + base:migration_table\#DateStart_Max "1830-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1830-01-01"^^xsd:date; + base:migration_table\#IDMig 474; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/RemJea-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Bord-00 . + +base:migration_table\/475 a base:migration_table; + base:migration_table\#IDMig 475; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/RemJea-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/476 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1853"; + base:migration_table\#DateEnd_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1853-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 476; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/RemJea-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/477 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1864 and 1865"; + base:migration_table\#DateEnd_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1864-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1864 and 1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 477; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CN-SH-00; + base:migration_table\#ref-IDPerson base:person\/RemJea-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/479 a base:migration_table; + base:migration_table\#IDMig 479; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Gyo-00 . + +base:migration_table\/48 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1867"; + base:migration_table\#DateEnd_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1867-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 48; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BerHei-00; + base:migration_table\#ref-IDStartPlace base:location\/SK-Hlo-00 . + +base:migration_table\/480 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 480; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00 . + +base:migration_table\/481 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 481; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00 . + +base:migration_table\/482 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 482; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:migration_table\/483 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 483; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/484 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1911"; + base:migration_table\#DateStart_Max "1911-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1911-01-01"^^xsd:date; + base:migration_table\#IDMig 484; + base:migration_table\#ref-IDDestPlace base:location\/GER-Bayr-00; + base:migration_table\#ref-IDPerson base:person\/RicHan-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/485 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 485; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/RobKur-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/486 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 486; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/RobKur-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/487 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1934"; + base:migration_table\#DateStart_Max "1934-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1934-01-01"^^xsd:date; + base:migration_table\#IDMig 487; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/RobKur-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/488 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1935"; + base:migration_table\#DateStart_Max "1935-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1935-01-01"^^xsd:date; + base:migration_table\#IDMig 488; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/RobKur-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/489 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1936"; + base:migration_table\#DateStart_Max "1936-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1936-01-01"^^xsd:date; + base:migration_table\#IDMig 489; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/RobKur-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/49 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1936"; + base:migration_table\#DateEnd_Max "1936-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1936-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1936"; + base:migration_table\#DateStart_Max "1936-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1936-01-01"^^xsd:date; + base:migration_table\#IDMig 49; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/490 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 490; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/RosCa-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/491 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1851"; + base:migration_table\#DateStart_Max "1851-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1851-01-01"^^xsd:date; + base:migration_table\#IDMig 491; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/RosCa-00 . + +base:migration_table\/492 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 492; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/RosCa-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/493 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1862"; + base:migration_table\#DateStart_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-01-01"^^xsd:date; + base:migration_table\#IDMig 493; + base:migration_table\#ref-IDDestPlace base:location\/FR-00; + base:migration_table\#ref-IDPerson base:person\/RosCa-00 . + +base:migration_table\/494 a base:migration_table; + base:migration_table\#IDMig 494; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/CA-00; + base:migration_table\#ref-IDPerson base:person\/RusAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Liv-00 . + +base:migration_table\/495 a base:migration_table; + base:migration_table\#IDMig 495; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/RusAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/CA-00 . + +base:migration_table\/496 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "as of may 1880"; + base:migration_table\#DateEnd_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1880-05-05"^^xsd:date; + base:migration_table\#DateStart_Min "1880-05-02"^^xsd:date; + base:migration_table\#IDMig 496; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/SanJus-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00; + base:migration_table\#via "Hamburg-Buenos Aires" . + +base:migration_table\/497 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1892"; + base:migration_table\#DateEnd_Max "1892-12-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1892-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1892-12-30"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 497; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Guay-00; + base:migration_table\#ref-IDPerson base:person\/SanJus-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/498 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1902"; + base:migration_table\#DateEnd_Max "1902-12-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1902-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1902"; + base:migration_table\#DateStart_Max "1902-12-30"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 498; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/SanJus-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-Guay-00 . + +base:migration_table\/499 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1892"; + base:migration_table\#DateEnd_Max "1892-12-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1892-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1892-12-30"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 499; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/ARG-Mendo-00; + base:migration_table\#ref-IDPerson base:person\/SanJus-00; + base:migration_table\#ref-IDStartPlace base:location\/ARG-BA-00 . + +base:migration_table\/5 a base:migration_table; + base:migration_table\#IDMig 5; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/500 a base:migration_table; + base:migration_table\#IDMig 500; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/SchMal-00 . + +base:migration_table\/501 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1841"; + base:migration_table\#DateStart_Max "1841-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1841-01-01"^^xsd:date; + base:migration_table\#IDMig 501; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/SchMal-00 . + +base:migration_table\/502 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 502; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Karls-00; + base:migration_table\#ref-IDPerson base:person\/SchMal-00 . + +base:migration_table\/503 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1860"; + base:migration_table\#DateStart_Max "1860-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1860-01-01"^^xsd:date; + base:migration_table\#IDMig 503; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchMal-00 . + +base:migration_table\/504 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 504; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ffm-00; + base:migration_table\#ref-IDPerson base:person\/SchMal-00 . + +base:migration_table\/505 a base:migration_table; + base:migration_table\#DateStart_Min "1813-12-31"^^xsd:date; + base:migration_table\#IDMig 505; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00 . + +base:migration_table\/506 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 506; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00 . + +base:migration_table\/507 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 507; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00 . + +base:migration_table\/508 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 508; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/509 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 509; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/LV-Trik-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Goth-00 . + +base:migration_table\/51 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1951"; + base:migration_table\#DateEnd_Max "1951-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1951-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1951"; + base:migration_table\#DateStart_Max "1951-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1951-01-01"^^xsd:date; + base:migration_table\#IDMig 51; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/510 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 510; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00 . + +base:migration_table\/511 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 511; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/SchWil-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/512 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1873"; + base:migration_table\#DateStart_Max "1873-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1873-01-01"^^xsd:date; + base:migration_table\#IDMig 512; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchCle-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/513 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1864"; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 513; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/IT-Vero-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/514 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1866"; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 514; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Vero-00 . + +base:migration_table\/515 a base:migration_table; + base:migration_table\#IDMig 515; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/PL-Podg-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/516 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1874"; + base:migration_table\#DateStart_Fuzzy "1874"; + base:migration_table\#DateStart_Max "1874-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1874-01-01"^^xsd:date; + base:migration_table\#IDMig 516; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Podg-00 . + +base:migration_table\/517 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1878"; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 517; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/518 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1882 and 1887"; + base:migration_table\#DateStart_Fuzzy "between 1882 and 1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 518; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/519 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1898 and 1899"; + base:migration_table\#DateStart_Fuzzy "between 1898 and 1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 519; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/SchErn-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/52 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1964"; + base:migration_table\#DateEnd_Max "1964-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1964-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1964"; + base:migration_table\#DateStart_Max "1964-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1964-01-01"^^xsd:date; + base:migration_table\#IDMig 52; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/USA-StBarb-04; + base:migration_table\#ref-IDPerson base:person\/BerJul-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/522 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1879"; + base:migration_table\#DateStart_Max "1879-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1879-01-01"^^xsd:date; + base:migration_table\#IDMig 522; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/SchFra-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/523 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "January 1900"; + base:migration_table\#DateStart_Max "1900-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 523; + base:migration_table\#ref-IDDestPlace base:location\/IT-00; + base:migration_table\#ref-IDPerson base:person\/SchFra-00 . + +base:migration_table\/524 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1899"; + base:migration_table\#DateEnd_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1899-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 524; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/SchFra-00 . + +base:migration_table\/525 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 525; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Col-00; + base:migration_table\#ref-IDPerson base:person\/SeeMar-00 . + +base:migration_table\/526 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 526; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CH-StMor-00; + base:migration_table\#ref-IDPerson base:person\/SeeMar-00 . + +base:migration_table\/527 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 527; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/528 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1872"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 528; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/HU-Pest-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/529 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 529; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/53 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 53; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AUS-Syd-00; + base:migration_table\#ref-IDPerson base:person\/BisKat-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/530 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 530; + base:migration_table\#ref-IDDestPlace base:location\/GER-Brem-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/531 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "August 1885"; + base:migration_table\#DateStart_Max "1885-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-08-01"^^xsd:date; + base:migration_table\#IDMig 531; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Brem-00 . + +base:migration_table\/532 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "October 1885"; + base:migration_table\#DateStart_Max "1885-10-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-10-01"^^xsd:date; + base:migration_table\#IDMig 532; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/SeiAnt-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/533 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 533; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/SemMar-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Wis-00 . + +base:migration_table\/534 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "September 1876"; + base:migration_table\#DateStart_Max "1876-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1876-09-01"^^xsd:date; + base:migration_table\#IDMig 534; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/SemMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/535 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1878"; + base:migration_table\#DateStart_Max "1878-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1878-01-01"^^xsd:date; + base:migration_table\#IDMig 535; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/SemMar-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/536 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 536; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/SemMar-00 . + +base:migration_table\/537 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "approx. 1837"; + base:migration_table\#DateEnd_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1837-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "approx. 1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 537; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/NorCat-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/538 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 538; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Seb-00 . + +base:migration_table\/539 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 539; + base:migration_table\#ref-IDDestPlace base:location\/GER-HAJ-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/54 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 54; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Olo-00; + base:migration_table\#ref-IDPerson base:person\/BlaEls-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/540 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 540; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HAJ-00 . + +base:migration_table\/541 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1867"; + base:migration_table\#DateStart_Max "1867-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1867-01-01"^^xsd:date; + base:migration_table\#IDMig 541; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/542 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 542; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Leip-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/543 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1872"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 543; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Leip-00 . + +base:migration_table\/544 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 544; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/545 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 545; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00 . + +base:migration_table\/546 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 546; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/StrAle-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/547 a base:migration_table; + base:migration_table\#IDMig 547; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrEdg-00; + base:migration_table\#ref-IDStartPlace base:location\/AUS-00 . + +base:migration_table\/548 a base:migration_table; + base:migration_table\#IDMig 548; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrIrm-00 . + +base:migration_table\/549 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 549; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/GER-Wiesb-00; + base:migration_table\#ref-IDPerson base:person\/StrIrm-00 . + +base:migration_table\/55 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1904"; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 55; + base:migration_table\#ref-IDDestPlace base:location\/GER-Magdb-00; + base:migration_table\#ref-IDPerson base:person\/BlaEls-00 . + +base:migration_table\/550 a base:migration_table; + base:migration_table\#IDMig 550; + base:migration_table\#ref-IDDestPlace base:location\/AT-Linz-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/551 a base:migration_table; + base:migration_table\#IDMig 551; + base:migration_table\#ref-IDDestPlace base:location\/FR-Strb-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Linz-00 . + +base:migration_table\/552 a base:migration_table; + base:migration_table\#IDMig 552; + base:migration_table\#ref-IDDestPlace base:location\/RUS-Kali-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Strb-00 . + +base:migration_table\/553 a base:migration_table; + base:migration_table\#IDMig 553; + base:migration_table\#ref-IDDestPlace base:location\/NL-AMS-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/RUS-Kali-00 . + +base:migration_table\/554 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 554; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/NL-AMS-00 . + +base:migration_table\/555 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1892-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 555; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/StrLud-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Bres-00 . + +base:migration_table\/556 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 556; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrMau-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/557 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1838"; + base:migration_table\#DateStart_Max "1838-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1838-01-01"^^xsd:date; + base:migration_table\#IDMig 557; + base:migration_table\#ref-IDDestPlace base:location\/HR-Zagr-00; + base:migration_table\#ref-IDPerson base:person\/StrMau-00 . + +base:migration_table\/558 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 558; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/StrMau-00 . + +base:migration_table\/559 a base:migration_table; + base:migration_table\#IDMig 559; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/StrMau-00 . + +base:migration_table\/56 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 56; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BlaEls-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Altenb-00 . + +base:migration_table\/560 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 560; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/StrMax-00 . + +base:migration_table\/561 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1841"; + base:migration_table\#DateEnd_Max "1841-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1841-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 23.05.1823 abd 31.12.1841"; + base:migration_table\#DateStart_Max "1841-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-05-23"^^xsd:date; + base:migration_table\#IDMig 561; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-Linz-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Grimm-00 . + +base:migration_table\/562 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1842"; + base:migration_table\#DateEnd_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1842-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1842"; + base:migration_table\#DateStart_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1842-12-05"^^xsd:date; + base:migration_table\#IDMig 562; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Linz-00 . + +base:migration_table\/563 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1843"; + base:migration_table\#DateEnd_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1843-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1843"; + base:migration_table\#DateStart_Max "1843-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1843-01-01"^^xsd:date; + base:migration_table\#IDMig 563; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Weim-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "Olumuc" . + +base:migration_table\/564 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1846"; + base:migration_table\#DateEnd_Max "1846-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1846-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 21.10.1845 and 31.12.1845"; + base:migration_table\#DateStart_Max "1845-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1845-10-21"^^xsd:date; + base:migration_table\#IDMig 564; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Weim-00 . + +base:migration_table\/565 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1849"; + base:migration_table\#DateEnd_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1849-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 565; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-Tries-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/566 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1852"; + base:migration_table\#DateEnd_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1852-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 566; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ROU-Timis-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Tries-00 . + +base:migration_table\/567 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1862"; + base:migration_table\#DateEnd_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1862-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1862"; + base:migration_table\#DateStart_Max "1862-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-01-01"^^xsd:date; + base:migration_table\#IDMig 567; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/ROU-Timis-00 . + +base:migration_table\/568 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 568; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CA-Ontario-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/569 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1885"; + base:migration_table\#DateEnd_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1885-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 569; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-Medf-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/CA-Ontario-00 . + +base:migration_table\/57 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 57; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/570 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1885"; + base:migration_table\#DateEnd_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1885-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 570; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-CHIC-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-Medf-00 . + +base:migration_table\/571 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1887"; + base:migration_table\#DateEnd_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1887-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 571; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-StPaul-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-CHIC-00 . + +base:migration_table\/572 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1888"; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1888-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1888"; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 572; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-StPaul-00 . + +base:migration_table\/573 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1889"; + base:migration_table\#DateEnd_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1889-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 573; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/StrFri-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/574 a base:migration_table; + base:migration_table\#IDMig 574; + base:migration_table\#ref-IDDestPlace base:location\/GER-Kas-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00; + base:migration_table\#via "Stockholm-Kassel-Paris" . + +base:migration_table\/575 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1819"; + base:migration_table\#DateStart_Max "1819-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1819-01-01"^^xsd:date; + base:migration_table\#IDMig 575; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/576 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1824"; + base:migration_table\#DateEnd_Max "1824-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1824-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1819"; + base:migration_table\#DateStart_Max "1819-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1819-01-01"^^xsd:date; + base:migration_table\#IDMig 576; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/577 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1825"; + base:migration_table\#DateStart_Max "1825-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1825-01-01"^^xsd:date; + base:migration_table\#IDMig 577; + base:migration_table\#ref-IDDestPlace base:location\/GER-STR-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/578 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1827-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1827-01-01"^^xsd:date; + base:migration_table\#IDMig 578; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/579 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1829"; + base:migration_table\#DateStart_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1829-01-01"^^xsd:date; + base:migration_table\#IDMig 579; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/58 a base:migration_table; + base:migration_table\#IDMig 58; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/580 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 580; + base:migration_table\#ref-IDDestPlace base:location\/IT-Blevo-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/581 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1858"; + base:migration_table\#DateStart_Max "1858-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1858-01-01"^^xsd:date; + base:migration_table\#IDMig 581; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/582 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 582; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00 . + +base:migration_table\/583 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 583; + base:migration_table\#ref-IDDestPlace base:location\/FR-Mars-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/584 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 584; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-01; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/585 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 585; + base:migration_table\#ref-IDPerson base:person\/TagMar-01 . + +base:migration_table\/586 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 586; + base:migration_table\#ref-IDPerson base:person\/TagMar-01; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/587 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1866"; + base:migration_table\#DateStart_Max "1866-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1866-01-01"^^xsd:date; + base:migration_table\#IDMig 587; + base:migration_table\#ref-IDDestPlace base:location\/SL-Wind-00; + base:migration_table\#ref-IDPerson base:person\/TagMar-01 . + +base:migration_table\/588 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 588; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/TagPau-00 . + +base:migration_table\/589 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1849"; + base:migration_table\#DateStart_Max "1849-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-01-01"^^xsd:date; + base:migration_table\#IDMig 589; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/TagPau-00 . + +base:migration_table\/59 a base:migration_table; + base:migration_table\#IDMig 59; + base:migration_table\#ref-IDDestPlace base:location\/CH-Zur-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/590 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 590; + base:migration_table\#ref-IDDestPlace base:location\/IT-Nap-00; + base:migration_table\#ref-IDPerson base:person\/TagPau-00 . + +base:migration_table\/591 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1856"; + base:migration_table\#DateStart_Max "1856-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1856-01-01"^^xsd:date; + base:migration_table\#IDMig 591; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/TagPau-00 . + +base:migration_table\/592 a base:migration_table; + base:migration_table\#IDMig 592; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/593 a base:migration_table; + base:migration_table\#IDMig 593; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/594 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 594; + base:migration_table\#ref-IDDestPlace base:location\/HU-Pest-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/595 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1837"; + base:migration_table\#DateStart_Max "1837-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1837-01-01"^^xsd:date; + base:migration_table\#IDMig 595; + base:migration_table\#ref-IDDestPlace base:location\/GER-Nur-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Pest-00 . + +base:migration_table\/596 a base:migration_table; + base:migration_table\#IDMig 596; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Nur-00 . + +base:migration_table\/597 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1847"; + base:migration_table\#DateStart_Max "1847-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1847-01-01"^^xsd:date; + base:migration_table\#IDMig 597; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/598 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 598; + base:migration_table\#ref-IDDestPlace base:location\/SL-Laib-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00 . + +base:migration_table\/599 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 599; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/SL-Laib-00 . + +base:migration_table\/6 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1889"; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 6; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Karlsb-00 . + +base:migration_table\/60 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1934"; + base:migration_table\#DateEnd_Max "1934-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1934-01-01"^^xsd:date; + base:migration_table\#IDMig 60; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Zur-00 . + +base:migration_table\/600 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1853"; + base:migration_table\#DateStart_Max "1853-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1853-01-01"^^xsd:date; + base:migration_table\#IDMig 600; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/601 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1858"; + base:migration_table\#DateStart_Max "1858-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1858-01-01"^^xsd:date; + base:migration_table\#IDMig 601; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/602 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 602; + base:migration_table\#ref-IDDestPlace base:location\/AT-Linz-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/603 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 603; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/ThoFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Linz-00 . + +base:migration_table\/604 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1892"; + base:migration_table\#DateStart_Max "1892-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1892-01-01"^^xsd:date; + base:migration_table\#IDMig 604; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/605 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 605; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Wiesb-00 . + +base:migration_table\/606 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 606; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/607 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 607; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/608 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 608; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/609 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 609; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/TomMar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/61 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1935"; + base:migration_table\#DateEnd_Max "1935-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1935-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1934"; + base:migration_table\#DateStart_Max "1934-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1934-01-01"^^xsd:date; + base:migration_table\#IDMig 61; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/610 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1887"; + base:migration_table\#DateEnd_Max "1887-09-26"^^xsd:date; + base:migration_table\#DateEnd_Min "1887-09-26"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-09-26"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 610; + base:migration_table\#ref-IDDestPlace base:location\/USA-Bost-00; + base:migration_table\#ref-IDPerson base:person\/TucSop-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Tulch-00 . + +base:migration_table\/611 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 611; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/VeiCon-00 . + +base:migration_table\/612 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1941"; + base:migration_table\#DateStart_Max "1941-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1941-01-01"^^xsd:date; + base:migration_table\#IDMig 612; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/VeiCon-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/613 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "27th August 1847"; + base:migration_table\#DateEnd_Min "1847-08-27"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 613; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/VelMar-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/614 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 614; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CN-SH-00; + base:migration_table\#ref-IDPerson base:person\/VelMel-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/615 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between March 1899 and December 1899"; + base:migration_table\#DateEnd_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1899-03-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1899"; + base:migration_table\#DateStart_Max "1899-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-03-01"^^xsd:date; + base:migration_table\#IDMig 615; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/VelMel-00; + base:migration_table\#ref-IDStartPlace base:location\/CN-SH-00 . + +base:migration_table\/616 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "9th July 1870"; + base:migration_table\#DateEnd_Max "1870-07-09"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-07-09"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 616; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/VilRos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-00 . + +base:migration_table\/617 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 617; + base:migration_table\#ref-IDDestPlace base:location\/PT-Liss-00; + base:migration_table\#ref-IDPerson base:person\/VilRos-00; + base:migration_table\#ref-IDStartPlace base:location\/BR-RdJ-00 . + +base:migration_table\/618 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1898"; + base:migration_table\#DateEnd_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "-"; + base:migration_table\#IDMig 618; + base:migration_table\#ref-IDDestPlace base:location\/BR-RdJ-00; + base:migration_table\#ref-IDPerson base:person\/VilRos-00; + base:migration_table\#ref-IDStartPlace base:location\/PT-Liss-00 . + +base:migration_table\/619 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1836"; + base:migration_table\#DateStart_Max "1836-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1836-01-01"^^xsd:date; + base:migration_table\#IDMig 619; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/PRU-Koen-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Magdb-00; + base:migration_table\#via "Berlin" . + +base:migration_table\/62 a base:migration_table; + base:migration_table\#IDMig 62; + base:migration_table\#ref-IDDestPlace base:location\/USA-CA-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/621 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "June 1837"; + base:migration_table\#DateStart_Max "1837-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1837-06-01"^^xsd:date; + base:migration_table\#IDMig 621; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/PRU-Koen-00 . + +base:migration_table\/622 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1839"; + base:migration_table\#DateStart_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1839-01-01"^^xsd:date; + base:migration_table\#IDMig 622; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/623 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1839"; + base:migration_table\#DateStart_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1839-01-01"^^xsd:date; + base:migration_table\#IDMig 623; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/624 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "April 1842"; + base:migration_table\#DateStart_Max "1842-04-30"^^xsd:date; + base:migration_table\#DateStart_Min "1842-04-01"^^xsd:date; + base:migration_table\#IDMig 624; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/625 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "March 1849"; + base:migration_table\#DateStart_Max "1849-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1849-03-01"^^xsd:date; + base:migration_table\#IDMig 625; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/CH-Zur-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/626 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1858"; + base:migration_table\#DateStart_Max "1858-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1858-01-01"^^xsd:date; + base:migration_table\#IDMig 626; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/IT-Ven-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Zur-00 . + +base:migration_table\/627 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "November 1859"; + base:migration_table\#DateStart_Max "1859-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1859-11-01"^^xsd:date; + base:migration_table\#IDMig 627; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Luc-00 . + +base:migration_table\/628 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1861"; + base:migration_table\#DateStart_Max "1861-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1861-01-01"^^xsd:date; + base:migration_table\#IDMig 628; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Wiesb-01; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00; + base:migration_table\#via "Altenburg – Nuremberg – Munich – Biebrich - Salzburg" . + +base:migration_table\/629 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "14th August 1862"; + base:migration_table\#DateEnd_Max "1862-08-14"^^xsd:date; + base:migration_table\#DateEnd_Min "1862-08-14"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "July 1862"; + base:migration_table\#DateStart_Max "1862-07-31"^^xsd:date; + base:migration_table\#DateStart_Min "1862-07-01"^^xsd:date; + base:migration_table\#IDMig 629; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Wiesb-01 . + +base:migration_table\/63 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1950"; + base:migration_table\#DateStart_Max "1950-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1950-01-01"^^xsd:date; + base:migration_table\#IDMig 63; + base:migration_table\#ref-IDDestPlace base:location\/GER-00; + base:migration_table\#ref-IDPerson base:person\/BoiCur-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/630 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "4th May 1864"; + base:migration_table\#DateEnd_Max "1864-05-04"^^xsd:date; + base:migration_table\#DateEnd_Min "1864-05-04"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "March 1864"; + base:migration_table\#DateStart_Max "1864-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-03-01"^^xsd:date; + base:migration_table\#IDMig 630; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "Mariafeld - Stuttgart" . + +base:migration_table\/635 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "15th April 1866"; + base:migration_table\#DateEnd_Max "1866-04-15"^^xsd:date; + base:migration_table\#DateEnd_Min "1866-04-15"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "December 1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-12-01"^^xsd:date; + base:migration_table\#IDMig 635; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/CH-Zur-02; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00; + base:migration_table\#via "Genf - Toulon - Lyon - Marseille" . + +base:migration_table\/636 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "March 1872"; + base:migration_table\#DateStart_Max "1872-03-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-03-01"^^xsd:date; + base:migration_table\#IDMig 636; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Bayr-00; + base:migration_table\#ref-IDPerson base:person\/WagRic-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Zur-02 . + +base:migration_table\/637 a base:migration_table; + base:migration_table\#DateStart_Min "1895-12-31"^^xsd:date; + base:migration_table\#IDMig 637; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/WeeMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-02 . + +base:migration_table\/638 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1903"; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 638; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WeeMar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/639 a base:migration_table; + base:migration_table\#IDMig 639; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/WhiBla-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/64 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1915"; + base:migration_table\#DateEnd_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1915-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1915"; + base:migration_table\#DateStart_Max "1915-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1915-01-01"^^xsd:date; + base:migration_table\#IDMig 64; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BodArt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mnhm-00 . + +base:migration_table\/640 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1865"; + base:migration_table\#DateEnd_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1865-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1865"; + base:migration_table\#DateStart_Max "1865-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1865-01-01"^^xsd:date; + base:migration_table\#IDMig 640; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/WhiBla-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/641 a base:migration_table; + base:migration_table\#DateEnd_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 11.07.1868 and 18.08.1868"; + base:migration_table\#DateStart_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Min "1868-07-11"^^xsd:date; + base:migration_table\#IDMig 641; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WhiBla-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/642 a base:migration_table; + base:migration_table\#DateEnd_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateEnd_Min "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 11.07.1868 and 18.08.1868"; + base:migration_table\#DateStart_Max "1868-08-18"^^xsd:date; + base:migration_table\#DateStart_Min "1868-07-11"^^xsd:date; + base:migration_table\#IDMig 642; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/WhiTho-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/643 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1864"; + base:migration_table\#DateStart_Max "1864-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1864-01-01"^^xsd:date; + base:migration_table\#IDMig 643; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mnhm-00; + base:migration_table\#ref-IDPerson base:person\/WilAur-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/644 a base:migration_table; + base:migration_table\#IDMig 644; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/WilAur-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-Galz-00 . + +base:migration_table\/645 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 645; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/WilAur-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Mnhm-00 . + +base:migration_table\/646 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1900"; + base:migration_table\#DateStart_Max "1900-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1900-01-01"^^xsd:date; + base:migration_table\#IDMig 646; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BisKat-00; + base:migration_table\#ref-IDStartPlace base:location\/AUS-Syd-00 . + +base:migration_table\/648 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868-1895"; + base:migration_table\#DateStart_Max "1895-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 648; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BroPhi-00; + base:migration_table\#ref-IDStartPlace base:location\/RU-StPet-00 . + +base:migration_table\/649 a base:migration_table; + base:migration_table\#IDMig 649; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-00; + base:migration_table\#ref-IDPerson base:person\/ColIsa-00 . + +base:migration_table\/65 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 65; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ber-00; + base:migration_table\#ref-IDPerson base:person\/BodArt-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/650 a base:migration_table; + base:migration_table\#IDMig 650; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/IT-Sici-00; + base:migration_table\#ref-IDPerson base:person\/ColIsa-00 . + +base:migration_table\/651 a base:migration_table; + base:migration_table\#DateStart_Min "1779-12-17"^^xsd:date; + base:migration_table\#IDMig 651; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDPerson base:person\/PonLor-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Ven-00 . + +base:migration_table\/652 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1781"; + base:migration_table\#DateStart_Max "1781-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1781-01-01"^^xsd:date; + base:migration_table\#IDMig 652; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDPerson base:person\/PonLor-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/653 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1791"; + base:migration_table\#DateStart_Max "1791-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1791-01-01"^^xsd:date; + base:migration_table\#IDMig 653; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDPerson base:person\/PonLor-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/654 a base:migration_table; + base:migration_table\#IDMig 654; + base:migration_table\#ref-IDPerson base:person\/PonLor-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/655 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "September 1792"; + base:migration_table\#DateStart_Max "1792-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1792-09-01"^^xsd:date; + base:migration_table\#IDMig 655; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/PonLor-00 . + +base:migration_table\/656 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1805"; + base:migration_table\#DateStart_Max "1805-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1805-01-01"^^xsd:date; + base:migration_table\#IDMig 656; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/PonLor-00 . + +base:migration_table\/657 a base:migration_table; + base:migration_table\#DateEnd_Max "1839-11-05"^^xsd:date; + base:migration_table\#DateEnd_Min "1839-11-05"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Begin of November 1839"; + base:migration_table\#DateStart_Max "1839-11-05"^^xsd:date; + base:migration_table\#DateStart_Min "1839-11-01"^^xsd:date; + base:migration_table\#IDMig 657; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/LT-Viln-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/658 a base:migration_table; + base:migration_table\#DateEnd_Max "1840-11-11"^^xsd:date; + base:migration_table\#DateEnd_Min "1840-11-11"^^xsd:date; + base:migration_table\#DateStart_Max "1840-11-10"^^xsd:date; + base:migration_table\#DateStart_Min "1840-11-10"^^xsd:date; + base:migration_table\#IDMig 658; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Lv-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/LT-Viln-00 . + +base:migration_table\/659 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Begin of 1847"; + base:migration_table\#DateEnd_Max "1847-01-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1847-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "Summer 1846"; + base:migration_table\#DateStart_Max "1846-08-31"^^xsd:date; + base:migration_table\#DateStart_Min "1846-07-01"^^xsd:date; + base:migration_table\#IDMig 659; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/UA-Lv-00; + base:migration_table\#via "Wrocław, Szczecin, Berlin" . + +base:migration_table\/66 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1907"; + base:migration_table\#DateEnd_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1907-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1907"; + base:migration_table\#DateStart_Max "1907-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1907-01-01"^^xsd:date; + base:migration_table\#IDMig 66; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/BodArt-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/660 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "Begin of Oktober 1949"; + base:migration_table\#DateEnd_Max "1849-10-06"^^xsd:date; + base:migration_table\#DateEnd_Min "1849-10-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "End of September 1949"; + base:migration_table\#DateStart_Max "1849-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1849-09-29"^^xsd:date; + base:migration_table\#IDMig 660; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BogDaw-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/663 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1794"; + base:migration_table\#DateStart_Max "1794-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1794-01-01"^^xsd:date; + base:migration_table\#IDMig 663; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/RU-StPet-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/664 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1812"; + base:migration_table\#DateStart_Max "1812-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1812-01-01"^^xsd:date; + base:migration_table\#IDMig 664; + base:migration_table\#ref-IDDestPlace base:location\/DK-Kop-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00 . + +base:migration_table\/665 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1816"; + base:migration_table\#DateStart_Max "1816-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1816-01-01"^^xsd:date; + base:migration_table\#IDMig 665; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/666 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1818"; + base:migration_table\#DateStart_Max "1818-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1818-01-01"^^xsd:date; + base:migration_table\#IDMig 666; + base:migration_table\#ref-IDDestPlace base:location\/IT-Ven-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/667 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1819"; + base:migration_table\#DateStart_Max "1819-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1819-01-01"^^xsd:date; + base:migration_table\#IDMig 667; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Ven-00 . + +base:migration_table\/668 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1822"; + base:migration_table\#DateStart_Max "1822-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1822-01-01"^^xsd:date; + base:migration_table\#IDMig 668; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/IT-Nap-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/669 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 669; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Nap-00 . + +base:migration_table\/67 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1909"; + base:migration_table\#DateEnd_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1909-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 67; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Mnhm-00; + base:migration_table\#ref-IDPerson base:person\/BodArt-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Prag-00 . + +base:migration_table\/670 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1824"; + base:migration_table\#DateStart_Max "1824-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1824-01-01"^^xsd:date; + base:migration_table\#IDMig 670; + base:migration_table\#ref-IDDestPlace base:location\/IT-Nap-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/671 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1825"; + base:migration_table\#DateStart_Max "1825-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1825-01-01"^^xsd:date; + base:migration_table\#IDMig 671; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Nap-00 . + +base:migration_table\/672 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1828"; + base:migration_table\#DateStart_Max "1828-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1828-01-01"^^xsd:date; + base:migration_table\#IDMig 672; + base:migration_table\#ref-IDDestPlace base:location\/IT-Nap-00; + base:migration_table\#ref-IDPerson base:person\/FodJos-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/673 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1808"; + base:migration_table\#DateStart_Max "1808-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1808-01-01"^^xsd:date; + base:migration_table\#IDMig 673; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-00 . + +base:migration_table\/674 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 674; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-00 . + +base:migration_table\/675 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "September 1825"; + base:migration_table\#DateStart_Max "1825-09-30"^^xsd:date; + base:migration_table\#DateStart_Min "1825-09-01"^^xsd:date; + base:migration_table\#IDMig 675; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Liv-00 . + +base:migration_table\/676 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "June 1826"; + base:migration_table\#DateStart_Max "1826-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1826-06-01"^^xsd:date; + base:migration_table\#IDMig 676; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/MX-MX-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/677 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1829"; + base:migration_table\#DateStart_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1829-01-01"^^xsd:date; + base:migration_table\#IDMig 677; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-00; + base:migration_table\#ref-IDStartPlace base:location\/MX-MX-00 . + +base:migration_table\/678 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1825"; + base:migration_table\#DateStart_Max "1825-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1825-01-01"^^xsd:date; + base:migration_table\#IDMig 678; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-01; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/679 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 679; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-01; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/68 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "Summer 1922"; + base:migration_table\#DateStart_Max "1922-09-23"^^xsd:date; + base:migration_table\#DateStart_Min "1922-06-24"^^xsd:date; + base:migration_table\#IDMig 68; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BodRob-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/680 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "between June 1826 and November 1828 / late Autumm 1825"; + base:migration_table\#DateStart_Max "1828-11-30"^^xsd:date; + base:migration_table\#DateStart_Min "1826-06-01"^^xsd:date; + base:migration_table\#IDMig 680; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/MX-MX-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-01; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/681 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1807"; + base:migration_table\#DateStart_Max "1807-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1807-01-01"^^xsd:date; + base:migration_table\#IDMig 681; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/GarMan-01; + base:migration_table\#ref-IDStartPlace base:location\/ES-00 . + +base:migration_table\/682 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1881"; + base:migration_table\#DateStart_Max "1881-01-01"^^xsd:date; + base:migration_table\#DateStart_Min "1881-01-01"^^xsd:date; + base:migration_table\#IDMig 682; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/HelAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/PL-WA-00 . + +base:migration_table\/683 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 683; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-00; + base:migration_table\#ref-IDPerson base:person\/HelAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/684 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 684; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/HelAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-00 . + +base:migration_table\/685 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 685; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/HelAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/686 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1949"; + base:migration_table\#DateStart_Max "1949-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1949-01-01"^^xsd:date; + base:migration_table\#IDMig 686; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KarBer-00 . + +base:migration_table\/687 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1859"; + base:migration_table\#DateStart_Max "1859-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1859-01-01"^^xsd:date; + base:migration_table\#IDMig 687; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/KruMin-00 . + +base:migration_table\/688 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 688; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/KruMin-00; + base:migration_table\#ref-IDStartPlace base:location\/NL-00 . + +base:migration_table\/689 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1872"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 689; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/Europe; + base:migration_table\#ref-IDPerson base:person\/KruMin-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-00 . + +base:migration_table\/69 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1933"; + base:migration_table\#DateStart_Max "1933-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1933-01-01"^^xsd:date; + base:migration_table\#IDMig 69; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BoiIls-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/690 a base:migration_table; + base:migration_table\#DateStart_Min "1877-09-01"^^xsd:date; + base:migration_table\#IDMig 690; + base:migration_table\#ref-IDDestPlace base:location\/IDN-00; + base:migration_table\#ref-IDPerson base:person\/KruMin-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/691 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 691; + base:migration_table\#ref-IDDestPlace base:location\/FR-Paris-01; + base:migration_table\#ref-IDPerson base:person\/KruMin-00; + base:migration_table\#ref-IDStartPlace base:location\/IDN-00 . + +base:migration_table\/692 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 692; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/LinPau-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/693 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 693; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/LinPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/694 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1826"; + base:migration_table\#DateStart_Max "1826-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1826-01-01"^^xsd:date; + base:migration_table\#IDMig 694; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/MalMar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/695 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1827-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1827-01-01"^^xsd:date; + base:migration_table\#IDMig 695; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/MalMar-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/696 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1832"; + base:migration_table\#DateStart_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1832-01-01"^^xsd:date; + base:migration_table\#IDMig 696; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-00; + base:migration_table\#ref-IDPerson base:person\/MalMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/697 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1871"; + base:migration_table\#DateStart_Max "1871-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1871-01-01"^^xsd:date; + base:migration_table\#IDMig 697; + base:migration_table\#ref-IDDestPlace base:location\/AUS-00; + base:migration_table\#ref-IDPerson base:person\/RicHar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/698 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1875"; + base:migration_table\#DateStart_Max "1875-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1875-01-01"^^xsd:date; + base:migration_table\#IDMig 698; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/RicHar-00; + base:migration_table\#ref-IDStartPlace base:location\/AUS-00 . + +base:migration_table\/699 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1885"; + base:migration_table\#DateStart_Max "1885-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1885-01-01"^^xsd:date; + base:migration_table\#IDMig 699; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AUS-00; + base:migration_table\#ref-IDPerson base:person\/RicHar-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/7 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 7; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/70 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1936"; + base:migration_table\#DateStart_Max "1936-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1936-01-01"^^xsd:date; + base:migration_table\#IDMig 70; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/BoiIls-00; + base:migration_table\#ref-IDStartPlace base:location\/Europe . + +base:migration_table\/700 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1887"; + base:migration_table\#DateStart_Max "1887-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1887-01-01"^^xsd:date; + base:migration_table\#IDMig 700; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/SRB-BEL-00 . + +base:migration_table\/701 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 701; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/702 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 702; + base:migration_table\#ref-IDDestPlace base:location\/LV-RIX-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-STR-00 . + +base:migration_table\/703 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1908"; + base:migration_table\#DateStart_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1908-01-01"^^xsd:date; + base:migration_table\#IDMig 703; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/704 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1909"; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 704; + base:migration_table\#ref-IDDestPlace base:location\/SRB-BEL-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-HH-00 . + +base:migration_table\/705 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 705; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ddorf-00 . + +base:migration_table\/706 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1898"; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 706; + base:migration_table\#ref-IDPerson base:person\/SavZar-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-STR-00 . + +base:migration_table\/707 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 707; + base:migration_table\#ref-IDDestPlace base:location\/CH-GEN-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00 . + +base:migration_table\/708 a base:migration_table; + base:migration_table\#IDMig 708; + base:migration_table\#ref-IDDestPlace base:location\/USA-00; + base:migration_table\#ref-IDPerson base:person\/SavZar-00 . + +base:migration_table\/709 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1920"; + base:migration_table\#DateStart_Max "1920-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1920-01-01"^^xsd:date; + base:migration_table\#IDMig 709; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-AZ-00; + base:migration_table\#ref-IDPerson base:person\/SomAgn-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/71 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1946"; + base:migration_table\#DateStart_Max "1946-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1946-01-01"^^xsd:date; + base:migration_table\#IDMig 71; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BoiIls-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/710 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1823"; + base:migration_table\#DateEnd_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1823-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1823"; + base:migration_table\#DateStart_Max "1823-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1823-01-01"^^xsd:date; + base:migration_table\#IDMig 710; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/711 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1825"; + base:migration_table\#DateEnd_Max "1825-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1825-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1825"; + base:migration_table\#DateStart_Max "1825-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1825-01-01"^^xsd:date; + base:migration_table\#IDMig 711; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "Liverpool" . + +base:migration_table\/712 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "June 1826"; + base:migration_table\#DateEnd_Max "1826-06-30"^^xsd:date; + base:migration_table\#DateEnd_Min "1826-06-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "June 1826"; + base:migration_table\#DateStart_Max "1826-06-30"^^xsd:date; + base:migration_table\#DateStart_Min "1826-06-01"^^xsd:date; + base:migration_table\#IDMig 712; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/MX-MX-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/713 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1829"; + base:migration_table\#DateEnd_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1829-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1829"; + base:migration_table\#DateStart_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1829-01-01"^^xsd:date; + base:migration_table\#IDMig 713; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/MX-MX-00 . + +base:migration_table\/714 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1832"; + base:migration_table\#DateEnd_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1832-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1832"; + base:migration_table\#DateStart_Max "1832-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1832-01-01"^^xsd:date; + base:migration_table\#IDMig 714; + base:migration_table\#reason base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/BE-BRU-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/715 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1839"; + base:migration_table\#DateEnd_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1839-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1839"; + base:migration_table\#DateStart_Max "1839-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1839-01-01"^^xsd:date; + base:migration_table\#IDMig 715; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/719 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1863"; + base:migration_table\#DateEnd_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1863-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 719; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/GER-BadBad-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/720 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1870"; + base:migration_table\#DateEnd_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1870-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1870"; + base:migration_table\#DateStart_Max "1870-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1870-01-01"^^xsd:date; + base:migration_table\#IDMig 720; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#reason2 base:MigrationReason-Family; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BadBad-00 . + +base:migration_table\/721 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1872"; + base:migration_table\#DateEnd_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1872-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1872"; + base:migration_table\#DateStart_Max "1872-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1872-01-01"^^xsd:date; + base:migration_table\#IDMig 721; + base:migration_table\#reason base:MigrationReason-Other; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/ViaPau-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/73 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "8th July 1821"; + base:migration_table\#DateEnd_Max "1821-07-08"^^xsd:date; + base:migration_table\#DateEnd_Min "1821-07-08"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1821"; + base:migration_table\#DateStart_Max "1821-07-08"^^xsd:date; + base:migration_table\#DateStart_Min "1821-01-01"^^xsd:date; + base:migration_table\#IDMig 73; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/IT-Cassa-00 . + +base:migration_table\/74 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1827"; + base:migration_table\#DateEnd_Max "1827-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1827-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1827"; + base:migration_table\#DateStart_Max "1827-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1827-01-01"^^xsd:date; + base:migration_table\#IDMig 74; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/75 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "between 1828 and 1829"; + base:migration_table\#DateEnd_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1828-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "between 1828 and 1829"; + base:migration_table\#DateStart_Max "1829-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1828-01-01"^^xsd:date; + base:migration_table\#IDMig 75; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-Ven-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/76 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1830"; + base:migration_table\#DateEnd_Max "1830-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1830-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1830"; + base:migration_table\#DateStart_Max "1830-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1830-01-01"^^xsd:date; + base:migration_table\#IDMig 76; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ES-Barc-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/IT-Ven-00 . + +base:migration_table\/77 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1833"; + base:migration_table\#DateEnd_Max "1833-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1833-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1833"; + base:migration_table\#DateStart_Max "1833-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1833-01-01"^^xsd:date; + base:migration_table\#IDMig 77; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/ES-Barc-00 . + +base:migration_table\/78 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1842"; + base:migration_table\#DateEnd_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1842-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1842"; + base:migration_table\#DateStart_Max "1842-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1842-01-01"^^xsd:date; + base:migration_table\#IDMig 78; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-Paris-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/79 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1848"; + base:migration_table\#DateEnd_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1848-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1848"; + base:migration_table\#DateStart_Max "1848-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1848-01-01"^^xsd:date; + base:migration_table\#IDMig 79; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-02; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/8 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1891"; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 8; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-MUC-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/LV-RIX-00 . + +base:migration_table\/80 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1846"; + base:migration_table\#DateStart_Max "1846-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1846-01-01"^^xsd:date; + base:migration_table\#IDMig 80; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/81 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1850"; + base:migration_table\#DateStart_Max "1850-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1850-01-01"^^xsd:date; + base:migration_table\#IDMig 81; + base:migration_table\#ref-IDDestPlace base:location\/ES-Mad-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/814 a base:migration_table; + base:migration_table\#DateStart_Max "1886-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 814; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-Ffm-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00 . + +base:migration_table\/819 a base:migration_table; + base:migration_table\#DateEnd_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1886-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1886-01-01"^^xsd:date; + base:migration_table\#IDMig 819; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Ffm-00; + base:migration_table\#via "Milano" . + +base:migration_table\/82 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1852"; + base:migration_table\#DateStart_Max "1852-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1852-01-01"^^xsd:date; + base:migration_table\#IDMig 82; + base:migration_table\#ref-IDDestPlace base:location\/IT-Rom-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-00; + base:migration_table\#ref-IDStartPlace base:location\/ES-Mad-00 . + +base:migration_table\/829 a base:migration_table; + base:migration_table\#DateStart_Max "1888-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1888-01-01"^^xsd:date; + base:migration_table\#IDMig 829; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Pils-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/83 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1868"; + base:migration_table\#DateStart_Max "1868-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1868-01-01"^^xsd:date; + base:migration_table\#IDMig 83; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-01; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/834 a base:migration_table; + base:migration_table\#DateStart_Max "1889-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1889-01-01"^^xsd:date; + base:migration_table\#IDMig 834; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/FR-Met-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Pils-00 . + +base:migration_table\/839 a base:migration_table; + base:migration_table\#DateStart_Max "1891-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1891-01-01"^^xsd:date; + base:migration_table\#IDMig 839; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SE-Stock-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-Met-00 . + +base:migration_table\/84 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1890"; + base:migration_table\#DateStart_Max "1890-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1890-01-01"^^xsd:date; + base:migration_table\#IDMig 84; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BraMar-01 . + +base:migration_table\/844 a base:migration_table; + base:migration_table\#DateStart_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1898-01-01"^^xsd:date; + base:migration_table\#IDMig 844; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/SE-Stock-00 . + +base:migration_table\/849 a base:migration_table; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1902-01-01"^^xsd:date; + base:migration_table\#IDMig 849; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/85 a base:migration_table; + base:migration_table\#IDMig 85; + base:migration_table\#ref-IDPerson base:person\/BraTer-01; + base:migration_table\#ref-IDStartPlace base:location\/IT-Cassa-00 . + +base:migration_table\/854 a base:migration_table; + base:migration_table\#DateStart_Max "1903-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1903-01-01"^^xsd:date; + base:migration_table\#IDMig 854; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-STR-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/859 a base:migration_table; + base:migration_table\#DateStart_Max "1904-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1904-01-01"^^xsd:date; + base:migration_table\#IDMig 859; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-STR-00 . + +base:migration_table\/86 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1863"; + base:migration_table\#DateStart_Max "1863-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1863-01-01"^^xsd:date; + base:migration_table\#IDMig 86; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UA-Od-00; + base:migration_table\#ref-IDPerson base:person\/BraTer-01 . + +base:migration_table\/864 a base:migration_table; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 864; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/869 a base:migration_table; + base:migration_table\#DateStart_Max "1909-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1909-01-01"^^xsd:date; + base:migration_table\#IDMig 869; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/87 a base:migration_table; + base:migration_table\#IDMig 87; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/BraTer-01 . + +base:migration_table\/874 a base:migration_table; + base:migration_table\#DateEnd_Max "1919-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1919-01-01"^^xsd:date; + base:migration_table\#DateStart_Max "1918-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1918-01-01"^^xsd:date; + base:migration_table\#IDMig 874; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/SE-Stock-00; + base:migration_table\#ref-IDPerson base:person\/BraHer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/88 a base:migration_table; + base:migration_table\#IDMig 88; + base:migration_table\#ref-IDDestPlace base:location\/IT-Tur-00; + base:migration_table\#ref-IDPerson base:person\/BraTer-01 . + +base:migration_table\/884 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1882"; + base:migration_table\#DateEnd_Max "1882-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1882-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1880"; + base:migration_table\#DateStart_Max "1880-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1880-01-01"^^xsd:date; + base:migration_table\#IDMig 884; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-Dresd-00; + base:migration_table\#ref-IDPerson base:person\/BaiAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/889 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1882"; + base:migration_table\#DateStart_Max "1882-01-01"^^xsd:date; + base:migration_table\#DateStart_Min "1882-01-01"^^xsd:date; + base:migration_table\#IDMig 889; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Brno-00; + base:migration_table\#ref-IDPerson base:person\/BaiAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Dresd-00 . + +base:migration_table\/89 a base:migration_table; + base:migration_table\#IDMig 89; + base:migration_table\#ref-IDDestPlace base:location\/IT-Ancona-00; + base:migration_table\#ref-IDPerson base:person\/BraTer-01 . + +base:migration_table\/894 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1884"; + base:migration_table\#DateEnd_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1884-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-01-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 894; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-Graz-00; + base:migration_table\#ref-IDPerson base:person\/BaiAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/CZ-Brno-00 . + +base:migration_table\/899 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1898"; + base:migration_table\#DateEnd_Max "1898-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1898-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#DateStart_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-01-01"^^xsd:date; + base:migration_table\#IDMig 899; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BaiAnn-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-Graz-00 . + +base:migration_table\/9 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1894"; + base:migration_table\#DateStart_Max "1894-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1894-01-01"^^xsd:date; + base:migration_table\#IDMig 9; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/AbeIre-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-MUC-00 . + +base:migration_table\/90 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1869"; + base:migration_table\#DateEnd_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1869-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1869"; + base:migration_table\#DateStart_Max "1869-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1869-01-01"^^xsd:date; + base:migration_table\#IDMig 90; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BroFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-Bright-00 . + +base:migration_table\/909 a base:migration_table; + base:migration_table\#DateEnd_Max "1938-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1938-12-01"^^xsd:date; + base:migration_table\#DateStart_Max "1938-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1938-12-01"^^xsd:date; + base:migration_table\#IDMig 909; + base:migration_table\#reason base:MigrationReason-Forced; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/AscLeo-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00; + base:migration_table\#via "England, France" . + +base:migration_table\/91 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1884"; + base:migration_table\#DateEnd_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1884-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1876"; + base:migration_table\#DateStart_Max "1876-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1876-01-01"^^xsd:date; + base:migration_table\#IDMig 91; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/ARG-BA-00; + base:migration_table\#ref-IDPerson base:person\/BroFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00; + base:migration_table\#via "London-Moscow - London - New York - Mexico City-Jamaica - South America - Buenos Aires" . + +base:migration_table\/919 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1896"; + base:migration_table\#DateEnd_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1896-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1896"; + base:migration_table\#DateStart_Max "1896-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1896-01-01"^^xsd:date; + base:migration_table\#IDMig 919; + base:migration_table\#ref-IDDestPlace base:location\/CH-Bas-00; + base:migration_table\#ref-IDPerson base:person\/BreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Hall-00 . + +base:migration_table\/92 a base:migration_table; + base:migration_table\#IDMig 92; + base:migration_table\#ref-IDPerson base:person\/BruMax-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-COL-00 . + +base:migration_table\/924 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1897"; + base:migration_table\#DateStart_Max "1897-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1897-01-01"^^xsd:date; + base:migration_table\#IDMig 924; + base:migration_table\#ref-IDDestPlace base:location\/GER-BrauSch-00; + base:migration_table\#ref-IDPerson base:person\/BreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/CH-Bas-00 . + +base:migration_table\/929 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1905"; + base:migration_table\#DateStart_Max "1905-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1905-01-01"^^xsd:date; + base:migration_table\#IDMig 929; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BreEli-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BrauSch-00 . + +base:migration_table\/93 a base:migration_table; + base:migration_table\#IDMig 93; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BruMax-00 . + +base:migration_table\/933 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 933; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/CZ-Prag-00; + base:migration_table\#ref-IDPerson base:person\/BroPhi-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/934 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 934; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/BroPhi-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-00 . + +base:migration_table\/939 a base:migration_table; + base:migration_table\#IDMig 939; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/USA-Bost-00; + base:migration_table\#ref-IDPerson base:person\/FarGer-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-MA-02 . + +base:migration_table\/94 a base:migration_table; + base:migration_table\#IDMig 94; + base:migration_table\#ref-IDDestPlace base:location\/UK-Liv-00; + base:migration_table\#ref-IDPerson base:person\/BruMax-00 . + +base:migration_table\/944 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1899"; + base:migration_table\#DateEnd_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1899-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1899"; + base:migration_table\#DateStart_Max "1899-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1899-01-01"^^xsd:date; + base:migration_table\#IDMig 944; + base:migration_table\#reason base:MigrationReason-Education; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/FarGer-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-NY-00 . + +base:migration_table\/949 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1901"; + base:migration_table\#DateEnd_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1901-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1901"; + base:migration_table\#DateStart_Max "1901-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 949; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/FarGer-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/95 a base:migration_table; + base:migration_table\#IDMig 95; + base:migration_table\#ref-IDDestPlace base:location\/PL-Bres-00; + base:migration_table\#ref-IDPerson base:person\/BruMax-00 . + +base:migration_table\/954 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 954; + base:migration_table\#reason base:MigrationReason-Labour; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/FarGer-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-BER-00 . + +base:migration_table\/96 a base:migration_table; + base:migration_table\#IDMig 96; + base:migration_table\#ref-IDDestPlace base:location\/GER-BER-00; + base:migration_table\#ref-IDPerson base:person\/BruMax-00 . + +base:migration_table\/964 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1883"; + base:migration_table\#DateEnd_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1883-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1883"; + base:migration_table\#DateStart_Max "1883-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1883-01-01"^^xsd:date; + base:migration_table\#IDMig 964; + base:migration_table\#ref-IDDestPlace base:location\/USA-SanFranc-02; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/NZ-ChristChurch-00 . + +base:migration_table\/969 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1884"; + base:migration_table\#DateEnd_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1884-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#DateStart_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-01-01"^^xsd:date; + base:migration_table\#IDMig 969; + base:migration_table\#ref-IDDestPlace base:location\/AUS-Melb-00; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/USA-SanFranc-02 . + +base:migration_table\/97 a base:migration_table; + base:migration_table\#DateStart_Fuzzy "1884"; + base:migration_table\#DateStart_Max "1884-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1884-01-01"^^xsd:date; + base:migration_table\#IDMig 97; + base:migration_table\#ref-IDDestPlace base:location\/AT-VIE-00; + base:migration_table\#ref-IDPerson base:person\/BukChr-00; + base:migration_table\#ref-IDStartPlace base:location\/GER-Brem-00 . + +base:migration_table\/974 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1901/1902"; + base:migration_table\#DateEnd_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1901-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1901/1902"; + base:migration_table\#DateStart_Max "1902-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1901-01-01"^^xsd:date; + base:migration_table\#IDMig 974; + base:migration_table\#ref-IDDestPlace base:location\/FR-PARIS-00; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/AUS-Melb-00 . + +base:migration_table\/979 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1906"; + base:migration_table\#DateEnd_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1906-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 979; + base:migration_table\#ref-IDDestPlace base:location\/UK-LDN-00; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/FR-PARIS-00 . + +base:migration_table\/98 a base:migration_table; + base:migration_table\#IDMig 98; + base:migration_table\#ref-IDDestPlace base:location\/HU-Buda-00; + base:migration_table\#ref-IDPerson base:person\/BukChr-00; + base:migration_table\#ref-IDStartPlace base:location\/AT-VIE-00 . + +base:migration_table\/984 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1908"; + base:migration_table\#DateEnd_Max "1908-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1908-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1906"; + base:migration_table\#DateStart_Max "1906-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1906-01-01"^^xsd:date; + base:migration_table\#IDMig 984; + base:migration_table\#ref-IDDestPlace base:location\/IT-Mila-00; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/UK-LDN-00 . + +base:migration_table\/985 a base:migration_table; + base:migration_table\#DateEnd_Fuzzy "1910"; + base:migration_table\#DateEnd_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateEnd_Min "1910-01-01"^^xsd:date; + base:migration_table\#DateStart_Fuzzy "1910"; + base:migration_table\#DateStart_Max "1910-12-31"^^xsd:date; + base:migration_table\#DateStart_Min "1910-01-01"^^xsd:date; + base:migration_table\#IDMig 985; + base:migration_table\#ref-IDDestPlace base:location\/USA-NY-00; + base:migration_table\#ref-IDPerson base:person\/AldFra-00; + base:migration_table\#ref-IDStartPlace base:location\/IT-Mila-00 . + +base:migration_table\/99 a base:migration_table; + base:migration_table\#IDMig 99; + base:migration_table\#ref-IDDestPlace base:location\/GER-HH-00; + base:migration_table\#ref-IDPerson base:person\/BukChr-00; + base:migration_table\#ref-IDStartPlace base:location\/HU-Buda-00 . + +base:organisation\/1016 a base:organisation; + base:organisation\#IDOrganisation 1016; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater" . + +base:organisation\/1043 a base:organisation; + base:organisation\#IDOrganisation 1043; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Phenix Dramática theater company" . + +base:organisation\/106 a base:organisation; + base:organisation\#IDOrganisation 106; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Carleton Opera Company" . + +base:organisation\/1061 a base:organisation; + base:organisation\#IDOrganisation 1061; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Tour with Phenix Dramática theater company" . + +base:organisation\/1137 a base:organisation; + base:organisation\#IDOrganisation 1137; + base:organisation\#comment ""; + base:organisation\#inst_name "Niblos Garden" . + +base:organisation\/114 a base:organisation; + base:organisation\#IDOrganisation 114; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/116 a base:organisation; + base:organisation\#IDOrganisation 116; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Malibran" . + +base:organisation\/118 a base:organisation; + base:organisation\#IDOrganisation 118; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Julliard School" . + +base:organisation\/1194 a base:organisation; + base:organisation\#IDOrganisation 1194; + base:organisation\#comment ""; + base:organisation\#inst_name "Hanover Square concert" . + +base:organisation\/1197 a base:organisation; + base:organisation\#IDOrganisation 1197; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Soho Theatre" . + +base:organisation\/1209 a base:organisation; + base:organisation\#IDOrganisation 1209; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Soho Theatre" . + +base:organisation\/1227 a base:organisation; + base:organisation\#IDOrganisation 1227; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Soho Theatre" . + +base:organisation\/1239 a base:organisation; + base:organisation\#IDOrganisation 1239; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Sadlers Wells Theatre" . + +base:organisation\/127 a base:organisation; + base:organisation\#IDOrganisation 127; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "University of Chicago"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/128 a base:organisation; + base:organisation\#IDOrganisation 128; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Holy Family Academy in Chicago"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/1299 a base:organisation; + base:organisation\#IDOrganisation 1299; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "With Mr. Herne" . + +base:organisation\/1315 a base:organisation; + base:organisation\#IDOrganisation 1315; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Woods Museum and Metropolitan" . + +base:organisation\/132 a base:organisation; + base:organisation\#IDOrganisation 132; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "E.A. McDowell acting company" . + +base:organisation\/1355 a base:organisation; + base:organisation\#IDOrganisation 1355; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Daniel Frohmans stock company" . + +base:organisation\/1435 a base:organisation; + base:organisation\#IDOrganisation 1435; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Square Theatre" . + +base:organisation\/152 a base:organisation; + base:organisation\#IDOrganisation 152; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "John W. Albaugh's company" . + +base:organisation\/1560 a base:organisation; + base:organisation\#IDOrganisation 1560; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Circuit" . + +base:organisation\/1565 a base:organisation; + base:organisation\#IDOrganisation 1565; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Circuit Consolidated (later Orpheum Circuit Inc.)" . + +base:organisation\/158 a base:organisation; + base:organisation\#IDOrganisation 158; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "conservatory of Odessa"; + base:organisation\#ref-IDLocation base:location\/UA-Od-00 . + +base:organisation\/159 a base:organisation; + base:organisation\#IDOrganisation 159; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Academy of Acting, Moscow"; + base:organisation\#ref-IDLocation base:location\/RU-Mosk-00 . + +base:organisation\/1590 a base:organisation; + base:organisation\#IDOrganisation 1590; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Provincial Theatre" . + +base:organisation\/1595 a base:organisation; + base:organisation\#IDOrganisation 1595; + base:organisation\#comment ""; + base:organisation\#inst_name "World Fair Paris" . + +base:organisation\/160 a base:organisation; + base:organisation\#IDOrganisation 160; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stanislawsky’s Moscow Art Theatre"; + base:organisation\#ref-IDLocation base:location\/RU-Mosk-00 . + +base:organisation\/1610 a base:organisation; + base:organisation\#IDOrganisation 1610; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "office of Orpheum theaters in Chicago" . + +base:organisation\/1620 a base:organisation; + base:organisation\#IDOrganisation 1620; + base:organisation\#comment ""; + base:organisation\#inst_name "The Western Vaudeville Managers Association" . + +base:organisation\/1625 a base:organisation; + base:organisation\#IDOrganisation 1625; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "United Booking Offices of Orpheum Circuit" . + +base:organisation\/173 a base:organisation; + base:organisation\#IDOrganisation 173; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Modrezjewski’s company" . + +base:organisation\/174 a base:organisation; + base:organisation\#IDOrganisation 174; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "local company in Cracow"; + base:organisation\#ref-IDLocation base:location\/PL-Krak-00 . + +base:organisation\/1761 a base:organisation; + base:organisation\#IDOrganisation 1761; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Dramática Nacional" . + +base:organisation\/177 a base:organisation; + base:organisation\#IDOrganisation 177; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "juvenile opera company" . + +base:organisation\/179 a base:organisation; + base:organisation\#IDOrganisation 179; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Bijou Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1836 a base:organisation; + base:organisation\#IDOrganisation 1836; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Phênix Dramática" . + +base:organisation\/1841 a base:organisation; + base:organisation\#IDOrganisation 1841; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santanna" . + +base:organisation\/1861 a base:organisation; + base:organisation\#IDOrganisation 1861; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santanna" . + +base:organisation\/1886 a base:organisation; + base:organisation\#IDOrganisation 1886; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Phênix Dramática" . + +base:organisation\/1901 a base:organisation; + base:organisation\#IDOrganisation 1901; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Eden Lavradio" . + +base:organisation\/1916 a base:organisation; + base:organisation\#IDOrganisation 1916; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Worked with his father" . + +base:organisation\/193 a base:organisation; + base:organisation\#IDOrganisation 193; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Palace Theatre London"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/1956 a base:organisation; + base:organisation\#IDOrganisation 1956; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/1961 a base:organisation; + base:organisation\#IDOrganisation 1961; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/1971 a base:organisation; + base:organisation\#IDOrganisation 1971; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/1976 a base:organisation; + base:organisation\#IDOrganisation 1976; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/1981 a base:organisation; + base:organisation\#IDOrganisation 1981; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/1991 a base:organisation; + base:organisation\#IDOrganisation 1991; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/2076 a base:organisation; + base:organisation\#IDOrganisation 2076; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Bouffe" . + +base:organisation\/2081 a base:organisation; + base:organisation\#IDOrganisation 2081; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Bouffe" . + +base:organisation\/2086 a base:organisation; + base:organisation\#IDOrganisation 2086; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Booth’s Theatre" . + +base:organisation\/2091 a base:organisation; + base:organisation\#IDOrganisation 2091; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Bouffe" . + +base:organisation\/2101 a base:organisation; + base:organisation\#IDOrganisation 2101; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "French Opera Bouffe" . + +base:organisation\/215 a base:organisation; + base:organisation\#IDOrganisation 215; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Detmold" . + +base:organisation\/2241 a base:organisation; + base:organisation\#IDOrganisation 2241; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Solis" . + +base:organisation\/2265 a base:organisation; + base:organisation\#IDOrganisation 2265; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Colonel Miles’s company" . + +base:organisation\/2275 a base:organisation; + base:organisation\#IDOrganisation 2275; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Colonel Miles’s company" . + +base:organisation\/2310 a base:organisation; + base:organisation\#IDOrganisation 2310; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2315 a base:organisation; + base:organisation\#IDOrganisation 2315; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2320 a base:organisation; + base:organisation\#IDOrganisation 2320; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2325 a base:organisation; + base:organisation\#IDOrganisation 2325; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2330 a base:organisation; + base:organisation\#IDOrganisation 2330; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2335 a base:organisation; + base:organisation\#IDOrganisation 2335; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2385 a base:organisation; + base:organisation\#IDOrganisation 2385; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Colonel Miles’s company & McWade Company" . + +base:organisation\/2400 a base:organisation; + base:organisation\#IDOrganisation 2400; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company" . + +base:organisation\/2405 a base:organisation; + base:organisation\#IDOrganisation 2405; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company" . + +base:organisation\/2410 a base:organisation; + base:organisation\#IDOrganisation 2410; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company" . + +base:organisation\/2435 a base:organisation; + base:organisation\#IDOrganisation 2435; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2440 a base:organisation; + base:organisation\#IDOrganisation 2440; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2450 a base:organisation; + base:organisation\#IDOrganisation 2450; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2455 a base:organisation; + base:organisation\#IDOrganisation 2455; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2460 a base:organisation; + base:organisation\#IDOrganisation 2460; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2465 a base:organisation; + base:organisation\#IDOrganisation 2465; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2475 a base:organisation; + base:organisation\#IDOrganisation 2475; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/2485 a base:organisation; + base:organisation\#IDOrganisation 2485; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Crosbys Opera House" . + +base:organisation\/2495 a base:organisation; + base:organisation\#IDOrganisation 2495; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Manager of the Royal Italian Opera, Covent Garden, London" . + +base:organisation\/2520 a base:organisation; + base:organisation\#IDOrganisation 2520; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "National Conservatory of Music and Performing Arts" . + +base:organisation\/2545 a base:organisation; + base:organisation\#IDOrganisation 2545; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "National Conservatory of Music and Performing Arts" . + +base:organisation\/2555 a base:organisation; + base:organisation\#IDOrganisation 2555; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "National School of Arts of Drama" . + +base:organisation\/2560 a base:organisation; + base:organisation\#IDOrganisation 2560; + base:organisation\#comment ""; + base:organisation\#inst_name "Comisión de Lectura La Comedia" . + +base:organisation\/261 a base:organisation; + base:organisation\#IDOrganisation 261; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Reichshallen Theater" . + +base:organisation\/2685 a base:organisation; + base:organisation\#IDOrganisation 2685; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Akademie der Schönen Künste"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/2720 a base:organisation; + base:organisation\#IDOrganisation 2720; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Italien" . + +base:organisation\/2731 a base:organisation; + base:organisation\#IDOrganisation 2731; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Deardon Sisters" . + +base:organisation\/2736 a base:organisation; + base:organisation\#IDOrganisation 2736; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Bergère Paris" . + +base:organisation\/2741 a base:organisation; + base:organisation\#IDOrganisation 2741; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Professor Brown’s Lady Velocipede Troupe" . + +base:organisation\/2751 a base:organisation; + base:organisation\#IDOrganisation 2751; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Schumann’s Transatlantiques" . + +base:organisation\/2756 a base:organisation; + base:organisation\#IDOrganisation 2756; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Herrmann’s Broad Street Theatre" . + +base:organisation\/2761 a base:organisation; + base:organisation\#IDOrganisation 2761; + base:organisation\#comment ""; + base:organisation\#inst_name "Burlesque house on Fulton Street" . + +base:organisation\/2766 a base:organisation; + base:organisation\#IDOrganisation 2766; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Herrmann’s Theatre" . + +base:organisation\/2771 a base:organisation; + base:organisation\#IDOrganisation 2771; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoyt’s Theatre" . + +base:organisation\/2781 a base:organisation; + base:organisation\#IDOrganisation 2781; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Tour with Leon Herrmann" . + +base:organisation\/2791 a base:organisation; + base:organisation\#IDOrganisation 2791; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "With Leon Herrmann" . + +base:organisation\/2811 a base:organisation; + base:organisation\#IDOrganisation 2811; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hammerstein’s New York Roof Theatre" . + +base:organisation\/282 a base:organisation; + base:organisation\#IDOrganisation 282; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stamford Circuit theatres" . + +base:organisation\/2826 a base:organisation; + base:organisation\#IDOrganisation 2826; + base:organisation\#comment ""; + base:organisation\#inst_name "Winter Garden, Berlin" . + +base:organisation\/2831 a base:organisation; + base:organisation\#IDOrganisation 2831; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Adelaide Herrmann Tour" . + +base:organisation\/2836 a base:organisation; + base:organisation\#IDOrganisation 2836; + base:organisation\#comment ""; + base:organisation\#inst_name "London Hippodrome" . + +base:organisation\/2841 a base:organisation; + base:organisation\#IDOrganisation 2841; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Bergère" . + +base:organisation\/2846 a base:organisation; + base:organisation\#IDOrganisation 2846; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Keith-Albee Vaudeville circuit" . + +base:organisation\/2851 a base:organisation; + base:organisation\#IDOrganisation 2851; + base:organisation\#comment ""; + base:organisation\#inst_name "Performances in Vaudeville houses and roof gardens" . + +base:organisation\/2856 a base:organisation; + base:organisation\#IDOrganisation 2856; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Herrmann the Great Company" . + +base:organisation\/2861 a base:organisation; + base:organisation\#IDOrganisation 2861; + base:organisation\#comment ""; + base:organisation\#inst_name "Klaw’s and Erlanger’s Advanced Vaudeville" . + +base:organisation\/2866 a base:organisation; + base:organisation\#IDOrganisation 2866; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Keith and Orpheum circuits" . + +base:organisation\/2871 a base:organisation; + base:organisation\#IDOrganisation 2871; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum circuits" . + +base:organisation\/2876 a base:organisation; + base:organisation\#IDOrganisation 2876; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Keith’s Riverside Theatre" . + +base:organisation\/2881 a base:organisation; + base:organisation\#IDOrganisation 2881; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "“Merry Widow“ Company/Adelaide Herrmann Vaudeville Company" . + +base:organisation\/2886 a base:organisation; + base:organisation\#IDOrganisation 2886; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Payret theatre" . + +base:organisation\/2891 a base:organisation; + base:organisation\#IDOrganisation 2891; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Priscilla theater" . + +base:organisation\/2896 a base:organisation; + base:organisation\#IDOrganisation 2896; + base:organisation\#comment ""; + base:organisation\#inst_name "Hippodrome" . + +base:organisation\/2901 a base:organisation; + base:organisation\#IDOrganisation 2901; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Keith’s Theatre" . + +base:organisation\/2906 a base:organisation; + base:organisation\#IDOrganisation 2906; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Keith’s Orpheum Theater" . + +base:organisation\/2990 a base:organisation; + base:organisation\#IDOrganisation 2990; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Novedades Theatre" . + +base:organisation\/3000 a base:organisation; + base:organisation\#IDOrganisation 3000; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mariano Galé Company" . + +base:organisation\/3010 a base:organisation; + base:organisation\#IDOrganisation 3010; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "His own company" . + +base:organisation\/303 a base:organisation; + base:organisation\#IDOrganisation 303; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater in New York" . + +base:organisation\/3030 a base:organisation; + base:organisation\#IDOrganisation 3030; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Jerónimo Podestá Company" . + +base:organisation\/3035 a base:organisation; + base:organisation\#IDOrganisation 3035; + base:organisation\#comment ""; + base:organisation\#inst_name "Podestá Brothers" . + +base:organisation\/3040 a base:organisation; + base:organisation\#IDOrganisation 3040; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Orfilia Rico Company (Dir: Julio Sánchez Gardel)" . + +base:organisation\/3080 a base:organisation; + base:organisation\#IDOrganisation 3080; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Fanny Brenna Company" . + +base:organisation\/3150 a base:organisation; + base:organisation\#IDOrganisation 3150; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Association of Theatre Critics" . + +base:organisation\/316 a base:organisation; + base:organisation\#IDOrganisation 316; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "RKO Radio" . + +base:organisation\/3235 a base:organisation; + base:organisation\#IDOrganisation 3235; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "National Institute of Theatre Studies (INET)" . + +base:organisation\/324 a base:organisation; + base:organisation\#IDOrganisation 324; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish theater in Jassy (Romania)"; + base:organisation\#ref-IDLocation base:location\/ROU-Jassy-00 . + +base:organisation\/3240 a base:organisation; + base:organisation\#IDOrganisation 3240; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "National School for Music and Scenic Arts" . + +base:organisation\/3245 a base:organisation; + base:organisation\#IDOrganisation 3245; + base:organisation\#comment ""; + base:organisation\#inst_name "National Senate" . + +base:organisation\/325 a base:organisation; + base:organisation\#IDOrganisation 325; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Illustrated Newspaper in New York"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/326 a base:organisation; + base:organisation\#IDOrganisation 326; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment "humorous magazine"; + base:organisation\#inst_name "Der alter Jisrolik"; + base:organisation\#ref-IDLocation base:location\/UA-Lv-00 . + +base:organisation\/328 a base:organisation; + base:organisation\#IDOrganisation 328; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "private company of actors by fanny janauschek" . + +base:organisation\/329 a base:organisation; + base:organisation\#IDOrganisation 329; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Ringelmannschen Theatergesellschaft" . + +base:organisation\/330 a base:organisation; + base:organisation\#IDOrganisation 330; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutscher Bühnenverein" . + +base:organisation\/332 a base:organisation; + base:organisation\#IDOrganisation 332; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Viardot (Baden-Baden)" . + +base:organisation\/333 a base:organisation; + base:organisation\#IDOrganisation 333; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "American Federation of Actors" . + +base:organisation\/334 a base:organisation; + base:organisation\#IDOrganisation 334; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Ullmann-Strakosch Opera Company" . + +base:organisation\/336 a base:organisation; + base:organisation\#IDOrganisation 336; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Kosciuszko Foundation" . + +base:organisation\/338 a base:organisation; + base:organisation\#IDOrganisation 338; + base:organisation\#comment ""; + base:organisation\#inst_name "Orleneff’s Russian Lyceum" . + +base:organisation\/339 a base:organisation; + base:organisation\#IDOrganisation 339; + base:organisation\#comment ""; + base:organisation\#inst_name "Garden of Allah" . + +base:organisation\/340 a base:organisation; + base:organisation\#IDOrganisation 340; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Masonic Lodge Charlotte zu den drei Nelken" . + +base:organisation\/3400 a base:organisation; + base:organisation\#IDOrganisation 3400; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedad de Empresarios Teatrales" . + +base:organisation\/341 a base:organisation; + base:organisation\#IDOrganisation 341; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Die Breslauer Gesellschaft" . + +base:organisation\/3415 a base:organisation; + base:organisation\#IDOrganisation 3415; + base:organisation\#comment ""; + base:organisation\#inst_name "University of Buenos Aires" . + +base:organisation\/342 a base:organisation; + base:organisation\#IDOrganisation 342; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Allgemeine Theater-Revue" . + +base:organisation\/3420 a base:organisation; + base:organisation\#IDOrganisation 3420; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Alberto Casaux Company" . + +base:organisation\/3425 a base:organisation; + base:organisation\#IDOrganisation 3425; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Alfredo Camiña, Marcos Caplán and Enrique Serrano Company" . + +base:organisation\/343 a base:organisation; + base:organisation\#IDOrganisation 343; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Unterhaltungen für das Theaterpublikum in München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/344 a base:organisation; + base:organisation\#IDOrganisation 344; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Europa, Chronik der gebildeten Welt in Stuttgart" . + +base:organisation\/3445 a base:organisation; + base:organisation\#IDOrganisation 3445; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Camila Quiroga Company" . + +base:organisation\/345 a base:organisation; + base:organisation\#IDOrganisation 345; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Catholic Oratorio Society of New York" . + +base:organisation\/3450 a base:organisation; + base:organisation\#IDOrganisation 3450; + base:organisation\#comment ""; + base:organisation\#inst_name "Comedia" . + +base:organisation\/3455 a base:organisation; + base:organisation\#IDOrganisation 3455; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Concepción Olona Company" . + +base:organisation\/347 a base:organisation; + base:organisation\#IDOrganisation 347; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Fine Arts" . + +base:organisation\/348 a base:organisation; + base:organisation\#IDOrganisation 348; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Damrosch-Ellis Company" . + +base:organisation\/3480 a base:organisation; + base:organisation\#IDOrganisation 3480; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "El Caracol Company" . + +base:organisation\/3490 a base:organisation; + base:organisation\#IDOrganisation 3490; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Enrique Muiño Company" . + +base:organisation\/3495 a base:organisation; + base:organisation\#IDOrganisation 3495; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Ermette Novelli and Tina di Lorenzo Company" . + +base:organisation\/350 a base:organisation; + base:organisation\#IDOrganisation 350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Martin Beck Theatre, New York" . + +base:organisation\/3500 a base:organisation; + base:organisation\#IDOrganisation 3500; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Florencio Parravicini Company" . + +base:organisation\/3525 a base:organisation; + base:organisation\#IDOrganisation 3525; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Héctor Quiroga Company" . + +base:organisation\/354 a base:organisation; + base:organisation\#IDOrganisation 354; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Dessau " . + +base:organisation\/3540 a base:organisation; + base:organisation\#IDOrganisation 3540; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "José Podestá Company" . + +base:organisation\/3560 a base:organisation; + base:organisation\#IDOrganisation 3560; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Luis Arata Company" . + +base:organisation\/3575 a base:organisation; + base:organisation\#IDOrganisation 3575; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "National Company" . + +base:organisation\/3585 a base:organisation; + base:organisation\#IDOrganisation 3585; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Napolitan Company" . + +base:organisation\/3595 a base:organisation; + base:organisation\#IDOrganisation 3595; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Pablo Podestá Company" . + +base:organisation\/360 a base:organisation; + base:organisation\#IDOrganisation 360; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Neustädter Theater Prag" . + +base:organisation\/3605 a base:organisation; + base:organisation\#IDOrganisation 3605; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Silvio Giovanetti and Julio Traversa Company" . + +base:organisation\/361 a base:organisation; + base:organisation\#IDOrganisation 361; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Harlem Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/362 a base:organisation; + base:organisation\#IDOrganisation 362; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Columbus Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/3621 a base:organisation; + base:organisation\#IDOrganisation 3621; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Bolshoi Theater in St. Petersburg" . + +base:organisation\/364 a base:organisation; + base:organisation\#IDOrganisation 364; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Republic"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/365 a base:organisation; + base:organisation\#IDOrganisation 365; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lew Fields Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/366 a base:organisation; + base:organisation\#IDOrganisation 366; + base:organisation\#comment ""; + base:organisation\#inst_name "Hammerstein's Paradise Roof Garden"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/3670 a base:organisation; + base:organisation\#IDOrganisation 3670; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santa Isabel" . + +base:organisation\/368 a base:organisation; + base:organisation\#IDOrganisation 368; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Philadelphia Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/3735 a base:organisation; + base:organisation\#IDOrganisation 3735; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassinos tour in São Paulo State" . + +base:organisation\/374 a base:organisation; + base:organisation\#IDOrganisation 374; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Intimes Theater, Nürnberg" . + +base:organisation\/378 a base:organisation; + base:organisation\#IDOrganisation 378; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Reichstheaterkammer"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:organisation\/3780 a base:organisation; + base:organisation\#IDOrganisation 3780; + base:organisation\#comment ""; + base:organisation\#inst_name "The Versailles Restaurant" . + +base:organisation\/379 a base:organisation; + base:organisation\#IDOrganisation 379; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Reinhardt-Bühnen" . + +base:organisation\/3800 a base:organisation; + base:organisation\#IDOrganisation 3800; + base:organisation\#comment ""; + base:organisation\#inst_name "Odeon Records" . + +base:organisation\/3825 a base:organisation; + base:organisation\#IDOrganisation 3825; + base:organisation\#comment ""; + base:organisation\#inst_name "Decca Records" . + +base:organisation\/3830 a base:organisation; + base:organisation\#IDOrganisation 3830; + base:organisation\#comment ""; + base:organisation\#inst_name "Waldorf Astoria" . + +base:organisation\/3835 a base:organisation; + base:organisation\#IDOrganisation 3835; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Shubert Theatre" . + +base:organisation\/3865 a base:organisation; + base:organisation\#IDOrganisation 3865; + base:organisation\#comment ""; + base:organisation\#inst_name "Palladium" . + +base:organisation\/3925 a base:organisation; + base:organisation\#IDOrganisation 3925; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Town Cassino" . + +base:organisation\/3935 a base:organisation; + base:organisation\#IDOrganisation 3935; + base:organisation\#comment ""; + base:organisation\#inst_name "Ciro’s" . + +base:organisation\/3940 a base:organisation; + base:organisation\#IDOrganisation 3940; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Mark Hopkins Hotel" . + +base:organisation\/4031 a base:organisation; + base:organisation\#IDOrganisation 4031; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grande Companhia de Opereta" . + +base:organisation\/4040 a base:organisation; + base:organisation\#IDOrganisation 4040; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gran Teatro del Liceo" . + +base:organisation\/4045 a base:organisation; + base:organisation\#IDOrganisation 4045; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Principal Theatre" . + +base:organisation\/4050 a base:organisation; + base:organisation\#IDOrganisation 4050; + base:organisation\#comment ""; + base:organisation\#inst_name "Palau de la Música" . + +base:organisation\/4055 a base:organisation; + base:organisation\#IDOrganisation 4055; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatory of Music of Buenos Aires" . + +base:organisation\/4070 a base:organisation; + base:organisation\#IDOrganisation 4070; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Tatiana Paulova Company" . + +base:organisation\/4075 a base:organisation; + base:organisation\#IDOrganisation 4075; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Italia Almirante, Irene López Heredia Company" . + +base:organisation\/408 a base:organisation; + base:organisation\#IDOrganisation 408; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Mack Sennetts Keystone Studios"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/4080 a base:organisation; + base:organisation\#IDOrganisation 4080; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Werner Krauss Company" . + +base:organisation\/4085 a base:organisation; + base:organisation\#IDOrganisation 4085; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "English Player George Urban Company" . + +base:organisation\/4090 a base:organisation; + base:organisation\#IDOrganisation 4090; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Armando Falconi Company" . + +base:organisation\/4126 a base:organisation; + base:organisation\#IDOrganisation 4126; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Residenztheater"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4131 a base:organisation; + base:organisation\#IDOrganisation 4131; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Theaterakademie"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4136 a base:organisation; + base:organisation\#IDOrganisation 4136; + base:organisation\#comment ""; + base:organisation\#inst_name "Comedia" . + +base:organisation\/417 a base:organisation; + base:organisation\#IDOrganisation 417; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Masonic Lodge “Zur Beständigkeit”" . + +base:organisation\/4201 a base:organisation; + base:organisation\#IDOrganisation 4201; + base:organisation\#comment ""; + base:organisation\#inst_name "La Nación" . + +base:organisation\/4226 a base:organisation; + base:organisation\#IDOrganisation 4226; + base:organisation\#comment ""; + base:organisation\#inst_name "Federico Ardeirus impresario" . + +base:organisation\/439 a base:organisation; + base:organisation\#IDOrganisation 439; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera-Bouffe Company" . + +base:organisation\/4445 a base:organisation; + base:organisation\#IDOrganisation 4445; + base:organisation\#comment ""; + base:organisation\#inst_name "Princess Theater" . + +base:organisation\/4570 a base:organisation; + base:organisation\#IDOrganisation 4570; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Theater" . + +base:organisation\/4600 a base:organisation; + base:organisation\#IDOrganisation 4600; + base:organisation\#comment ""; + base:organisation\#inst_name "Raffles Hotel" . + +base:organisation\/4616 a base:organisation; + base:organisation\#IDOrganisation 4616; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Arcadia"; + base:organisation\#ref-IDLocation base:location\/RU-StPet-00 . + +base:organisation\/464 a base:organisation; + base:organisation\#IDOrganisation 464; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Palais Garnier"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/4656 a base:organisation; + base:organisation\#IDOrganisation 4656; + base:organisation\#comment ""; + base:organisation\#inst_name "The California Theatre" . + +base:organisation\/472 a base:organisation; + base:organisation\#IDOrganisation 472; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "French Opera in Moscau"; + base:organisation\#ref-IDLocation base:location\/RU-Mosk-00 . + +base:organisation\/4756 a base:organisation; + base:organisation\#IDOrganisation 4756; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Empire Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/4768 a base:organisation; + base:organisation\#IDOrganisation 4768; + base:organisation\#comment ""; + base:organisation\#inst_name "Circo Real" . + +base:organisation\/480 a base:organisation; + base:organisation\#IDOrganisation 480; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Zwanglosen Gesellschaft München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/481 a base:organisation; + base:organisation\#IDOrganisation 481; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Singing School in Warschau"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/485 a base:organisation; + base:organisation\#IDOrganisation 485; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Hochschule für Musik, Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/4864 a base:organisation; + base:organisation\#IDOrganisation 4864; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Dealessi-Camiña-Caplán-Serrano" . + +base:organisation\/4884 a base:organisation; + base:organisation\#IDOrganisation 4884; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Real de Lisboa" . + +base:organisation\/489 a base:organisation; + base:organisation\#IDOrganisation 489; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Volksoper Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/48940 a base:organisation; + base:organisation\#IDOrganisation 48940; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "A.B.C. Grand Record (Austria)" . + +base:organisation\/48950 a base:organisation; + base:organisation\#IDOrganisation 48950; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "A. Hellmann" . + +base:organisation\/4900 a base:organisation; + base:organisation\#IDOrganisation 4900; + base:organisation\#inst_name "Cerniowce Theatre in Stanisla" . + +base:organisation\/49270 a base:organisation; + base:organisation\#IDOrganisation 49270; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Albert Teres" . + +base:organisation\/493 a base:organisation; + base:organisation\#IDOrganisation 493; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Musikalischer Verein Polyhymnia"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/495 a base:organisation; + base:organisation\#IDOrganisation 495; + base:organisation\#comment ""; + base:organisation\#inst_name "London Holiday Pantimon"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/496 a base:organisation; + base:organisation\#IDOrganisation 496; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Kiralfy Family Hungarian Dance Troupe" . + +base:organisation\/49600 a base:organisation; + base:organisation\#IDOrganisation 49600; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Arbeiter Zeitung" . + +base:organisation\/497 a base:organisation; + base:organisation\#IDOrganisation 497; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Brown`s Lady Velocipede Troupe" . + +base:organisation\/49730 a base:organisation; + base:organisation\#IDOrganisation 49730; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Artef Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/49930 a base:organisation; + base:organisation\#IDOrganisation 49930; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "B. Tursh"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/50000 a base:organisation; + base:organisation\#IDOrganisation 50000; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Baron" . + +base:organisation\/50030 a base:organisation; + base:organisation\#IDOrganisation 50030; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Baumritter" . + +base:organisation\/5008 a base:organisation; + base:organisation\#IDOrganisation 5008; + base:organisation\#inst_name "House in Detroit" . + +base:organisation\/50140 a base:organisation; + base:organisation\#IDOrganisation 50140; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Berl Bernstein Troupe" . + +base:organisation\/50350 a base:organisation; + base:organisation\#IDOrganisation 50350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bowery Garden Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/504 a base:organisation; + base:organisation\#IDOrganisation 504; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kaminski Theater"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5052 a base:organisation; + base:organisation\#IDOrganisation 5052; + base:organisation\#inst_name "Grand Opera House in Kalamazoo" . + +base:organisation\/50720 a base:organisation; + base:organisation\#IDOrganisation 50720; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Camp Kinderland" . + +base:organisation\/50860 a base:organisation; + base:organisation\#IDOrganisation 50860; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Casino Teater (previously Gilmore's)"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/51050 a base:organisation; + base:organisation\#IDOrganisation 51050; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Chathan Printing" . + +base:organisation\/511 a base:organisation; + base:organisation\#IDOrganisation 511; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Zuta Theatre"; + base:organisation\#ref-IDLocation base:location\/ISR-00 . + +base:organisation\/51200 a base:organisation; + base:organisation\#IDOrganisation 51200; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Cidal Circ" . + +base:organisation\/51370 a base:organisation; + base:organisation\#IDOrganisation 51370; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "City Theater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/518 a base:organisation; + base:organisation\#IDOrganisation 518; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "the Hebrew Immigrant Aid Society"; + base:organisation\#ref-IDLocation base:location\/SouthAmerica . + +base:organisation\/519 a base:organisation; + base:organisation\#IDOrganisation 519; + base:organisation\#comment ""; + base:organisation\#inst_name "World Yiddish Congress" . + +base:organisation\/520 a base:organisation; + base:organisation\#IDOrganisation 520; + base:organisation\#comment ""; + base:organisation\#inst_name "South American Federation of Polish Jews" . + +base:organisation\/521 a base:organisation; + base:organisation\#IDOrganisation 521; + base:organisation\#comment ""; + base:organisation\#inst_name "Publishing House Dos Poylishe Yidntum" . + +base:organisation\/52270 a base:organisation; + base:organisation\#IDOrganisation 52270; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "D. Salat" . + +base:organisation\/52420 a base:organisation; + base:organisation\#IDOrganisation 52420; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Der Moment⁩" . + +base:organisation\/52430 a base:organisation; + base:organisation\#IDOrganisation 52430; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Der Tog⁩" . + +base:organisation\/52460 a base:organisation; + base:organisation\#IDOrganisation 52460; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Der Yud⁩" . + +base:organisation\/52670 a base:organisation; + base:organisation\#IDOrganisation 52670; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Die Feymos Teatre"; + base:organisation\#ref-IDLocation base:location\/USA-StLouis-00 . + +base:organisation\/52680 a base:organisation; + base:organisation\#IDOrganisation 52680; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Di Fraye Yidishe Folks-Bine" . + +base:organisation\/52700 a base:organisation; + base:organisation\#IDOrganisation 52700; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Di idishe tsayṭung⁩" . + +base:organisation\/52710 a base:organisation; + base:organisation\#IDOrganisation 52710; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Di inṭernatsyonale biblioṭheḳ" . + +base:organisation\/52730 a base:organisation; + base:organisation\#IDOrganisation 52730; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Di tsukunft" . + +base:organisation\/52760 a base:organisation; + base:organisation\#IDOrganisation 52760; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Dos Yiddishe Vort" . + +base:organisation\/52810 a base:organisation; + base:organisation\#IDOrganisation 52810; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic Arts Dramatishe Kunst" . + +base:organisation\/52840 a base:organisation; + base:organisation\#IDOrganisation 52840; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic Folk Theatre" . + +base:organisation\/5288 a base:organisation; + base:organisation\#IDOrganisation 5288; + base:organisation\#inst_name "Rapids)" . + +base:organisation\/52940 a base:organisation; + base:organisation\#IDOrganisation 52940; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Dzsheyḳob Gordon" . + +base:organisation\/53180 a base:organisation; + base:organisation\#IDOrganisation 53180; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Elizeum" . + +base:organisation\/532 a base:organisation; + base:organisation\#IDOrganisation 532; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Accademia di Santa Cecilia"; + base:organisation\#ref-IDLocation base:location\/IT-Rom-00 . + +base:organisation\/53250 a base:organisation; + base:organisation\#IDOrganisation 53250; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Empire Music" . + +base:organisation\/53280 a base:organisation; + base:organisation\#IDOrganisation 53280; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Empire Theatre" . + +base:organisation\/533 a base:organisation; + base:organisation\#IDOrganisation 533; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Accademia Filarmonica, Bologna"; + base:organisation\#ref-IDLocation base:location\/IT-BOL-00 . + +base:organisation\/535 a base:organisation; + base:organisation\#IDOrganisation 535; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kaiserhof"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/53550 a base:organisation; + base:organisation\#IDOrganisation 53550; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Feynman's Folks Theatre" . + +base:organisation\/5365 a base:organisation; + base:organisation\#IDOrganisation 5365; + base:organisation\#inst_name "Albaugh´s Opera House, Baltimore" . + +base:organisation\/53760 a base:organisation; + base:organisation\#IDOrganisation 53760; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Folḳsbildung" . + +base:organisation\/53770 a base:organisation; + base:organisation\#IDOrganisation 53770; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Folk Singer Troupe" . + +base:organisation\/53780 a base:organisation; + base:organisation\#IDOrganisation 53780; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Folks un Jungt Theatre" . + +base:organisation\/540 a base:organisation; + base:organisation\#IDOrganisation 540; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "German-American Theatre, Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/54070 a base:organisation; + base:organisation\#IDOrganisation 54070; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Garden Theatre" . + +base:organisation\/54100 a base:organisation; + base:organisation\#IDOrganisation 54100; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Garland Pub." . + +base:organisation\/5453 a base:organisation; + base:organisation\#IDOrganisation 5453; + base:organisation\#inst_name "Fresno Grand Opera House, Pasadena" . + +base:organisation\/54610 a base:organisation; + base:organisation\#IDOrganisation 54610; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Grayzel & Co. Union Printers"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/54750 a base:organisation; + base:organisation\#IDOrganisation 54750; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Ha-Asif" . + +base:organisation\/54770 a base:organisation; + base:organisation\#IDOrganisation 54770; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "ha-Dor⁩" . + +base:organisation\/54780 a base:organisation; + base:organisation\#IDOrganisation 54780; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "ha-Karmel⁩" . + +base:organisation\/549 a base:organisation; + base:organisation\#IDOrganisation 549; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Opera"; + base:organisation\#ref-IDLocation base:location\/HU-Buda-00 . + +base:organisation\/54930 a base:organisation; + base:organisation\#IDOrganisation 54930; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "ha-Tsofeh ⁩" . + +base:organisation\/54950 a base:organisation; + base:organisation\#IDOrganisation 54950; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Haynṭ⁩" . + +base:organisation\/54980 a base:organisation; + base:organisation\#IDOrganisation 54980; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hazomir (The Nightingale)" . + +base:organisation\/55020 a base:organisation; + base:organisation\#IDOrganisation 55020; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Hebrew Publishing Company" . + +base:organisation\/551 a base:organisation; + base:organisation\#IDOrganisation 551; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Petersburger Hofteather"; + base:organisation\#ref-IDLocation base:location\/RU-StPet-00 . + +base:organisation\/552 a base:organisation; + base:organisation\#IDOrganisation 552; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper am Boulevard"; + base:organisation\#ref-IDLocation base:location\/SRB-BEL-00 . + +base:organisation\/553 a base:organisation; + base:organisation\#IDOrganisation 553; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Serbisches Nationaltheater"; + base:organisation\#ref-IDLocation base:location\/SRB-NovSad-00 . + +base:organisation\/55820 a base:organisation; + base:organisation\#IDOrganisation 55820; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hub Theatre" . + +base:organisation\/55920 a base:organisation; + base:organisation\#IDOrganisation 55920; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Independent Jewish Actors Company" . + +base:organisation\/56110 a base:organisation; + base:organisation\#IDOrganisation 56110; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "J. Katzenelenbogen"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/56310 a base:organisation; + base:organisation\#IDOrganisation 56310; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Joseph Jaffe" . + +base:organisation\/56370 a base:organisation; + base:organisation\#IDOrganisation 56370; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Jüdischen Künstlerspiele" . + +base:organisation\/56400 a base:organisation; + base:organisation\#IDOrganisation 56400; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Julius Litwak" . + +base:organisation\/56410 a base:organisation; + base:organisation\#IDOrganisation 56410; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Julius Litwak|Litwack"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/56480 a base:organisation; + base:organisation\#IDOrganisation 56480; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Ḳ. Leṿenshṭeyn , ."; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/56510 a base:organisation; + base:organisation\#IDOrganisation 56510; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kalich Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/56570 a base:organisation; + base:organisation\#IDOrganisation 56570; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Karl Zilberman, Max Kurtz, Harry Feinberg, Gazovski and Aba Rosenzweig Toupe" . + +base:organisation\/56590 a base:organisation; + base:organisation\#IDOrganisation 56590; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Katzenelenbogen & Rabinowitz"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/566 a base:organisation; + base:organisation\#IDOrganisation 566; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Neues Deutsches Theater"; + base:organisation\#ref-IDLocation base:location\/USA-MKE-00 . + +base:organisation\/567 a base:organisation; + base:organisation\#IDOrganisation 567; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Adolf Philipp Theater"; + base:organisation\#ref-IDLocation base:location\/USA-MNHTN-00 . + +base:organisation\/57000 a base:organisation; + base:organisation\#IDOrganisation 57000; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kruger Printing" . + +base:organisation\/57010 a base:organisation; + base:organisation\#IDOrganisation 57010; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kruger und Lifshits" . + +base:organisation\/57060 a base:organisation; + base:organisation\#IDOrganisation 57060; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "L. Ḥarik" . + +base:organisation\/5713 a base:organisation; + base:organisation\#IDOrganisation 5713; + base:organisation\#inst_name "The Worcester Opera House" . + +base:organisation\/57390 a base:organisation; + base:organisation\#IDOrganisation 57390; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Leksikon fun yidishn teater ( Lexicon of Yiddish Theatre or Encyclopedia of the Yiddish Theatre)" . + +base:organisation\/57440 a base:organisation; + base:organisation\#IDOrganisation 57440; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Leon Berger Troupe" . + +base:organisation\/57690 a base:organisation; + base:organisation\#IDOrganisation 57690; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Literarisze Bleter⁩" . + +base:organisation\/580 a base:organisation; + base:organisation\#IDOrganisation 580; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Garrick theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/58570 a base:organisation; + base:organisation\#IDOrganisation 58570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Singer Hall" . + +base:organisation\/58630 a base:organisation; + base:organisation\#IDOrganisation 58630; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Meyer Levin" . + +base:organisation\/59060 a base:organisation; + base:organisation\#IDOrganisation 59060; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Munish Necheles" . + +base:organisation\/59120 a base:organisation; + base:organisation\#IDOrganisation 59120; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "N. Sṭarovolsḳi"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/59470 a base:organisation; + base:organisation\#IDOrganisation 59470; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New Orpheum Theater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/595 a base:organisation; + base:organisation\#IDOrganisation 595; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosas & Brasão" . + +base:organisation\/59570 a base:organisation; + base:organisation\#IDOrganisation 59570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New Star Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/59870 a base:organisation; + base:organisation\#IDOrganisation 59870; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Nowy Dziennik" . + +base:organisation\/59990 a base:organisation; + base:organisation\#IDOrganisation 59990; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Olimpic Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/60420 a base:organisation; + base:organisation\#IDOrganisation 60420; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oriental Theater (Philadelphia)"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/60910 a base:organisation; + base:organisation\#IDOrganisation 60910; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "People's Theater Ohio"; + base:organisation\#ref-IDLocation base:location\/USA-Clevel-00 . + +base:organisation\/60970 a base:organisation; + base:organisation\#IDOrganisation 60970; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Perry Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Clevel-00 . + +base:organisation\/61100 a base:organisation; + base:organisation\#IDOrganisation 61100; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Pimelt and Y.Shvabe"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/61380 a base:organisation; + base:organisation\#IDOrganisation 61380; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Progres"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/616 a base:organisation; + base:organisation\#IDOrganisation 616; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatorio Giuseppe Verdi"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/61650 a base:organisation; + base:organisation\#IDOrganisation 61650; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Rapaporṭ's Prinṭing" . + +base:organisation\/623 a base:organisation; + base:organisation\#IDOrganisation 623; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Januário"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/62340 a base:organisation; + base:organisation\#IDOrganisation 62340; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Salon Erfoon Espanol"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/62350 a base:organisation; + base:organisation\#IDOrganisation 62350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Salon Garibaldi"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/62430 a base:organisation; + base:organisation\#IDOrganisation 62430; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sam Dayen Troupe" . + +base:organisation\/62560 a base:organisation; + base:organisation\#IDOrganisation 62560; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Schildkraut Theatre" . + +base:organisation\/62680 a base:organisation; + base:organisation\#IDOrganisation 62680; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Shaarei tsion choral school" . + +base:organisation\/62780 a base:organisation; + base:organisation\#IDOrganisation 62780; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Sidney M. Goldin Productions" . + +base:organisation\/63060 a base:organisation; + base:organisation\#IDOrganisation 63060; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Sommertheater im botanischen Garten"; + base:organisation\#ref-IDLocation base:location\/LT-Viln-00 . + +base:organisation\/63800 a base:organisation; + base:organisation\#IDOrganisation 63800; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Synagogue chorus" . + +base:organisation\/63870 a base:organisation; + base:organisation\#IDOrganisation 63870; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teater Ermitage"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/63880 a base:organisation; + base:organisation\#IDOrganisation 63880; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "teater gesselshaft" . + +base:organisation\/63890 a base:organisation; + base:organisation\#IDOrganisation 63890; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Teater un kunst" . + +base:organisation\/63900 a base:organisation; + base:organisation\#IDOrganisation 63900; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatr i Iskusstvo" . + +base:organisation\/641 a base:organisation; + base:organisation\#IDOrganisation 641; + base:organisation\#comment ""; + base:organisation\#inst_name "Agricultural worker"; + base:organisation\#ref-IDLocation base:location\/ARG-Mendo-00 . + +base:organisation\/643 a base:organisation; + base:organisation\#IDOrganisation 643; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Páginas de España"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/644 a base:organisation; + base:organisation\#IDOrganisation 644; + base:organisation\#comment ""; + base:organisation\#inst_name "El Diario Español"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/645 a base:organisation; + base:organisation\#IDOrganisation 645; + base:organisation\#comment ""; + base:organisation\#inst_name "Nueva Villa de Guaymallén"; + base:organisation\#ref-IDLocation base:location\/ARG-Guay-00 . + +base:organisation\/646 a base:organisation; + base:organisation\#IDOrganisation 646; + base:organisation\#comment ""; + base:organisation\#inst_name "El Porvenir"; + base:organisation\#ref-IDLocation base:location\/ARG-Mendo-00 . + +base:organisation\/648 a base:organisation; + base:organisation\#IDOrganisation 648; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Pascoal Segreto Company" . + +base:organisation\/652 a base:organisation; + base:organisation\#IDOrganisation 652; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Touring Theater Company Companhia Dramática de Lisboa" . + +base:organisation\/655 a base:organisation; + base:organisation\#IDOrganisation 655; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Pascoal Segreto Company" . + +base:organisation\/65660 a base:organisation; + base:organisation\#IDOrganisation 65660; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Terrace Garden Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/659 a base:organisation; + base:organisation\#IDOrganisation 659; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Teatral Ltd. In Teatro da Trindade" . + +base:organisation\/66350 a base:organisation; + base:organisation\#IDOrganisation 66350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Hebrew Dramatic Club" . + +base:organisation\/66370 a base:organisation; + base:organisation\#IDOrganisation 66370; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Hebrew Opera and Dramatic Company" . + +base:organisation\/66390 a base:organisation; + base:organisation\#IDOrganisation 66390; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The Jewish National Workers' Alliance (Farband-Labor Zionist Order)" . + +base:organisation\/66520 a base:organisation; + base:organisation\#IDOrganisation 66520; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Theodore Lohr"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/66530 a base:organisation; + base:organisation\#IDOrganisation 66530; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The Order of David's Harp" . + +base:organisation\/66540 a base:organisation; + base:organisation\#IDOrganisation 66540; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Pavilion Theatre" . + +base:organisation\/66590 a base:organisation; + base:organisation\#IDOrganisation 66590; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "The Royal Danish Theatre school" . + +base:organisation\/66600 a base:organisation; + base:organisation\#IDOrganisation 66600; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Russian-Jewish Opera Company" . + +base:organisation\/66760 a base:organisation; + base:organisation\#IDOrganisation 66760; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Tomashefsky Theatre" . + +base:organisation\/66780 a base:organisation; + base:organisation\#IDOrganisation 66780; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Tornberg Dramatic Union" . + +base:organisation\/66940 a base:organisation; + base:organisation\#IDOrganisation 66940; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Tsentral-teater - Varshe" . + +base:organisation\/67000 a base:organisation; + base:organisation\#IDOrganisation 67000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Turner Hall"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/67100 a base:organisation; + base:organisation\#IDOrganisation 67100; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Theatre Actors Company" . + +base:organisation\/67120 a base:organisation; + base:organisation\#IDOrganisation 67120; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "United Jewish Actors Company" . + +base:organisation\/67190 a base:organisation; + base:organisation\#IDOrganisation 67190; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Unzer Leben⁩" . + +base:organisation\/67230 a base:organisation; + base:organisation\#IDOrganisation 67230; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "V. Pillings's National Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/67290 a base:organisation; + base:organisation\#IDOrganisation 67290; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Varshaver tageblat" . + +base:organisation\/67510 a base:organisation; + base:organisation\#IDOrganisation 67510; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Vilner Operetta" . + +base:organisation\/68 a base:organisation; + base:organisation\#IDOrganisation 68; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacob Adler's Yiddish Theatre" . + +base:organisation\/68080 a base:organisation; + base:organisation\#IDOrganisation 68080; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Dramatic Circle" . + +base:organisation\/68130 a base:organisation; + base:organisation\#IDOrganisation 68130; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish theatre on Alexanderplatz"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/68180 a base:organisation; + base:organisation\#IDOrganisation 68180; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Yidishes ṭogblaṭ⁩" . + +base:organisation\/68210 a base:organisation; + base:organisation\#IDOrganisation 68210; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Yosef Fischer"; + base:organisation\#ref-IDLocation base:location\/PL-Krak-00 . + +base:organisation\/68250 a base:organisation; + base:organisation\#IDOrganisation 68250; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Yung-yidish" . + +base:organisation\/68260 a base:organisation; + base:organisation\#IDOrganisation 68260; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Yuropian Hibru poblishing ḳompani" . + +base:organisation\/683 a base:organisation; + base:organisation\#IDOrganisation 683; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Baquet"; + base:organisation\#ref-IDLocation base:location\/PT-Porto-00 . + +base:organisation\/68300 a base:organisation; + base:organisation\#IDOrganisation 68300; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Zayderman Troupe" . + +base:organisation\/68380 a base:organisation; + base:organisation\#IDOrganisation 68380; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Amkroyt un Fraynd" . + +base:organisation\/68390 a base:organisation; + base:organisation\#IDOrganisation 68390; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "A. Faust"; + base:organisation\#ref-IDLocation base:location\/PL-Krak-00 . + +base:organisation\/68400 a base:organisation; + base:organisation\#IDOrganisation 68400; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Israelitische Dramatische Gesellschaft" . + +base:organisation\/68410 a base:organisation; + base:organisation\#IDOrganisation 68410; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Israelitisches Nationalgarten"; + base:organisation\#ref-IDLocation base:location\/ROU-Buch-00 . + +base:organisation\/68420 a base:organisation; + base:organisation\#IDOrganisation 68420; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Elyoḳum Tsunzers" . + +base:organisation\/68430 a base:organisation; + base:organisation\#IDOrganisation 68430; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Benjamin Munk"; + base:organisation\#ref-IDLocation base:location\/UA-Lv-00 . + +base:organisation\/68460 a base:organisation; + base:organisation\#IDOrganisation 68460; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Avraham Goldfaden Troupe" . + +base:organisation\/68470 a base:organisation; + base:organisation\#IDOrganisation 68470; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Gradner's Company" . + +base:organisation\/68480 a base:organisation; + base:organisation\#IDOrganisation 68480; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "D. Roth" . + +base:organisation\/68490 a base:organisation; + base:organisation\#IDOrganisation 68490; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Der Oriental Company" . + +base:organisation\/68500 a base:organisation; + base:organisation\#IDOrganisation 68500; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "The Jewish herald" . + +base:organisation\/68520 a base:organisation; + base:organisation\#IDOrganisation 68520; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Hebrew Publishing Company" . + +base:organisation\/68570 a base:organisation; + base:organisation\#IDOrganisation 68570; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Warschauer Yiddischer Theater - A.G.Kampaneetz" . + +base:organisation\/68600 a base:organisation; + base:organisation\#IDOrganisation 68600; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "I. Lidski"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/68610 a base:organisation; + base:organisation\#IDOrganisation 68610; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Lipshitz Press" . + +base:organisation\/68620 a base:organisation; + base:organisation\#IDOrganisation 68620; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Iasser Trupe" . + +base:organisation\/68630 a base:organisation; + base:organisation\#IDOrganisation 68630; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Yosef Kruger" . + +base:organisation\/68660 a base:organisation; + base:organisation\#IDOrganisation 68660; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "J. Lebenssohn" . + +base:organisation\/68670 a base:organisation; + base:organisation\#IDOrganisation 68670; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Josef Fischer" . + +base:organisation\/68720 a base:organisation; + base:organisation\#IDOrganisation 68720; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "L. Rabinovitch" . + +base:organisation\/68730 a base:organisation; + base:organisation\#IDOrganisation 68730; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "E. Lewin-Epstein"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/68740 a base:organisation; + base:organisation\#IDOrganisation 68740; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "M. Zederboim" . + +base:organisation\/68760 a base:organisation; + base:organisation\#IDOrganisation 68760; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "N. Twersky" . + +base:organisation\/68770 a base:organisation; + base:organisation\#IDOrganisation 68770; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "N. Rosenblum" . + +base:organisation\/68840 a base:organisation; + base:organisation\#IDOrganisation 68840; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Verlags-Buchhandlung E. Gitlin"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/68860 a base:organisation; + base:organisation\#IDOrganisation 68860; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Teater bibliyotek" . + +base:organisation\/68880 a base:organisation; + base:organisation\#IDOrganisation 68880; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Folks Garden Hall" . + +base:organisation\/68890 a base:organisation; + base:organisation\#IDOrganisation 68890; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Verlags buchhandlung Yavne" . + +base:organisation\/68900 a base:organisation; + base:organisation\#IDOrganisation 68900; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kultur"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/68910 a base:organisation; + base:organisation\#IDOrganisation 68910; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kunst" . + +base:organisation\/68920 a base:organisation; + base:organisation\#IDOrganisation 68920; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Roof Garden" . + +base:organisation\/68930 a base:organisation; + base:organisation\#IDOrganisation 68930; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Sh. L. Deytsher"; + base:organisation\#ref-IDLocation base:location\/Pol-DiJeSt-86 . + +base:organisation\/68950 a base:organisation; + base:organisation\#IDOrganisation 68950; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Shlomo Goldfarb" . + +base:organisation\/69020 a base:organisation; + base:organisation\#IDOrganisation 69020; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "⁨⁨Der Fraynd⁩" . + +base:organisation\/69030 a base:organisation; + base:organisation\#IDOrganisation 69030; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "⁨⁨Di ṿahrhayṭ⁩" . + +base:organisation\/69050 a base:organisation; + base:organisation\#IDOrganisation 69050; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Abendblatt" . + +base:organisation\/69060 a base:organisation; + base:organisation\#IDOrganisation 69060; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Salon on Strada Kaleyia Vakaresht street" . + +base:organisation\/69070 a base:organisation; + base:organisation\#IDOrganisation 69070; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Boris Thomashefsky Troupe" . + +base:organisation\/69100 a base:organisation; + base:organisation\#IDOrganisation 69100; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Clara Young Tour" . + +base:organisation\/69110 a base:organisation; + base:organisation\#IDOrganisation 69110; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "De L'Ancre 42" . + +base:organisation\/69130 a base:organisation; + base:organisation\#IDOrganisation 69130; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Feinman's Artistic Temple" . + +base:organisation\/69140 a base:organisation; + base:organisation\#IDOrganisation 69140; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Feinman Literary Society" . + +base:organisation\/69160 a base:organisation; + base:organisation\#IDOrganisation 69160; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Finkel and Mogulesko's Troupe" . + +base:organisation\/69170 a base:organisation; + base:organisation\#IDOrganisation 69170; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Folks-teater Troupe" . + +base:organisation\/69210 a base:organisation; + base:organisation\#IDOrganisation 69210; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "German Public Theatre (German’s Folks Theatre)" . + +base:organisation\/69220 a base:organisation; + base:organisation\#IDOrganisation 69220; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Ha'asif ()" . + +base:organisation\/69270 a base:organisation; + base:organisation\#IDOrganisation 69270; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Hendshke factory" . + +base:organisation\/69350 a base:organisation; + base:organisation\#IDOrganisation 69350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kunst-temple (Arts Temple)" . + +base:organisation\/69370 a base:organisation; + base:organisation\#IDOrganisation 69370; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Leipzig's city theatre" . + +base:organisation\/694 a base:organisation; + base:organisation\#IDOrganisation 694; + base:organisation\#comment ""; + base:organisation\#inst_name "Little Bank" . + +base:organisation\/69410 a base:organisation; + base:organisation\#IDOrganisation 69410; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mandelkern's Troupe" . + +base:organisation\/69430 a base:organisation; + base:organisation\#IDOrganisation 69430; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Meyer's Local" . + +base:organisation\/69440 a base:organisation; + base:organisation\#IDOrganisation 69440; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Morris Lieblich Troupe" . + +base:organisation\/69460 a base:organisation; + base:organisation\#IDOrganisation 69460; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "NOWY DZIENNIK (\"The New Daily\")" . + +base:organisation\/69470 a base:organisation; + base:organisation\#IDOrganisation 69470; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Palace Theatre" . + +base:organisation\/695 a base:organisation; + base:organisation\#IDOrganisation 695; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Amateur Dramatic Club of Shanghai (A.D.C)" . + +base:organisation\/69510 a base:organisation; + base:organisation\#IDOrganisation 69510; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosenberg Troupe" . + +base:organisation\/69530 a base:organisation; + base:organisation\#IDOrganisation 69530; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sarah Goldstein-Karp Troupe" . + +base:organisation\/69540 a base:organisation; + base:organisation\#IDOrganisation 69540; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Sidali Circus" . + +base:organisation\/69550 a base:organisation; + base:organisation\#IDOrganisation 69550; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sigmund Feinman Troupe" . + +base:organisation\/69570 a base:organisation; + base:organisation\#IDOrganisation 69570; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Solomonesko Troupe" . + +base:organisation\/69590 a base:organisation; + base:organisation\#IDOrganisation 69590; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The Actors Union, Local 2" . + +base:organisation\/69610 a base:organisation; + base:organisation\#IDOrganisation 69610; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre and Arts (Kugel)" . + +base:organisation\/69630 a base:organisation; + base:organisation\#IDOrganisation 69630; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "The International Library" . + +base:organisation\/69640 a base:organisation; + base:organisation\#IDOrganisation 69640; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Tsayt-gayst" . + +base:organisation\/69690 a base:organisation; + base:organisation\#IDOrganisation 69690; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish literary art theatre" . + +base:organisation\/697 a base:organisation; + base:organisation\#IDOrganisation 697; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Club Concordia" . + +base:organisation\/69700 a base:organisation; + base:organisation\#IDOrganisation 69700; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Literary Dramatic Theatre" . + +base:organisation\/69736 a base:organisation; + base:organisation\#IDOrganisation 69736; + base:organisation\#inst_name "Alexandra Theatre" . + +base:organisation\/69756 a base:organisation; + base:organisation\#IDOrganisation 69756; + base:organisation\#inst_name "Globe Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Clevel-00 . + +base:organisation\/69760 a base:organisation; + base:organisation\#IDOrganisation 69760; + base:organisation\#inst_name "Royal Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/698 a base:organisation; + base:organisation\#IDOrganisation 698; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "China Japan Marine Insurance Company" . + +base:organisation\/69888 a base:organisation; + base:organisation\#IDOrganisation 69888; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Avraham Axelrad's troupe" . + +base:organisation\/699 a base:organisation; + base:organisation\#IDOrganisation 699; + base:organisation\#comment ""; + base:organisation\#inst_name "Ministry of Architecture" . + +base:organisation\/69992 a base:organisation; + base:organisation\#IDOrganisation 69992; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Lieberman’s theatre" . + +base:organisation\/700 a base:organisation; + base:organisation\#IDOrganisation 700; + base:organisation\#comment ""; + base:organisation\#inst_name "Generaldirektor des Ministeriums für Bauwesen" . + +base:organisation\/701 a base:organisation; + base:organisation\#IDOrganisation 701; + base:organisation\#comment ""; + base:organisation\#inst_name "Shanghai Municipal Council " . + +base:organisation\/702 a base:organisation; + base:organisation\#IDOrganisation 702; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Electric Light Company" . + +base:organisation\/704 a base:organisation; + base:organisation\#IDOrganisation 704; + base:organisation\#comment ""; + base:organisation\#inst_name "The St. Georges Ball" . + +base:organisation\/705 a base:organisation; + base:organisation\#IDOrganisation 705; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The International Red Cross Society Of Shanghai" . + +base:organisation\/706 a base:organisation; + base:organisation\#IDOrganisation 706; + base:organisation\#comment ""; + base:organisation\#inst_name "The Shanghai Branch Of The Navy League" . + +base:organisation\/70976 a base:organisation; + base:organisation\#IDOrganisation 70976; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Clara Young (actress)" . + +base:organisation\/71852 a base:organisation; + base:organisation\#IDOrganisation 71852; + base:organisation\#inst_name "Leksikon fun yidishn teater (לעקסיקאן פון יידישן טעאטער Lexicon of Yiddish Theatre or Encyclopedia o" . + +base:organisation\/71940 a base:organisation; + base:organisation\#IDOrganisation 71940; + base:organisation\#inst_name "Climax! Chrysler Theatre (Hollywood)" . + +base:organisation\/71965 a base:organisation; + base:organisation\#IDOrganisation 71965; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Pabst Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/71970 a base:organisation; + base:organisation\#IDOrganisation 71970; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Lawndale Jewish Theatre Company" . + +base:organisation\/71980 a base:organisation; + base:organisation\#IDOrganisation 71980; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "O'Briens Theater"; + base:organisation\#ref-IDLocation base:location\/USA-Birm-00 . + +base:organisation\/71985 a base:organisation; + base:organisation\#IDOrganisation 71985; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Rand Theater"; + base:organisation\#ref-IDLocation base:location\/USA-Troy-00 . + +base:organisation\/71990 a base:organisation; + base:organisation\#IDOrganisation 71990; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Bastable Theater" . + +base:organisation\/71995 a base:organisation; + base:organisation\#IDOrganisation 71995; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#inst_name "Masonic Temple"; + base:organisation\#ref-IDLocation base:location\/USA-Fort-00 . + +base:organisation\/72000 a base:organisation; + base:organisation\#IDOrganisation 72000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Frankfort Theatre" . + +base:organisation\/72005 a base:organisation; + base:organisation\#IDOrganisation 72005; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Grand Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Indy-00 . + +base:organisation\/72010 a base:organisation; + base:organisation\#IDOrganisation 72010; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Park City Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Bridgep-00 . + +base:organisation\/72015 a base:organisation; + base:organisation\#IDOrganisation 72015; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Fisher Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-CSanD-00 . + +base:organisation\/72020 a base:organisation; + base:organisation\#IDOrganisation 72020; + base:organisation\#inst_name "Masonic Temple"; + base:organisation\#ref-IDLocation base:location\/USA-Tenn-00 . + +base:organisation\/72025 a base:organisation; + base:organisation\#IDOrganisation 72025; + base:organisation\#inst_name "Masonic Temple"; + base:organisation\#ref-IDLocation base:location\/USA-Louis-00 . + +base:organisation\/72030 a base:organisation; + base:organisation\#IDOrganisation 72030; + base:organisation\#inst_name "New Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Chatt-00 . + +base:organisation\/72035 a base:organisation; + base:organisation\#IDOrganisation 72035; + base:organisation\#inst_name "Parson's Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Hartf-00 . + +base:organisation\/72040 a base:organisation; + base:organisation\#IDOrganisation 72040; + base:organisation\#inst_name "New Wieting Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Syrac-00 . + +base:organisation\/72045 a base:organisation; + base:organisation\#IDOrganisation 72045; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Temple Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Owens-00 . + +base:organisation\/72050 a base:organisation; + base:organisation\#IDOrganisation 72050; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Macauley's Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Louis-00 . + +base:organisation\/72060 a base:organisation; + base:organisation\#IDOrganisation 72060; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Los Angeles Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-LosAng-00 . + +base:organisation\/72065 a base:organisation; + base:organisation\#IDOrganisation 72065; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Barton's Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Fres-00 . + +base:organisation\/72070 a base:organisation; + base:organisation\#IDOrganisation 72070; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Victory Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-CSanJ-00 . + +base:organisation\/72085 a base:organisation; + base:organisation\#IDOrganisation 72085; + base:organisation\#inst_name "Smith Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-GenNY-00 . + +base:organisation\/72097 a base:organisation; + base:organisation\#IDOrganisation 72097; + base:organisation\#inst_name "Gewandhaus"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:organisation\/72102 a base:organisation; + base:organisation\#IDOrganisation 72102; + base:organisation\#inst_name "Philharmonic Society of London"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/72127 a base:organisation; + base:organisation\#IDOrganisation 72127; + base:organisation\#inst_name "Town Hall"; + base:organisation\#ref-IDLocation base:location\/UK-Birm-00 . + +base:organisation\/72132 a base:organisation; + base:organisation\#IDOrganisation 72132; + base:organisation\#inst_name "Exeter Hall"; + base:organisation\#ref-IDLocation base:location\/UK-Ldn-00 . + +base:organisation\/723 a base:organisation; + base:organisation\#IDOrganisation 723; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Heller’s theatre" . + +base:organisation\/72314 a base:organisation; + base:organisation\#IDOrganisation 72314; + base:organisation\#inst_name "Teatro Santa Lucía" . + +base:organisation\/72384 a base:organisation; + base:organisation\#IDOrganisation 72384; + base:organisation\#inst_name "El país" . + +base:organisation\/725 a base:organisation; + base:organisation\#IDOrganisation 725; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Gulherme da Silveira’s theater company" . + +base:organisation\/72563 a base:organisation; + base:organisation\#IDOrganisation 72563; + base:organisation\#inst_name "Companía Podestá-Scotti"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72568 a base:organisation; + base:organisation\#IDOrganisation 72568; + base:organisation\#inst_name "Iris de paz (play)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72573 a base:organisation; + base:organisation\#IDOrganisation 72573; + base:organisation\#inst_name "Compañía de Joaquín Arjona"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72578 a base:organisation; + base:organisation\#IDOrganisation 72578; + base:organisation\#inst_name "Compañía de Alfredo Maza"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72583 a base:organisation; + base:organisation\#IDOrganisation 72583; + base:organisation\#inst_name "“Empresa nacional” (campaña argentina para valorizar autores nacionales)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72588 a base:organisation; + base:organisation\#IDOrganisation 72588; + base:organisation\#inst_name "Compañía de María Guerrero"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72593 a base:organisation; + base:organisation\#IDOrganisation 72593; + base:organisation\#inst_name "Consejo Directivo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72598 a base:organisation; + base:organisation\#IDOrganisation 72598; + base:organisation\#inst_name "PSI Partido Socialista"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72603 a base:organisation; + base:organisation\#IDOrganisation 72603; + base:organisation\#inst_name "Asociación Argentina por la Libertad de la Cultura"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72608 a base:organisation; + base:organisation\#IDOrganisation 72608; + base:organisation\#inst_name "Elenco Nacional encabezado por Enrique de Rosas"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72613 a base:organisation; + base:organisation\#IDOrganisation 72613; + base:organisation\#inst_name "Elenco Nacional encabezado por Blanca Podestá"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72618 a base:organisation; + base:organisation\#IDOrganisation 72618; + base:organisation\#inst_name "Elenco Nacional encabezado por Angela Tesada"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72623 a base:organisation; + base:organisation\#IDOrganisation 72623; + base:organisation\#inst_name "Circo Arena"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72628 a base:organisation; + base:organisation\#IDOrganisation 72628; + base:organisation\#inst_name "Periódico El País"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72633 a base:organisation; + base:organisation\#IDOrganisation 72633; + base:organisation\#inst_name "Periódico Escuela"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72638 a base:organisation; + base:organisation\#IDOrganisation 72638; + base:organisation\#inst_name "Periódico El Pueblo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72643 a base:organisation; + base:organisation\#IDOrganisation 72643; + base:organisation\#inst_name "Periódico La Vanguardia"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72648 a base:organisation; + base:organisation\#IDOrganisation 72648; + base:organisation\#inst_name "Periódico Nación Catalana"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72653 a base:organisation; + base:organisation\#IDOrganisation 72653; + base:organisation\#inst_name "Periódico de la Acción Socialista"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72658 a base:organisation; + base:organisation\#IDOrganisation 72658; + base:organisation\#inst_name "Federación Socialista de Buenos Aires"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72663 a base:organisation; + base:organisation\#IDOrganisation 72663; + base:organisation\#inst_name "Centro Socialista de Montevideo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72668 a base:organisation; + base:organisation\#IDOrganisation 72668; + base:organisation\#inst_name "Ministerio de Agricultura y Economía"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72673 a base:organisation; + base:organisation\#IDOrganisation 72673; + base:organisation\#inst_name "Partido Socialista Unificado de Catalonia"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72678 a base:organisation; + base:organisation\#IDOrganisation 72678; + base:organisation\#inst_name "Teatro Jovellanos"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72683 a base:organisation; + base:organisation\#IDOrganisation 72683; + base:organisation\#inst_name "Teatro de la Zarzuela"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72688 a base:organisation; + base:organisation\#IDOrganisation 72688; + base:organisation\#inst_name "Teatro Santa Lucía"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72693 a base:organisation; + base:organisation\#IDOrganisation 72693; + base:organisation\#inst_name "Teatro Íntimo de la Peña"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72698 a base:organisation; + base:organisation\#IDOrganisation 72698; + base:organisation\#inst_name "Ateneo Hispanoamericano"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72703 a base:organisation; + base:organisation\#IDOrganisation 72703; + base:organisation\#inst_name "Teatro Pasatiempo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72708 a base:organisation; + base:organisation\#IDOrganisation 72708; + base:organisation\#inst_name "Teatro Marconi"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72713 a base:organisation; + base:organisation\#IDOrganisation 72713; + base:organisation\#inst_name "Facultad de Filosofía y Letras"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72718 a base:organisation; + base:organisation\#IDOrganisation 72718; + base:organisation\#inst_name "Sociedad Argentina de Escritores"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72723 a base:organisation; + base:organisation\#IDOrganisation 72723; + base:organisation\#inst_name "Instituto de Literatura Iberoamericana"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72728 a base:organisation; + base:organisation\#IDOrganisation 72728; + base:organisation\#inst_name "Colegio Libre de Estudios Superiores (CLES)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72733 a base:organisation; + base:organisation\#IDOrganisation 72733; + base:organisation\#inst_name "Radio del Estado"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72738 a base:organisation; + base:organisation\#IDOrganisation 72738; + base:organisation\#inst_name "Diario Clarín"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72743 a base:organisation; + base:organisation\#IDOrganisation 72743; + base:organisation\#inst_name "Radio Industry"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72748 a base:organisation; + base:organisation\#IDOrganisation 72748; + base:organisation\#inst_name "Revista “Sudamérica”"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72753 a base:organisation; + base:organisation\#IDOrganisation 72753; + base:organisation\#inst_name "Courriere Française"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72758 a base:organisation; + base:organisation\#IDOrganisation 72758; + base:organisation\#inst_name "El país"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72763 a base:organisation; + base:organisation\#IDOrganisation 72763; + base:organisation\#inst_name "Biblioteca Nacional de la República Argentina"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72768 a base:organisation; + base:organisation\#IDOrganisation 72768; + base:organisation\#inst_name "Compañía de Gas"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72773 a base:organisation; + base:organisation\#IDOrganisation 72773; + base:organisation\#inst_name "Alma Gallega"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72778 a base:organisation; + base:organisation\#IDOrganisation 72778; + base:organisation\#inst_name "Teatro Popular Gallego"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72783 a base:organisation; + base:organisation\#IDOrganisation 72783; + base:organisation\#inst_name "Centro Republicano Español"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72788 a base:organisation; + base:organisation\#IDOrganisation 72788; + base:organisation\#inst_name "Teatro Universitario"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72793 a base:organisation; + base:organisation\#IDOrganisation 72793; + base:organisation\#inst_name "Universidad Popular"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72798 a base:organisation; + base:organisation\#IDOrganisation 72798; + base:organisation\#inst_name "Centro de Choferes de Uruguay"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72803 a base:organisation; + base:organisation\#IDOrganisation 72803; + base:organisation\#inst_name "Teatro Mitre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72808 a base:organisation; + base:organisation\#IDOrganisation 72808; + base:organisation\#inst_name "Ministerio de Instrucción Pública"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72813 a base:organisation; + base:organisation\#IDOrganisation 72813; + base:organisation\#inst_name "Companía Podestá-Scotti"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72818 a base:organisation; + base:organisation\#IDOrganisation 72818; + base:organisation\#inst_name "Iris de paz (play)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72823 a base:organisation; + base:organisation\#IDOrganisation 72823; + base:organisation\#inst_name "Compañía de Joaquín Arjona"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72828 a base:organisation; + base:organisation\#IDOrganisation 72828; + base:organisation\#inst_name "Compañía de Alfredo Maza"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72833 a base:organisation; + base:organisation\#IDOrganisation 72833; + base:organisation\#inst_name "“Empresa nacional” (campaña argentina para valorizar autores nacionales)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72838 a base:organisation; + base:organisation\#IDOrganisation 72838; + base:organisation\#inst_name "Compañía de María Guerrero"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72843 a base:organisation; + base:organisation\#IDOrganisation 72843; + base:organisation\#inst_name "Consejo Directivo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72848 a base:organisation; + base:organisation\#IDOrganisation 72848; + base:organisation\#inst_name "PSI Partido Socialista"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72853 a base:organisation; + base:organisation\#IDOrganisation 72853; + base:organisation\#inst_name "Asociación Argentina por la Libertad de la Cultura"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72858 a base:organisation; + base:organisation\#IDOrganisation 72858; + base:organisation\#inst_name "Elenco Nacional encabezado por Enrique de Rosas"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72863 a base:organisation; + base:organisation\#IDOrganisation 72863; + base:organisation\#inst_name "Elenco Nacional encabezado por Blanca Podestá"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72868 a base:organisation; + base:organisation\#IDOrganisation 72868; + base:organisation\#inst_name "Elenco Nacional encabezado por Angela Tesada"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72873 a base:organisation; + base:organisation\#IDOrganisation 72873; + base:organisation\#inst_name "Circo Arena"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72878 a base:organisation; + base:organisation\#IDOrganisation 72878; + base:organisation\#inst_name "Periódico El País"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72883 a base:organisation; + base:organisation\#IDOrganisation 72883; + base:organisation\#inst_name "Periódico Escuela"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72888 a base:organisation; + base:organisation\#IDOrganisation 72888; + base:organisation\#inst_name "Periódico El Pueblo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72893 a base:organisation; + base:organisation\#IDOrganisation 72893; + base:organisation\#inst_name "Periódico La Vanguardia"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72898 a base:organisation; + base:organisation\#IDOrganisation 72898; + base:organisation\#inst_name "Periódico Nación Catalana"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/729 a base:organisation; + base:organisation\#IDOrganisation 729; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Cinira Polonio’s theatre" . + +base:organisation\/72903 a base:organisation; + base:organisation\#IDOrganisation 72903; + base:organisation\#inst_name "Periódico de la Acción Socialista"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72908 a base:organisation; + base:organisation\#IDOrganisation 72908; + base:organisation\#inst_name "Federación Socialista de Buenos Aires"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72913 a base:organisation; + base:organisation\#IDOrganisation 72913; + base:organisation\#inst_name "Centro Socialista de Montevideo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72918 a base:organisation; + base:organisation\#IDOrganisation 72918; + base:organisation\#inst_name "Ministerio de Agricultura y Economía"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72923 a base:organisation; + base:organisation\#IDOrganisation 72923; + base:organisation\#inst_name "Partido Socialista Unificado de Catalonia"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72928 a base:organisation; + base:organisation\#IDOrganisation 72928; + base:organisation\#inst_name "Teatro Jovellanos"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72933 a base:organisation; + base:organisation\#IDOrganisation 72933; + base:organisation\#inst_name "Teatro de la Zarzuela"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72938 a base:organisation; + base:organisation\#IDOrganisation 72938; + base:organisation\#inst_name "Teatro Santa Lucía"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72943 a base:organisation; + base:organisation\#IDOrganisation 72943; + base:organisation\#inst_name "Teatro Íntimo de la Peña"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72948 a base:organisation; + base:organisation\#IDOrganisation 72948; + base:organisation\#inst_name "Ateneo Hispanoamericano"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72953 a base:organisation; + base:organisation\#IDOrganisation 72953; + base:organisation\#inst_name "Teatro Pasatiempo"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72958 a base:organisation; + base:organisation\#IDOrganisation 72958; + base:organisation\#inst_name "Teatro Marconi"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72963 a base:organisation; + base:organisation\#IDOrganisation 72963; + base:organisation\#inst_name "Facultad de Filosofía y Letras"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72968 a base:organisation; + base:organisation\#IDOrganisation 72968; + base:organisation\#inst_name "Sociedad Argentina de Escritores"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72973 a base:organisation; + base:organisation\#IDOrganisation 72973; + base:organisation\#inst_name "Instituto de Literatura Iberoamericana"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72978 a base:organisation; + base:organisation\#IDOrganisation 72978; + base:organisation\#inst_name "Colegio Libre de Estudios Superiores (CLES)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72983 a base:organisation; + base:organisation\#IDOrganisation 72983; + base:organisation\#inst_name "Radio del Estado"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72988 a base:organisation; + base:organisation\#IDOrganisation 72988; + base:organisation\#inst_name "Diario Clarín"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72993 a base:organisation; + base:organisation\#IDOrganisation 72993; + base:organisation\#inst_name "Radio Industry"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72998 a base:organisation; + base:organisation\#IDOrganisation 72998; + base:organisation\#inst_name "Revista “Sudamérica”"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73003 a base:organisation; + base:organisation\#IDOrganisation 73003; + base:organisation\#inst_name "Courriere Française"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73008 a base:organisation; + base:organisation\#IDOrganisation 73008; + base:organisation\#inst_name "El país"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73013 a base:organisation; + base:organisation\#IDOrganisation 73013; + base:organisation\#inst_name "Biblioteca Nacional de la República Argentina"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73018 a base:organisation; + base:organisation\#IDOrganisation 73018; + base:organisation\#inst_name "Compañía de Gas"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73023 a base:organisation; + base:organisation\#IDOrganisation 73023; + base:organisation\#inst_name "Alma Gallega"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73028 a base:organisation; + base:organisation\#IDOrganisation 73028; + base:organisation\#inst_name "Teatro Popular Gallego"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73033 a base:organisation; + base:organisation\#IDOrganisation 73033; + base:organisation\#inst_name "Centro Republicano Español"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73038 a base:organisation; + base:organisation\#IDOrganisation 73038; + base:organisation\#inst_name "Teatro Universitario"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73043 a base:organisation; + base:organisation\#IDOrganisation 73043; + base:organisation\#inst_name "Universidad Popular"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73048 a base:organisation; + base:organisation\#IDOrganisation 73048; + base:organisation\#inst_name "Centro de Choferes de Uruguay"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73053 a base:organisation; + base:organisation\#IDOrganisation 73053; + base:organisation\#inst_name "Teatro Mitre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73058 a base:organisation; + base:organisation\#IDOrganisation 73058; + base:organisation\#inst_name "Ministerio de Instrucción Pública"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/749 a base:organisation; + base:organisation\#IDOrganisation 749; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company with Pepino, Hierónimo and all Podestás" . + +base:organisation\/759 a base:organisation; + base:organisation\#IDOrganisation 759; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Frank Brown Circus Hippodrome" . + +base:organisation\/767 a base:organisation; + base:organisation\#IDOrganisation 767; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Politeama Humberto Primo" . + +base:organisation\/809 a base:organisation; + base:organisation\#IDOrganisation 809; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Heller’s theatre company" . + +base:organisation\/830 a base:organisation; + base:organisation\#IDOrganisation 830; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical Company of João Caetano" . + +base:organisation\/836 a base:organisation; + base:organisation\#IDOrganisation 836; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical Company of João Caetano" . + +base:organisation\/848 a base:organisation; + base:organisation\#IDOrganisation 848; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de Variedades" . + +base:organisation\/85 a base:organisation; + base:organisation\#IDOrganisation 85; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Galton Opera Company at the Wood’s Museum" . + +base:organisation\/86 a base:organisation; + base:organisation\#IDOrganisation 86; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Madison Square Theatre of Steele MacKaye" . + +base:organisation\/87 a base:organisation; + base:organisation\#IDOrganisation 87; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New York’s Theatre Comique"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/884 a base:organisation; + base:organisation\#IDOrganisation 884; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Escola de Belas Artes" . + +base:organisation\/911 a base:organisation; + base:organisation\#IDOrganisation 911; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Carlos" . + +base:organisation\/989 a base:organisation; + base:organisation\#IDOrganisation 989; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofburgtheater" . + +base:organisation\/998 a base:organisation; + base:organisation\#IDOrganisation 998; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater" . + +base:person\/AbrCha-1108 a base:person; + base:person\#IDPerson "AbrCha-1108"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Abramovitsh"; + base:person\#first_name "Chaim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AbrLiz-3685 a base:person; + base:person\#IDPerson "AbrLiz-3685"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Abramovich"; + base:person\#first_name "Liza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AbrMen-00 a base:person; + base:person\#IDPerson "AbrMen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abramovitsh"; + base:person\#first_name "Mendele"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeMar-01 a base:person; + base:person\#IDPerson "AdeMar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Baronesse María Inés"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlCha-00 a base:person; + base:person\#IDPerson "AdlCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlFel-3772 a base:person; + base:person\#IDPerson "AdlFel-3772"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Dr. Felix"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlFra-1119 a base:person; + base:person\#IDPerson "AdlFra-1119"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Frances"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlJay-00 a base:person; + base:person\#IDPerson "AdlJay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Jay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlLut-00 a base:person; + base:person\#IDPerson "AdlLut-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Luther"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlNat-3754 a base:person; + base:person\#IDPerson "AdlNat-3754"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Nathan Marcus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlSon-00 a base:person; + base:person\#IDPerson "AdlSon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Sonya"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdwKar-3694 a base:person; + base:person\#IDPerson "AdwKar-3694"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adwentowcz"; + base:person\#first_name "Karol"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AgiSam-1132 a base:person; + base:person\#IDPerson "AgiSam-1132"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Agid"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AksMei-1133 a base:person; + base:person\#IDPerson "AksMei-1133"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Akselrad"; + base:person\#first_name "Meir"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Aliisi-00 a base:person; + base:person\#IDPerson "Aliisi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Alicia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmbGus-00 a base:person; + base:person\#IDPerson "AmbGus-00"; + base:person\#family_name "Amberg"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndLeo-3714 a base:person; + base:person\#IDPerson "AndLeo-3714"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Andreyev"; + base:person\#first_name "Leonid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Ani_1156 a base:person; + base:person\#IDPerson "Ani_1156"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Aniela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AntJos-00 a base:person; + base:person\#IDPerson "AntJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Antoine"; + base:person\#first_name "Josephine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Antaso-00 a base:person; + base:person\#IDPerson "Antaso-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tomaso"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Antssi-00 a base:person; + base:person\#IDPerson "Antssi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bassi"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Armoni-00 a base:person; + base:person\#IDPerson "Armoni-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Falconi"; + base:person\#first_name "Armando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Artomo-00 a base:person; + base:person\#IDPerson "Artomo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carisomo"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AscSho-1183 a base:person; + base:person\#IDPerson "AscSho-1183"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Asch"; + base:person\#first_name "Sholem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Augrez-00 a base:person; + base:person\#IDPerson "Augrez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Álvarez"; + base:person\#first_name "Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AusNah-1200 a base:person; + base:person\#IDPerson "AusNah-1200"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Auslander"; + base:person\#first_name "Nahum"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AvrMax-1202 a base:person; + base:person\#IDPerson "AvrMax-1202"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Avramovitsh"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AxeAne-1203 a base:person; + base:person\#IDPerson "AxeAne-1203"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Axelrad"; + base:person\#first_name "Aneta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AzrAle-1209 a base:person; + base:person\#IDPerson "AzrAle-1209"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Azro"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BadBor-1358 a base:person; + base:person\#IDPerson "BadBor-1358"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Badkhan"; + base:person\#first_name "Borisover"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BadBun-1427 a base:person; + base:person\#IDPerson "BadBun-1427"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Badkhan"; + base:person\#first_name "Bunem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BadGer-1213 a base:person; + base:person\#IDPerson "BadGer-1213"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bader"; + base:person\#first_name "Gershom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BadMor3676 a base:person; + base:person\#IDPerson "BadMor3676"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Mordechai"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BadShl-1216 a base:person; + base:person\#IDPerson "BadShl-1216"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Badkhan"; + base:person\#first_name "Shlomo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BalAlb-00 a base:person; + base:person\#IDPerson "BalAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ballesteros"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalLa-00 a base:person; + base:person\#IDPerson "BalLa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Baletta"; + base:person\#first_name "Belle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarBen-1223 a base:person; + base:person\#IDPerson "BarBen-1223"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Baratov"; + base:person\#first_name "Ben-Tsvi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BasAlf-00 a base:person; + base:person\#IDPerson "BasAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bastos"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BasSou-01 a base:person; + base:person\#IDPerson "BasSou-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bastos"; + base:person\#first_name "Sousa"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BatJea-00 a base:person; + base:person\#IDPerson "BatJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Batten"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BauAdo-00 a base:person; + base:person\#IDPerson "BauAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bäuerle"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BekGeo-3731 a base:person; + base:person\#IDPerson "BekGeo-3731"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Beker"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Bel-00 a base:person; + base:person\#IDPerson "Bel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bella"; + base:person\#first_name "Bella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenCha-1253 a base:person; + base:person\#IDPerson "BenCha-1253"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bendel"; + base:person\#first_name "Chaim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BerAdo-1277 a base:person; + base:person\#IDPerson "BerAdo-1277"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Berman"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BerAma-00 a base:person; + base:person\#IDPerson "BerAma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bertani"; + base:person\#first_name "Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerAug-00 a base:person; + base:person\#IDPerson "BerAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beriot"; + base:person\#first_name "Auguste"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerBer-3675 a base:person; + base:person\#IDPerson "BerBer-3675"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Berlin"; + base:person\#first_name "Berta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BerLaz-3691 a base:person; + base:person\#IDPerson "BerLaz-3691"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Börnstein"; + base:person\#first_name "Lazar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BerYec-00 a base:person; + base:person\#IDPerson "BerYec-00"; + base:person\#family_name "Berkowitz"; + base:person\#first_name "Yechiel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Berder-00 a base:person; + base:person\#IDPerson "Berder-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ader"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Berili-00 a base:person; + base:person\#IDPerson "Berili-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arrili"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieGli-1301 a base:person; + base:person\#IDPerson "BieGli-1301"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Bielavski"; + base:person\#first_name "Glika"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BirLou-1312 a base:person; + base:person\#IDPerson "BirLou-1312"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Birnbaum"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BlaBen-1322 a base:person; + base:person\#IDPerson "BlaBen-1322"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Blank"; + base:person\#first_name "Benjamin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Blaaro-00 a base:person; + base:person\#IDPerson "Blaaro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amaro"; + base:person\#first_name "Blanquita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BluNey-1347 a base:person; + base:person\#IDPerson "BluNey-1347"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Blumental"; + base:person\#first_name "Neytan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BodNat-00 a base:person; + base:person\#IDPerson "BodNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bodanya"; + base:person\#first_name "Natalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BogBer-3660 a base:person; + base:person\#IDPerson "BogBer-3660"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bogart"; + base:person\#first_name "Bernard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BonBen-1353 a base:person; + base:person\#IDPerson "BonBen-1353"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bonus"; + base:person\#first_name "Ben"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BonMad-00 a base:person; + base:person\#IDPerson "BonMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bonnemain"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BorAda-00 a base:person; + base:person\#IDPerson "BorAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Bornstedt"; + base:person\#first_name "Adalbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BorLud-00 a base:person; + base:person\#IDPerson "BorLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#birthdate "1786-05-06"^^xsd:date; + base:person\#birthdate_max "1786-05-06"^^xsd:date; + base:person\#comment "born in a Jewish Ghetto as Juda Löb – also Löw Baruch"; + base:person\#deathdate "1837-02-12"^^xsd:date; + base:person\#deathdate_max "1837-02-12"^^xsd:date; + base:person\#family_name "Börne"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/Bor_1359 a base:person; + base:person\#IDPerson "Bor_1359"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Borisovo"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BotAnt-00 a base:person; + base:person\#IDPerson "BotAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Botta"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BotJac-1365 a base:person; + base:person\#IDPerson "BotJac-1365"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Botoshansky"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BouGen-00 a base:person; + base:person\#IDPerson "BouGen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Boulanger"; + base:person\#first_name "General"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BoyYeh-1372 a base:person; + base:person\#IDPerson "BoyYeh-1372"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Boymvol"; + base:person\#first_name "Yehuda Leib"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BraJoh-01 a base:person; + base:person\#IDPerson "BraJoh-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braham"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreEgo-1382 a base:person; + base:person\#IDPerson "BreEgo-1382"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Brecher"; + base:person\#first_name "Egon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BroDav-1407 a base:person; + base:person\#IDPerson "BroDav-1407"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bronshteyn"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BroEfr-1399 a base:person; + base:person\#IDPerson "BroEfr-1399"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Broder"; + base:person\#first_name "Efrim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BroGer-3767 a base:person; + base:person\#IDPerson "BroGer-3767"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Broydes"; + base:person\#first_name "Gershom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BroReu-3768 a base:person; + base:person\#IDPerson "BroReu-3768"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Broydes"; + base:person\#first_name "Reuven (Asher)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BruMon-3727 a base:person; + base:person\#IDPerson "BruMon-3727"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Bruner"; + base:person\#first_name "Monti"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BucNat-3780 a base:person; + base:person\#IDPerson "BucNat-3780"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Buchwald"; + base:person\#first_name "Nathaniel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BuzIzi-1434 a base:person; + base:person\#IDPerson "BuzIzi-1434"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Buzet"; + base:person\#first_name "Izidor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/CahAbe-883 a base:person; + base:person\#IDPerson "CahAbe-883"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Cahan"; + base:person\#first_name "Abe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/CarCar-00 a base:person; + base:person\#IDPerson "CarCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#birthdate "1787-11-07"^^xsd:date; + base:person\#birthdate_max "1787-11-07"^^xsd:date; + base:person\#deathdate "1854-08-14"^^xsd:date; + base:person\#deathdate_max "1854-08-14"^^xsd:date; + base:person\#family_name "Carl"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-Crac-00; + base:person\#ref-IDDeathPlace base:location\/AT-BadIschl-00 . + +base:person\/Carisi-00 a base:person; + base:person\#IDPerson "Carisi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Carllo-00 a base:person; + base:person\#IDPerson "Carllo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gallo"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasFan-00 a base:person; + base:person\#IDPerson "CasFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Casanova"; + base:person\#first_name "Fanni"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasIzi-1437 a base:person; + base:person\#IDPerson "CasIzi-1437"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Casher"; + base:person\#first_name "Izidore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/CasSal-00 a base:person; + base:person\#IDPerson "CasSal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Castrone"; + base:person\#first_name "Salvatore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CheAle-1448 a base:person; + base:person\#IDPerson "CheAle-1448"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Chertov"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/CitSh\.-3743 a base:person; + base:person\#IDPerson "CitSh.-3743"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Citron"; + base:person\#first_name "Sh. L."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ComJua-00 a base:person; + base:person\#IDPerson "ComJua-00"; + base:person\#family_name "Comorera"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ES-Catal-00; + base:person\#ref-IDDeathPlace base:location\/ES-Burg-00 . + +base:person\/DavFri-489 a base:person; + base:person\#IDPerson "DavFri-489"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "David"; + base:person\#first_name "Frischmann,"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DavNom-483 a base:person; + base:person\#IDPerson "DavNom-483"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "David"; + base:person\#first_name "Nomberg, Hersh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DelFre-00 a base:person; + base:person\#IDPerson "DelFre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Delius"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelJac-00 a base:person; + base:person\#IDPerson "DelJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grau Delgado"; + base:person\#first_name "Jacinto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DemAma-00 a base:person; + base:person\#IDPerson "DemAma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Demini"; + base:person\#first_name "Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DevCar-00 a base:person; + base:person\#IDPerson "DevCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Devrient"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DicAnn-00 a base:person; + base:person\#IDPerson "DicAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dickey"; + base:person\#first_name "Annamary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DicIsa-1499 a base:person; + base:person\#IDPerson "DicIsa-1499"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dick"; + base:person\#first_name "Isaac Meir"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DinJac-919 a base:person; + base:person\#IDPerson "DinJac-919"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dinezon"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DinSim-1503 a base:person; + base:person\#IDPerson "DinSim-1503"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dinman"; + base:person\#first_name "Simcha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DolHil-3770 a base:person; + base:person\#IDPerson "DolHil-3770"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dolitzka"; + base:person\#first_name "Hilda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DomHen-00 a base:person; + base:person\#IDPerson "DomHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Domingues"; + base:person\#first_name "Henrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DorSam-3737 a base:person; + base:person\#IDPerson "DorSam-3737"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dorf"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Dro-1526 a base:person; + base:person\#IDPerson "Dro-1526"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Drozdovitsh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DruJac-3739 a base:person; + base:person\#IDPerson "DruJac-3739"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Drukerman"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/DubYak-1528 a base:person; + base:person\#IDPerson "DubYak-1528"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Dubinski"; + base:person\#first_name "Yakovke"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EddNel-00 a base:person; + base:person\#IDPerson "EddNel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eddy"; + base:person\#first_name "Nelson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdeJos-707 a base:person; + base:person\#IDPerson "EdeJos-707"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Edelstein"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EdeMor-1537 a base:person; + base:person\#IDPerson "EdeMor-1537"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Edelhofer"; + base:person\#first_name "Moritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Edoert-00 a base:person; + base:person\#IDPerson "Edoert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Edouard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Eduona-00 a base:person; + base:person\#IDPerson "Eduona-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carmona"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EinLis-1551 a base:person; + base:person\#IDPerson "EinLis-1551"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Einhorn"; + base:person\#first_name "Lisa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Eleena-00 a base:person; + base:person\#IDPerson "Eleena-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lucena"; + base:person\#first_name "Elena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElkEst-3661 a base:person; + base:person\#IDPerson "ElkEst-3661"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Elkin"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EllAbr-1568 a base:person; + base:person\#IDPerson "EllAbr-1568"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ellstein"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ElvBer-1570 a base:person; + base:person\#IDPerson "ElvBer-1570"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Elving"; + base:person\#first_name "Bernard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EnrAlo-00 a base:person; + base:person\#IDPerson "EnrAlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Enrico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Enrini-00 a base:person; + base:person\#IDPerson "Enrini-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Susini"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Enrisi-01 a base:person; + base:person\#IDPerson "Enrisi-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Enrolo-00 a base:person; + base:person\#IDPerson "Enrolo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Discépolo"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ErnBar-01 a base:person; + base:person\#IDPerson "ErnBar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Ernesto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EskYoz-1594 a base:person; + base:person\#IDPerson "EskYoz-1594"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Eskreyz"; + base:person\#first_name "Yozef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EspMat-01 a base:person; + base:person\#IDPerson "EspMat-01"; + base:person\#family_name "Espinosa"; + base:person\#first_name "Matilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Estdor-00 a base:person; + base:person\#IDPerson "Estdor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Serrador"; + base:person\#first_name "Esteban"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Eugert-00 a base:person; + base:person\#IDPerson "Eugert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Eugénie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EvaBar-00 a base:person; + base:person\#IDPerson "EvaBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Eva"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Evanco-00 a base:person; + base:person\#IDPerson "Evanco-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Franco"; + base:person\#first_name "Eva"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Fanert-00 a base:person; + base:person\#IDPerson "Fanert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Fedhiz-00 a base:person; + base:person\#IDPerson "Fedhiz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sanchiz"; + base:person\#first_name "Federico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FeiHar-00 a base:person; + base:person\#IDPerson "FeiHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Feinberg"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FeiHar-1626 a base:person; + base:person\#IDPerson "FeiHar-1626"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Feinberg"; + base:person\#first_name "Harris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FeiHer-1072 a base:person; + base:person\#IDPerson "FeiHer-1072"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Feinstein"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FelAar-1629 a base:person; + base:person\#IDPerson "FelAar-1629"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Feldman"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FerEnr-00 a base:person; + base:person\#IDPerson "FerEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferri"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerIgn-1632 a base:person; + base:person\#IDPerson "FerIgn-1632"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ferkauf"; + base:person\#first_name "Ignats"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Ferano-00 a base:person; + base:person\#IDPerson "Ferano-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quijano"; + base:person\#first_name "Fernando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Feroza-00 a base:person; + base:person\#IDPerson "Feroza-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mendoza"; + base:person\#first_name "Fernando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FieHer-866 a base:person; + base:person\#IDPerson "FieHer-866"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fiedler"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FilAlf-00 a base:person; + base:person\#IDPerson "FilAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Filho"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FilJan-1644 a base:person; + base:person\#IDPerson "FilJan-1644"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Filipesko"; + base:person\#first_name "Janet"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Fil_1643 a base:person; + base:person\#IDPerson "Fil_1643"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Filipesko"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FisJos-FisJos-3778 a base:person; + base:person\#IDPerson "FisJos-FisJos-3778"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fischer"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FraAna-00 a base:person; + base:person\#IDPerson "FraAna-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "France"; + base:person\#first_name "Anatole"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraBet-3659 a base:person; + base:person\#IDPerson "FraBet-3659"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Frank"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FraJac-744 a base:person; + base:person\#IDPerson "FraJac-744"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Frank"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FreBor-3722 a base:person; + base:person\#IDPerson "FreBor-3722"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Frenkel"; + base:person\#first_name "Boris Brovine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FriFey-1692 a base:person; + base:person\#IDPerson "FriFey-1692"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fridman"; + base:person\#first_name "Feyvele"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FriLou-695 a base:person; + base:person\#IDPerson "FriLou-695"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Friedsell"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FriRos-1706 a base:person; + base:person\#IDPerson "FriRos-1706"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Friedman"; + base:person\#first_name "Rose"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FriSar-1697 a base:person; + base:person\#IDPerson "FriSar-1697"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fridman"; + base:person\#first_name "Sara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FruAbr-1708 a base:person; + base:person\#IDPerson "FruAbr-1708"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Frumkin"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FukLiz-3656 a base:person; + base:person\#IDPerson "FukLiz-3656"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fuks"; + base:person\#first_name "Liza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GabMax-1716 a base:person; + base:person\#IDPerson "GabMax-1716"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gabel"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GalJul-00 a base:person; + base:person\#IDPerson "GalJul-00"; + base:person\#family_name "Galé"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarCar-01 a base:person; + base:person\#IDPerson "GarCar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gardel"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GazMar-01 a base:person; + base:person\#IDPerson "GazMar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gazovski"; + base:person\#first_name "Markus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GenSol-1742 a base:person; + base:person\#IDPerson "GenSol-1742"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Genfer"; + base:person\#first_name "Solomon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Geoeau-00 a base:person; + base:person\#IDPerson "Geoeau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clemenceau"; + base:person\#first_name "Georges"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GerJac-1755 a base:person; + base:person\#IDPerson "GerJac-1755"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gertner"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GesHel-1758 a base:person; + base:person\#IDPerson "GesHel-1758"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gespass"; + base:person\#first_name "Helene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GiaDus-00 a base:person; + base:person\#IDPerson "GiaDus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Giannini"; + base:person\#first_name "Dusolina"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilSid-01 a base:person; + base:person\#IDPerson "GilSid-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gilliat"; + base:person\#first_name "Sidney"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GinSau-1776 a base:person; + base:person\#IDPerson "GinSau-1776"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ginzburg"; + base:person\#first_name "Saul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GinYun-1773 a base:person; + base:person\#IDPerson "GinYun-1773"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gintsburg"; + base:person\#first_name "Yuna"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GliEli-1789 a base:person; + base:person\#IDPerson "GliEli-1789"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Glickman"; + base:person\#first_name "Elias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GliNor-1797 a base:person; + base:person\#IDPerson "GliNor-1797"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Glimer"; + base:person\#first_name "Norbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolHer-1825 a base:person; + base:person\#IDPerson "GolHer-1825"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldenberg"; + base:person\#first_name "Hershl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolJak-00 a base:person; + base:person\#IDPerson "GolJak-00"; + base:person\#family_name "Goldschmidt"; + base:person\#first_name "Jakob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolLeo-747 a base:person; + base:person\#IDPerson "GolLeo-747"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Golubok"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolLou-1816 a base:person; + base:person\#IDPerson "GolLou-1816"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldberg"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolNat-1819 a base:person; + base:person\#IDPerson "GolNat-1819"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldberg"; + base:person\#first_name "Nathan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolPau-1831 a base:person; + base:person\#IDPerson "GolPau-1831"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldfaden"; + base:person\#first_name "Paulina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolShi-1832 a base:person; + base:person\#IDPerson "GolShi-1832"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldfaden"; + base:person\#first_name "Shimi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolSid-1836 a base:person; + base:person\#IDPerson "GolSid-1836"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldin"; + base:person\#first_name "Sidney"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolSok-1855 a base:person; + base:person\#IDPerson "GolSok-1855"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldstein"; + base:person\#first_name "Sokher"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolWal-00 a base:person; + base:person\#IDPerson "GolWal-00"; + base:person\#family_name "Goldschmidt"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gol_1837 a base:person; + base:person\#IDPerson "Gol_1837"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Golditsa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GonAlb-00 a base:person; + base:person\#IDPerson "GonAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorB-890 a base:person; + base:person\#IDPerson "GorB-890"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gorin"; + base:person\#first_name "B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GotAvr-1880 a base:person; + base:person\#IDPerson "GotAvr-1880"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gottlober"; + base:person\#first_name "Avraham Ber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GotLou-928 a base:person; + base:person\#IDPerson "GotLou-928"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gottlieb"; + base:person\#first_name "Louis Silo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GraAle-1887 a base:person; + base:person\#IDPerson "GraAle-1887"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Granovsky"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GraAne-1882 a base:person; + base:person\#IDPerson "GraAne-1882"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gradner"; + base:person\#first_name "Aneta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GraPet-1885 a base:person; + base:person\#IDPerson "GraPet-1885"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Graf"; + base:person\#first_name "Peter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GraYis-900 a base:person; + base:person\#IDPerson "GraYis-900"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Gradner"; + base:person\#first_name "Yisroel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GreCae-741 a base:person; + base:person\#IDPerson "GreCae-741"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Greenberg"; + base:person\#first_name "Caesar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GreEuf-00 a base:person; + base:person\#IDPerson "GreEuf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gregory"; + base:person\#first_name "Eufemia Gregory"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GriEdw-00 a base:person; + base:person\#IDPerson "GriEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grieg"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GriKha-1901 a base:person; + base:person\#IDPerson "GriKha-1901"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Grinberg"; + base:person\#first_name "Khayim-Betsalel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GroAbr-3664 a base:person; + base:person\#IDPerson "GroAbr-3664"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Groper"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GroIda-1912 a base:person; + base:person\#IDPerson "GroIda-1912"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Groper"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GroLot-3663 a base:person; + base:person\#IDPerson "GroLot-3663"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Groper"; + base:person\#first_name "Lottie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GudBel-1935 a base:person; + base:person\#IDPerson "GudBel-1935"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gudinsky"; + base:person\#first_name "Bella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Guiero-00 a base:person; + base:person\#IDPerson "Guiero-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferrero"; + base:person\#first_name "Guillermo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gusert-00 a base:person; + base:person\#IDPerson "Gusert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Gustave"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GutJul-1953 a base:person; + base:person\#IDPerson "GutJul-1953"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Guttman"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GutMil-00 a base:person; + base:person\#IDPerson "GutMil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gutman"; + base:person\#first_name "Milanie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuzJac-3693 a base:person; + base:person\#IDPerson "GuzJac-3693"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Guzik"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GyeErn-00 a base:person; + base:person\#IDPerson "GyeErn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gye"; + base:person\#first_name "Ernest"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HaiMor-702 a base:person; + base:person\#IDPerson "HaiMor-702"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Haimowitz"; + base:person\#first_name "Morris (Heine)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HalFro-00 a base:person; + base:person\#IDPerson "HalFro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Halévy"; + base:person\#first_name "Fromental"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HalLeo-1962 a base:person; + base:person\#IDPerson "HalLeo-1962"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Halpern"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HalMoy-684 a base:person; + base:person\#IDPerson "HalMoy-684"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Halevi)"; + base:person\#first_name "Moyshe (Ish"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HamAnn-00 a base:person; + base:person\#IDPerson "HamAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hamlin"; + base:person\#first_name "Anna Hamlin"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Hanmer-00 a base:person; + base:person\#IDPerson "Hanmer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dierhammer"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarBer-3723 a base:person; + base:person\#IDPerson "HarBer-3723"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Hart"; + base:person\#first_name "Ber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HarSid-1977 a base:person; + base:person\#IDPerson "HarSid-1977"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Hart"; + base:person\#first_name "Sidney"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HarZig-1978 a base:person; + base:person\#IDPerson "HarZig-1978"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Hart"; + base:person\#first_name "Zigmunt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HelAnn-1980 a base:person; + base:person\#IDPerson "HelAnn-1980"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Held"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HelJac-01 a base:person; + base:person\#IDPerson "HelJac-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heller"; + base:person\#first_name "Jacinto Heller"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerDav-1986 a base:person; + base:person\#IDPerson "HerDav-1986"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Herman"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HilFer-00 a base:person; + base:person\#IDPerson "HilFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hiller"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HilJam-00 a base:person; + base:person\#IDPerson "HilJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hilton"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HirDav-2005 a base:person; + base:person\#IDPerson "HirDav-2005"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Hirsh"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HirM-3762 a base:person; + base:person\#IDPerson "HirM-3762"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Hirshzohn"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HktYer-3738 a base:person; + base:person\#IDPerson "HktYer-3738"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Hktn"; + base:person\#first_name "Yeruchem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Hnoich-00 a base:person; + base:person\#IDPerson "Hnoich-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stevanovich"; + base:person\#first_name "Hnos."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolIsi-2022 a base:person; + base:person\#IDPerson "HolIsi-2022"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Hollander"; + base:person\#first_name "Isidore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HopArt-3701 a base:person; + base:person\#IDPerson "HopArt-3701"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Hopkins"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Hugril-00 a base:person; + base:person\#IDPerson "Hugril-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carril"; + base:person\#first_name "Hugo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Humiro-00 a base:person; + base:person\#IDPerson "Humiro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cairo"; + base:person\#first_name "Humberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IbsHen-00 a base:person; + base:person\#IDPerson "IbsHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ibsen"; + base:person\#first_name "Henrik"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Iredia-00 a base:person; + base:person\#IDPerson "Iredia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heredia"; + base:person\#first_name "Irene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IruAgu-00 a base:person; + base:person\#IDPerson "IruAgu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Irusta"; + base:person\#first_name "Agustín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IsaIts-3753 a base:person; + base:person\#IDPerson "IsaIts-3753"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Isakson"; + base:person\#first_name "Itshele"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/IsaSil-396 a base:person; + base:person\#IDPerson "IsaSil-396"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Isaiah"; + base:person\#first_name "Silberbusch, David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/IsrMar-3730 a base:person; + base:person\#IDPerson "IsrMar-3730"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Israel"; + base:person\#first_name "Mark"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Jaclat-00 a base:person; + base:person\#IDPerson "Jaclat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gretillat"; + base:person\#first_name "Jacques"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Jeairn-00 a base:person; + base:person\#IDPerson "Jeairn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hirn"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Josllo-00 a base:person; + base:person\#IDPerson "Josllo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Castillo"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Josrez-00 a base:person; + base:person\#IDPerson "Josrez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ramírez"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Josssi-00 a base:person; + base:person\#IDPerson "Josssi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dealessi"; + base:person\#first_name "Josefina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Juauer-00 a base:person; + base:person\#IDPerson "Juauer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berenguer"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JuvJea-2060 a base:person; + base:person\#IDPerson "JuvJea-2060"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Juvelier"; + base:person\#first_name "Jeanne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/JuvMin-3665 a base:person; + base:person\#IDPerson "JuvMin-3665"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Juvelier"; + base:person\#first_name "Mina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KaiJen-2067 a base:person; + base:person\#IDPerson "KaiJen-2067"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kaiser"; + base:person\#first_name "Jenny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KalBer-2068 a base:person; + base:person\#IDPerson "KalBer-2068"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kalich"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KalJac-922 a base:person; + base:person\#IDPerson "KalJac-922"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kalich"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KalUlr-2071 a base:person; + base:person\#IDPerson "KalUlr-2071"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kalmus"; + base:person\#first_name "Ulrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KamAbb-1019 a base:person; + base:person\#IDPerson "KamAbb-1019"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Kampanietz"; + base:person\#first_name "Abba"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KanF-3775 a base:person; + base:person\#IDPerson "KanF-3775"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kantorovitch"; + base:person\#first_name "F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KapA-3760 a base:person; + base:person\#IDPerson "KapA-3760"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kaplan"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KapLaz-3765 a base:person; + base:person\#IDPerson "KapLaz-3765"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kapedshoy"; + base:person\#first_name "Lazar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KasSam-2090 a base:person; + base:person\#IDPerson "KasSam-2090"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kasten"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KatMic-2096 a base:person; + base:person\#IDPerson "KatMic-2096"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Katz"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KeuGer-00 a base:person; + base:person\#IDPerson "KeuGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Keußler"; + base:person\#first_name "Gerhard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Kha\%5B\%3F\%5D-2107 a base:person; + base:person\#IDPerson "Kha[?]-2107"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Khalan-Khalanov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KigYos-2117 a base:person; + base:person\#IDPerson "KigYos-2117"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kigel"; + base:person\#first_name "Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KirJac-2119 a base:person; + base:person\#IDPerson "KirJac-2119"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kirschenbaum"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KleKal-3716 a base:person; + base:person\#IDPerson "KleKal-3716"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kleynavitsh"; + base:person\#first_name "Kalman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KomAba-00 a base:person; + base:person\#IDPerson "KomAba-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kompaneyets"; + base:person\#first_name "Aba"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KopLeo-2139 a base:person; + base:person\#IDPerson "KopLeo-2139"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kopp"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Kop_3692 a base:person; + base:person\#IDPerson "Kop_3692"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Kopilov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KorF-3733 a base:person; + base:person\#IDPerson "KorF-3733"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Korn"; + base:person\#first_name "F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KraSol-2151 a base:person; + base:person\#IDPerson "KraSol-2151"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Krause"; + base:person\#first_name "Solomon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Kri-3757 a base:person; + base:person\#IDPerson "Kri-3757"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kritikus"; + base:person\#first_name "Dr. Y."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KroMar-3771 a base:person; + base:person\#IDPerson "KroMar-3771"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kropyvnytskyi"; + base:person\#first_name "Marko Lukych"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Kru_2168 a base:person; + base:person\#IDPerson "Kru_2168"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Krug"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KurG-711 a base:person; + base:person\#IDPerson "KurG-711"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kurage"; + base:person\#first_name "G."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KusSon-2176 a base:person; + base:person\#IDPerson "KusSon-2176"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kustin"; + base:person\#first_name "Sonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KutShl-3551 a base:person; + base:person\#IDPerson "KutShl-3551"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kutner"; + base:person\#first_name "Shlomo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LagAar-2180 a base:person; + base:person\#IDPerson "LagAar-2180"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lager"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Lan_2192 a base:person; + base:person\#IDPerson "Lan_2192"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Landman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LatJos-00 a base:person; + base:person\#IDPerson "LatJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Latayner"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LatJos-683 a base:person; + base:person\#IDPerson "LatJos-683"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lateiner"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Le\%C3\%B3tta-00 a base:person; + base:person\#IDPerson "Leótta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barletta"; + base:person\#first_name "Leónidas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiH-2229 a base:person; + base:person\#IDPerson "LeiH-2229"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Leivick"; + base:person\#first_name "H."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LeiPer-369 a base:person; + base:person\#IDPerson "LeiPer-369"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Leib"; + base:person\#first_name "Peretz, Isaac"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LerKha-00 a base:person; + base:person\#IDPerson "LerKha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lerner"; + base:person\#first_name "Khane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LerSam-2238 a base:person; + base:person\#IDPerson "LerSam-2238"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Leresko"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LerYak-2243 a base:person; + base:person\#IDPerson "LerYak-2243"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lerner"; + base:person\#first_name "Yakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LevDav-2251 a base:person; + base:person\#IDPerson "LevDav-2251"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Levenson"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LevI\.L-3734 a base:person; + base:person\#IDPerson "LevI.L-3734"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Levanda"; + base:person\#first_name "I.L."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LevY\.\+-3726 a base:person; + base:person\#IDPerson "LevY. -3726"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Levin"; + base:person\#first_name "Y. A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LevZ-2263 a base:person; + base:person\#IDPerson "LevZ-2263"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Levin"; + base:person\#first_name "Z."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LiaHer-3725 a base:person; + base:person\#IDPerson "LiaHer-3725"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Liansky"; + base:person\#first_name "Hersch"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LibYan-2282 a base:person; + base:person\#IDPerson "LibYan-2282"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Libert"; + base:person\#first_name "Yankev"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LibYit-924 a base:person; + base:person\#IDPerson "LibYit-924"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Libresko"; + base:person\#first_name "Yitzhok"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LidTse-347 a base:person; + base:person\#IDPerson "LidTse-347"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "LidskÌ£i"; + base:person\#first_name "Tsevi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LieAbr-2289 a base:person; + base:person\#IDPerson "LieAbr-2289"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lieberman"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LieMor-2294 a base:person; + base:person\#IDPerson "LieMor-2294"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lieblich"; + base:person\#first_name "Moritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LilIsi-2304 a base:person; + base:person\#IDPerson "LilIsi-2304"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lillian"; + base:person\#first_name "Isidore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LimEdn-00 a base:person; + base:person\#IDPerson "LimEdn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lima"; + base:person\#first_name "Edna de Lima"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LinHen-2309 a base:person; + base:person\#IDPerson "LinHen-2309"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Linetsky"; + base:person\#first_name "Henekh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LinIsa-2311 a base:person; + base:person\#IDPerson "LinIsa-2311"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Linetzky"; + base:person\#first_name "Isaac Joel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LitAbr-2328 a base:person; + base:person\#IDPerson "LitAbr-2328"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Littman"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LobMal-2336 a base:person; + base:person\#IDPerson "LobMal-2336"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lobel"; + base:person\#first_name "Malvina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LorTin-00 a base:person; + base:person\#IDPerson "LorTin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Lorenzo"; + base:person\#first_name "Tina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LowSam-2341 a base:person; + base:person\#IDPerson "LowSam-2341"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lowenwirth"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LuaVad-00 a base:person; + base:person\#IDPerson "LuaVad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lua)"; + base:person\#first_name "Vadico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugLeo-00 a base:person; + base:person\#IDPerson "LugLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lugones"; + base:person\#first_name "Leopoldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Luiata-00 a base:person; + base:person\#IDPerson "Luiata-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arata"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Luibas-00 a base:person; + base:person\#IDPerson "Luibas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cubas"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Luihil-00 a base:person; + base:person\#IDPerson "Luihil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vehil"; + base:person\#first_name "Luisa"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LukCha-2360 a base:person; + base:person\#IDPerson "LukCha-2360"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lukatcher"; + base:person\#first_name "Chaim Shmuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LysMyk-00 a base:person; + base:person\#IDPerson "LysMyk-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lyssenko"; + base:person\#first_name "Mykola"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MagYan-3674 a base:person; + base:person\#IDPerson "MagYan-3674"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Magidov"; + base:person\#first_name "Yankev"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ManLeo-2382 a base:person; + base:person\#IDPerson "ManLeo-2382"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mandeltort"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Mar\%5B\%3F\%5D-2403 a base:person; + base:person\#IDPerson "Mar[?]-2403"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Marienstros"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Mar\%C3\%ADaz-00 a base:person; + base:person\#IDPerson "Maríaz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Díaz"; + base:person\#first_name "Marujita"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mar-3704 a base:person; + base:person\#IDPerson "Mar-3704"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Marian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarKar-2412 a base:person; + base:person\#IDPerson "MarKar-2412"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Marmor"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarRud-724 a base:person; + base:person\#IDPerson "MarRud-724"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Marks"; + base:person\#first_name "Rudolph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarRuk-3696 a base:person; + base:person\#IDPerson "MarRuk-3696"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Margules"; + base:person\#first_name "Rukhl"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarShi-3764 a base:person; + base:person\#IDPerson "MarShi-3764"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mark"; + base:person\#first_name "Shimon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarVan-00 a base:person; + base:person\#IDPerson "MarVan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marcoux"; + base:person\#first_name "Vanni"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marbr\%C3\%A9-00 a base:person; + base:person\#IDPerson "Marbré-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cabré"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marerg-00 a base:person; + base:person\#IDPerson "Marerg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bronenberg"; + base:person\#first_name "Marcos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marert-00 a base:person; + base:person\#IDPerson "Marert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marirn-00 a base:person; + base:person\#IDPerson "Marirn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hirn"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayNac-2423 a base:person; + base:person\#IDPerson "MayNac-2423"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mayzel"; + base:person\#first_name "Nachman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MazR-3776 a base:person; + base:person\#IDPerson "MazR-3776"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mazin"; + base:person\#first_name "R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MazUri-3755 a base:person; + base:person\#IDPerson "MazUri-3755"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mazik"; + base:person\#first_name "Uriel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/McCNan-00 a base:person; + base:person\#IDPerson "McCNan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "McCord"; + base:person\#first_name "Nancy McCord"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mectiz-00 a base:person; + base:person\#IDPerson "Mectiz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ortiz"; + base:person\#first_name "Mecha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeiAbi-2429 a base:person; + base:person\#IDPerson "MeiAbi-2429"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Meisels"; + base:person\#first_name "Abish"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MeiCla-2430 a base:person; + base:person\#IDPerson "MeiCla-2430"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Meisels"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MeiMar-3814 a base:person; + base:person\#IDPerson "MeiMar-3814"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Meierson"; + base:person\#first_name "Mark Lazarovitch"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MesJac-920 a base:person; + base:person\#IDPerson "MesJac-920"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mestel"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MeyDav-2457 a base:person; + base:person\#IDPerson "MeyDav-2457"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Meyerowitz"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MeyMor-2456 a base:person; + base:person\#IDPerson "MeyMor-2456"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Meyer"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MicMic-2463 a base:person; + base:person\#IDPerson "MicMic-2463"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Michalesko"; + base:person\#first_name "Michal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Migcha-00 a base:person; + base:person\#IDPerson "Migcha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rocha"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Migeau-00 a base:person; + base:person\#IDPerson "Migeau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lacreau"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MinCha-863 a base:person; + base:person\#IDPerson "MinCha-863"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Minikes"; + base:person\#first_name "Chanan Yaakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MirCor-00 a base:person; + base:person\#IDPerson "MirCor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miraglia"; + base:person\#first_name "Corrado"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mirand-00 a base:person; + base:person\#IDPerson "Mirand-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Legrand"; + base:person\#first_name "Mirtha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Moduez-00 a base:person; + base:person\#IDPerson "Moduez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vázquez"; + base:person\#first_name "Modesto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Monchi-00 a base:person; + base:person\#IDPerson "Monchi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Franceschi"; + base:person\#first_name "Monseñor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MooFer-00 a base:person; + base:person\#IDPerson "MooFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moog"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorMor-842 a base:person; + base:person\#IDPerson "MorMor-842"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Morrison"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MorMos-2510 a base:person; + base:person\#IDPerson "MorMos-2510"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mordechai"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MorPeg-00 a base:person; + base:person\#IDPerson "MorPeg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morrow Field"; + base:person\#first_name "Peggy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MosMor-2512 a base:person; + base:person\#IDPerson "MosMor-2512"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Moshkovitch"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MosPas-2517 a base:person; + base:person\#IDPerson "MosPas-2517"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Moshkovitsh"; + base:person\#first_name "Pasha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MosYak-2519 a base:person; + base:person\#IDPerson "MosYak-2519"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/moskovitsh-romaner-yakov-yosef.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1226."""; + base:person\#family_name "Moskovitsh"; + base:person\#first_name "Yakov Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MukA-2522 a base:person; + base:person\#IDPerson "MukA-2522"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mukdoni"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MyoMar-2528 a base:person; + base:person\#IDPerson "MyoMar-2528"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Myodovnik"; + base:person\#first_name "Mark"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NadBel-00 a base:person; + base:person\#IDPerson "NadBel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nadel"; + base:person\#first_name "Bella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NadBel-2531 a base:person; + base:person\#IDPerson "NadBel-2531"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nadel"; + base:person\#first_name "Bela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NadLeo-812 a base:person; + base:person\#IDPerson "NadLeo-812"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nadolsky"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NadMoi-2533 a base:person; + base:person\#IDPerson "NadMoi-2533"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nadir"; + base:person\#first_name "Moishe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NahSok-386 a base:person; + base:person\#IDPerson "NahSok-386"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nahum"; + base:person\#first_name "Sokolow,"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Narnta-00 a base:person; + base:person\#IDPerson "Narnta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Menta"; + base:person\#first_name "Narciso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NatJul-2546 a base:person; + base:person\#IDPerson "NatJul-2546"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nathanson"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NazAll-3702 a base:person; + base:person\#IDPerson "NazAll-3702"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Nazimova"; + base:person\#first_name "Alla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NeuEdu-00 a base:person; + base:person\#IDPerson "NeuEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Neufeld"; + base:person\#first_name "Eduard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Nicues-00 a base:person; + base:person\#IDPerson "Nicues-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fregues"; + base:person\#first_name "Nicolás"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NigShm-2567 a base:person; + base:person\#IDPerson "NigShm-2567"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Niger"; + base:person\#first_name "Shmuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NodM-3732 a base:person; + base:person\#IDPerson "NodM-3732"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nodelman"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NomMos-3668 a base:person; + base:person\#IDPerson "NomMos-3668"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nomberg"; + base:person\#first_name "Moshe-Mordechai"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NomYek-3667 a base:person; + base:person\#IDPerson "NomYek-3667"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nomberg"; + base:person\#first_name "Yekhezkel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NorMax-942 a base:person; + base:person\#IDPerson "NorMax-942"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nordau"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NusItz-2583 a base:person; + base:person\#IDPerson "NusItz-2583"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nusinov"; + base:person\#first_name "Itzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ObeAle-2588 a base:person; + base:person\#IDPerson "ObeAle-2588"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Oberlender"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/OliAlo-00 a base:person; + base:person\#IDPerson "OliAlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Oliveira"; + base:person\#first_name "Aloysio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OpaJos-2594 a base:person; + base:person\#IDPerson "OpaJos-2594"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Opatoshu"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/OshM-2599 a base:person; + base:person\#IDPerson "OshM-2599"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Osherowitch"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/P\%3FHP\%3FH-00 a base:person; + base:person\#IDPerson "P?HP?H-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "P?Horton"; + base:person\#first_name "P?Horton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadJos-00 a base:person; + base:person\#IDPerson "PadJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padilla"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalMel-00 a base:person; + base:person\#IDPerson "PalMel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Palmet"; + base:person\#first_name "Melicent"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PapAvr-2613 a base:person; + base:person\#IDPerson "PapAvr-2613"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Papyrna"; + base:person\#first_name "Avraham Yakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ParAar-2614 a base:person; + base:person\#IDPerson "ParAar-2614"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Parkh?"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PelIvo-00 a base:person; + base:person\#IDPerson "PelIvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pelay"; + base:person\#first_name "Ivo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Pepppo-00 a base:person; + base:person\#IDPerson "Pepppo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Filippo"; + base:person\#first_name "Peppino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PerSho-981 a base:person; + base:person\#IDPerson "PerSho-981"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Perlmutter"; + base:person\#first_name "Sholem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PerYit-2639 a base:person; + base:person\#IDPerson "PerYit-2639"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Perkoff"; + base:person\#first_name "Yitzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PicJan-00 a base:person; + base:person\#IDPerson "PicJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pickens"; + base:person\#first_name "Jane Pickens"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PicMol-939 a base:person; + base:person\#IDPerson "PicMol-939"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Picon"; + base:person\#first_name "Molly"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PimEm\%C3\%AD-00 a base:person; + base:person\#IDPerson "PimEmí-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pimentel"; + base:person\#first_name "Emília"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PinDav-2655 a base:person; + base:person\#IDPerson "PinDav-2655"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Pinski"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PipEdi-00 a base:person; + base:person\#IDPerson "PipEdi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Piper"; + base:person\#first_name "Edith Piper"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaMan-3720 a base:person; + base:person\#IDPerson "PlaMan-3720"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Plater"; + base:person\#first_name "Mania"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PlaSon-3721 a base:person; + base:person\#IDPerson "PlaSon-3721"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Plater"; + base:person\#first_name "Sonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PolBen-2678 a base:person; + base:person\#IDPerson "PolBen-2678"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Polipade"; + base:person\#first_name "Ben Zion"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PolCin-00 a base:person; + base:person\#IDPerson "PolCin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Polonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PonAmi-00 a base:person; + base:person\#IDPerson "PonAmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ponchielli"; + base:person\#first_name "Amilcare"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PriJac-2704 a base:person; + base:person\#IDPerson "PriJac-2704"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Prizament"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PriNoa-2701 a base:person; + base:person\#IDPerson "PriNoa-2701"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Prilutski"; + base:person\#first_name "Noah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ProHei-00 a base:person; + base:person\#IDPerson "ProHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Proch"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ProSer-00 a base:person; + base:person\#IDPerson "ProSer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Prokofiev"; + base:person\#first_name "Sergei"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Psh_3695 a base:person; + base:person\#IDPerson "Psh_3695"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Pshibilka-Potzatska"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PueBen-00 a base:person; + base:person\#IDPerson "PueBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Puértolas"; + base:person\#first_name "Benita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QuaPed-00 a base:person; + base:person\#IDPerson "QuaPed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quartucci"; + base:person\#first_name "Pedro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/R\%C3\%A9vLou-00 a base:person; + base:person\#IDPerson "RévLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Révial"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ra\%C3\%BAyos-00 a base:person; + base:person\#IDPerson "Raúyos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hoyos"; + base:person\#first_name "Raúl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RabAbr-2720 a base:person; + base:person\#IDPerson "RabAbr-2720"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rabinowitz"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RabB-3777 a base:person; + base:person\#IDPerson "RabB-3777"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rabinowitz"; + base:person\#first_name "B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RaiFer-00 a base:person; + base:person\#IDPerson "RaiFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raimund"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RakN-2730 a base:person; + base:person\#IDPerson "RakN-2730"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rakov"; + base:person\#first_name "N."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RakNah-00 a base:person; + base:person\#IDPerson "RakNah-00"; + base:person\#family_name "Rakow"; + base:person\#first_name "Nahum"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RapAar-2734 a base:person; + base:person\#IDPerson "RapAar-2734"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rappaport"; + base:person\#first_name "Aaron B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ReiAvr-3654 a base:person; + base:person\#IDPerson "ReiAvr-3654"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Reisen"; + base:person\#first_name "Avraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ReiLeo-00 a base:person; + base:person\#IDPerson "ReiLeo-00"; + base:person\#family_name "Reichwein"; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiSar-2746 a base:person; + base:person\#IDPerson "ReiSar-2746"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Reisen"; + base:person\#first_name "Sara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ReiZal-785 a base:person; + base:person\#IDPerson "ReiZal-785"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Zalmen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RelEdw-2750 a base:person; + base:person\#IDPerson "RelEdw-2750"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Relkin"; + base:person\#first_name "Edwin A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ResJea-00 a base:person; + base:person\#IDPerson "ResJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reszke"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RezEmi-00 a base:person; + base:person\#IDPerson "RezEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reznicek"; + base:person\#first_name "Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RheHor-00 a base:person; + base:person\#IDPerson "RheHor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rhéa"; + base:person\#first_name "Hortense"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicMos-3491 a base:person; + base:person\#IDPerson "RicMos-3491"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Richter"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RidMar-00 a base:person; + base:person\#IDPerson "RidMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Riddick"; + base:person\#first_name "Margaret"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RitMen-3666 a base:person; + base:person\#IDPerson "RitMen-3666"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ritner"; + base:person\#first_name "Mendel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RivB-3713 a base:person; + base:person\#IDPerson "RivB-3713"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rivkin"; + base:person\#first_name "B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RocMig-01 a base:person; + base:person\#IDPerson "RocMig-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rocha"; + base:person\#first_name "Miguel Faust"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RoiYet-2768 a base:person; + base:person\#IDPerson "RoiYet-2768"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Roich"; + base:person\#first_name "Yetta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RomMan-00 a base:person; + base:person\#IDPerson "RomMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Romero"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosBet-2778 a base:person; + base:person\#IDPerson "RosBet-2778"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosenblum"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosBor-2782 a base:person; + base:person\#IDPerson "RosBor-2782"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosenthal"; + base:person\#first_name "Boris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosIsr-2776 a base:person; + base:person\#IDPerson "RosIsr-2776"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosenberg"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosRob-3708 a base:person; + base:person\#IDPerson "RosRob-3708"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosen"; + base:person\#first_name "Robert Van"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosSam-00 a base:person; + base:person\#IDPerson "RosSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosenstein"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Roseno-00 a base:person; + base:person\#IDPerson "Roseno-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moreno"; + base:person\#first_name "Rosita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Rosino-00 a base:person; + base:person\#IDPerson "Rosino-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pino"; + base:person\#first_name "Rosario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RotAli-964 a base:person; + base:person\#IDPerson "RotAli-964"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rotstein"; + base:person\#first_name "Alias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RotIsa-3560 a base:person; + base:person\#IDPerson "RotIsa-3560"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rothstein"; + base:person\#first_name "Isaiah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RotMen-3718 a base:person; + base:person\#IDPerson "RotMen-3718"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rotman"; + base:person\#first_name "Mendele"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RotN-3779 a base:person; + base:person\#IDPerson "RotN-3779"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rothsprecher"; + base:person\#first_name "N."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RubNik-00 a base:person; + base:person\#IDPerson "RubNik-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rubinstein"; + base:person\#first_name "Nikolai"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RubRos-2808 a base:person; + base:person\#IDPerson "RubRos-2808"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rubin"; + base:person\#first_name "Rose"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Rubros-00 a base:person; + base:person\#IDPerson "Rubros-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rubin"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RudMas-3736 a base:person; + base:person\#IDPerson "RudMas-3736"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ruder"; + base:person\#first_name "Mashkil Simeon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RusHen-RusHen-850 a base:person; + base:person\#IDPerson "RusHen-RusHen-850"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Russotto"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SabDav-2817 a base:person; + base:person\#IDPerson "SabDav-2817"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sabsey"; + base:person\#first_name "David Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SacHar-2818 a base:person; + base:person\#IDPerson "SacHar-2818"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sackler"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Sactry-00 a base:person; + base:person\#IDPerson "Sactry-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Guitry"; + base:person\#first_name "Sacha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SakMic-2821 a base:person; + base:person\#IDPerson "SakMic-2821"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Saks"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SamDav-2826 a base:person; + base:person\#IDPerson "SamDav-2826"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Samolesko"; + base:person\#first_name "Dave"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/San\%C3\%B1ol-00 a base:person; + base:person\#IDPerson "Sanñol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rusiñol"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanCha-00 a base:person; + base:person\#IDPerson "SanCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Santley"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanJoa-00 a base:person; + base:person\#IDPerson "SanJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanPer-857 a base:person; + base:person\#IDPerson "SanPer-857"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sandler"; + base:person\#first_name "Peretz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Sanlez-00 a base:person; + base:person\#IDPerson "Sanlez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SatLud-2837 a base:person; + base:person\#IDPerson "SatLud-2837"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Satz"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchAbr-696 a base:person; + base:person\#IDPerson "SchAbr-696"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Scharkansky"; + base:person\#first_name "Abraham Michal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchAlb-710 a base:person; + base:person\#IDPerson "SchAlb-710"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schoengold"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchBar-2855 a base:person; + base:person\#IDPerson "SchBar-2855"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schorr"; + base:person\#first_name "Baruch"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchLud-00 a base:person; + base:person\#IDPerson "SchLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schaeffer"; + base:person\#first_name "Ludovico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchMar-2862 a base:person; + base:person\#IDPerson "SchMar-2862"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schwartz"; + base:person\#first_name "Margareta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchMos-1026 a base:person; + base:person\#IDPerson "SchMos-1026"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Schor"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchNah-843 a base:person; + base:person\#IDPerson "SchNah-843"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schaikewitz"; + base:person\#first_name "Nahum Meïr"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchNat-2858 a base:person; + base:person\#IDPerson "SchNat-2858"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schulman"; + base:person\#first_name "Nathan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchShl-2850 a base:person; + base:person\#IDPerson "SchShl-2850"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schneider"; + base:person\#first_name "Shlomo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchZig-3756 a base:person; + base:person\#IDPerson "SchZig-3756"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schwartz"; + base:person\#first_name "Zigmunt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ScoAnt-00 a base:person; + base:person\#IDPerson "ScoAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scotti"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScrEug-00 a base:person; + base:person\#IDPerson "ScrEug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scribe"; + base:person\#first_name "Eugene"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SebDav-01 a base:person; + base:person\#IDPerson "SebDav-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sebastian"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SefMen-522 a base:person; + base:person\#IDPerson "SefMen-522"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sefarim"; + base:person\#first_name "Mendele Mokher"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SegPas-01 a base:person; + base:person\#IDPerson "SegPas-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Segreto"; + base:person\#first_name "Paschoal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Sev_2892 a base:person; + base:person\#IDPerson "Sev_2892"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Sevilla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Sevdez-00 a base:person; + base:person\#IDPerson "Sevdez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fernández"; + base:person\#first_name "Severo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShaIsr-3742 a base:person; + base:person\#IDPerson "ShaIsr-3742"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shavelzon"; + base:person\#first_name "Israelke"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShaLil-ShaLil-3707 a base:person; + base:person\#IDPerson "ShaLil-ShaLil-3707"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shapero"; + base:person\#first_name "Lilly"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShaPin-2900 a base:person; + base:person\#IDPerson "ShaPin-2900"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Shapiro"; + base:person\#first_name "Pinchas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SheAar-3717 a base:person; + base:person\#IDPerson "SheAar-3717"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sherman"; + base:person\#first_name "Aaron Sholem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SheZig-727 a base:person; + base:person\#IDPerson "SheZig-727"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shenkman"; + base:person\#first_name "Zigmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShiB-3729 a base:person; + base:person\#IDPerson "ShiB-3729"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shimin"; + base:person\#first_name "B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShiRud-3816 a base:person; + base:person\#IDPerson "ShiRud-3816"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shildkraut"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShlS-3669 a base:person; + base:person\#IDPerson "ShlS-3669"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shliferstein"; + base:person\#first_name "S."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShnAar-3766 a base:person; + base:person\#IDPerson "ShnAar-3766"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shnap"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShnCha-2938 a base:person; + base:person\#IDPerson "ShnCha-2938"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shneyer"; + base:person\#first_name "Chaim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShnSam-963 a base:person; + base:person\#IDPerson "ShnSam-963"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shnayer"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Sho-383 a base:person; + base:person\#IDPerson "Sho-383"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Sholem-Aleykhem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShoYos-3622 a base:person; + base:person\#IDPerson "ShoYos-3622"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shoengold"; + base:person\#first_name "Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShpHer-3758 a base:person; + base:person\#IDPerson "ShpHer-3758"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shpilman"; + base:person\#first_name "Hersh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShpLeo-3719 a base:person; + base:person\#IDPerson "ShpLeo-3719"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shpachner"; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShrAdo-1038 a base:person; + base:person\#IDPerson "ShrAdo-1038"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shrage"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShrBen-3671 a base:person; + base:person\#IDPerson "ShrBen-3671"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shrage"; + base:person\#first_name "Benjamin L."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShrMat-3670 a base:person; + base:person\#IDPerson "ShrMat-3670"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shrage"; + base:person\#first_name "Mathilda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShtDin-00 a base:person; + base:person\#IDPerson "ShtDin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Shtettin"; + base:person\#first_name "Dinah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShtFer-2949 a base:person; + base:person\#IDPerson "ShtFer-2949"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shtoyb"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ShvDov-2958 a base:person; + base:person\#IDPerson "ShvDov-2958"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shvartsbard"; + base:person\#first_name "Dovid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SieWil-910 a base:person; + base:person\#IDPerson "SieWil-910"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Siegal"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SilEst-717 a base:person; + base:person\#IDPerson "SilEst-717"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Silberman"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SilLiz-2975 a base:person; + base:person\#IDPerson "SilLiz-2975"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Silbert"; + base:person\#first_name "Liza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SilMor-701 a base:person; + base:person\#IDPerson "SilMor-701"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Silberman"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SilMoy-800 a base:person; + base:person\#IDPerson "SilMoy-800"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Silberman"; + base:person\#first_name "Moyshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Silisi-00 a base:person; + base:person\#IDPerson "Silisi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Silvia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Siltti-00 a base:person; + base:person\#IDPerson "Siltti-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Giovanetti"; + base:person\#first_name "Silvio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimAbr-715 a base:person; + base:person\#IDPerson "SimAbr-715"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Simowitz"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SimBet-2982 a base:person; + base:person\#IDPerson "SimBet-2982"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Simonoff"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SimLea-3672 a base:person; + base:person\#IDPerson "SimLea-3672"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Simon"; + base:person\#first_name "Leah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SimLuc-01 a base:person; + base:person\#IDPerson "SimLuc-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simões"; + base:person\#first_name "Lucinda Simões"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimMrs-2981 a base:person; + base:person\#IDPerson "SimMrs-2981"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Simon"; + base:person\#first_name "Mrs."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SimSof-3673 a base:person; + base:person\#IDPerson "SimSof-3673"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Simon"; + base:person\#first_name "Sofia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Simhou-00 a base:person; + base:person\#IDPerson "Simhou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Michou"; + base:person\#first_name "Simone"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SinIsr-2989 a base:person; + base:person\#IDPerson "SinIsr-2989"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/singer-israel-joshua.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.791."""; + base:person\#birthdate "1893-11-30"^^xsd:date; + base:person\#birthdate_max "1893-11-30"^^xsd:date; + base:person\#family_name "Singer"; + base:person\#first_name "Israel Joshua"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-95; + base:person\#religion "Jewish" . + +base:person\/SloMad-2998 a base:person; + base:person\#IDPerson "SloMad-2998"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Slonimski"; + base:person\#first_name "Madam"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SofMar-00 a base:person; + base:person\#IDPerson "SofMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Soffici"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Sofz\%C3\%A1n-00 a base:person; + base:person\#IDPerson "Sofzán-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bozán"; + base:person\#first_name "Sofía"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SolIsi-3010 a base:person; + base:person\#IDPerson "SolIsi-3010"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Solotorefsky"; + base:person\#first_name "Isidore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SolOsc-3009 a base:person; + base:person\#IDPerson "SolOsc-3009"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Solomonesco"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SolOtt-00 a base:person; + base:person\#IDPerson "SolOtt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Von Hoym-Sollingen"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SolYos-3662 a base:person; + base:person\#IDPerson "SolYos-3662"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Soloveytshik"; + base:person\#first_name "Yoshe Ber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SteA-3761 a base:person; + base:person\#IDPerson "SteA-3761"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sterling"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/StoPol-00 a base:person; + base:person\#IDPerson "StoPol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stoska"; + base:person\#first_name "Polyna"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StrGiu-00 a base:person; + base:person\#IDPerson "StrGiu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Strepponi"; + base:person\#first_name "Giuseppina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StuI-3686 a base:person; + base:person\#IDPerson "StuI-3686"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sturm"; + base:person\#first_name "I."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SusGro-00 a base:person; + base:person\#IDPerson "SusGro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grosso"; + base:person\#first_name "Susana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SveSve-00 a base:person; + base:person\#IDPerson "SveSve-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sveinbjörnsson"; + base:person\#first_name "Sveinbjörn"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SwiMr\.-00 a base:person; + base:person\#IDPerson "SwiMr.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Swinbourne"; + base:person\#first_name "Mr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TanJos-730 a base:person; + base:person\#IDPerson "TanJos-730"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tanzman"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TanPin-3735 a base:person; + base:person\#IDPerson "TanPin-3735"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tanzman"; + base:person\#first_name "Pinchas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Tatova-00 a base:person; + base:person\#IDPerson "Tatova-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pavlova"; + base:person\#first_name "Tatiana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TeyMos-3069 a base:person; + base:person\#IDPerson "TeyMos-3069"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Teytsh"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ThoBor-00 a base:person; + base:person\#IDPerson "ThoBor-00"; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "Boris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoJoh-00 a base:person; + base:person\#IDPerson "ThoJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoJos-3750 a base:person; + base:person\#IDPerson "ThoJos-3750"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ThoMik-3073 a base:person; + base:person\#IDPerson "ThoMik-3073"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "Mike"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ThoPin-845 a base:person; + base:person\#IDPerson "ThoPin-845"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "Pinkhes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ThuKar-00 a base:person; + base:person\#IDPerson "ThuKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Thurn-Valsassina"; + base:person\#first_name "Graf Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThuMat-3074 a base:person; + base:person\#IDPerson "ThuMat-3074"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Thur"; + base:person\#first_name "Matias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Tinnzo-00 a base:person; + base:person\#IDPerson "Tinnzo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lorenzo"; + base:person\#first_name "Tina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Titllo-00 a base:person; + base:person\#IDPerson "Titllo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Merello"; + base:person\#first_name "Tita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Titrdo-00 a base:person; + base:person\#IDPerson "Titrdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lusiardo"; + base:person\#first_name "Tito"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TobSam-3079 a base:person; + base:person\#IDPerson "TobSam-3079"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tobias"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TomBor-693 a base:person; + base:person\#IDPerson "TomBor-693"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tomashevsky"; + base:person\#first_name "Boris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TorA-3773 a base:person; + base:person\#IDPerson "TorA-3773"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Torczyner"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TorAug-3678 a base:person; + base:person\#IDPerson "TorAug-3678"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Torn"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TorDav-3677 a base:person; + base:person\#IDPerson "TorDav-3677"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Torn"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TorLul-3679 a base:person; + base:person\#IDPerson "TorLul-3679"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Torn"; + base:person\#first_name "Lulu"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TraJul-00 a base:person; + base:person\#IDPerson "TraJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Traversa"; + base:person\#first_name "Julio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TraSh\.-3763 a base:person; + base:person\#IDPerson "TraSh.-3763"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Trachtman"; + base:person\#first_name "Sh."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TreCha-3089 a base:person; + base:person\#IDPerson "TreCha-3089"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Treitler"; + base:person\#first_name "Chaim Benjamin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TriMan-3093 a base:person; + base:person\#IDPerson "TriMan-3093"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Trilling"; + base:person\#first_name "Manya"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TsiHei-3705 a base:person; + base:person\#IDPerson "TsiHei-3705"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tsimerman"; + base:person\#first_name "Heinrich (Sholem-Tzvi)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TsiIsr-3108 a base:person; + base:person\#IDPerson "TsiIsr-3108"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tsinberg"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/UgeYes-3128 a base:person; + base:person\#IDPerson "UgeYes-3128"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Uger"; + base:person\#first_name "Yeshaya"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Uli_3703 a base:person; + base:person\#IDPerson "Uli_3703"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Ulianov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VadMah-3751 a base:person; + base:person\#IDPerson "VadMah-3751"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vadya"; + base:person\#first_name "Maharaja"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VakEst-00 a base:person; + base:person\#IDPerson "VakEst-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vaksman"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VakEst-3135 a base:person; + base:person\#IDPerson "VakEst-3135"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vaksman"; + base:person\#first_name "Ester"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VakYak-3139 a base:person; + base:person\#IDPerson "VakYak-3139"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vaksman"; + base:person\#first_name "Yakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ValP-3752 a base:person; + base:person\#IDPerson "ValP-3752"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vald"; + base:person\#first_name "P."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Valier-00 a base:person; + base:person\#IDPerson "Valier-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tassier"; + base:person\#first_name "Valentine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VayHel-3172 a base:person; + base:person\#IDPerson "VayHel-3172"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vaysman"; + base:person\#first_name "Helena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VayIta-3158 a base:person; + base:person\#IDPerson "VayIta-3158"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vaynshteyn"; + base:person\#first_name "Ita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VayMos-3171 a base:person; + base:person\#IDPerson "VayMos-3171"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vaysfeld"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VerS-3178 a base:person; + base:person\#IDPerson "VerS-3178"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Verite"; + base:person\#first_name "S."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Verine-00 a base:person; + base:person\#IDPerson "Verine-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sergine"; + base:person\#first_name "Vera"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VilCar-00 a base:person; + base:person\#IDPerson "VilCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Villalba"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VlaB-3190 a base:person; + base:person\#IDPerson "VlaB-3190"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vladeck"; + base:person\#first_name "B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VolJul-3728 a base:person; + base:person\#IDPerson "VolJul-3728"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Volin"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WagFri-00 a base:person; + base:person\#IDPerson "WagFri-00"; + base:person\#family_name "Wagner"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WagKla-00 a base:person; + base:person\#IDPerson "WagKla-00"; + base:person\#family_name "Wagner"; + base:person\#first_name "Klara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WagRos-00 a base:person; + base:person\#IDPerson "WagRos-00"; + base:person\#family_name "Wagner"; + base:person\#first_name "Rosalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WaiA-3200 a base:person; + base:person\#IDPerson "WaiA-3200"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Waiter"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WalRos-3205 a base:person; + base:person\#IDPerson "WalRos-3205"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wallerstein"; + base:person\#first_name "Rose"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Walney-00 a base:person; + base:person\#IDPerson "Walney-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Disney"; + base:person\#first_name "Walt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarYit-3209 a base:person; + base:person\#IDPerson "WarYit-3209"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Warshavsky"; + base:person\#first_name "Yitskhok Meir"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiIsr-713 a base:person; + base:person\#IDPerson "WeiIsr-713"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weinblatt"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiMic-3211 a base:person; + base:person\#IDPerson "WeiMic-3211"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weichert"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiPau-3715 a base:person; + base:person\#IDPerson "WeiPau-3715"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weiss"; + base:person\#first_name "Paula"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiRub-752 a base:person; + base:person\#IDPerson "WeiRub-752"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weissman"; + base:person\#first_name "Rubens"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiSig-3236 a base:person; + base:person\#IDPerson "WeiSig-3236"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weintraub"; + base:person\#first_name "Sigmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiSop-1053 a base:person; + base:person\#IDPerson "WeiSop-1053"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weinstock"; + base:person\#first_name "Sophia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiYos-1052 a base:person; + base:person\#IDPerson "WeiYos-1052"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weinstock"; + base:person\#first_name "Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WilMax-3267 a base:person; + base:person\#IDPerson "WilMax-3267"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wilner"; + base:person\#first_name "Max R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WohYeh-3274 a base:person; + base:person\#IDPerson "WohYeh-3274"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wohlman"; + base:person\#first_name "Yehuda-Leib"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WolAar-3277 a base:person; + base:person\#IDPerson "WolAar-3277"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wolfsohn-Halle"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WolSim-3276 a base:person; + base:person\#IDPerson "WolSim-3276"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wolf"; + base:person\#first_name "Simon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/XirMar-00 a base:person; + base:person\#IDPerson "XirMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Xirgu"; + base:person\#first_name "Margarita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YakYaa-3295 a base:person; + base:person\#IDPerson "YakYaa-3295"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Yakubovitsh"; + base:person\#first_name "Yaakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YanSau-3301 a base:person; + base:person\#IDPerson "YanSau-3301"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Yanovsky"; + base:person\#first_name "Saul Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YarEli-868 a base:person; + base:person\#IDPerson "YarEli-868"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Yarikhovski"; + base:person\#first_name "Elihu Zalmen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YerRos-3309 a base:person; + base:person\#IDPerson "YerRos-3309"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Yermolina-Veysman"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YevA\.\+-3710 a base:person; + base:person\#IDPerson "YevA. -3710"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Yevalenko"; + base:person\#first_name "A. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YosHer-3741 a base:person; + base:person\#IDPerson "YosHer-3741"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Yosef"; + base:person\#first_name "Hersh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZanJul-3347 a base:person; + base:person\#IDPerson "ZanJul-3347"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zandberg"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZasRud-3356 a base:person; + base:person\#IDPerson "ZasRud-3356"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zaslavsky"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZbaVel-3360 a base:person; + base:person\#IDPerson "ZbaVel-3360"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zbarzher"; + base:person\#first_name "Velvel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZelMey-3769 a base:person; + base:person\#IDPerson "ZelMey-3769"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zelniker"; + base:person\#first_name "Meyer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZemNak-3709 a base:person; + base:person\#IDPerson "ZemNak-3709"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zemach"; + base:person\#first_name "Nakhum"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Zey\%5B\%3F\%5D-3378 a base:person; + base:person\#IDPerson "Zey[?]-3378"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zeyderman.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.772."""; + base:person\#deathdate "1922-01-01"^^xsd:date; + base:person\#deathdate_max "1922-12-31"^^xsd:date; + base:person\#family_name "Zeyderman"; + base:person\#fuzzydeathdate "1922"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00; + base:person\#religion "Jewish" . + +base:person\/ZhiYos-3384 a base:person; + base:person\#IDPerson "ZhiYos-3384"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zhitomirski"; + base:person\#first_name "Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZhuYez-3712 a base:person; + base:person\#IDPerson "ZhuYez-3712"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zhulavski"; + base:person\#first_name "Yezhi (Julian)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZieAvr-3681 a base:person; + base:person\#IDPerson "ZieAvr-3681"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Avraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZieEla-3684 a base:person; + base:person\#IDPerson "ZieEla-3684"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Ela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZieErn-3389 a base:person; + base:person\#IDPerson "ZieErn-3389"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Erna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZieLaz-3683 a base:person; + base:person\#IDPerson "ZieLaz-3683"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Lazar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZieShm-3682 a base:person; + base:person\#IDPerson "ZieShm-3682"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Shmuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZilMax-00 a base:person; + base:person\#IDPerson "ZilMax-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zilzer"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZolHil-3419 a base:person; + base:person\#IDPerson "ZolHil-3419"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zolotarov"; + base:person\#first_name "Hilel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZucHer-3427 a base:person; + base:person\#IDPerson "ZucHer-3427"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zuckerberg"; + base:person\#first_name "Hershel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZucIsi-3431 a base:person; + base:person\#IDPerson "ZucIsi-3431"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zuckerman"; + base:person\#first_name "Isidor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZusM-3711 a base:person; + base:person\#IDPerson "ZusM-3711"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zusman"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZylZal-3440 a base:person; + base:person\#IDPerson "ZylZal-3440"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zylbercweig"; + base:person\#first_name "Zalmen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/pro-383 a base:person; + base:person\#IDPerson "pro-383"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#first_name "Proft"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person_profession\/10235 a base:person_profession; + base:person_profession\#IDProfPerson 10235; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/ConHei-00 . + +base:person_profession\/10236 a base:person_profession; + base:person_profession\#IDProfPerson 10236; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ConHei-00 . + +base:person_profession\/10238 a base:person_profession; + base:person_profession\#IDProfPerson 10238; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/ConHei-00 . + +base:person_profession\/10243 a base:person_profession; + base:person_profession\#IDProfPerson 10243; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ConHei-00 . + +base:person_profession\/10248 a base:person_profession; + base:person_profession\#IDProfPerson 10248; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/ConHei-00 . + +base:person_profession\/10249 a base:person_profession; + base:person_profession\#IDProfPerson 10249; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AbeTsi-00 . + +base:person_profession\/10254 a base:person_profession; + base:person_profession\#IDProfPerson 10254; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AbeTsi-00 . + +base:person_profession\/10259 a base:person_profession; + base:person_profession\#IDProfPerson 10259; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GarMan-01 . + +base:person_profession\/10264 a base:person_profession; + base:person_profession\#IDProfPerson 10264; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10269 a base:person_profession; + base:person_profession\#IDProfPerson 10269; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10274 a base:person_profession; + base:person_profession\#IDProfPerson 10274; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10279 a base:person_profession; + base:person_profession\#IDProfPerson 10279; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10284 a base:person_profession; + base:person_profession\#IDProfPerson 10284; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10289 a base:person_profession; + base:person_profession\#IDProfPerson 10289; + base:person_profession\#ref-IDPerson base:person\/NapArt-00 . + +base:person_profession\/10293 a base:person_profession; + base:person_profession\#IDProfPerson 10293; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/AmoEdu-00 . + +base:person_profession\/10303 a base:person_profession; + base:person_profession\#IDProfPerson 10303; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GalSus-00 . + +base:person_profession\/10304 a base:person_profession; + base:person_profession\#IDProfPerson 10304; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GalSus-00 . + +base:person_profession\/10305 a base:person_profession; + base:person_profession\#IDProfPerson 10305; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/GalSus-00 . + +base:person_profession\/10309 a base:person_profession; + base:person_profession\#IDProfPerson 10309; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MilGeo-00 . + +base:person_profession\/10314 a base:person_profession; + base:person_profession\#IDProfPerson 10314; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/MilGeo-00 . + +base:person_profession\/10334 a base:person_profession; + base:person_profession\#IDProfPerson 10334; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/LevMis-00 . + +base:person_profession\/10339 a base:person_profession; + base:person_profession\#IDProfPerson 10339; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/LevMis-00 . + +base:person_profession\/10344 a base:person_profession; + base:person_profession\#IDProfPerson 10344; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/FaiBoo-00 . + +base:person_profession\/10349 a base:person_profession; + base:person_profession\#IDProfPerson 10349; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/ReiCat-00 . + +base:person_profession\/10354 a base:person_profession; + base:person_profession\#IDProfPerson 10354; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/WagJoh-00 . + +base:person_profession\/10359 a base:person_profession; + base:person_profession\#IDProfPerson 10359; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ArrBla-00 . + +base:person_profession\/10362 a base:person_profession; + base:person_profession\#IDProfPerson 10362; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/EusArt-00 . + +base:person_profession\/10366 a base:person_profession; + base:person_profession\#IDProfPerson 10366; + base:person_profession\#profession "Choreographer"; + base:person_profession\#ref-IDPerson base:person\/AubDan-00 . + +base:person_profession\/10370 a base:person_profession; + base:person_profession\#IDProfPerson 10370; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/AubDan-00 . + +base:person_profession\/10374 a base:person_profession; + base:person_profession\#IDProfPerson 10374; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/AubDan-00 . + +base:person_profession\/10378 a base:person_profession; + base:person_profession\#IDProfPerson 10378; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AubDan-00 . + +base:person_profession\/10382 a base:person_profession; + base:person_profession\#IDProfPerson 10382; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BaiIda-00 . + +base:person_profession\/10385 a base:person_profession; + base:person_profession\#IDProfPerson 10385; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BorHei-00 . + +base:person_profession\/10386 a base:person_profession; + base:person_profession\#IDProfPerson 10386; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BorHei-00 . + +base:person_profession\/10390 a base:person_profession; + base:person_profession\#IDProfPerson 10390; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/BorHei-00 . + +base:person_profession\/10394 a base:person_profession; + base:person_profession\#IDProfPerson 10394; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BorHei-00 . + +base:person_profession\/10398 a base:person_profession; + base:person_profession\#IDProfPerson 10398; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AdlJac-706 . + +base:person_profession\/10402 a base:person_profession; + base:person_profession\#IDProfPerson 10402; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BelAdo-1246 . + +base:person_profession\/10406 a base:person_profession; + base:person_profession\#IDProfPerson 10406; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BerYit-1275 . + +base:person_profession\/10410 a base:person_profession; + base:person_profession\#IDProfPerson 10410; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/BerYit-1275 . + +base:person_profession\/10414 a base:person_profession; + base:person_profession\#IDProfPerson 10414; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BoyRaf-791 . + +base:person_profession\/10418 a base:person_profession; + base:person_profession\#IDProfPerson 10418; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/BoyRaf-791 . + +base:person_profession\/10422 a base:person_profession; + base:person_profession\#IDProfPerson 10422; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DavDav-3821 . + +base:person_profession\/10426 a base:person_profession; + base:person_profession\#IDProfPerson 10426; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/DavDav-3821 . + +base:person_profession\/10430 a base:person_profession; + base:person_profession\#IDProfPerson 10430; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ElkMen-1567 . + +base:person_profession\/10434 a base:person_profession; + base:person_profession\#IDProfPerson 10434; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ElkMen-1567 . + +base:person_profession\/10438 a base:person_profession; + base:person_profession\#IDProfPerson 10438; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/ElkMen-1567 . + +base:person_profession\/10442 a base:person_profession; + base:person_profession\#IDProfPerson 10442; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/ElkMen-1567 . + +base:person_profession\/10446 a base:person_profession; + base:person_profession\#IDProfPerson 10446; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/ElkMen-1567 . + +base:person_profession\/10450 a base:person_profession; + base:person_profession\#IDProfPerson 10450; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/EntJoe-1574 . + +base:person_profession\/10454 a base:person_profession; + base:person_profession\#IDProfPerson 10454; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/EntJoe-1574 . + +base:person_profession\/10457 a base:person_profession; + base:person_profession\#IDProfPerson 10457; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/EntJoe-1574 . + +base:person_profession\/10458 a base:person_profession; + base:person_profession\#IDProfPerson 10458; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/EpsFan-1579 . + +base:person_profession\/10462 a base:person_profession; + base:person_profession\#IDProfPerson 10462; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/FeiRac-1622 . + +base:person_profession\/10466 a base:person_profession; + base:person_profession\#IDProfPerson 10466; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/FeiRac-1622 . + +base:person_profession\/10470 a base:person_profession; + base:person_profession\#IDProfPerson 10470; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/FeiRac-1622 . + +base:person_profession\/10474 a base:person_profession; + base:person_profession\#IDProfPerson 10474; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GilLou-1764 . + +base:person_profession\/10478 a base:person_profession; + base:person_profession\#IDProfPerson 10478; + base:person_profession\#ref-IDPerson base:person\/GilLou-1764 . + +base:person_profession\/10482 a base:person_profession; + base:person_profession\#IDProfPerson 10482; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HadEst-1958 . + +base:person_profession\/10486 a base:person_profession; + base:person_profession\#IDProfPerson 10486; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/HadEst-1958 . + +base:person_profession\/10487 a base:person_profession; + base:person_profession\#IDProfPerson 10487; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KomIsr-2131 . + +base:person_profession\/10490 a base:person_profession; + base:person_profession\#IDProfPerson 10490; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KomMax-2133 . + +base:person_profession\/10494 a base:person_profession; + base:person_profession\#IDProfPerson 10494; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/LatIze-LatIze-927 . + +base:person_profession\/10498 a base:person_profession; + base:person_profession\#IDProfPerson 10498; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/NadSon-840 . + +base:person_profession\/10502 a base:person_profession; + base:person_profession\#IDProfPerson 10502; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WalSau-3206 . + +base:person_profession\/10506 a base:person_profession; + base:person_profession\#IDProfPerson 10506; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/WalSau-3206 . + +base:person_profession\/10513 a base:person_profession; + base:person_profession\#IDProfPerson 10513; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AbrBin-742 . + +base:person_profession\/10518 a base:person_profession; + base:person_profession\#IDProfPerson 10518; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AbrBin-742 . + +base:person_profession\/10523 a base:person_profession; + base:person_profession\#IDProfPerson 10523; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/BorHei-00 . + +base:person_profession\/10528 a base:person_profession; + base:person_profession\#IDProfPerson 10528; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/BogDaw-00 . + +base:person_profession\/10531 a base:person_profession; + base:person_profession\#IDProfPerson 10531; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/DelNic-00 . + +base:person_profession\/10533 a base:person_profession; + base:person_profession\#IDProfPerson 10533; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WeiJos-3230 . + +base:person_profession\/10538 a base:person_profession; + base:person_profession\#IDProfPerson 10538; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WeiSim-3237 . + +base:person_profession\/10543 a base:person_profession; + base:person_profession\#IDProfPerson 10543; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/YouBer-3320 . + +base:person_profession\/10548 a base:person_profession; + base:person_profession\#IDProfPerson 10548; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/YouBer-3320 . + +base:person_profession\/10553 a base:person_profession; + base:person_profession\#IDProfPerson 10553; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/YouBer-3320 . + +base:person_profession\/10558 a base:person_profession; + base:person_profession\#IDProfPerson 10558; + base:person_profession\#ref-IDPerson base:person\/ZayDav-3358 . + +base:person_profession\/10563 a base:person_profession; + base:person_profession\#IDProfPerson 10563; + base:person_profession\#ref-IDPerson base:person\/ZayDav-3358 . + +base:person_profession\/10568 a base:person_profession; + base:person_profession\#IDProfPerson 10568; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:person_profession\/10573 a base:person_profession; + base:person_profession\#IDProfPerson 10573; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:person_profession\/10578 a base:person_profession; + base:person_profession\#IDProfPerson 10578; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:person_profession\/10583 a base:person_profession; + base:person_profession\#IDProfPerson 10583; + base:person_profession\#ref-IDPerson base:person\/WagRic-00 . + +base:person_profession\/10584 a base:person_profession; + base:person_profession\#IDProfPerson 10584; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ZheLey-3381 . + +base:person_profession\/10589 a base:person_profession; + base:person_profession\#IDProfPerson 10589; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ZheLey-3381 . + +base:person_profession\/10594 a base:person_profession; + base:person_profession\#IDProfPerson 10594; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ZibFri-3386 . + +base:person_profession\/10599 a base:person_profession; + base:person_profession\#IDProfPerson 10599; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ZibFri-3386 . + +base:person_profession\/10604 a base:person_profession; + base:person_profession\#IDProfPerson 10604; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ZigWil-3393 . + +base:person_profession\/10609 a base:person_profession; + base:person_profession\#IDProfPerson 10609; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ZilKar-3399 . + +base:person_profession\/10614 a base:person_profession; + base:person_profession\#IDProfPerson 10614; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ZilKar-3399 . + +base:person_profession\/10619 a base:person_profession; + base:person_profession\#IDProfPerson 10619; + base:person_profession\#ref-IDPerson base:person\/ZilKar-3399 . + +base:person_profession\/10624 a base:person_profession; + base:person_profession\#IDProfPerson 10624; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ZinYos-3409 . + +base:person_profession\/10629 a base:person_profession; + base:person_profession\#IDProfPerson 10629; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ZinYos-3409 . + +base:person_profession\/10634 a base:person_profession; + base:person_profession\#IDProfPerson 10634; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/ZinYos-3409 . + +base:person_profession\/10639 a base:person_profession; + base:person_profession\#IDProfPerson 10639; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/FeiSig-714 . + +base:person_profession\/10644 a base:person_profession; + base:person_profession\#IDProfPerson 10644; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/FeiSig-714 . + +base:person_profession\/10649 a base:person_profession; + base:person_profession\#IDProfPerson 10649; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/FeiSig-714 . + +base:person_profession\/10654 a base:person_profession; + base:person_profession\#IDProfPerson 10654; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/FeiSig-714 . + +base:person_profession\/10659 a base:person_profession; + base:person_profession\#IDProfPerson 10659; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/CiaCes-00 . + +base:person_profession\/10664 a base:person_profession; + base:person_profession\#IDProfPerson 10664; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/CamJua-00 . + +base:person_profession\/10666 a base:person_profession; + base:person_profession\#IDProfPerson 10666; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/CamJua-00 . + +base:person_profession\/10667 a base:person_profession; + base:person_profession\#IDProfPerson 10667; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/CamJua-00 . + +base:person_profession\/10669 a base:person_profession; + base:person_profession\#IDProfPerson 10669; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MccJoh-00 . + +base:person_profession\/10674 a base:person_profession; + base:person_profession\#IDProfPerson 10674; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/MccJoh-00 . + +base:person_profession\/10682 a base:person_profession; + base:person_profession\#Eprofession base:Profession-Dancer; + base:person_profession\#IDProfPerson 10682; + base:person_profession\#ref-IDPerson base:person\/MonLol-00 . + +base:person_profession\/10687 a base:person_profession; + base:person_profession\#Eprofession base:Profession-Actor; + base:person_profession\#IDProfPerson 10687; + base:person_profession\#ref-IDPerson base:person\/MonLol-00 . + +base:person_profession\/10689 a base:person_profession; + base:person_profession\#IDProfPerson 10689; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/10694 a base:person_profession; + base:person_profession\#IDProfPerson 10694; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/10699 a base:person_profession; + base:person_profession\#IDProfPerson 10699; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/Boojun-00 . + +base:person_profession\/10704 a base:person_profession; + base:person_profession\#IDProfPerson 10704; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/Boojun-00 . + +base:person_profession\/10709 a base:person_profession; + base:person_profession\#IDProfPerson 10709; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/BerHei-00 . + +base:person_profession\/10714 a base:person_profession; + base:person_profession\#IDProfPerson 10714; + base:person_profession\#ref-IDPerson base:person\/BodArt-00 . + +base:person_profession\/10719 a base:person_profession; + base:person_profession\#IDProfPerson 10719; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/FreEnr-00 . + +base:person_profession\/10724 a base:person_profession; + base:person_profession\#IDProfPerson 10724; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/FreEnr-00 . + +base:person_profession\/10729 a base:person_profession; + base:person_profession\#IDProfPerson 10729; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GalMar-00 . + +base:person_profession\/10734 a base:person_profession; + base:person_profession\#IDProfPerson 10734; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GalMar-00 . + +base:person_profession\/10739 a base:person_profession; + base:person_profession\#IDProfPerson 10739; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/GalMar-00 . + +base:person_profession\/10745 a base:person_profession; + base:person_profession\#IDProfPerson 10745; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/GeaMig-00 . + +base:person_profession\/10749 a base:person_profession; + base:person_profession\#IDProfPerson 10749; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/GeaMig-00 . + +base:person_profession\/10754 a base:person_profession; + base:person_profession\#IDProfPerson 10754; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/BerJul-00 . + +base:person_profession\/10759 a base:person_profession; + base:person_profession\#IDProfPerson 10759; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GiuRob-00 . + +base:person_profession\/10764 a base:person_profession; + base:person_profession\#IDProfPerson 10764; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/GiuRob-00 . + +base:person_profession\/10769 a base:person_profession; + base:person_profession\#IDProfPerson 10769; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BasJoa-00 . + +base:person_profession\/10774 a base:person_profession; + base:person_profession\#IDProfPerson 10774; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/BasJoa-00 . + +base:person_profession\/10776 a base:person_profession; + base:person_profession\#IDProfPerson 10776; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BaoMig-00 . + +base:person_profession\/10779 a base:person_profession; + base:person_profession\#IDProfPerson 10779; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BaoMig-00 . + +base:person_profession\/10784 a base:person_profession; + base:person_profession\#IDProfPerson 10784; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GroPau-00 . + +base:person_profession\/10789 a base:person_profession; + base:person_profession\#IDProfPerson 10789; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/GroPau-00 . + +base:person_profession\/10794 a base:person_profession; + base:person_profession\#IDProfPerson 10794; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/GroPau-00 . + +base:person_profession\/10799 a base:person_profession; + base:person_profession\#IDProfPerson 10799; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:person_profession\/10803 a base:person_profession; + base:person_profession\#IDProfPerson 10803; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AdlSam-740 . + +base:person_profession\/10808 a base:person_profession; + base:person_profession\#IDProfPerson 10808; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AdlSam-740 . + +base:person_profession\/10813 a base:person_profession; + base:person_profession\#IDProfPerson 10813; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/AdlSam-740 . + +base:person_profession\/10823 a base:person_profession; + base:person_profession\#IDProfPerson 10823; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/AdlSam-740 . + +base:person_profession\/10828 a base:person_profession; + base:person_profession\#IDProfPerson 10828; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:person_profession\/10833 a base:person_profession; + base:person_profession\#IDProfPerson 10833; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:person_profession\/10838 a base:person_profession; + base:person_profession\#IDProfPerson 10838; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AdlSte-1127 . + +base:person_profession\/10843 a base:person_profession; + base:person_profession\#IDProfPerson 10843; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BenJac-1252 . + +base:person_profession\/10848 a base:person_profession; + base:person_profession\#IDProfPerson 10848; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BenJac-1252 . + +base:person_profession\/10853 a base:person_profession; + base:person_profession\#IDProfPerson 10853; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AntRiv-1161 . + +base:person_profession\/10858 a base:person_profession; + base:person_profession\#IDProfPerson 10858; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AntRiv-1161 . + +base:person_profession\/10860 a base:person_profession; + base:person_profession\#IDProfPerson 10860; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/ArnMar-1177 . + +base:person_profession\/10863 a base:person_profession; + base:person_profession\#IDProfPerson 10863; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ArnMar-1177 . + +base:person_profession\/10868 a base:person_profession; + base:person_profession\#IDProfPerson 10868; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/ArnMar-1177 . + +base:person_profession\/10873 a base:person_profession; + base:person_profession\#IDProfPerson 10873; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AxeMin-1205 . + +base:person_profession\/10878 a base:person_profession; + base:person_profession\#IDProfPerson 10878; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AxeRuk-1207 . + +base:person_profession\/10883 a base:person_profession; + base:person_profession\#IDProfPerson 10883; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AxeRuk-1207 . + +base:person_profession\/10888 a base:person_profession; + base:person_profession\#IDProfPerson 10888; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BecBer-1238 . + +base:person_profession\/10893 a base:person_profession; + base:person_profession\#IDProfPerson 10893; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BecBer-1238 . + +base:person_profession\/10898 a base:person_profession; + base:person_profession\#IDProfPerson 10898; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/BecBer-1238 . + +base:person_profession\/10903 a base:person_profession; + base:person_profession\#IDProfPerson 10903; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BecBer-1238 . + +base:person_profession\/10908 a base:person_profession; + base:person_profession\#IDProfPerson 10908; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BelMor-1243 . + +base:person_profession\/10912 a base:person_profession; + base:person_profession\#IDProfPerson 10912; + base:person_profession\#profession "Stage manager"; + base:person_profession\#ref-IDPerson base:person\/BelMor-1243 . + +base:person_profession\/10913 a base:person_profession; + base:person_profession\#IDProfPerson 10913; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/BelAdo-1246 . + +base:person_profession\/10918 a base:person_profession; + base:person_profession\#IDProfPerson 10918; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BarVic-00 . + +base:person_profession\/10923 a base:person_profession; + base:person_profession\#IDProfPerson 10923; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/BarVic-00 . + +base:person_profession\/10928 a base:person_profession; + base:person_profession\#IDProfPerson 10928; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KamEst-00 . + +base:person_profession\/10933 a base:person_profession; + base:person_profession\#IDProfPerson 10933; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/KamEst-00 . + +base:person_profession\/10938 a base:person_profession; + base:person_profession\#IDProfPerson 10938; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/AdlJac-00 . + +base:person_profession\/10945 a base:person_profession; + base:person_profession\#IDProfPerson 10945; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/BerJul-00 . + +base:person_profession\/10950 a base:person_profession; + base:person_profession\#IDProfPerson 10950; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraMar-02 . + +base:person_profession\/10955 a base:person_profession; + base:person_profession\#IDProfPerson 10955; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/BraMar-02 . + +base:person_profession\/10960 a base:person_profession; + base:person_profession\#IDProfPerson 10960; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/BraMar-02 . + +base:person_profession\/10965 a base:person_profession; + base:person_profession\#IDProfPerson 10965; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LinWil-00 . + +base:person_profession\/10969 a base:person_profession; + base:person_profession\#IDProfPerson 10969; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/LinWil-00 . + +base:person_profession\/10975 a base:person_profession; + base:person_profession\#IDProfPerson 10975; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/EbeCar-00 . + +base:person_profession\/10980 a base:person_profession; + base:person_profession\#IDProfPerson 10980; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/EbeCar-00 . + +base:person_profession\/10985 a base:person_profession; + base:person_profession\#IDProfPerson 10985; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/EbeCar-00 . + +base:person_profession\/10990 a base:person_profession; + base:person_profession\#IDProfPerson 10990; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AntAnd-00 . + +base:person_profession\/10995 a base:person_profession; + base:person_profession\#IDProfPerson 10995; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/AntAnd-00 . + +base:person_profession\/11000 a base:person_profession; + base:person_profession\#IDProfPerson 11000; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AntAnd-00 . + +base:person_profession\/11004 a base:person_profession; + base:person_profession\#IDProfPerson 11004; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/AntAnd-00 . + +base:person_profession\/11005 a base:person_profession; + base:person_profession\#IDProfPerson 11005; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/11010 a base:person_profession; + base:person_profession\#IDProfPerson 11010; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/kamida-00 . + +base:person_profession\/11015 a base:person_profession; + base:person_profession\#IDProfPerson 11015; + base:person_profession\#profession "Other"; + base:person_profession\#ref-IDPerson base:person\/kamida-00 . + +base:person_profession\/11020 a base:person_profession; + base:person_profession\#IDProfPerson 11020; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/kamida-00 . + +base:person_profession\/5120 a base:person_profession; + base:person_profession\#IDProfPerson 5120; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AbeIre-00 . + +base:person_profession\/5125 a base:person_profession; + base:person_profession\#IDProfPerson 5125; + base:person_profession\#profession "Seamstress"; + base:person_profession\#ref-IDPerson base:person\/AbeTsi-00 . + +base:person_profession\/5130 a base:person_profession; + base:person_profession\#IDProfPerson 5130; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AffAgu-00 . + +base:person_profession\/5135 a base:person_profession; + base:person_profession\#IDProfPerson 5135; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AhnEle-00 . + +base:person_profession\/5150 a base:person_profession; + base:person_profession\#IDProfPerson 5150; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AimMar-00 . + +base:person_profession\/5155 a base:person_profession; + base:person_profession\#IDProfPerson 5155; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AimMar-00 . + +base:person_profession\/5160 a base:person_profession; + base:person_profession\#IDProfPerson 5160; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/AimMar-00 . + +base:person_profession\/5165 a base:person_profession; + base:person_profession\#IDProfPerson 5165; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AlbHer-00 . + +base:person_profession\/5170 a base:person_profession; + base:person_profession\#IDProfPerson 5170; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/AlbMar-00 . + +base:person_profession\/5175 a base:person_profession; + base:person_profession\#IDProfPerson 5175; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AlbMar-00 . + +base:person_profession\/5180 a base:person_profession; + base:person_profession\#IDProfPerson 5180; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/ArnJos-00 . + +base:person_profession\/5185 a base:person_profession; + base:person_profession\#IDProfPerson 5185; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/ArnJos-00 . + +base:person_profession\/5190 a base:person_profession; + base:person_profession\#IDProfPerson 5190; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ArnJos-00 . + +base:person_profession\/5195 a base:person_profession; + base:person_profession\#IDProfPerson 5195; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/AscLeo-00 . + +base:person_profession\/5200 a base:person_profession; + base:person_profession\#IDProfPerson 5200; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/AubDan-00 . + +base:person_profession\/5205 a base:person_profession; + base:person_profession\#IDProfPerson 5205; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BalHel-00 . + +base:person_profession\/5210 a base:person_profession; + base:person_profession\#IDProfPerson 5210; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BalHel-00 . + +base:person_profession\/5215 a base:person_profession; + base:person_profession\#IDProfPerson 5215; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/BalHel-00 . + +base:person_profession\/5220 a base:person_profession; + base:person_profession\#IDProfPerson 5220; + base:person_profession\#profession "Trader"; + base:person_profession\#ref-IDPerson base:person\/BalHel-00 . + +base:person_profession\/5225 a base:person_profession; + base:person_profession\#IDProfPerson 5225; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BanDan-00 . + +base:person_profession\/5230 a base:person_profession; + base:person_profession\#IDProfPerson 5230; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/BanDan-00 . + +base:person_profession\/5235 a base:person_profession; + base:person_profession\#IDProfPerson 5235; + base:person_profession\#profession "Rancher"; + base:person_profession\#ref-IDPerson base:person\/BanDan-00 . + +base:person_profession\/5240 a base:person_profession; + base:person_profession\#IDProfPerson 5240; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/BarDom-00 . + +base:person_profession\/5245 a base:person_profession; + base:person_profession\#IDProfPerson 5245; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/BarDom-00 . + +base:person_profession\/5250 a base:person_profession; + base:person_profession\#IDProfPerson 5250; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BarDom-00 . + +base:person_profession\/5255 a base:person_profession; + base:person_profession\#IDProfPerson 5255; + base:person_profession\#profession "Agent"; + base:person_profession\#ref-IDPerson base:person\/BarDom-00 . + +base:person_profession\/5260 a base:person_profession; + base:person_profession\#IDProfPerson 5260; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BarMau-00 . + +base:person_profession\/5265 a base:person_profession; + base:person_profession\#IDProfPerson 5265; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BarVic-00 . + +base:person_profession\/5270 a base:person_profession; + base:person_profession\#IDProfPerson 5270; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BarVic-00 . + +base:person_profession\/5280 a base:person_profession; + base:person_profession\#IDProfPerson 5280; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BasAlb-00 . + +base:person_profession\/5285 a base:person_profession; + base:person_profession\#IDProfPerson 5285; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BasEls-00 . + +base:person_profession\/5295 a base:person_profession; + base:person_profession\#IDProfPerson 5295; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BasEls-00 . + +base:person_profession\/5300 a base:person_profession; + base:person_profession\#IDProfPerson 5300; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5305 a base:person_profession; + base:person_profession\#IDProfPerson 5305; + base:person_profession\#profession "Customier"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5310 a base:person_profession; + base:person_profession\#IDProfPerson 5310; + base:person_profession\#profession "French Teacher"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5315 a base:person_profession; + base:person_profession\#IDProfPerson 5315; + base:person_profession\#profession "Painter"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5320 a base:person_profession; + base:person_profession\#IDProfPerson 5320; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5325 a base:person_profession; + base:person_profession\#IDProfPerson 5325; + base:person_profession\#profession "Hotel Founder"; + base:person_profession\#ref-IDPerson base:person\/BauRos-00 . + +base:person_profession\/5330 a base:person_profession; + base:person_profession\#IDProfPerson 5330; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/BecMar-00 . + +base:person_profession\/5335 a base:person_profession; + base:person_profession\#IDProfPerson 5335; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/BecMar-00 . + +base:person_profession\/5340 a base:person_profession; + base:person_profession\#IDProfPerson 5340; + base:person_profession\#profession "Agent"; + base:person_profession\#ref-IDPerson base:person\/BecMar-00 . + +base:person_profession\/5345 a base:person_profession; + base:person_profession\#IDProfPerson 5345; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BecMar-00 . + +base:person_profession\/5350 a base:person_profession; + base:person_profession\#IDProfPerson 5350; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BenCha-00 . + +base:person_profession\/5355 a base:person_profession; + base:person_profession\#IDProfPerson 5355; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BenCha-00 . + +base:person_profession\/5360 a base:person_profession; + base:person_profession\#IDProfPerson 5360; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BerJul-00 . + +base:person_profession\/5365 a base:person_profession; + base:person_profession\#IDProfPerson 5365; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BisKat-00 . + +base:person_profession\/5370 a base:person_profession; + base:person_profession\#IDProfPerson 5370; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BlaEls-00 . + +base:person_profession\/5375 a base:person_profession; + base:person_profession\#IDProfPerson 5375; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BlaEls-00 . + +base:person_profession\/5380 a base:person_profession; + base:person_profession\#IDProfPerson 5380; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/BlaEls-00 . + +base:person_profession\/5385 a base:person_profession; + base:person_profession\#IDProfPerson 5385; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/BodArt-00 . + +base:person_profession\/5390 a base:person_profession; + base:person_profession\#IDProfPerson 5390; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/BodArt-00 . + +base:person_profession\/5395 a base:person_profession; + base:person_profession\#IDProfPerson 5395; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/5405 a base:person_profession; + base:person_profession\#IDProfPerson 5405; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/5410 a base:person_profession; + base:person_profession\#IDProfPerson 5410; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/5415 a base:person_profession; + base:person_profession\#IDProfPerson 5415; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/5420 a base:person_profession; + base:person_profession\#IDProfPerson 5420; + base:person_profession\#profession "Emcee"; + base:person_profession\#ref-IDPerson base:person\/BodRob-00 . + +base:person_profession\/5425 a base:person_profession; + base:person_profession\#IDProfPerson 5425; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BogDaw-00 . + +base:person_profession\/5430 a base:person_profession; + base:person_profession\#IDProfPerson 5430; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BoiCur-00 . + +base:person_profession\/5435 a base:person_profession; + base:person_profession\#IDProfPerson 5435; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BoiCur-00 . + +base:person_profession\/5440 a base:person_profession; + base:person_profession\#IDProfPerson 5440; + base:person_profession\#profession "Kleinkuenstler"; + base:person_profession\#ref-IDPerson base:person\/BoiIls-00 . + +base:person_profession\/5445 a base:person_profession; + base:person_profession\#IDProfPerson 5445; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BoiIls-00 . + +base:person_profession\/5455 a base:person_profession; + base:person_profession\#IDProfPerson 5455; + base:person_profession\#profession "Cartoonist"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5460 a base:person_profession; + base:person_profession\#IDProfPerson 5460; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5465 a base:person_profession; + base:person_profession\#IDProfPerson 5465; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5470 a base:person_profession; + base:person_profession\#IDProfPerson 5470; + base:person_profession\#profession "Ceramist"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5475 a base:person_profession; + base:person_profession\#IDProfPerson 5475; + base:person_profession\#profession "Customier"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5480 a base:person_profession; + base:person_profession\#IDProfPerson 5480; + base:person_profession\#profession "Stage Designer"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5485 a base:person_profession; + base:person_profession\#IDProfPerson 5485; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BorRap-00 . + +base:person_profession\/5490 a base:person_profession; + base:person_profession\#IDProfPerson 5490; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraHer-00 . + +base:person_profession\/5495 a base:person_profession; + base:person_profession\#IDProfPerson 5495; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/BraMar-00 . + +base:person_profession\/5500 a base:person_profession; + base:person_profession\#IDProfPerson 5500; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraMar-01 . + +base:person_profession\/5505 a base:person_profession; + base:person_profession\#IDProfPerson 5505; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraOsk-00 . + +base:person_profession\/5510 a base:person_profession; + base:person_profession\#IDProfPerson 5510; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraTer-00 . + +base:person_profession\/5515 a base:person_profession; + base:person_profession\#IDProfPerson 5515; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BraTer-01 . + +base:person_profession\/5520 a base:person_profession; + base:person_profession\#IDProfPerson 5520; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BreEli-00 . + +base:person_profession\/5525 a base:person_profession; + base:person_profession\#IDProfPerson 5525; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/BroFra-00 . + +base:person_profession\/5530 a base:person_profession; + base:person_profession\#IDProfPerson 5530; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/BroFra-00 . + +base:person_profession\/5535 a base:person_profession; + base:person_profession\#IDProfPerson 5535; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/BroFra-00 . + +base:person_profession\/5540 a base:person_profession; + base:person_profession\#IDProfPerson 5540; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/BroFra-00 . + +base:person_profession\/5545 a base:person_profession; + base:person_profession\#IDProfPerson 5545; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BroPhi-00 . + +base:person_profession\/5550 a base:person_profession; + base:person_profession\#IDProfPerson 5550; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BroPhi-00 . + +base:person_profession\/5555 a base:person_profession; + base:person_profession\#IDProfPerson 5555; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/BroPhi-00 . + +base:person_profession\/5560 a base:person_profession; + base:person_profession\#IDProfPerson 5560; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BukChr-00 . + +base:person_profession\/5565 a base:person_profession; + base:person_profession\#IDProfPerson 5565; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/CahCha-00 . + +base:person_profession\/5570 a base:person_profession; + base:person_profession\#IDProfPerson 5570; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/CahCha-00 . + +base:person_profession\/5575 a base:person_profession; + base:person_profession\#IDProfPerson 5575; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/CanAug-00 . + +base:person_profession\/5580 a base:person_profession; + base:person_profession\#IDProfPerson 5580; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/CanAug-00 . + +base:person_profession\/5585 a base:person_profession; + base:person_profession\#IDProfPerson 5585; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/CanAug-00 . + +base:person_profession\/5590 a base:person_profession; + base:person_profession\#IDProfPerson 5590; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/CapVic-00 . + +base:person_profession\/5595 a base:person_profession; + base:person_profession\#IDProfPerson 5595; + base:person_profession\#profession "Stage Designer"; + base:person_profession\#ref-IDPerson base:person\/CarGae-00 . + +base:person_profession\/5600 a base:person_profession; + base:person_profession\#IDProfPerson 5600; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5605 a base:person_profession; + base:person_profession\#IDProfPerson 5605; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5610 a base:person_profession; + base:person_profession\#IDProfPerson 5610; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5615 a base:person_profession; + base:person_profession\#IDProfPerson 5615; + base:person_profession\#profession "Cutter"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5620 a base:person_profession; + base:person_profession\#IDProfPerson 5620; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5625 a base:person_profession; + base:person_profession\#IDProfPerson 5625; + base:person_profession\#profession "Comedian"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5630 a base:person_profession; + base:person_profession\#IDProfPerson 5630; + base:person_profession\#profession "Film producer"; + base:person_profession\#ref-IDPerson base:person\/ChaCha-00 . + +base:person_profession\/5635 a base:person_profession; + base:person_profession\#IDProfPerson 5635; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ChrRud-00 . + +base:person_profession\/5640 a base:person_profession; + base:person_profession\#IDProfPerson 5640; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ChrRud-00 . + +base:person_profession\/5645 a base:person_profession; + base:person_profession\#IDProfPerson 5645; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/CogRos-00 . + +base:person_profession\/5655 a base:person_profession; + base:person_profession\#IDProfPerson 5655; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ColIsa-00 . + +base:person_profession\/5665 a base:person_profession; + base:person_profession\#IDProfPerson 5665; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/CunAnt-00 . + +base:person_profession\/5670 a base:person_profession; + base:person_profession\#IDProfPerson 5670; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/CunAnt-00 . + +base:person_profession\/5675 a base:person_profession; + base:person_profession\#IDProfPerson 5675; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/CunAnt-00 . + +base:person_profession\/5680 a base:person_profession; + base:person_profession\#IDProfPerson 5680; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/DamLeo-00 . + +base:person_profession\/5685 a base:person_profession; + base:person_profession\#IDProfPerson 5685; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/DamLeo-00 . + +base:person_profession\/5690 a base:person_profession; + base:person_profession\#IDProfPerson 5690; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/DamLeo-00 . + +base:person_profession\/5695 a base:person_profession; + base:person_profession\#IDProfPerson 5695; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/DamLeo-00 . + +base:person_profession\/5700 a base:person_profession; + base:person_profession\#IDProfPerson 5700; + base:person_profession\#profession "Assistant"; + base:person_profession\#ref-IDPerson base:person\/DamWal-00 . + +base:person_profession\/5705 a base:person_profession; + base:person_profession\#IDProfPerson 5705; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/DamWal-00 . + +base:person_profession\/5710 a base:person_profession; + base:person_profession\#IDProfPerson 5710; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/DarHar-00 . + +base:person_profession\/5715 a base:person_profession; + base:person_profession\#IDProfPerson 5715; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/DesEma-00 . + +base:person_profession\/5720 a base:person_profession; + base:person_profession\#IDProfPerson 5720; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DouEmi-00 . + +base:person_profession\/5725 a base:person_profession; + base:person_profession\#IDProfPerson 5725; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/DouEmi-00 . + +base:person_profession\/5730 a base:person_profession; + base:person_profession\#IDProfPerson 5730; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/DouEmi-00 . + +base:person_profession\/5735 a base:person_profession; + base:person_profession\#IDProfPerson 5735; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/DouEmi-00 . + +base:person_profession\/5740 a base:person_profession; + base:person_profession\#IDProfPerson 5740; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DreLou-00 . + +base:person_profession\/5745 a base:person_profession; + base:person_profession\#IDProfPerson 5745; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/DreLou-00 . + +base:person_profession\/5750 a base:person_profession; + base:person_profession\#IDProfPerson 5750; + base:person_profession\#profession "Businesswoman"; + base:person_profession\#ref-IDPerson base:person\/DreLou-00 . + +base:person_profession\/5755 a base:person_profession; + base:person_profession\#IDProfPerson 5755; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EgeFra-00 . + +base:person_profession\/5760 a base:person_profession; + base:person_profession\#IDProfPerson 5760; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/EgeFra-00 . + +base:person_profession\/5765 a base:person_profession; + base:person_profession\#IDProfPerson 5765; + base:person_profession\#profession "Opera"; + base:person_profession\#ref-IDPerson base:person\/EibAnt-00 . + +base:person_profession\/5770 a base:person_profession; + base:person_profession\#IDProfPerson 5770; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibAnt-00 . + +base:person_profession\/5775 a base:person_profession; + base:person_profession\#IDProfPerson 5775; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/EibAnt-00 . + +base:person_profession\/5780 a base:person_profession; + base:person_profession\#IDProfPerson 5780; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibKar-00 . + +base:person_profession\/5785 a base:person_profession; + base:person_profession\#IDProfPerson 5785; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibKar-00 . + +base:person_profession\/5790 a base:person_profession; + base:person_profession\#IDProfPerson 5790; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibRiz-00 . + +base:person_profession\/5795 a base:person_profession; + base:person_profession\#IDProfPerson 5795; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibRiz-00 . + +base:person_profession\/5800 a base:person_profession; + base:person_profession\#IDProfPerson 5800; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EibRiz-00 . + +base:person_profession\/5805 a base:person_profession; + base:person_profession\#IDProfPerson 5805; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/EibSie-00 . + +base:person_profession\/5810 a base:person_profession; + base:person_profession\#IDProfPerson 5810; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/EibSie-00 . + +base:person_profession\/5815 a base:person_profession; + base:person_profession\#IDProfPerson 5815; + base:person_profession\#profession "Opera Correpetitor"; + base:person_profession\#ref-IDPerson base:person\/EibSie-00 . + +base:person_profession\/5820 a base:person_profession; + base:person_profession\#IDProfPerson 5820; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5825 a base:person_profession; + base:person_profession\#IDProfPerson 5825; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5830 a base:person_profession; + base:person_profession\#IDProfPerson 5830; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5835 a base:person_profession; + base:person_profession\#IDProfPerson 5835; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5840 a base:person_profession; + base:person_profession\#IDProfPerson 5840; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5845 a base:person_profession; + base:person_profession\#IDProfPerson 5845; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5850 a base:person_profession; + base:person_profession\#IDProfPerson 5850; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/EicJos-00 . + +base:person_profession\/5855 a base:person_profession; + base:person_profession\#IDProfPerson 5855; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ElmFra-00 . + +base:person_profession\/5860 a base:person_profession; + base:person_profession\#IDProfPerson 5860; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/ElsHer-00 . + +base:person_profession\/5865 a base:person_profession; + base:person_profession\#IDProfPerson 5865; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/FenGeo-00 . + +base:person_profession\/5870 a base:person_profession; + base:person_profession\#IDProfPerson 5870; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/FenGeo-00 . + +base:person_profession\/5875 a base:person_profession; + base:person_profession\#IDProfPerson 5875; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/FerAma-00 . + +base:person_profession\/5880 a base:person_profession; + base:person_profession\#IDProfPerson 5880; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/FieOsc-00 . + +base:person_profession\/5885 a base:person_profession; + base:person_profession\#IDProfPerson 5885; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/FieOsc-00 . + +base:person_profession\/5890 a base:person_profession; + base:person_profession\#IDProfPerson 5890; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/FieOsc-00 . + +base:person_profession\/5895 a base:person_profession; + base:person_profession\#IDProfPerson 5895; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/FieOsc-00 . + +base:person_profession\/5900 a base:person_profession; + base:person_profession\#IDProfPerson 5900; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/FisCla-00 . + +base:person_profession\/5910 a base:person_profession; + base:person_profession\#IDProfPerson 5910; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/FisCla-00 . + +base:person_profession\/5915 a base:person_profession; + base:person_profession\#IDProfPerson 5915; + base:person_profession\#profession "Elocution teacher"; + base:person_profession\#ref-IDPerson base:person\/FisCla-00 . + +base:person_profession\/5920 a base:person_profession; + base:person_profession\#IDProfPerson 5920; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/FodJos-00 . + +base:person_profession\/5925 a base:person_profession; + base:person_profession\#IDProfPerson 5925; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/FodJos-00 . + +base:person_profession\/5930 a base:person_profession; + base:person_profession\#IDProfPerson 5930; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/FurCoe-00 . + +base:person_profession\/5935 a base:person_profession; + base:person_profession\#IDProfPerson 5935; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/FurCoe-00 . + +base:person_profession\/5940 a base:person_profession; + base:person_profession\#IDProfPerson 5940; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/FurCoe-00 . + +base:person_profession\/5945 a base:person_profession; + base:person_profession\#IDProfPerson 5945; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/FurCoe-00 . + +base:person_profession\/5950 a base:person_profession; + base:person_profession\#IDProfPerson 5950; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/FurCoe-00 . + +base:person_profession\/5955 a base:person_profession; + base:person_profession\#IDProfPerson 5955; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GalCae-00 . + +base:person_profession\/5960 a base:person_profession; + base:person_profession\#IDProfPerson 5960; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GalCar-00 . + +base:person_profession\/5965 a base:person_profession; + base:person_profession\#IDProfPerson 5965; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GalGeo-00 . + +base:person_profession\/5970 a base:person_profession; + base:person_profession\#IDProfPerson 5970; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GarMan-00 . + +base:person_profession\/5975 a base:person_profession; + base:person_profession\#IDProfPerson 5975; + base:person_profession\#profession "Music Educator"; + base:person_profession\#ref-IDPerson base:person\/GarMan-00 . + +base:person_profession\/5980 a base:person_profession; + base:person_profession\#IDProfPerson 5980; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GarMan-00 . + +base:person_profession\/5990 a base:person_profession; + base:person_profession\#IDProfPerson 5990; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GarMan-01 . + +base:person_profession\/6005 a base:person_profession; + base:person_profession\#IDProfPerson 6005; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GarMar-00 . + +base:person_profession\/6015 a base:person_profession; + base:person_profession\#IDProfPerson 6015; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/GarMar-00 . + +base:person_profession\/6020 a base:person_profession; + base:person_profession\#IDProfPerson 6020; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GarMar-00 . + +base:person_profession\/6025 a base:person_profession; + base:person_profession\#IDProfPerson 6025; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GarMar-00 . + +base:person_profession\/6030 a base:person_profession; + base:person_profession\#IDProfPerson 6030; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GeoWil-00 . + +base:person_profession\/6035 a base:person_profession; + base:person_profession\#IDProfPerson 6035; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GerBer-00 . + +base:person_profession\/6040 a base:person_profession; + base:person_profession\#IDProfPerson 6040; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/GilAnn-00 . + +base:person_profession\/6045 a base:person_profession; + base:person_profession\#IDProfPerson 6045; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GilAnn-00 . + +base:person_profession\/6050 a base:person_profession; + base:person_profession\#IDProfPerson 6050; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GluAlm-00 . + +base:person_profession\/6055 a base:person_profession; + base:person_profession\#IDProfPerson 6055; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/GodAra-00 . + +base:person_profession\/6060 a base:person_profession; + base:person_profession\#IDProfPerson 6060; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/GodAra-00 . + +base:person_profession\/6065 a base:person_profession; + base:person_profession\#IDProfPerson 6065; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GodAra-00 . + +base:person_profession\/6070 a base:person_profession; + base:person_profession\#IDProfPerson 6070; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6075 a base:person_profession; + base:person_profession\#IDProfPerson 6075; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6080 a base:person_profession; + base:person_profession\#IDProfPerson 6080; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6085 a base:person_profession; + base:person_profession\#IDProfPerson 6085; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6090 a base:person_profession; + base:person_profession\#IDProfPerson 6090; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6095 a base:person_profession; + base:person_profession\#IDProfPerson 6095; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6100 a base:person_profession; + base:person_profession\#IDProfPerson 6100; + base:person_profession\#profession "Stage Designer"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6105 a base:person_profession; + base:person_profession\#IDProfPerson 6105; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6110 a base:person_profession; + base:person_profession\#IDProfPerson 6110; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/GolAbr-00 . + +base:person_profession\/6115 a base:person_profession; + base:person_profession\#IDProfPerson 6115; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GraLuc-00 . + +base:person_profession\/6120 a base:person_profession; + base:person_profession\#IDProfPerson 6120; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/GraLuc-00 . + +base:person_profession\/6125 a base:person_profession; + base:person_profession\#IDProfPerson 6125; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/GriCar-00 . + +base:person_profession\/6130 a base:person_profession; + base:person_profession\#IDProfPerson 6130; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GriCar-00 . + +base:person_profession\/6135 a base:person_profession; + base:person_profession\#IDProfPerson 6135; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GriErn-00 . + +base:person_profession\/6140 a base:person_profession; + base:person_profession\#IDProfPerson 6140; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/GriErn-00 . + +base:person_profession\/6145 a base:person_profession; + base:person_profession\#IDProfPerson 6145; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GriGiu-00 . + +base:person_profession\/6150 a base:person_profession; + base:person_profession\#IDProfPerson 6150; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GraLuc-00 . + +base:person_profession\/6155 a base:person_profession; + base:person_profession\#IDProfPerson 6155; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GriGiu-01 . + +base:person_profession\/6170 a base:person_profession; + base:person_profession\#IDProfPerson 6170; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GroAde-00 . + +base:person_profession\/6175 a base:person_profession; + base:person_profession\#IDProfPerson 6175; + base:person_profession\#profession "Kleinkuenstler"; + base:person_profession\#ref-IDPerson base:person\/GruFri-00 . + +base:person_profession\/6185 a base:person_profession; + base:person_profession\#IDProfPerson 6185; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/GruFri-00 . + +base:person_profession\/6190 a base:person_profession; + base:person_profession\#IDProfPerson 6190; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GruFri-00 . + +base:person_profession\/6195 a base:person_profession; + base:person_profession\#IDProfPerson 6195; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/GruFri-00 . + +base:person_profession\/6200 a base:person_profession; + base:person_profession\#IDProfPerson 6200; + base:person_profession\#profession "Emcee"; + base:person_profession\#ref-IDPerson base:person\/GruFri-00 . + +base:person_profession\/6205 a base:person_profession; + base:person_profession\#IDProfPerson 6205; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/GulEll-00 . + +base:person_profession\/6210 a base:person_profession; + base:person_profession\#IDProfPerson 6210; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GulEll-00 . + +base:person_profession\/6215 a base:person_profession; + base:person_profession\#IDProfPerson 6215; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GunRao-00 . + +base:person_profession\/6220 a base:person_profession; + base:person_profession\#IDProfPerson 6220; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/GunRao-00 . + +base:person_profession\/6225 a base:person_profession; + base:person_profession\#IDProfPerson 6225; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HaaFri-00 . + +base:person_profession\/6230 a base:person_profession; + base:person_profession\#IDProfPerson 6230; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/HaaFri-00 . + +base:person_profession\/6235 a base:person_profession; + base:person_profession\#IDProfPerson 6235; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HagUta-00 . + +base:person_profession\/6240 a base:person_profession; + base:person_profession\#IDProfPerson 6240; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/HamOsc-00 . + +base:person_profession\/6245 a base:person_profession; + base:person_profession\#IDProfPerson 6245; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/HamOsc-00 . + +base:person_profession\/6250 a base:person_profession; + base:person_profession\#IDProfPerson 6250; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HeiCae-00 . + +base:person_profession\/6255 a base:person_profession; + base:person_profession\#IDProfPerson 6255; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/HeiCae-00 . + +base:person_profession\/6260 a base:person_profession; + base:person_profession\#IDProfPerson 6260; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/HeiCae-00 . + +base:person_profession\/6265 a base:person_profession; + base:person_profession\#IDProfPerson 6265; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/HelAnn-00 . + +base:person_profession\/6275 a base:person_profession; + base:person_profession\#IDProfPerson 6275; + base:person_profession\#profession "Kleinkuenstler"; + base:person_profession\#ref-IDPerson base:person\/HelAnn-00 . + +base:person_profession\/6285 a base:person_profession; + base:person_profession\#IDProfPerson 6285; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HelAnn-00 . + +base:person_profession\/6290 a base:person_profession; + base:person_profession\#IDProfPerson 6290; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HelJac-00 . + +base:person_profession\/6295 a base:person_profession; + base:person_profession\#IDProfPerson 6295; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/HelJac-00 . + +base:person_profession\/6300 a base:person_profession; + base:person_profession\#IDProfPerson 6300; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/HemFri-00 . + +base:person_profession\/6305 a base:person_profession; + base:person_profession\#IDProfPerson 6305; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/HemFri-00 . + +base:person_profession\/6310 a base:person_profession; + base:person_profession\#IDProfPerson 6310; + base:person_profession\#profession "Magician"; + base:person_profession\#ref-IDPerson base:person\/HerAde-00 . + +base:person_profession\/6315 a base:person_profession; + base:person_profession\#IDProfPerson 6315; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HerAgn-00 . + +base:person_profession\/6320 a base:person_profession; + base:person_profession\#IDProfPerson 6320; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/HerAgn-00 . + +base:person_profession\/6325 a base:person_profession; + base:person_profession\#IDProfPerson 6325; + base:person_profession\#profession "Performer"; + base:person_profession\#ref-IDPerson base:person\/HerAgn-00 . + +base:person_profession\/6330 a base:person_profession; + base:person_profession\#IDProfPerson 6330; + base:person_profession\#profession "Magician"; + base:person_profession\#ref-IDPerson base:person\/HerAle-00 . + +base:person_profession\/6335 a base:person_profession; + base:person_profession\#IDProfPerson 6335; + base:person_profession\#profession "Magician"; + base:person_profession\#ref-IDPerson base:person\/HerLeo-00 . + +base:person_profession\/6340 a base:person_profession; + base:person_profession\#IDProfPerson 6340; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/HerVic-00 . + +base:person_profession\/6345 a base:person_profession; + base:person_profession\#IDProfPerson 6345; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/HerVic-00 . + +base:person_profession\/6350 a base:person_profession; + base:person_profession\#IDProfPerson 6350; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/HerVic-00 . + +base:person_profession\/6355 a base:person_profession; + base:person_profession\#IDProfPerson 6355; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/HitAlf-00 . + +base:person_profession\/6360 a base:person_profession; + base:person_profession\#IDProfPerson 6360; + base:person_profession\#profession "Producer"; + base:person_profession\#ref-IDPerson base:person\/HitAlf-00 . + +base:person_profession\/6365 a base:person_profession; + base:person_profession\#IDProfPerson 6365; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/HitAlf-00 . + +base:person_profession\/6370 a base:person_profession; + base:person_profession\#IDProfPerson 6370; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HofJan-00 . + +base:person_profession\/6375 a base:person_profession; + base:person_profession\#IDProfPerson 6375; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HolGus-00 . + +base:person_profession\/6380 a base:person_profession; + base:person_profession\#IDProfPerson 6380; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/HolGus-00 . + +base:person_profession\/6385 a base:person_profession; + base:person_profession\#IDProfPerson 6385; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/HolVic-00 . + +base:person_profession\/6390 a base:person_profession; + base:person_profession\#IDProfPerson 6390; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/HolVic-00 . + +base:person_profession\/6395 a base:person_profession; + base:person_profession\#IDProfPerson 6395; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/HolVic-00 . + +base:person_profession\/6400 a base:person_profession; + base:person_profession\#IDProfPerson 6400; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/HorCam-00 . + +base:person_profession\/6405 a base:person_profession; + base:person_profession\#IDProfPerson 6405; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/HorCam-00 . + +base:person_profession\/6410 a base:person_profession; + base:person_profession\#IDProfPerson 6410; + base:person_profession\#profession "Magician"; + base:person_profession\#ref-IDPerson base:person\/HouHar-00 . + +base:person_profession\/6415 a base:person_profession; + base:person_profession\#IDProfPerson 6415; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/HouHar-00 . + +base:person_profession\/6420 a base:person_profession; + base:person_profession\#IDProfPerson 6420; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/IbuJ-00 . + +base:person_profession\/6425 a base:person_profession; + base:person_profession\#IDProfPerson 6425; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/JagEls-00 . + +base:person_profession\/6430 a base:person_profession; + base:person_profession\#IDProfPerson 6430; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/JagFer-00 . + +base:person_profession\/6435 a base:person_profession; + base:person_profession\#IDProfPerson 6435; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/JagFer-01 . + +base:person_profession\/6440 a base:person_profession; + base:person_profession\#IDProfPerson 6440; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/JagFer-01 . + +base:person_profession\/6445 a base:person_profession; + base:person_profession\#IDProfPerson 6445; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/JanEmi-00 . + +base:person_profession\/6450 a base:person_profession; + base:person_profession\#IDProfPerson 6450; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/JanFan-00 . + +base:person_profession\/6455 a base:person_profession; + base:person_profession\#IDProfPerson 6455; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/JeaRes-00 . + +base:person_profession\/6460 a base:person_profession; + base:person_profession\#IDProfPerson 6460; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/JeaRes-00 . + +base:person_profession\/6465 a base:person_profession; + base:person_profession\#IDProfPerson 6465; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/JesOlg-00 . + +base:person_profession\/6470 a base:person_profession; + base:person_profession\#IDProfPerson 6470; + base:person_profession\#profession "Dramaturg"; + base:person_profession\#ref-IDPerson base:person\/JesOlg-00 . + +base:person_profession\/6475 a base:person_profession; + base:person_profession\#IDProfPerson 6475; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/JoaAma-00 . + +base:person_profession\/6485 a base:person_profession; + base:person_profession\#IDProfPerson 6485; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/JohGad-00 . + +base:person_profession\/6495 a base:person_profession; + base:person_profession\#IDProfPerson 6495; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/JohRic-00 . + +base:person_profession\/6500 a base:person_profession; + base:person_profession\#IDProfPerson 6500; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/JohRic-00 . + +base:person_profession\/6505 a base:person_profession; + base:person_profession\#IDProfPerson 6505; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KaiJos-00 . + +base:person_profession\/6510 a base:person_profession; + base:person_profession\#IDProfPerson 6510; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/KaiJos-00 . + +base:person_profession\/6515 a base:person_profession; + base:person_profession\#IDProfPerson 6515; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KalBer-00 . + +base:person_profession\/6525 a base:person_profession; + base:person_profession\#IDProfPerson 6525; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KalBer-00 . + +base:person_profession\/6530 a base:person_profession; + base:person_profession\#IDProfPerson 6530; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KamAvr-00 . + +base:person_profession\/6535 a base:person_profession; + base:person_profession\#IDProfPerson 6535; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/KamAvr-00 . + +base:person_profession\/6540 a base:person_profession; + base:person_profession\#IDProfPerson 6540; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/KarBer-00 . + +base:person_profession\/6545 a base:person_profession; + base:person_profession\#IDProfPerson 6545; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/KarBer-00 . + +base:person_profession\/6555 a base:person_profession; + base:person_profession\#IDProfPerson 6555; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/KeeLau-00 . + +base:person_profession\/6560 a base:person_profession; + base:person_profession\#IDProfPerson 6560; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KeeLau-00 . + +base:person_profession\/6570 a base:person_profession; + base:person_profession\#IDProfPerson 6570; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KelAlf-00 . + +base:person_profession\/6575 a base:person_profession; + base:person_profession\#IDProfPerson 6575; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KemFra-00 . + +base:person_profession\/6580 a base:person_profession; + base:person_profession\#IDProfPerson 6580; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KonFid-00 . + +base:person_profession\/6585 a base:person_profession; + base:person_profession\#IDProfPerson 6585; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/KonFid-00 . + +base:person_profession\/6590 a base:person_profession; + base:person_profession\#IDProfPerson 6590; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KorFri-00 . + +base:person_profession\/6595 a base:person_profession; + base:person_profession\#IDProfPerson 6595; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/KorFri-00 . + +base:person_profession\/6605 a base:person_profession; + base:person_profession\#IDProfPerson 6605; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KreEli-00 . + +base:person_profession\/6615 a base:person_profession; + base:person_profession\#IDProfPerson 6615; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KreHei-00 . + +base:person_profession\/6620 a base:person_profession; + base:person_profession\#IDProfPerson 6620; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/KreHei-00 . + +base:person_profession\/6625 a base:person_profession; + base:person_profession\#IDProfPerson 6625; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KreMar-00 . + +base:person_profession\/6630 a base:person_profession; + base:person_profession\#IDProfPerson 6630; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KreMar-00 . + +base:person_profession\/6635 a base:person_profession; + base:person_profession\#IDProfPerson 6635; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/KroSel-00 . + +base:person_profession\/6640 a base:person_profession; + base:person_profession\#IDProfPerson 6640; + base:person_profession\#profession "Feminist"; + base:person_profession\#ref-IDPerson base:person\/KruMin-00 . + +base:person_profession\/6645 a base:person_profession; + base:person_profession\#IDProfPerson 6645; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KruMin-00 . + +base:person_profession\/6650 a base:person_profession; + base:person_profession\#IDProfPerson 6650; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/KruMin-00 . + +base:person_profession\/6655 a base:person_profession; + base:person_profession\#IDProfPerson 6655; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/KupCae-00 . + +base:person_profession\/6660 a base:person_profession; + base:person_profession\#IDProfPerson 6660; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/LauHei-00 . + +base:person_profession\/6665 a base:person_profession; + base:person_profession\#IDProfPerson 6665; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/LauHei-00 . + +base:person_profession\/6670 a base:person_profession; + base:person_profession\#IDProfPerson 6670; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/LauHei-00 . + +base:person_profession\/6675 a base:person_profession; + base:person_profession\#IDProfPerson 6675; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LavPau-00 . + +base:person_profession\/6680 a base:person_profession; + base:person_profession\#IDProfPerson 6680; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LeaCar-00 . + +base:person_profession\/6685 a base:person_profession; + base:person_profession\#IDProfPerson 6685; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/LeaCar-00 . + +base:person_profession\/6690 a base:person_profession; + base:person_profession\#IDProfPerson 6690; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/LeaCar-00 . + +base:person_profession\/6695 a base:person_profession; + base:person_profession\#IDProfPerson 6695; + base:person_profession\#profession "Cartoonist"; + base:person_profession\#ref-IDPerson base:person\/LeaCar-00 . + +base:person_profession\/6700 a base:person_profession; + base:person_profession\#IDProfPerson 6700; + base:person_profession\#profession "Advertiser"; + base:person_profession\#ref-IDPerson base:person\/LeaCar-00 . + +base:person_profession\/6705 a base:person_profession; + base:person_profession\#IDProfPerson 6705; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LehLill-00 . + +base:person_profession\/6715 a base:person_profession; + base:person_profession\#IDProfPerson 6715; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LehMar-00 . + +base:person_profession\/6725 a base:person_profession; + base:person_profession\#IDProfPerson 6725; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/LehMar-00 . + +base:person_profession\/6730 a base:person_profession; + base:person_profession\#IDProfPerson 6730; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/LeiLil-00 . + +base:person_profession\/6735 a base:person_profession; + base:person_profession\#IDProfPerson 6735; + base:person_profession\#profession """Composer +"""; + base:person_profession\#ref-IDPerson base:person\/LeoFra-00 . + +base:person_profession\/6740 a base:person_profession; + base:person_profession\#IDProfPerson 6740; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/LevHer-00 . + +base:person_profession\/6745 a base:person_profession; + base:person_profession\#IDProfPerson 6745; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/LevHer-00 . + +base:person_profession\/6750 a base:person_profession; + base:person_profession\#IDProfPerson 6750; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LewAug-00 . + +base:person_profession\/6755 a base:person_profession; + base:person_profession\#IDProfPerson 6755; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/LewAug-00 . + +base:person_profession\/6760 a base:person_profession; + base:person_profession\#IDProfPerson 6760; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/LewAug-00 . + +base:person_profession\/6765 a base:person_profession; + base:person_profession\#IDProfPerson 6765; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LinJen-00 . + +base:person_profession\/6770 a base:person_profession; + base:person_profession\#IDProfPerson 6770; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LinJen-00 . + +base:person_profession\/6775 a base:person_profession; + base:person_profession\#IDProfPerson 6775; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/LinJen-00 . + +base:person_profession\/6780 a base:person_profession; + base:person_profession\#IDProfPerson 6780; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/LinPau-00 . + +base:person_profession\/6785 a base:person_profession; + base:person_profession\#IDProfPerson 6785; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/LinPau-00 . + +base:person_profession\/6790 a base:person_profession; + base:person_profession\#IDProfPerson 6790; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LisHan-00 . + +base:person_profession\/6795 a base:person_profession; + base:person_profession\#IDProfPerson 6795; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/LisHan-00 . + +base:person_profession\/6800 a base:person_profession; + base:person_profession\#IDProfPerson 6800; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/LitRob-00 . + +base:person_profession\/6805 a base:person_profession; + base:person_profession\#IDProfPerson 6805; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/LitRob-00 . + +base:person_profession\/6810 a base:person_profession; + base:person_profession\#IDProfPerson 6810; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LoeMar-00 . + +base:person_profession\/6815 a base:person_profession; + base:person_profession\#IDProfPerson 6815; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LoeMar-00 . + +base:person_profession\/6820 a base:person_profession; + base:person_profession\#IDProfPerson 6820; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/LoeMar-00 . + +base:person_profession\/6825 a base:person_profession; + base:person_profession\#IDProfPerson 6825; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/LoeMar-00 . + +base:person_profession\/6830 a base:person_profession; + base:person_profession\#IDProfPerson 6830; + base:person_profession\#profession "Kleinkuenstler"; + base:person_profession\#ref-IDPerson base:person\/LofCis-00 . + +base:person_profession\/6835 a base:person_profession; + base:person_profession\#IDProfPerson 6835; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LofCis-00 . + +base:person_profession\/6840 a base:person_profession; + base:person_profession\#IDProfPerson 6840; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/LubErn-00 . + +base:person_profession\/6845 a base:person_profession; + base:person_profession\#IDProfPerson 6845; + base:person_profession\#profession "Producer"; + base:person_profession\#ref-IDPerson base:person\/LubErn-00 . + +base:person_profession\/6850 a base:person_profession; + base:person_profession\#IDProfPerson 6850; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/LubErn-00 . + +base:person_profession\/6855 a base:person_profession; + base:person_profession\#IDProfPerson 6855; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LubErn-00 . + +base:person_profession\/6860 a base:person_profession; + base:person_profession\#IDProfPerson 6860; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LucMan-00 . + +base:person_profession\/6865 a base:person_profession; + base:person_profession\#IDProfPerson 6865; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/LucMan-00 . + +base:person_profession\/6870 a base:person_profession; + base:person_profession\#IDProfPerson 6870; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/LucMan-00 . + +base:person_profession\/6875 a base:person_profession; + base:person_profession\#IDProfPerson 6875; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/LyoPau-00 . + +base:person_profession\/6880 a base:person_profession; + base:person_profession\#IDProfPerson 6880; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/LyoPau-00 . + +base:person_profession\/6885 a base:person_profession; + base:person_profession\#IDProfPerson 6885; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/MacAug-00 . + +base:person_profession\/6890 a base:person_profession; + base:person_profession\#IDProfPerson 6890; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MacAug-00 . + +base:person_profession\/6895 a base:person_profession; + base:person_profession\#IDProfPerson 6895; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/MacAug-00 . + +base:person_profession\/6900 a base:person_profession; + base:person_profession\#IDProfPerson 6900; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/MahGus-00 . + +base:person_profession\/6905 a base:person_profession; + base:person_profession\#IDProfPerson 6905; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/MahGus-00 . + +base:person_profession\/6910 a base:person_profession; + base:person_profession\#IDProfPerson 6910; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/MahGus-00 . + +base:person_profession\/6915 a base:person_profession; + base:person_profession\#IDProfPerson 6915; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MalMar-00 . + +base:person_profession\/6925 a base:person_profession; + base:person_profession\#IDProfPerson 6925; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MamEmm-00 . + +base:person_profession\/6935 a base:person_profession; + base:person_profession\#IDProfPerson 6935; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MamEmm-00 . + +base:person_profession\/6940 a base:person_profession; + base:person_profession\#IDProfPerson 6940; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MarJul-00 . + +base:person_profession\/6945 a base:person_profession; + base:person_profession\#IDProfPerson 6945; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MarMat-00 . + +base:person_profession\/6950 a base:person_profession; + base:person_profession\#IDProfPerson 6950; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MarMat-00 . + +base:person_profession\/6955 a base:person_profession; + base:person_profession\#IDProfPerson 6955; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6960 a base:person_profession; + base:person_profession\#IDProfPerson 6960; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6965 a base:person_profession; + base:person_profession\#IDProfPerson 6965; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6970 a base:person_profession; + base:person_profession\#IDProfPerson 6970; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6975 a base:person_profession; + base:person_profession\#IDProfPerson 6975; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6980 a base:person_profession; + base:person_profession\#IDProfPerson 6980; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MarMax-00 . + +base:person_profession\/6985 a base:person_profession; + base:person_profession\#IDProfPerson 6985; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MarSal-00 . + +base:person_profession\/6990 a base:person_profession; + base:person_profession\#IDProfPerson 6990; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MarSal-00 . + +base:person_profession\/6995 a base:person_profession; + base:person_profession\#IDProfPerson 6995; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MauVic-00 . + +base:person_profession\/7000 a base:person_profession; + base:person_profession\#IDProfPerson 7000; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/MeyMor-00 . + +base:person_profession\/7005 a base:person_profession; + base:person_profession\#IDProfPerson 7005; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/MeyMor-00 . + +base:person_profession\/7010 a base:person_profession; + base:person_profession\#IDProfPerson 7010; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/MimMis-00 . + +base:person_profession\/7015 a base:person_profession; + base:person_profession\#IDProfPerson 7015; + base:person_profession\#profession "Pantomime Artist"; + base:person_profession\#ref-IDPerson base:person\/MimMis-00 . + +base:person_profession\/7020 a base:person_profession; + base:person_profession\#IDProfPerson 7020; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MimMis-00 . + +base:person_profession\/7025 a base:person_profession; + base:person_profession\#IDProfPerson 7025; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/MimMis-00 . + +base:person_profession\/7030 a base:person_profession; + base:person_profession\#IDProfPerson 7030; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/MisMim-00 . + +base:person_profession\/7035 a base:person_profession; + base:person_profession\#IDProfPerson 7035; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MisMim-00 . + +base:person_profession\/7045 a base:person_profession; + base:person_profession\#IDProfPerson 7045; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ModHel-00 . + +base:person_profession\/7050 a base:person_profession; + base:person_profession\#IDProfPerson 7050; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/MonLol-00 . + +base:person_profession\/7055 a base:person_profession; + base:person_profession\#IDProfPerson 7055; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MonLol-00 . + +base:person_profession\/7060 a base:person_profession; + base:person_profession\#IDProfPerson 7060; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/MosMin-00 . + +base:person_profession\/7065 a base:person_profession; + base:person_profession\#IDProfPerson 7065; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MosMin-00 . + +base:person_profession\/7070 a base:person_profession; + base:person_profession\#IDProfPerson 7070; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/MotFel-00 . + +base:person_profession\/7075 a base:person_profession; + base:person_profession\#IDProfPerson 7075; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/MotFel-00 . + +base:person_profession\/7080 a base:person_profession; + base:person_profession\#IDProfPerson 7080; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MotHen-00 . + +base:person_profession\/7085 a base:person_profession; + base:person_profession\#IDProfPerson 7085; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/MotHen-00 . + +base:person_profession\/7090 a base:person_profession; + base:person_profession\#IDProfPerson 7090; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/NacFra-00 . + +base:person_profession\/7095 a base:person_profession; + base:person_profession\#IDProfPerson 7095; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/NazAll-00 . + +base:person_profession\/7100 a base:person_profession; + base:person_profession\#IDProfPerson 7100; + base:person_profession\#profession "Movie Producer"; + base:person_profession\#ref-IDPerson base:person\/NazAll-00 . + +base:person_profession\/7105 a base:person_profession; + base:person_profession\#IDProfPerson 7105; + base:person_profession\#profession "Merchant"; + base:person_profession\#ref-IDPerson base:person\/NebHei-00 . + +base:person_profession\/7110 a base:person_profession; + base:person_profession\#IDProfPerson 7110; + base:person_profession\#profession "Movie Producer"; + base:person_profession\#ref-IDPerson base:person\/NebHei-00 . + +base:person_profession\/7120 a base:person_profession; + base:person_profession\#IDProfPerson 7120; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/NegPol-00 . + +base:person_profession\/7125 a base:person_profession; + base:person_profession\#IDProfPerson 7125; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/NegPol-00 . + +base:person_profession\/7130 a base:person_profession; + base:person_profession\#IDProfPerson 7130; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/NieAlb-00 . + +base:person_profession\/7135 a base:person_profession; + base:person_profession\#IDProfPerson 7135; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/NorCat-00 . + +base:person_profession\/7140 a base:person_profession; + base:person_profession\#IDProfPerson 7140; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/NorCat-00 . + +base:person_profession\/7145 a base:person_profession; + base:person_profession\#IDProfPerson 7145; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/PacReg-00 . + +base:person_profession\/7150 a base:person_profession; + base:person_profession\#IDProfPerson 7150; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/PacReg-00 . + +base:person_profession\/7155 a base:person_profession; + base:person_profession\#IDProfPerson 7155; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/PadMan-00 . + +base:person_profession\/7160 a base:person_profession; + base:person_profession\#IDProfPerson 7160; + base:person_profession\#profession "Magician"; + base:person_profession\#ref-IDPerson base:person\/PadMan-00 . + +base:person_profession\/7165 a base:person_profession; + base:person_profession\#IDProfPerson 7165; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/PadMan-00 . + +base:person_profession\/7170 a base:person_profession; + base:person_profession\#IDProfPerson 7170; + base:person_profession\#profession "Photographer"; + base:person_profession\#ref-IDPerson base:person\/PadMan-00 . + +base:person_profession\/7175 a base:person_profession; + base:person_profession\#IDProfPerson 7175; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/PanAle-00 . + +base:person_profession\/7180 a base:person_profession; + base:person_profession\#IDProfPerson 7180; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/PanAle-00 . + +base:person_profession\/7185 a base:person_profession; + base:person_profession\#IDProfPerson 7185; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/PatAde-00 . + +base:person_profession\/7190 a base:person_profession; + base:person_profession\#IDProfPerson 7190; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/PauJoh-00 . + +base:person_profession\/7195 a base:person_profession; + base:person_profession\#IDProfPerson 7195; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/PauJoh-00 . + +base:person_profession\/7200 a base:person_profession; + base:person_profession\#IDProfPerson 7200; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/PauRos-00 . + +base:person_profession\/7205 a base:person_profession; + base:person_profession\#IDProfPerson 7205; + base:person_profession\#profession "President"; + base:person_profession\#ref-IDPerson base:person\/PenRoq-00 . + +base:person_profession\/7210 a base:person_profession; + base:person_profession\#IDProfPerson 7210; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/PhiAdo-00 . + +base:person_profession\/7215 a base:person_profession; + base:person_profession\#IDProfPerson 7215; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/PhiAdo-00 . + +base:person_profession\/7220 a base:person_profession; + base:person_profession\#IDProfPerson 7220; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/PhiAdo-00 . + +base:person_profession\/7225 a base:person_profession; + base:person_profession\#IDProfPerson 7225; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/PhiAdo-00 . + +base:person_profession\/7230 a base:person_profession; + base:person_profession\#IDProfPerson 7230; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/PinAnt-00 . + +base:person_profession\/7235 a base:person_profession; + base:person_profession\#IDProfPerson 7235; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/PinAnt-00 . + +base:person_profession\/7240 a base:person_profession; + base:person_profession\#IDProfPerson 7240; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/PinAnt-00 . + +base:person_profession\/7245 a base:person_profession; + base:person_profession\#IDProfPerson 7245; + base:person_profession\#profession "Technician"; + base:person_profession\#ref-IDPerson base:person\/PinAnt-00 . + +base:person_profession\/7250 a base:person_profession; + base:person_profession\#IDProfPerson 7250; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/PinAnt-00 . + +base:person_profession\/7255 a base:person_profession; + base:person_profession\#IDProfPerson 7255; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/PolBer-00 . + +base:person_profession\/7260 a base:person_profession; + base:person_profession\#IDProfPerson 7260; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/PolBer-00 . + +base:person_profession\/7265 a base:person_profession; + base:person_profession\#IDProfPerson 7265; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/PonLor-00 . + +base:person_profession\/7270 a base:person_profession; + base:person_profession\#IDProfPerson 7270; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/PonLor-00 . + +base:person_profession\/7275 a base:person_profession; + base:person_profession\#IDProfPerson 7275; + base:person_profession\#profession "Priest"; + base:person_profession\#ref-IDPerson base:person\/PonLor-00 . + +base:person_profession\/7280 a base:person_profession; + base:person_profession\#IDProfPerson 7280; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/PynMar-00 . + +base:person_profession\/7285 a base:person_profession; + base:person_profession\#IDProfPerson 7285; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/PynMar-00 . + +base:person_profession\/7290 a base:person_profession; + base:person_profession\#IDProfPerson 7290; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/PynMar-00 . + +base:person_profession\/7295 a base:person_profession; + base:person_profession\#IDProfPerson 7295; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/PynMar-00 . + +base:person_profession\/7300 a base:person_profession; + base:person_profession\#IDProfPerson 7300; + base:person_profession\#profession "Circus Performer"; + base:person_profession\#ref-IDPerson base:person\/RafPab-00 . + +base:person_profession\/7305 a base:person_profession; + base:person_profession\#IDProfPerson 7305; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/RafPab-00 . + +base:person_profession\/7310 a base:person_profession; + base:person_profession\#IDProfPerson 7310; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/RafPab-00 . + +base:person_profession\/7315 a base:person_profession; + base:person_profession\#IDProfPerson 7315; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/RafPab-00 . + +base:person_profession\/7320 a base:person_profession; + base:person_profession\#IDProfPerson 7320; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/RehAda-00 . + +base:person_profession\/7325 a base:person_profession; + base:person_profession\#IDProfPerson 7325; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ReiCat-00 . + +base:person_profession\/7330 a base:person_profession; + base:person_profession\#IDProfPerson 7330; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ReiMax-00 . + +base:person_profession\/7335 a base:person_profession; + base:person_profession\#IDProfPerson 7335; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ReiMax-00 . + +base:person_profession\/7340 a base:person_profession; + base:person_profession\#IDProfPerson 7340; + base:person_profession\#profession "Intendant"; + base:person_profession\#ref-IDPerson base:person\/ReiMax-00 . + +base:person_profession\/7345 a base:person_profession; + base:person_profession\#IDProfPerson 7345; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/ReiMax-00 . + +base:person_profession\/7350 a base:person_profession; + base:person_profession\#IDProfPerson 7350; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/ReiMax-00 . + +base:person_profession\/7355 a base:person_profession; + base:person_profession\#IDProfPerson 7355; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/RemJea-00 . + +base:person_profession\/7360 a base:person_profession; + base:person_profession\#IDProfPerson 7360; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/RemJea-00 . + +base:person_profession\/7365 a base:person_profession; + base:person_profession\#IDProfPerson 7365; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/RemJea-00 . + +base:person_profession\/7370 a base:person_profession; + base:person_profession\#IDProfPerson 7370; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ResEdo-00 . + +base:person_profession\/7375 a base:person_profession; + base:person_profession\#IDProfPerson 7375; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ResJos-00 . + +base:person_profession\/7380 a base:person_profession; + base:person_profession\#IDProfPerson 7380; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/RicHan-00 . + +base:person_profession\/7385 a base:person_profession; + base:person_profession\#IDProfPerson 7385; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/RicHar-00 . + +base:person_profession\/7390 a base:person_profession; + base:person_profession\#IDProfPerson 7390; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/RicHar-00 . + +base:person_profession\/7395 a base:person_profession; + base:person_profession\#IDProfPerson 7395; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/RobKur-00 . + +base:person_profession\/7400 a base:person_profession; + base:person_profession\#IDProfPerson 7400; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/RosCa-00 . + +base:person_profession\/7405 a base:person_profession; + base:person_profession\#IDProfPerson 7405; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/RusAnn-00 . + +base:person_profession\/7410 a base:person_profession; + base:person_profession\#IDProfPerson 7410; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/RusAnn-00 . + +base:person_profession\/7415 a base:person_profession; + base:person_profession\#IDProfPerson 7415; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SamMar-00 . + +base:person_profession\/7420 a base:person_profession; + base:person_profession\#IDProfPerson 7420; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/SanJus-00 . + +base:person_profession\/7425 a base:person_profession; + base:person_profession\#IDProfPerson 7425; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/SanJus-00 . + +base:person_profession\/7430 a base:person_profession; + base:person_profession\#IDProfPerson 7430; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/SanJus-00 . + +base:person_profession\/7435 a base:person_profession; + base:person_profession\#IDProfPerson 7435; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/SavZar-00 . + +base:person_profession\/7440 a base:person_profession; + base:person_profession\#IDProfPerson 7440; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/SavZar-00 . + +base:person_profession\/7445 a base:person_profession; + base:person_profession\#IDProfPerson 7445; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchCle-00 . + +base:person_profession\/7450 a base:person_profession; + base:person_profession\#IDProfPerson 7450; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchCle-00 . + +base:person_profession\/7455 a base:person_profession; + base:person_profession\#IDProfPerson 7455; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchErn-00 . + +base:person_profession\/7465 a base:person_profession; + base:person_profession\#IDProfPerson 7465; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchFra-00 . + +base:person_profession\/7470 a base:person_profession; + base:person_profession\#IDProfPerson 7470; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchMal-00 . + +base:person_profession\/7475 a base:person_profession; + base:person_profession\#IDProfPerson 7475; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchMal-00 . + +base:person_profession\/7480 a base:person_profession; + base:person_profession\#IDProfPerson 7480; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/SchMal-00 . + +base:person_profession\/7485 a base:person_profession; + base:person_profession\#IDProfPerson 7485; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchWil-00 . + +base:person_profession\/7490 a base:person_profession; + base:person_profession\#IDProfPerson 7490; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SchWil-00 . + +base:person_profession\/7495 a base:person_profession; + base:person_profession\#IDProfPerson 7495; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SeeMar-00 . + +base:person_profession\/7500 a base:person_profession; + base:person_profession\#IDProfPerson 7500; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SeeMar-00 . + +base:person_profession\/7505 a base:person_profession; + base:person_profession\#IDProfPerson 7505; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/SeeMar-00 . + +base:person_profession\/7515 a base:person_profession; + base:person_profession\#IDProfPerson 7515; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/SeiAnt-00 . + +base:person_profession\/7520 a base:person_profession; + base:person_profession\#IDProfPerson 7520; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/SemMar-00 . + +base:person_profession\/7525 a base:person_profession; + base:person_profession\#IDProfPerson 7525; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/SemMar-00 . + +base:person_profession\/7530 a base:person_profession; + base:person_profession\#IDProfPerson 7530; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/SemMar-00 . + +base:person_profession\/7535 a base:person_profession; + base:person_profession\#IDProfPerson 7535; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/SimLuc-00 . + +base:person_profession\/7540 a base:person_profession; + base:person_profession\#IDProfPerson 7540; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/SimLuc-00 . + +base:person_profession\/7545 a base:person_profession; + base:person_profession\#IDProfPerson 7545; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/SimLuc-00 . + +base:person_profession\/7550 a base:person_profession; + base:person_profession\#IDProfPerson 7550; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/SimLuc-00 . + +base:person_profession\/7555 a base:person_profession; + base:person_profession\#IDProfPerson 7555; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/SomAgn-00 . + +base:person_profession\/7560 a base:person_profession; + base:person_profession\#IDProfPerson 7560; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/StrAle-00 . + +base:person_profession\/7565 a base:person_profession; + base:person_profession\#IDProfPerson 7565; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/StrAle-00 . + +base:person_profession\/7570 a base:person_profession; + base:person_profession\#IDProfPerson 7570; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/StrEdg-00 . + +base:person_profession\/7575 a base:person_profession; + base:person_profession\#IDProfPerson 7575; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/StrEdg-00 . + +base:person_profession\/7580 a base:person_profession; + base:person_profession\#IDProfPerson 7580; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/StrFer-00 . + +base:person_profession\/7585 a base:person_profession; + base:person_profession\#IDProfPerson 7585; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7590 a base:person_profession; + base:person_profession\#IDProfPerson 7590; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7595 a base:person_profession; + base:person_profession\#IDProfPerson 7595; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7600 a base:person_profession; + base:person_profession\#IDProfPerson 7600; + base:person_profession\#profession "Reciter"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7605 a base:person_profession; + base:person_profession\#IDProfPerson 7605; + base:person_profession\#profession "Farmer"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7610 a base:person_profession; + base:person_profession\#IDProfPerson 7610; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/StrFri-00 . + +base:person_profession\/7615 a base:person_profession; + base:person_profession\#IDProfPerson 7615; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/StrIrm-00 . + +base:person_profession\/7620 a base:person_profession; + base:person_profession\#IDProfPerson 7620; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/StrIrm-00 . + +base:person_profession\/7625 a base:person_profession; + base:person_profession\#IDProfPerson 7625; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/StrIrm-00 . + +base:person_profession\/7630 a base:person_profession; + base:person_profession\#IDProfPerson 7630; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/StrLud-00 . + +base:person_profession\/7635 a base:person_profession; + base:person_profession\#IDProfPerson 7635; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/StrMau-00 . + +base:person_profession\/7640 a base:person_profession; + base:person_profession\#IDProfPerson 7640; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/StrMau-00 . + +base:person_profession\/7645 a base:person_profession; + base:person_profession\#IDProfPerson 7645; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/StrMau-00 . + +base:person_profession\/7650 a base:person_profession; + base:person_profession\#IDProfPerson 7650; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/StrMax-00 . + +base:person_profession\/7655 a base:person_profession; + base:person_profession\#IDProfPerson 7655; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/StrMax-00 . + +base:person_profession\/7660 a base:person_profession; + base:person_profession\#IDProfPerson 7660; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/StrMax-00 . + +base:person_profession\/7665 a base:person_profession; + base:person_profession\#IDProfPerson 7665; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/StrMax-00 . + +base:person_profession\/7670 a base:person_profession; + base:person_profession\#IDProfPerson 7670; + base:person_profession\#profession "Choreographer"; + base:person_profession\#ref-IDPerson base:person\/TagFil-00 . + +base:person_profession\/7675 a base:person_profession; + base:person_profession\#IDProfPerson 7675; + base:person_profession\#profession "Ballet master"; + base:person_profession\#ref-IDPerson base:person\/TagFil-00 . + +base:person_profession\/7680 a base:person_profession; + base:person_profession\#IDProfPerson 7680; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/TagFil-00 . + +base:person_profession\/7685 a base:person_profession; + base:person_profession\#IDProfPerson 7685; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/TagMar-00 . + +base:person_profession\/7690 a base:person_profession; + base:person_profession\#IDProfPerson 7690; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/TagMar-01 . + +base:person_profession\/7695 a base:person_profession; + base:person_profession\#IDProfPerson 7695; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/TagPau-00 . + +base:person_profession\/7700 a base:person_profession; + base:person_profession\#IDProfPerson 7700; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/ThoFra-00 . + +base:person_profession\/7705 a base:person_profession; + base:person_profession\#IDProfPerson 7705; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ThoFra-00 . + +base:person_profession\/7710 a base:person_profession; + base:person_profession\#IDProfPerson 7710; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/TicJos-00 . + +base:person_profession\/7715 a base:person_profession; + base:person_profession\#IDProfPerson 7715; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/TomMar-00 . + +base:person_profession\/7720 a base:person_profession; + base:person_profession\#IDProfPerson 7720; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/TucSop-00 . + +base:person_profession\/7725 a base:person_profession; + base:person_profession\#IDProfPerson 7725; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/TucSop-00 . + +base:person_profession\/7730 a base:person_profession; + base:person_profession\#IDProfPerson 7730; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/TurYit-00 . + +base:person_profession\/7735 a base:person_profession; + base:person_profession\#IDProfPerson 7735; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/VeiCon-00 . + +base:person_profession\/7740 a base:person_profession; + base:person_profession\#IDProfPerson 7740; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/VelMar-00 . + +base:person_profession\/7745 a base:person_profession; + base:person_profession\#IDProfPerson 7745; + base:person_profession\#profession "Dancer"; + base:person_profession\#ref-IDPerson base:person\/VelMar-00 . + +base:person_profession\/7750 a base:person_profession; + base:person_profession\#IDProfPerson 7750; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/VelMar-00 . + +base:person_profession\/7755 a base:person_profession; + base:person_profession\#IDProfPerson 7755; + base:person_profession\#profession "English Teacher"; + base:person_profession\#ref-IDPerson base:person\/VelMar-00 . + +base:person_profession\/7760 a base:person_profession; + base:person_profession\#IDProfPerson 7760; + base:person_profession\#profession "Translator"; + base:person_profession\#ref-IDPerson base:person\/VelMar-00 . + +base:person_profession\/7765 a base:person_profession; + base:person_profession\#IDProfPerson 7765; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/VelMel-00 . + +base:person_profession\/7770 a base:person_profession; + base:person_profession\#IDProfPerson 7770; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/VelMel-00 . + +base:person_profession\/7775 a base:person_profession; + base:person_profession\#IDProfPerson 7775; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ViaPau-00 . + +base:person_profession\/7785 a base:person_profession; + base:person_profession\#IDProfPerson 7785; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/ViaPau-00 . + +base:person_profession\/7790 a base:person_profession; + base:person_profession\#IDProfPerson 7790; + base:person_profession\#profession "Musician"; + base:person_profession\#ref-IDPerson base:person\/ViaPau-00 . + +base:person_profession\/7795 a base:person_profession; + base:person_profession\#Eprofession base:Profession-Teacher\%28Theatrerelated\%29; + base:person_profession\#IDProfPerson 7795; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/ViaPau-00 . + +base:person_profession\/7800 a base:person_profession; + base:person_profession\#IDProfPerson 7800; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/ViaPau-00 . + +base:person_profession\/7805 a base:person_profession; + base:person_profession\#IDProfPerson 7805; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/VilRos-00 . + +base:person_profession\/7810 a base:person_profession; + base:person_profession\#IDProfPerson 7810; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/VilRos-00 . + +base:person_profession\/7815 a base:person_profession; + base:person_profession\#IDProfPerson 7815; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/WagRic-00 . + +base:person_profession\/7820 a base:person_profession; + base:person_profession\#IDProfPerson 7820; + base:person_profession\#profession "Music Director"; + base:person_profession\#ref-IDPerson base:person\/WagRic-00 . + +base:person_profession\/7825 a base:person_profession; + base:person_profession\#IDProfPerson 7825; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/WagRic-00 . + +base:person_profession\/7830 a base:person_profession; + base:person_profession\#IDProfPerson 7830; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/WeeMar-00 . + +base:person_profession\/7835 a base:person_profession; + base:person_profession\#IDProfPerson 7835; + base:person_profession\#profession "Rabbi"; + base:person_profession\#ref-IDPerson base:person\/WeiMay-00 . + +base:person_profession\/7840 a base:person_profession; + base:person_profession\#IDProfPerson 7840; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WhiBla-00 . + +base:person_profession\/7845 a base:person_profession; + base:person_profession\#IDProfPerson 7845; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/WhiLeo-00 . + +base:person_profession\/7850 a base:person_profession; + base:person_profession\#IDProfPerson 7850; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WhiLeo-00 . + +base:person_profession\/7855 a base:person_profession; + base:person_profession\#IDProfPerson 7855; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/WhiTho-00 . + +base:person_profession\/7860 a base:person_profession; + base:person_profession\#IDProfPerson 7860; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/WilAur-00 . + +base:person_profession\/7865 a base:person_profession; + base:person_profession\#IDProfPerson 7865; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/WilAur-00 . + +base:person_profession\/7870 a base:person_profession; + base:person_profession\#IDProfPerson 7870; + base:person_profession\#profession "Composer"; + base:person_profession\#ref-IDPerson base:person\/ZemAle-00 . + +base:person_profession\/7889 a base:person_profession; + base:person_profession\#IDProfPerson 7889; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/AreEnr-00 . + +base:person_profession\/7894 a base:person_profession; + base:person_profession\#IDProfPerson 7894; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AreEnr-00 . + +base:person_profession\/7899 a base:person_profession; + base:person_profession\#IDProfPerson 7899; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/AreEnr-00 . + +base:person_profession\/7904 a base:person_profession; + base:person_profession\#IDProfPerson 7904; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/BarMar-00 . + +base:person_profession\/7909 a base:person_profession; + base:person_profession\#IDProfPerson 7909; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/BarMar-00 . + +base:person_profession\/7914 a base:person_profession; + base:person_profession\#IDProfPerson 7914; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/CarRit-00 . + +base:person_profession\/7919 a base:person_profession; + base:person_profession\#IDProfPerson 7919; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/CasJul-00 . + +base:person_profession\/7939 a base:person_profession; + base:person_profession\#IDProfPerson 7939; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/ConSan-00 . + +base:person_profession\/7944 a base:person_profession; + base:person_profession\#IDProfPerson 7944; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/ConSan-00 . + +base:person_profession\/7949 a base:person_profession; + base:person_profession\#IDProfPerson 7949; + base:person_profession\#profession "Manager"; + base:person_profession\#ref-IDPerson base:person\/ConSan-00 . + +base:person_profession\/7954 a base:person_profession; + base:person_profession\#IDProfPerson 7954; + base:person_profession\#profession "Agent"; + base:person_profession\#ref-IDPerson base:person\/ConSan-00 . + +base:person_profession\/7959 a base:person_profession; + base:person_profession\#IDProfPerson 7959; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/DarFau-00 . + +base:person_profession\/7964 a base:person_profession; + base:person_profession\#IDProfPerson 7964; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/DarFau-00 . + +base:person_profession\/7969 a base:person_profession; + base:person_profession\#IDProfPerson 7969; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/DarFau-00 . + +base:person_profession\/7974 a base:person_profession; + base:person_profession\#IDProfPerson 7974; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DarFau-00 . + +base:person_profession\/7979 a base:person_profession; + base:person_profession\#IDProfPerson 7979; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/DenVic-00 . + +base:person_profession\/7984 a base:person_profession; + base:person_profession\#IDProfPerson 7984; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/DenVic-00 . + +base:person_profession\/7989 a base:person_profession; + base:person_profession\#IDProfPerson 7989; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DenVic-00 . + +base:person_profession\/7994 a base:person_profession; + base:person_profession\#IDProfPerson 7994; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DegEus-00 . + +base:person_profession\/7999 a base:person_profession; + base:person_profession\#IDProfPerson 7999; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/DegEus-00 . + +base:person_profession\/8004 a base:person_profession; + base:person_profession\#IDProfPerson 8004; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/DegEus-00 . + +base:person_profession\/8019 a base:person_profession; + base:person_profession\#IDProfPerson 8019; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/DelNic-00 . + +base:person_profession\/8034 a base:person_profession; + base:person_profession\#IDProfPerson 8034; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/DeaPie-00 . + +base:person_profession\/8039 a base:person_profession; + base:person_profession\#IDProfPerson 8039; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/DelFra-00 . + +base:person_profession\/8044 a base:person_profession; + base:person_profession\#IDProfPerson 8044; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/NovAlb-00 . + +base:person_profession\/8049 a base:person_profession; + base:person_profession\#IDProfPerson 8049; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/NovAlb-00 . + +base:person_profession\/8054 a base:person_profession; + base:person_profession\#IDProfPerson 8054; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/NovAlb-00 . + +base:person_profession\/8069 a base:person_profession; + base:person_profession\#IDProfPerson 8069; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/MirCar-00 . + +base:person_profession\/8074 a base:person_profession; + base:person_profession\#IDProfPerson 8074; + base:person_profession\#profession "Actor"; + base:person_profession\#ref-IDPerson base:person\/MirCar-00 . + +base:person_profession\/8089 a base:person_profession; + base:person_profession\#IDProfPerson 8089; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/ResFre-00 . + +base:person_profession\/8094 a base:person_profession; + base:person_profession\#IDProfPerson 8094; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/rescar-00 . + +base:person_profession\/8099 a base:person_profession; + base:person_profession\#IDProfPerson 8099; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/rescar-00 . + +base:person_profession\/8103 a base:person_profession; + base:person_profession\#IDProfPerson 8103; + base:person_profession\#profession "Singer"; + base:person_profession\#ref-IDPerson base:person\/resjoh-00 . + +base:person_profession\/8104 a base:person_profession; + base:person_profession\#IDProfPerson 8104; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/resjoh-00 . + +base:person_profession\/8109 a base:person_profession; + base:person_profession\#IDProfPerson 8109; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/HelJac-00 . + +base:person_profession\/8114 a base:person_profession; + base:person_profession\#IDProfPerson 8114; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/AloEnz-00 . + +base:person_profession\/8119 a base:person_profession; + base:person_profession\#IDProfPerson 8119; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/AloEnz-00 . + +base:person_profession\/8124 a base:person_profession; + base:person_profession\#IDProfPerson 8124; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/AloEnz-00 . + +base:person_profession\/8134 a base:person_profession; + base:person_profession\#IDProfPerson 8134; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/SimLuc-00 . + +base:person_profession\/8139 a base:person_profession; + base:person_profession\#IDProfPerson 8139; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/HerLui-00 . + +base:person_profession\/8144 a base:person_profession; + base:person_profession\#IDProfPerson 8144; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/HerLui-00 . + +base:person_profession\/8154 a base:person_profession; + base:person_profession\#IDProfPerson 8154; + base:person_profession\#profession "Stage Designer"; + base:person_profession\#ref-IDPerson base:person\/EusArt-00 . + +base:person_profession\/8169 a base:person_profession; + base:person_profession\#IDProfPerson 8169; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/BieEmi-00 . + +base:person_profession\/8174 a base:person_profession; + base:person_profession\#IDProfPerson 8174; + base:person_profession\#profession "Founder"; + base:person_profession\#ref-IDPerson base:person\/BieEmi-00 . + +base:person_profession\/8184 a base:person_profession; + base:person_profession\#IDProfPerson 8184; + base:person_profession\#profession "Author"; + base:person_profession\#ref-IDPerson base:person\/AmaLui-00 . + +base:person_profession\/8189 a base:person_profession; + base:person_profession\#IDProfPerson 8189; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/AmaLui-00 . + +base:person_profession\/8194 a base:person_profession; + base:person_profession\#IDProfPerson 8194; + base:person_profession\#profession "Impresario"; + base:person_profession\#ref-IDPerson base:person\/AmaLui-00 . + +base:person_profession\/8199 a base:person_profession; + base:person_profession\#IDProfPerson 8199; + base:person_profession\#profession "Teacher (Theatre related)"; + base:person_profession\#ref-IDPerson base:person\/GuaAlf-00 . + +base:person_profession\/8204 a base:person_profession; + base:person_profession\#IDProfPerson 8204; + base:person_profession\#profession "Journalist"; + base:person_profession\#ref-IDPerson base:person\/GuaAlf-00 . + +base:person_profession\/8209 a base:person_profession; + base:person_profession\#IDProfPerson 8209; + base:person_profession\#profession "Director"; + base:person_profession\#ref-IDPerson base:person\/GuaAlf-00 . + +base:personnames\/1 a base:personnames; + base:personnames\#IDPersonname 1; + base:personnames\#personName "Tsipoyre"; + base:personnames\#personSurName "Abelman"; + base:personnames\#ref-IDPerson base:person\/AbeTsi-00 . + +base:personnames\/10 a base:personnames; + base:personnames\#IDPersonname 10; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "first time used in Egypt"; + base:personnames\#personName "Ada"; + base:personnames\#personSurName "Nelson"; + base:personnames\#ref-IDPerson base:person\/ArrBla-00 . + +base:personnames\/100 a base:personnames; + base:personnames\#IDPersonname 100; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ellen"; + base:personnames\#personSurName "Nordgren"; + base:personnames\#ref-IDPerson base:person\/GulEll-00 . + +base:personnames\/1009 a base:personnames; + base:personnames\#IDPersonname 1009; + base:personnames\#ref-IDPerson base:person\/StrFri-00 . + +base:personnames\/101 a base:personnames; + base:personnames\#IDPersonname 101; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Natalie"; + base:personnames\#personSurName "Hänisch"; + base:personnames\#ref-IDPerson base:person\/HaeNat-00 . + +base:personnames\/1014 a base:personnames; + base:personnames\#IDPersonname 1014; + base:personnames\#ref-IDPerson base:person\/StrFri-00 . + +base:personnames\/1019 a base:personnames; + base:personnames\#IDPersonname 1019; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Y. Akvila"; + base:personnames\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:personnames\/102 a base:personnames; + base:personnames\#IDPersonname 102; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName """Uta Thyra +"""; + base:personnames\#personSurName "Hagen"; + base:personnames\#ref-IDPerson base:person\/HagUta-00 . + +base:personnames\/1024 a base:personnames; + base:personnames\#IDPersonname 1024; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Y. Nshr"; + base:personnames\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:personnames\/1029 a base:personnames; + base:personnames\#DateStart_Min "1894-09-05"^^xsd:date; + base:personnames\#IDPersonname 1029; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Joan"; + base:personnames\#personSurName "Comorera i Soler"; + base:personnames\#ref-IDPerson base:person\/CamJua-00 . + +base:personnames\/103 a base:personnames; + base:personnames\#IDPersonname 103; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Helene Anna "; + base:personnames\#personSurName "Held"; + base:personnames\#ref-IDPerson base:person\/HelAnn-00 . + +base:personnames\/1034 a base:personnames; + base:personnames\#DateStart_Min "1894-09-05"^^xsd:date; + base:personnames\#IDPersonname 1034; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Joan"; + base:personnames\#personSurName "Comorera"; + base:personnames\#ref-IDPerson base:person\/CamJua-00 . + +base:personnames\/1039 a base:personnames; + base:personnames\#IDPersonname 1039; + base:personnames\#Nametype base:Nametype-Migration-related; + base:personnames\#personName "Juan"; + base:personnames\#personSurName "Comorera"; + base:personnames\#ref-IDPerson base:person\/CamJua-00 . + +base:personnames\/104 a base:personnames; + base:personnames\#IDPersonname 104; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Frida Elisabeth"; + base:personnames\#personSurName "Hempel"; + base:personnames\#ref-IDPerson base:person\/HemFri-00 . + +base:personnames\/1044 a base:personnames; + base:personnames\#DateStart_Min "1951-01-01"^^xsd:date; + base:personnames\#IDPersonname 1044; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Josep"; + base:personnames\#personSurName "Planas"; + base:personnames\#ref-IDPerson base:person\/CamJua-00 . + +base:personnames\/1049 a base:personnames; + base:personnames\#DateEnd_Max "1905-06-05"^^xsd:date; + base:personnames\#DateEnd_Min "1905-06-05"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1847"; + base:personnames\#DateStart_Max "1847-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1847-01-01"^^xsd:date; + base:personnames\#IDPersonname 1049; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Enrique"; + base:personnames\#personSurName "Frexas de Sabater"; + base:personnames\#ref-IDPerson base:person\/FreEnr-00 . + +base:personnames\/105 a base:personnames; + base:personnames\#IDPersonname 105; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "des Kaisers Lerche"; + base:personnames\#personSurName ""; + base:personnames\#ref-IDPerson base:person\/HemFri-00 . + +base:personnames\/1054 a base:personnames; + base:personnames\#IDPersonname 1054; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Michele"; + base:personnames\#personSurName "Gea"; + base:personnames\#ref-IDPerson base:person\/GeaMig-00 . + +base:personnames\/1059 a base:personnames; + base:personnames\#IDPersonname 1059; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Miguelito"; + base:personnames\#ref-IDPerson base:person\/GeaMig-00 . + +base:personnames\/1064 a base:personnames; + base:personnames\#IDPersonname 1064; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "El hombre de la calle"; + base:personnames\#ref-IDPerson base:person\/GiuRob-00 . + +base:personnames\/1069 a base:personnames; + base:personnames\#IDPersonname 1069; + base:personnames\#personName "Nahuinca"; + base:personnames\#ref-IDPerson base:person\/GiuRob-00 . + +base:personnames\/107 a base:personnames; + base:personnames\#DateStart_Fuzzy "1875"; + base:personnames\#DateStart_Max "1875-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1875-01-01"^^xsd:date; + base:personnames\#IDPersonname 107; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Mr. Alexander"; + base:personnames\#ref-IDPerson base:person\/HerAde-00 . + +base:personnames\/1074 a base:personnames; + base:personnames\#IDPersonname 1074; + base:personnames\#personName "Roberto Eynhardt"; + base:personnames\#ref-IDPerson base:person\/GiuRob-00 . + +base:personnames\/1079 a base:personnames; + base:personnames\#DateEnd_Max "1961-09-17"^^xsd:date; + base:personnames\#DateEnd_Min "1961-09-17"^^xsd:date; + base:personnames\#IDPersonname 1079; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Miguel"; + base:personnames\#personSurName "Gómez"; + base:personnames\#ref-IDPerson base:person\/BaoMig-00 . + +base:personnames\/108 a base:personnames; + base:personnames\#DateStart_Fuzzy "Probably 1869"; + base:personnames\#DateStart_Max "1869-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1869-01-01"^^xsd:date; + base:personnames\#IDPersonname 108; + base:personnames\#personName "Addie"; + base:personnames\#personSurName "Herrmann"; + base:personnames\#ref-IDPerson base:person\/HerAde-00 . + +base:personnames\/1084 a base:personnames; + base:personnames\#DateStart_Max "1848-02-15"^^xsd:date; + base:personnames\#DateStart_Min "1848-02-15"^^xsd:date; + base:personnames\#IDPersonname 1084; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "François"; + base:personnames\#personSurName "Groussac"; + base:personnames\#ref-IDPerson base:person\/GroPau-00 . + +base:personnames\/1089 a base:personnames; + base:personnames\#DateEnd_Max "1929-06-27"^^xsd:date; + base:personnames\#DateEnd_Min "1929-06-27"^^xsd:date; + base:personnames\#IDPersonname 1089; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Paul"; + base:personnames\#personSurName "Groussac"; + base:personnames\#ref-IDPerson base:person\/GroPau-00 . + +base:personnames\/109 a base:personnames; + base:personnames\#DateEnd_Max "1875-03-27"^^xsd:date; + base:personnames\#DateStart_Min "1853-08-11"^^xsd:date; + base:personnames\#IDPersonname 109; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Adele Celine"; + base:personnames\#personSurName "Scarsez"; + base:personnames\#ref-IDPerson base:person\/HerAde-00 . + +base:personnames\/1090 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1979"; + base:personnames\#DateEnd_Max "1979-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1979-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1908"; + base:personnames\#DateStart_Max "1908-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1908-01-01"^^xsd:date; + base:personnames\#IDPersonname 1090; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Manuel"; + base:personnames\#personSurName "Domínguez Santamaría"; + base:personnames\#ref-IDPerson base:person\/SanMan-00 . + +base:personnames\/1095 a base:personnames; + base:personnames\#IDPersonname 1095; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Andzshei"; + base:personnames\#personSurName "Mareḳ"; + base:personnames\#ref-IDPerson base:person\/ArnMar-1177 . + +base:personnames\/1098 a base:personnames; + base:personnames\#IDPersonname 1098; + base:personnames\#personName "Abraham"; + base:personnames\#personSurName "Axelrad"; + base:personnames\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:personnames\/11 a base:personnames; + base:personnames\#IDPersonname 11; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Ida"; + base:personnames\#personSurName "Liebhardt"; + base:personnames\#ref-IDPerson base:person\/BaiIda-00 . + +base:personnames\/110 a base:personnames; + base:personnames\#IDPersonname 110; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Adele Celine \"Adelaide\""; + base:personnames\#personSurName "Scarsez"; + base:personnames\#ref-IDPerson base:person\/HerAde-00 . + +base:personnames\/1103 a base:personnames; + base:personnames\#IDPersonname 1103; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Rukhl"; + base:personnames\#personSurName "Margules"; + base:personnames\#ref-IDPerson base:person\/AxeRuk-1207 . + +base:personnames\/1108 a base:personnames; + base:personnames\#IDPersonname 1108; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment "During his time by Gradner"; + base:personnames\#personName "B."; + base:personnames\#personSurName "Berkovich"; + base:personnames\#ref-IDPerson base:person\/BecBer-1238 . + +base:personnames\/111 a base:personnames; + base:personnames\#IDPersonname 111; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "after married the musicial Robert Stoepel"; + base:personnames\#personName "Matilda"; + base:personnames\#personSurName "Agnes Heron Stoepel"; + base:personnames\#ref-IDPerson base:person\/HerAgn-00 . + +base:personnames\/1110 a base:personnames; + base:personnames\#IDPersonname 1110; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Isidor"; + base:personnames\#personSurName "Bodanskie"; + base:personnames\#ref-IDPerson base:person\/BodRob-00 . + +base:personnames\/1115 a base:personnames; + base:personnames\#IDPersonname 1115; + base:personnames\#ref-IDPerson base:person\/BodRob-00 . + +base:personnames\/112 a base:personnames; + base:personnames\#IDPersonname 112; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Herrmann the Great"; + base:personnames\#ref-IDPerson base:person\/HerAle-00 . + +base:personnames\/1120 a base:personnames; + base:personnames\#IDPersonname 1120; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria Teresa Rebecca"; + base:personnames\#personSurName "Brambilla"; + base:personnames\#ref-IDPerson base:person\/BraMar-02 . + +base:personnames\/1125 a base:personnames; + base:personnames\#IDPersonname 1125; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Maria Teresa Rebecca"; + base:personnames\#personSurName "Furga-Gorini"; + base:personnames\#ref-IDPerson base:person\/BraMar-02 . + +base:personnames\/113 a base:personnames; + base:personnames\#IDPersonname 113; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Arricha"; + base:personnames\#personSurName "de Tolvens"; + base:personnames\#ref-IDPerson base:person\/HolVic-00 . + +base:personnames\/1130 a base:personnames; + base:personnames\#IDPersonname 1130; + base:personnames\#ref-IDPerson base:person\/LinWil-00 . + +base:personnames\/1135 a base:personnames; + base:personnames\#IDPersonname 1135; + base:personnames\#ref-IDPerson base:person\/LinWil-00 . + +base:personnames\/114 a base:personnames; + base:personnames\#DateStart_Max "1926-10-31"^^xsd:date; + base:personnames\#DateStart_Min "1874-03-24"^^xsd:date; + base:personnames\#IDPersonname 114; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Erich"; + base:personnames\#personSurName "Weisz"; + base:personnames\#ref-IDPerson base:person\/HouHar-00 . + +base:personnames\/1140 a base:personnames; + base:personnames\#IDPersonname 1140; + base:personnames\#ref-IDPerson base:person\/LinWil-00 . + +base:personnames\/1145 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1980-05-14"; + base:personnames\#DateEnd_Max "1980-05-14"^^xsd:date; + base:personnames\#DateEnd_Min "1980-05-14"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1887-02-20"; + base:personnames\#DateStart_Max "1887-02-20"^^xsd:date; + base:personnames\#DateStart_Min "1887-02-20"^^xsd:date; + base:personnames\#IDPersonname 1145; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Carl Anton Charles"; + base:personnames\#personSurName "Ebert"; + base:personnames\#ref-IDPerson base:person\/EbeCar-00 . + +base:personnames\/115 a base:personnames; + base:personnames\#DateEnd_Min "1926-10-31"^^xsd:date; + base:personnames\#IDPersonname 115; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Erik"; + base:personnames\#personSurName "Weiss"; + base:personnames\#ref-IDPerson base:person\/HouHar-00 . + +base:personnames\/1150 a base:personnames; + base:personnames\#IDPersonname 1150; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Carl"; + base:personnames\#personSurName "Ebert"; + base:personnames\#ref-IDPerson base:person\/EbeCar-00 . + +base:personnames\/1155 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1943-10-23"; + base:personnames\#DateEnd_Max "1943-10-31"^^xsd:date; + base:personnames\#DateEnd_Min "1943-10-23"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1858-01-31"; + base:personnames\#DateStart_Max "1858-01-31"^^xsd:date; + base:personnames\#DateStart_Min "1858-01-31"^^xsd:date; + base:personnames\#IDPersonname 1155; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Leonard Andre"; + base:personnames\#personSurName "Antoine"; + base:personnames\#ref-IDPerson base:person\/AntAnd-00 . + +base:personnames\/116 a base:personnames; + base:personnames\#DateEnd_Min "1926-10-31"^^xsd:date; + base:personnames\#IDPersonname 116; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Giovanni"; + base:personnames\#personSurName "Deadota"; + base:personnames\#ref-IDPerson base:person\/HouHar-00 . + +base:personnames\/1160 a base:personnames; + base:personnames\#IDPersonname 1160; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Andre"; + base:personnames\#personSurName "Antoine"; + base:personnames\#ref-IDPerson base:person\/AntAnd-00 . + +base:personnames\/117 a base:personnames; + base:personnames\#IDPersonname 117; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Marie Sophie Rosa Caroline Elsa "; + base:personnames\#personSurName "Jäger "; + base:personnames\#ref-IDPerson base:person\/JagEls-00 . + +base:personnames\/118 a base:personnames; + base:personnames\#IDPersonname 118; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Theodor Friedrich Emil"; + base:personnames\#personSurName "Janenz"; + base:personnames\#ref-IDPerson base:person\/JanEmi-00 . + +base:personnames\/119 a base:personnames; + base:personnames\#IDPersonname 119; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Francesca Romana Magdalena"; + base:personnames\#personSurName "Janauschek"; + base:personnames\#ref-IDPerson base:person\/JanFan-00 . + +base:personnames\/12 a base:personnames; + base:personnames\#IDPersonname 12; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Ida"; + base:personnames\#personSurName "Liebhardt-Baier"; + base:personnames\#ref-IDPerson base:person\/BaiIda-00 . + +base:personnames\/120 a base:personnames; + base:personnames\#DateEnd_Max "1887-11-02"^^xsd:date; + base:personnames\#DateEnd_Min "1887-11-02"^^xsd:date; + base:personnames\#DateStart_Max "1820-10-06"^^xsd:date; + base:personnames\#DateStart_Min "1820-10-06"^^xsd:date; + base:personnames\#IDPersonname 120; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Johanna Maria"; + base:personnames\#personSurName "Lind"; + base:personnames\#ref-IDPerson base:person\/LinJen-00 . + +base:personnames\/121 a base:personnames; + base:personnames\#DateEnd_Max "1968-01-31"^^xsd:date; + base:personnames\#DateEnd_Min "1968-01-31"^^xsd:date; + base:personnames\#DateStart_Max "1900-05-29"^^xsd:date; + base:personnames\#DateStart_Min "1900-05-29"^^xsd:date; + base:personnames\#IDPersonname 121; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Olga"; + base:personnames\#personSurName "Jespersen de Adeler"; + base:personnames\#ref-IDPerson base:person\/JesOlg-00 . + +base:personnames\/122 a base:personnames; + base:personnames\#IDPersonname 122; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Amalie"; + base:personnames\#personSurName "Weiss"; + base:personnames\#ref-IDPerson base:person\/JoaAma-00 . + +base:personnames\/123 a base:personnames; + base:personnames\#IDPersonname 123; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Amalie"; + base:personnames\#personSurName "Schneeweiss"; + base:personnames\#ref-IDPerson base:person\/JoaAma-00 . + +base:personnames\/124 a base:personnames; + base:personnames\#IDPersonname 124; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment "changed her name by the time she played the title role in Avrom Goldfaden’s Shulamis"; + base:personnames\#personName "Beylke"; + base:personnames\#personSurName "Kalakh"; + base:personnames\#ref-IDPerson base:person\/KalBer-00 . + +base:personnames\/125 a base:personnames; + base:personnames\#IDPersonname 125; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment ""; + base:personnames\#personName "Bertha"; + base:personnames\#personSurName "Kalish"; + base:personnames\#ref-IDPerson base:person\/KalBer-00 . + +base:personnames\/126 a base:personnames; + base:personnames\#IDPersonname 126; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Paolo"; + base:personnames\#personSurName "Alberti"; + base:personnames\#ref-IDPerson base:person\/KalPau-00 . + +base:personnames\/127 a base:personnames; + base:personnames\#IDPersonname 127; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ester-Rokhl"; + base:personnames\#personSurName "Halpern"; + base:personnames\#ref-IDPerson base:person\/KamEst-00 . + +base:personnames\/128 a base:personnames; + base:personnames\#IDPersonname 128; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Esther Rachel"; + base:personnames\#personSurName "Kamińska"; + base:personnames\#ref-IDPerson base:person\/KamEst-00 . + +base:personnames\/129 a base:personnames; + base:personnames\#IDPersonname 129; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Fanny"; + base:personnames\#ref-IDPerson base:person\/KemFra-00 . + +base:personnames\/13 a base:personnames; + base:personnames\#DateStart_Max "1887-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1887-01-01"^^xsd:date; + base:personnames\#IDPersonname 13; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Balsemão Rodrigues"; + base:personnames\#ref-IDPerson base:person\/BalHel-00 . + +base:personnames\/130 a base:personnames; + base:personnames\#IDPersonname 130; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment "believed to have been born Mary Frances Moss"; + base:personnames\#personName "Mary Frances"; + base:personnames\#personSurName "Moss"; + base:personnames\#ref-IDPerson base:person\/KeeLau-00 . + +base:personnames\/131 a base:personnames; + base:personnames\#IDPersonname 131; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "change of her name from Mary Taylor to Laura Keene for stage purposes, making herself independent"; + base:personnames\#personName "Mary"; + base:personnames\#personSurName "Taylor"; + base:personnames\#ref-IDPerson base:person\/KeeLau-00 . + +base:personnames\/132 a base:personnames; + base:personnames\#IDPersonname 132; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Fidèle-Ernest-Joseph"; + base:personnames\#personSurName "Koenig"; + base:personnames\#ref-IDPerson base:person\/KonFid-00 . + +base:personnames\/133 a base:personnames; + base:personnames\#IDPersonname 133; + base:personnames\#personName "Fidèle-Joseph"; + base:personnames\#personSurName "König"; + base:personnames\#ref-IDPerson base:person\/KonFid-00 . + +base:personnames\/134 a base:personnames; + base:personnames\#IDPersonname 134; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Fritz Nathan"; + base:personnames\#personSurName "Kohn"; + base:personnames\#ref-IDPerson base:person\/KorFri-00 . + +base:personnames\/135 a base:personnames; + base:personnames\#IDPersonname 135; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "(after marriage with Paul von Turn und Taxis and the name change forced on him by his family because of this marriage)"; + base:personnames\#personName "Elisabeth"; + base:personnames\#personSurName "von Fels"; + base:personnames\#ref-IDPerson base:person\/KreEli-00 . + +base:personnames\/136 a base:personnames; + base:personnames\#IDPersonname 136; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "second marriage"; + base:personnames\#personName "Elisabeth"; + base:personnames\#personSurName "von Fels-Cabisius"; + base:personnames\#ref-IDPerson base:person\/KreEli-00 . + +base:personnames\/137 a base:personnames; + base:personnames\#IDPersonname 137; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Selma"; + base:personnames\#personSurName "Koert-Kronold"; + base:personnames\#ref-IDPerson base:person\/KroSel-00 . + +base:personnames\/138 a base:personnames; + base:personnames\#IDPersonname 138; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Selma"; + base:personnames\#personSurName "Krongold"; + base:personnames\#ref-IDPerson base:person\/KroSel-00 . + +base:personnames\/139 a base:personnames; + base:personnames\#IDPersonname 139; + base:personnames\#personName "Stella"; + base:personnames\#personSurName "Oristorio die Frama"; + base:personnames\#ref-IDPerson base:person\/KruMin-00 . + +base:personnames\/14 a base:personnames; + base:personnames\#IDPersonname 14; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Herbert Arthur"; + base:personnames\#personSurName "Chamberlayne Blythe"; + base:personnames\#ref-IDPerson base:person\/BarMau-00 . + +base:personnames\/140 a base:personnames; + base:personnames\#IDPersonname 140; + base:personnames\#personName "Wilhelmina Jacoba Pauline Rudolphine"; + base:personnames\#personSurName "Krusemann"; + base:personnames\#ref-IDPerson base:person\/KruMin-00 . + +base:personnames\/141 a base:personnames; + base:personnames\#IDPersonname 141; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Stella"; + base:personnames\#personSurName "Oristorio di Frama"; + base:personnames\#ref-IDPerson base:person\/KruMin-00 . + +base:personnames\/142 a base:personnames; + base:personnames\#IDPersonname 142; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Cesarine"; + base:personnames\#personSurName "Kupfer"; + base:personnames\#ref-IDPerson base:person\/KupCae-00 . + +base:personnames\/143 a base:personnames; + base:personnames\#IDPersonname 143; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Cesarine"; + base:personnames\#personSurName "Heigel"; + base:personnames\#ref-IDPerson base:person\/KupCae-00 . + +base:personnames\/144 a base:personnames; + base:personnames\#IDPersonname 144; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Heinrich Rudolf Constanz "; + base:personnames\#personSurName "Laube"; + base:personnames\#ref-IDPerson base:person\/LauHei-00 . + +base:personnames\/145 a base:personnames; + base:personnames\#IDPersonname 145; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Pepi"; + base:personnames\#personSurName "Lavitz"; + base:personnames\#ref-IDPerson base:person\/LavPau-00 . + +base:personnames\/146 a base:personnames; + base:personnames\#IDPersonname 146; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Elisabeth Maria"; + base:personnames\#personSurName "Lehmann"; + base:personnames\#ref-IDPerson base:person\/LehLill-00 . + +base:personnames\/147 a base:personnames; + base:personnames\#IDPersonname 147; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Elisabeth Maria"; + base:personnames\#personSurName "Lehmann-Kalisch"; + base:personnames\#ref-IDPerson base:person\/LehLill-00 . + +base:personnames\/148 a base:personnames; + base:personnames\#IDPersonname 148; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Leopoldina Alitza"; + base:personnames\#personSurName "Pelikan"; + base:personnames\#ref-IDPerson base:person\/LeiLil-00 . + +base:personnames\/149 a base:personnames; + base:personnames\#IDPersonname 149; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Hans"; + base:personnames\#personSurName "Kindermann"; + base:personnames\#ref-IDPerson base:person\/LewAug-00 . + +base:personnames\/15 a base:personnames; + base:personnames\#IDPersonname 15; + base:personnames\#personName "Victor"; + base:personnames\#personSurName "Barnowski"; + base:personnames\#ref-IDPerson base:person\/BarVic-00 . + +base:personnames\/150 a base:personnames; + base:personnames\#IDPersonname 150; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Tobias"; + base:personnames\#personSurName "Sonnabend"; + base:personnames\#ref-IDPerson base:person\/LewAug-00 . + +base:personnames\/151 a base:personnames; + base:personnames\#IDPersonname 151; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Kurt"; + base:personnames\#personSurName "Waller"; + base:personnames\#ref-IDPerson base:person\/LewAug-00 . + +base:personnames\/152 a base:personnames; + base:personnames\#DateEnd_Max "1887-11-02"^^xsd:date; + base:personnames\#DateEnd_Min "1887-11-02"^^xsd:date; + base:personnames\#DateStart_Max "1852-02-05"^^xsd:date; + base:personnames\#DateStart_Min "1852-02-05"^^xsd:date; + base:personnames\#IDPersonname 152; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Jenny"; + base:personnames\#personSurName "Goldschmidt"; + base:personnames\#ref-IDPerson base:person\/LinJen-00 . + +base:personnames\/153 a base:personnames; + base:personnames\#IDPersonname 153; + base:personnames\#personName "Madame"; + base:personnames\#personSurName "Goldschmidt"; + base:personnames\#ref-IDPerson base:person\/LinJen-00 . + +base:personnames\/154 a base:personnames; + base:personnames\#IDPersonname 154; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Mary"; + base:personnames\#personSurName "Cecilia"; + base:personnames\#ref-IDPerson base:person\/LofCis-00 . + +base:personnames\/155 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "-"; + base:personnames\#IDPersonname 155; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Manuella"; + base:personnames\#personSurName "Caetana Lucci"; + base:personnames\#ref-IDPerson base:person\/LucMan-00 . + +base:personnames\/156 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "1863"; + base:personnames\#DateStart_Max "1863-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1863-01-01"^^xsd:date; + base:personnames\#IDPersonname 156; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Manuella"; + base:personnames\#personSurName "Caetana Lucci de Oliveira"; + base:personnames\#ref-IDPerson base:person\/LucMan-00 . + +base:personnames\/157 a base:personnames; + base:personnames\#IDPersonname 157; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "García"; + base:personnames\#ref-IDPerson base:person\/MalMar-00 . + +base:personnames\/158 a base:personnames; + base:personnames\#IDPersonname 158; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "de la Felicidad Malibran"; + base:personnames\#ref-IDPerson base:person\/MalMar-00 . + +base:personnames\/159 a base:personnames; + base:personnames\#IDPersonname 159; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Blanche"; + base:personnames\#personSurName "Marchesi de Castrone"; + base:personnames\#ref-IDPerson base:person\/MarBla-00 . + +base:personnames\/16 a base:personnames; + base:personnames\#IDPersonname 16; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Isidor"; + base:personnames\#personSurName "Abrahamowsky"; + base:personnames\#ref-IDPerson base:person\/BarVic-00 . + +base:personnames\/160 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1887"; + base:personnames\#DateStart_Max "1887-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1887-01-01"^^xsd:date; + base:personnames\#IDPersonname 160; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment "in 1887 she took her stage name Julia Marlowe"; + base:personnames\#personName "Julia"; + base:personnames\#personSurName "Marlowe"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/161 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1870 till 1872"; + base:personnames\#DateEnd_Max "1872-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1870-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1865 or 1866"; + base:personnames\#DateStart_Max "1866-08-17"^^xsd:date; + base:personnames\#DateStart_Min "1865-08-17"^^xsd:date; + base:personnames\#IDPersonname 161; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment "while attending school she was called Fanny Brough; "; + base:personnames\#personName "Sarah Frances"; + base:personnames\#personSurName "Frost"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/162 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1870 till 1872"; + base:personnames\#DateStart_Max "1872-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1870-01-01"^^xsd:date; + base:personnames\#IDPersonname 162; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "before going to the U.S. the family changed their name into Brough"; + base:personnames\#personName "Sarah Frances"; + base:personnames\#personSurName "Brough"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/163 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1870 till 1872"; + base:personnames\#DateStart_Max "1872-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1870-01-01"^^xsd:date; + base:personnames\#IDPersonname 163; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Fanny"; + base:personnames\#personSurName "Brough"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/164 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1870 till 1872"; + base:personnames\#DateStart_Max "1872-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1870-01-01"^^xsd:date; + base:personnames\#IDPersonname 164; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Frances"; + base:personnames\#personSurName "Brough"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/165 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#IDPersonname 165; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Sadie"; + base:personnames\#personSurName "Brough"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/166 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1900"; + base:personnames\#DateEnd_Max "1900-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1900-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1894"; + base:personnames\#DateStart_Max "1894-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1894-01-01"^^xsd:date; + base:personnames\#IDPersonname 166; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Julia"; + base:personnames\#personSurName "Marlowe Taber"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/167 a base:personnames; + base:personnames\#DateEnd_Min "1950-11-12"^^xsd:date; + base:personnames\#DateStart_Min "1911-08-17"^^xsd:date; + base:personnames\#IDPersonname 167; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Julia"; + base:personnames\#personSurName "Marlowe Sothern"; + base:personnames\#ref-IDPerson base:person\/MarJul-00 . + +base:personnames\/168 a base:personnames; + base:personnames\#DateEnd_Max "1913-11-17"^^xsd:date; + base:personnames\#DateEnd_Min "1913-11-17"^^xsd:date; + base:personnames\#DateStart_Max "1852-04-19"^^xsd:date; + base:personnames\#DateStart_Min "1852-04-19"^^xsd:date; + base:personnames\#IDPersonname 168; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Mathilde"; + base:personnames\#personSurName "Marchesi de Castrone"; + base:personnames\#ref-IDPerson base:person\/MarMat-00 . + +base:personnames\/169 a base:personnames; + base:personnames\#DateEnd_Max "1852-04-19"^^xsd:date; + base:personnames\#DateEnd_Min "1852-04-19"^^xsd:date; + base:personnames\#DateStart_Max "1821-03-24"^^xsd:date; + base:personnames\#DateStart_Min "1821-03-24"^^xsd:date; + base:personnames\#IDPersonname 169; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Mathilde Lisette Sophie Jeanette"; + base:personnames\#personSurName "Graumann"; + base:personnames\#ref-IDPerson base:person\/MarMat-00 . + +base:personnames\/17 a base:personnames; + base:personnames\#IDPersonname 17; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Elisabeth"; + base:personnames\#personSurName "Sara Schiff"; + base:personnames\#ref-IDPerson base:person\/BasEls-00 . + +base:personnames\/170 a base:personnames; + base:personnames\#IDPersonname 170; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Cavaliere"; + base:personnames\#personSurName "di Castrone"; + base:personnames\#ref-IDPerson base:person\/MarSal-00 . + +base:personnames\/171 a base:personnames; + base:personnames\#IDPersonname 171; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Marchese"; + base:personnames\#personSurName "della Rajata"; + base:personnames\#ref-IDPerson base:person\/MarSal-00 . + +base:personnames\/172 a base:personnames; + base:personnames\#DateEnd_Max "1935-06-20"^^xsd:date; + base:personnames\#DateStart_Min "1855-11-17"^^xsd:date; + base:personnames\#IDPersonname 172; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Morris"; + base:personnames\#personSurName "Meyerfeld Jr."; + base:personnames\#ref-IDPerson base:person\/MeyMor-00 . + +base:personnames\/173 a base:personnames; + base:personnames\#IDPersonname 173; + base:personnames\#comment "in Romanian"; + base:personnames\#personName "Meema"; + base:personnames\#personSurName "Mischu"; + base:personnames\#ref-IDPerson base:person\/MimMis-00 . + +base:personnames\/174 a base:personnames; + base:personnames\#IDPersonname 174; + base:personnames\#comment """ in Passenger Record"""; + base:personnames\#personName "Misu "; + base:personnames\#personSurName "Rosescu"; + base:personnames\#ref-IDPerson base:person\/MimMis-00 . + +base:personnames\/175 a base:personnames; + base:personnames\#DateEnd_Max "1953-07-28"^^xsd:date; + base:personnames\#IDPersonname 175; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Meema"; + base:personnames\#personSurName "Mischu"; + base:personnames\#ref-IDPerson base:person\/MisMim-00 . + +base:personnames\/176 a base:personnames; + base:personnames\#DateEnd_Max "1953-07-28"^^xsd:date; + base:personnames\#IDPersonname 176; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Misu"; + base:personnames\#personSurName "Rosescu"; + base:personnames\#ref-IDPerson base:person\/MisMim-00 . + +base:personnames\/177 a base:personnames; + base:personnames\#DateStart_Min "1888-01-21"^^xsd:date; + base:personnames\#IDPersonname 177; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Mişu"; + base:personnames\#personSurName "Rosescu"; + base:personnames\#ref-IDPerson base:person\/MisMim-00 . + +base:personnames\/178 a base:personnames; + base:personnames\#IDPersonname 178; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Jadwiga"; + base:personnames\#personSurName "Benda"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/179 a base:personnames; + base:personnames\#DateStart_Fuzzy "Approx.1846-1847"; + base:personnames\#IDPersonname 179; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment ""; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Opid"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/18 a base:personnames; + base:personnames\#IDPersonname 18; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment "artistic name in Brazil"; + base:personnames\#personName "Rose"; + base:personnames\#personSurName "Méryss"; + base:personnames\#ref-IDPerson base:person\/BauRos-00 . + +base:personnames\/180 a base:personnames; + base:personnames\#DateStart_Fuzzy "1861 July"; + base:personnames\#IDPersonname 180; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment ""; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Modrzejewska"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/181 a base:personnames; + base:personnames\#DateEnd_Max "1861-01-17"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably 17.02.1821"; + base:personnames\#DateStart_Max "1821-02-17"^^xsd:date; + base:personnames\#IDPersonname 181; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Elisabeth Rozanna"; + base:personnames\#personSurName "Gilbert"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/182 a base:personnames; + base:personnames\#DateEnd_Max "1961-12-08"^^xsd:date; + base:personnames\#DateEnd_Min "1961-12-08"^^xsd:date; + base:personnames\#DateStart_Max "1866-03-17"^^xsd:date; + base:personnames\#DateStart_Min "1866-03-17"^^xsd:date; + base:personnames\#IDPersonname 182; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment ""; + base:personnames\#personName "Wilhelmine Friederike"; + base:personnames\#personSurName "Moscherosch-Schmidt"; + base:personnames\#ref-IDPerson base:person\/MosMin-00 . + +base:personnames\/183 a base:personnames; + base:personnames\#DateEnd_Max "1961-12-08"^^xsd:date; + base:personnames\#DateEnd_Min "1961-12-08"^^xsd:date; + base:personnames\#IDPersonname 183; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Wilhelmine"; + base:personnames\#personSurName "Moscherosch-Schmidt"; + base:personnames\#ref-IDPerson base:person\/MosMin-00 . + +base:personnames\/184 a base:personnames; + base:personnames\#DateEnd_Max "1961-12-08"^^xsd:date; + base:personnames\#DateEnd_Min "1961-12-08"^^xsd:date; + base:personnames\#DateStart_Max "1866-03-17"^^xsd:date; + base:personnames\#DateStart_Min "1866-03-17"^^xsd:date; + base:personnames\#IDPersonname 184; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Minna"; + base:personnames\#personSurName "Schmidt"; + base:personnames\#ref-IDPerson base:person\/MosMin-00 . + +base:personnames\/185 a base:personnames; + base:personnames\#IDPersonname 185; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Henriette Johanna Wilhelmine Maria"; + base:personnames\#personSurName "Mottl"; + base:personnames\#ref-IDPerson base:person\/MotHen-00 . + +base:personnames\/186 a base:personnames; + base:personnames\#IDPersonname 186; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Henriette Johanna Wilhelmine Maria"; + base:personnames\#personSurName "Standhartner"; + base:personnames\#ref-IDPerson base:person\/MotHen-00 . + +base:personnames\/187 a base:personnames; + base:personnames\#IDPersonname 187; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Franz"; + base:personnames\#personSurName "Innozenz Nachbaur"; + base:personnames\#ref-IDPerson base:person\/NacFra-00 . + +base:personnames\/188 a base:personnames; + base:personnames\#IDPersonname 188; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment ""; + base:personnames\#personName "Franz Ignaz"; + base:personnames\#personSurName "Nachbaur"; + base:personnames\#ref-IDPerson base:person\/NacFra-00 . + +base:personnames\/189 a base:personnames; + base:personnames\#IDPersonname 189; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Mariam Ides Adelaida"; + base:personnames\#personSurName "Leventon"; + base:personnames\#ref-IDPerson base:person\/NazAll-00 . + +base:personnames\/19 a base:personnames; + base:personnames\#DateEnd_Fuzzy "probably 1865"; + base:personnames\#DateEnd_Max "1865-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1865-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1854"; + base:personnames\#DateStart_Max "1854-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1854-01-01"^^xsd:date; + base:personnames\#IDPersonname 19; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment "artistic name of her first years in France"; + base:personnames\#personName "Adéle"; + base:personnames\#ref-IDPerson base:person\/BauRos-00 . + +base:personnames\/190 a base:personnames; + base:personnames\#IDPersonname 190; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Chaskel Moses "; + base:personnames\#personSurName "Nebenzahl"; + base:personnames\#ref-IDPerson base:person\/NebHei-00 . + +base:personnames\/191 a base:personnames; + base:personnames\#DateStart_Fuzzy "1888"; + base:personnames\#DateStart_Max "1888-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1888-01-01"^^xsd:date; + base:personnames\#IDPersonname 191; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "el 77"; + base:personnames\#personSurName "Padín"; + base:personnames\#ref-IDPerson base:person\/PadMan-00 . + +base:personnames\/192 a base:personnames; + base:personnames\#DateEnd_Min "1936-02-17"^^xsd:date; + base:personnames\#DateStart_Max "1867-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1867-01-01"^^xsd:date; + base:personnames\#IDPersonname 192; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Pericles"; + base:personnames\#personSurName "Pantages"; + base:personnames\#ref-IDPerson base:person\/PanAle-00 . + +base:personnames\/193 a base:personnames; + base:personnames\#DateEnd_Min "1936-02-17"^^xsd:date; + base:personnames\#DateStart_Max "1867-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1867-01-01"^^xsd:date; + base:personnames\#IDPersonname 193; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Περικλῆς Ἀλέξανδρος"; + base:personnames\#personSurName "Πανταζής"; + base:personnames\#ref-IDPerson base:person\/PanAle-00 . + +base:personnames\/194 a base:personnames; + base:personnames\#DateEnd_Min "1936-02-17"^^xsd:date; + base:personnames\#DateStart_Max "1867-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1867-01-01"^^xsd:date; + base:personnames\#IDPersonname 194; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Periklis Alexandros"; + base:personnames\#personSurName "Padazis"; + base:personnames\#ref-IDPerson base:person\/PanAle-00 . + +base:personnames\/195 a base:personnames; + base:personnames\#IDPersonname 195; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Adela Juana Maria"; + base:personnames\#personSurName "Patti"; + base:personnames\#ref-IDPerson base:person\/PatAde-00 . + +base:personnames\/196 a base:personnames; + base:personnames\#IDPersonname 196; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "Adolf Philipp"; + base:personnames\#personName """Adolph +"""; + base:personnames\#personSurName "Philipp"; + base:personnames\#ref-IDPerson base:person\/PhiAdo-00 . + +base:personnames\/197 a base:personnames; + base:personnames\#IDPersonname 197; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Jean"; + base:personnames\#personSurName "Briquet"; + base:personnames\#ref-IDPerson base:person\/PhiAdo-00 . + +base:personnames\/198 a base:personnames; + base:personnames\#IDPersonname 198; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "(pseudonyme as composer and librettist)"; + base:personnames\#personName "Paul"; + base:personnames\#personSurName "Hervé "; + base:personnames\#ref-IDPerson base:person\/PhiAdo-00 . + +base:personnames\/2 a base:personnames; + base:personnames\#IDPersonname 2; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Leonore"; + base:personnames\#personSurName "de Ahna"; + base:personnames\#ref-IDPerson base:person\/AhnEle-00 . + +base:personnames\/20 a base:personnames; + base:personnames\#IDPersonname 20; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment ""; + base:personnames\#personName "Rose Marie"; + base:personnames\#personSurName "Baudon"; + base:personnames\#ref-IDPerson base:person\/BauRos-00 . + +base:personnames\/200 a base:personnames; + base:personnames\#IDPersonname 200; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Jean"; + base:personnames\#personSurName "Briquet"; + base:personnames\#ref-IDPerson base:person\/PhiAdo-00 . + +base:personnames\/201 a base:personnames; + base:personnames\#IDPersonname 201; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Paul"; + base:personnames\#personSurName "Hervé"; + base:personnames\#ref-IDPerson base:person\/PhiAdo-00 . + +base:personnames\/202 a base:personnames; + base:personnames\#IDPersonname 202; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "his original jewish name"; + base:personnames\#personName "Baruch"; + base:personnames\#personSurName "Pohl"; + base:personnames\#ref-IDPerson base:person\/PolBer-00 . + +base:personnames\/203 a base:personnames; + base:personnames\#DateEnd_Max "1892-03-31"^^xsd:date; + base:personnames\#DateEnd_Min "1892-03-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Approx. 1853"; + base:personnames\#DateStart_Min "1853-01-07"^^xsd:date; + base:personnames\#IDPersonname 203; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Miss Marian"; + base:personnames\#personSurName "Pyne"; + base:personnames\#ref-IDPerson base:person\/PynMar-00 . + +base:personnames\/204 a base:personnames; + base:personnames\#IDPersonname 204; + base:personnames\#ref-IDPerson base:person\/PynMar-00 . + +base:personnames\/205 a base:personnames; + base:personnames\#DateEnd_Max "1892-03-31"^^xsd:date; + base:personnames\#DateEnd_Min "1892-03-01"^^xsd:date; + base:personnames\#DateStart_Max "1840-10-31"^^xsd:date; + base:personnames\#DateStart_Min "1840-10-01"^^xsd:date; + base:personnames\#IDPersonname 205; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Mrs Pyne"; + base:personnames\#personSurName "Galton"; + base:personnames\#ref-IDPerson base:person\/PynMar-00 . + +base:personnames\/206 a base:personnames; + base:personnames\#DateEnd_Max "1892-03-31"^^xsd:date; + base:personnames\#DateEnd_Min "1892-03-01"^^xsd:date; + base:personnames\#DateStart_Max "1857-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1857-02-01"^^xsd:date; + base:personnames\#IDPersonname 206; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Miss Marian"; + base:personnames\#personSurName "Prescott"; + base:personnames\#ref-IDPerson base:person\/PynMar-00 . + +base:personnames\/207 a base:personnames; + base:personnames\#DateEnd_Max "1892-03-31"^^xsd:date; + base:personnames\#DateEnd_Min "1892-03-01"^^xsd:date; + base:personnames\#DateStart_Max "1856-04-30"^^xsd:date; + base:personnames\#DateStart_Min "1856-04-01"^^xsd:date; + base:personnames\#IDPersonname 207; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Miss Galton"; + base:personnames\#personSurName "Pyne"; + base:personnames\#ref-IDPerson base:person\/PynMar-00 . + +base:personnames\/208 a base:personnames; + base:personnames\#DateEnd_Min "1869-12-19"^^xsd:date; + base:personnames\#DateStart_Min "1842-04-23"^^xsd:date; + base:personnames\#IDPersonname 208; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Paolo"; + base:personnames\#personSurName "Raffetto"; + base:personnames\#ref-IDPerson base:person\/RafPab-00 . + +base:personnames\/209 a base:personnames; + base:personnames\#IDPersonname 209; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Cuarenta onzas"; + base:personnames\#ref-IDPerson base:person\/RafPab-00 . + +base:personnames\/21 a base:personnames; + base:personnames\#IDPersonname 21; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Albert"; + base:personnames\#personSurName "Kaufmann"; + base:personnames\#ref-IDPerson base:person\/BerJul-00 . + +base:personnames\/210 a base:personnames; + base:personnames\#IDPersonname 210; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment ""; + base:personnames\#personName "Bidelia"; + base:personnames\#personSurName "Crehan"; + base:personnames\#ref-IDPerson base:person\/RehAda-00 . + +base:personnames\/211 a base:personnames; + base:personnames\#IDPersonname 211; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "Mrs. Erving Winslow, from 1899 she was called Mrs. Reignolds-Winslow"; + base:personnames\#personName "Kate"; + base:personnames\#personSurName "Reignolds"; + base:personnames\#ref-IDPerson base:person\/ReiCat-00 . + +base:personnames\/212 a base:personnames; + base:personnames\#IDPersonname 212; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maximilian"; + base:personnames\#personSurName "Goldmann"; + base:personnames\#ref-IDPerson base:person\/ReiMax-00 . + +base:personnames\/213 a base:personnames; + base:personnames\#IDPersonname 213; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "János"; + base:personnames\#personSurName "Richter"; + base:personnames\#ref-IDPerson base:person\/RicHan-00 . + +base:personnames\/214 a base:personnames; + base:personnames\#IDPersonname 214; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Curt"; + base:personnames\#personSurName "Robitschek"; + base:personnames\#ref-IDPerson base:person\/RobKur-00 . + +base:personnames\/215 a base:personnames; + base:personnames\#IDPersonname 215; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Ken"; + base:personnames\#personSurName "Robey"; + base:personnames\#ref-IDPerson base:person\/RobKur-00 . + +base:personnames\/216 a base:personnames; + base:personnames\#IDPersonname 216; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Carolina"; + base:personnames\#personSurName "Galletti"; + base:personnames\#ref-IDPerson base:person\/RosCa-00 . + +base:personnames\/217 a base:personnames; + base:personnames\#DateStart_Max "1936-01-16"^^xsd:date; + base:personnames\#DateStart_Min "1936-01-16"^^xsd:date; + base:personnames\#IDPersonname 217; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Annie Ellen"; + base:personnames\#personSurName "Russel"; + base:personnames\#ref-IDPerson base:person\/RusAnn-00 . + +base:personnames\/218 a base:personnames; + base:personnames\#DateStart_Max "1936-01-16"^^xsd:date; + base:personnames\#DateStart_Min "1936-01-16"^^xsd:date; + base:personnames\#IDPersonname 218; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Annie"; + base:personnames\#personSurName "Russell Marble"; + base:personnames\#ref-IDPerson base:person\/RusAnn-00 . + +base:personnames\/219 a base:personnames; + base:personnames\#IDPersonname 219; + base:personnames\#personName "Justo"; + base:personnames\#personSurName "S. López de Gomara"; + base:personnames\#ref-IDPerson base:person\/SanJus-00 . + +base:personnames\/22 a base:personnames; + base:personnames\#IDPersonname 22; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Gordon"; + base:personnames\#personSurName "Mitchell"; + base:personnames\#ref-IDPerson base:person\/BerJul-00 . + +base:personnames\/220 a base:personnames; + base:personnames\#IDPersonname 220; + base:personnames\#personName "Justo"; + base:personnames\#personSurName "S. López de Gomara"; + base:personnames\#ref-IDPerson base:person\/SanJus-00 . + +base:personnames\/221 a base:personnames; + base:personnames\#IDPersonname 221; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Clementine"; + base:personnames\#personSurName "Schuch-Proska"; + base:personnames\#ref-IDPerson base:person\/SchCle-00 . + +base:personnames\/222 a base:personnames; + base:personnames\#IDPersonname 222; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Clementine"; + base:personnames\#personSurName "Procháska"; + base:personnames\#ref-IDPerson base:person\/SchCle-00 . + +base:personnames\/223 a base:personnames; + base:personnames\#IDPersonname 223; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Clementine"; + base:personnames\#personSurName "Procháska"; + base:personnames\#ref-IDPerson base:person\/SchCle-00 . + +base:personnames\/224 a base:personnames; + base:personnames\#IDPersonname 224; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Clementine"; + base:personnames\#personSurName "von Schuch-Proska"; + base:personnames\#ref-IDPerson base:person\/SchCle-00 . + +base:personnames\/225 a base:personnames; + base:personnames\#IDPersonname 225; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ernestine Amalie Pauline"; + base:personnames\#personSurName "Rössler"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/226 a base:personnames; + base:personnames\#IDPersonname 226; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Frank"; + base:personnames\#personSurName "Schwartz"; + base:personnames\#ref-IDPerson base:person\/SchFra-00 . + +base:personnames\/227 a base:personnames; + base:personnames\#IDPersonname 227; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Marcella Sembrich"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/228 a base:personnames; + base:personnames\#IDPersonname 228; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Prakseda Marcelina"; + base:personnames\#personSurName "Kochanska"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/229 a base:personnames; + base:personnames\#IDPersonname 229; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "When in Athens, she first appeared under the name “Marcella Bosio”, because she felt that her last name was too hard for audiences to pronounce. Not long after she opted to adopt her mother's maiden name, Sembrich, instead."; + base:personnames\#personName "Marcella"; + base:personnames\#personSurName "Bosio"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/23 a base:personnames; + base:personnames\#IDPersonname 23; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Kate Alice"; + base:personnames\#personSurName "Loehr"; + base:personnames\#ref-IDPerson base:person\/BisKat-00 . + +base:personnames\/230 a base:personnames; + base:personnames\#IDPersonname 230; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "When in Athens, she first appeared under the name “Marcella Bosio”, because she felt that her last name was too hard for audiences to pronounce. Not long after she opted to adopt her mother's maiden name, Sembrich, instead."; + base:personnames\#personName "Marcella"; + base:personnames\#personSurName "Sembrich"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/231 a base:personnames; + base:personnames\#DateEnd_Max "1891-06-09"^^xsd:date; + base:personnames\#DateEnd_Min "1891-06-09"^^xsd:date; + base:personnames\#IDPersonname 231; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "Mrs. Edwin Forrest"; + base:personnames\#personName "Catharine"; + base:personnames\#personSurName "Norton Sinclair Forrest"; + base:personnames\#ref-IDPerson base:person\/NorCat-00 . + +base:personnames\/232 a base:personnames; + base:personnames\#IDPersonname 232; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Sorma"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/233 a base:personnames; + base:personnames\#IDPersonname 233; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment "Saremba"; + base:personnames\#personName "Agnes Martha Caroline"; + base:personnames\#personSurName "Zaremba"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/234 a base:personnames; + base:personnames\#IDPersonname 234; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "her mother´s second marriage"; + base:personnames\#personName "Agnes Martha Caroline"; + base:personnames\#personSurName "Pallatschek"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/235 a base:personnames; + base:personnames\#IDPersonname 235; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment ""; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Minotto"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/236 a base:personnames; + base:personnames\#IDPersonname 236; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Martha Caroline Zaremba"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/237 a base:personnames; + base:personnames\#IDPersonname 237; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "Mother's second marriage"; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Caroline Pallatscheck"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/238 a base:personnames; + base:personnames\#IDPersonname 238; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Minotto"; + base:personnames\#ref-IDPerson base:person\/SomAgn-00 . + +base:personnames\/239 a base:personnames; + base:personnames\#IDPersonname 239; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Agnes Caroline Elise Franzisca"; + base:personnames\#ref-IDPerson base:person\/StaAgn-00 . + +base:personnames\/24 a base:personnames; + base:personnames\#IDPersonname 24; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Elsa"; + base:personnames\#personSurName "Blatt"; + base:personnames\#ref-IDPerson base:person\/BlaEls-00 . + +base:personnames\/240 a base:personnames; + base:personnames\#IDPersonname 240; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Agnes"; + base:personnames\#personSurName "Denis"; + base:personnames\#ref-IDPerson base:person\/StaAgn-00 . + +base:personnames\/241 a base:personnames; + base:personnames\#IDPersonname 241; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Irma Maria Ludmilla"; + base:personnames\#personSurName "Czerwinská"; + base:personnames\#ref-IDPerson base:person\/StrIrm-00 . + +base:personnames\/242 a base:personnames; + base:personnames\#IDPersonname 242; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Moritz"; + base:personnames\#personSurName "Strakosch"; + base:personnames\#ref-IDPerson base:person\/StrMau-00 . + +base:personnames\/243 a base:personnames; + base:personnames\#IDPersonname 243; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Friedrich Ernst Wolfgang"; + base:personnames\#personSurName "Strampfer"; + base:personnames\#ref-IDPerson base:person\/StrFri-00 . + +base:personnames\/244 a base:personnames; + base:personnames\#IDPersonname 244; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "Marie Gräfin (married)"; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "Gilbert de Voisins"; + base:personnames\#ref-IDPerson base:person\/TagMar-00 . + +base:personnames\/245 a base:personnames; + base:personnames\#IDPersonname 245; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Mariana Sophie"; + base:personnames\#personSurName "Taglioni"; + base:personnames\#ref-IDPerson base:person\/TagMar-00 . + +base:personnames\/246 a base:personnames; + base:personnames\#IDPersonname 246; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Marie-Paul"; + base:personnames\#personSurName "Taglioni"; + base:personnames\#ref-IDPerson base:person\/TagMar-01 . + +base:personnames\/247 a base:personnames; + base:personnames\#IDPersonname 247; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "Windischgrätz"; + base:personnames\#ref-IDPerson base:person\/TagMar-01 . + +base:personnames\/248 a base:personnames; + base:personnames\#IDPersonname 248; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Joseph Aloys"; + base:personnames\#personSurName "Tichatschek"; + base:personnames\#ref-IDPerson base:person\/TicJos-00 . + +base:personnames\/249 a base:personnames; + base:personnames\#IDPersonname 249; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "tschechisch"; + base:personnames\#personName "Josef"; + base:personnames\#personSurName "Ticháček"; + base:personnames\#ref-IDPerson base:person\/TicJos-00 . + +base:personnames\/25 a base:personnames; + base:personnames\#IDPersonname 25; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Kurt"; + base:personnames\#personSurName "Boas"; + base:personnames\#ref-IDPerson base:person\/BoiCur-00 . + +base:personnames\/250 a base:personnames; + base:personnames\#IDPersonname 250; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "Mosel"; + base:personnames\#ref-IDPerson base:person\/TomMar-00 . + +base:personnames\/251 a base:personnames; + base:personnames\#IDPersonname 251; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment ""; + base:personnames\#personName "Sophie"; + base:personnames\#personSurName "Tucker"; + base:personnames\#ref-IDPerson base:person\/TucSop-00 . + +base:personnames\/252 a base:personnames; + base:personnames\#IDPersonname 252; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Sophia"; + base:personnames\#personSurName "Kalish"; + base:personnames\#ref-IDPerson base:person\/TucSop-00 . + +base:personnames\/253 a base:personnames; + base:personnames\#IDPersonname 253; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment "the family changed their name to Abuza before immigrating (her father fearing repercussions for having deserted the Russian military)"; + base:personnames\#personName "Sophia"; + base:personnames\#personSurName "Abuza"; + base:personnames\#ref-IDPerson base:person\/TucSop-00 . + +base:personnames\/254 a base:personnames; + base:personnames\#IDPersonname 254; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Isaac"; + base:personnames\#personSurName "Turkow-Grudberg"; + base:personnames\#ref-IDPerson base:person\/TurYit-00 . + +base:personnames\/255 a base:personnames; + base:personnames\#IDPersonname 255; + base:personnames\#personName "Yitskhok-Ber"; + base:personnames\#personSurName "Grudberg-Turkov"; + base:personnames\#ref-IDPerson base:person\/TurYit-00 . + +base:personnames\/256 a base:personnames; + base:personnames\#IDPersonname 256; + base:personnames\#personName "Yitskhok"; + base:personnames\#personSurName "Turkow-Grudberg"; + base:personnames\#ref-IDPerson base:person\/TurYit-00 . + +base:personnames\/257 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "-"; + base:personnames\#IDPersonname 257; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "da Conceição Singer Velluti"; + base:personnames\#ref-IDPerson base:person\/VelMar-00 . + +base:personnames\/258 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "1860s"; + base:personnames\#DateStart_Max "1869-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1860-01-01"^^xsd:date; + base:personnames\#IDPersonname 258; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "Velluti Ribeiro de Souza"; + base:personnames\#ref-IDPerson base:person\/VelMar-00 . + +base:personnames\/259 a base:personnames; + base:personnames\#IDPersonname 259; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Michelle Ferdinande Pauline"; + base:personnames\#personSurName "Garcia"; + base:personnames\#ref-IDPerson base:person\/ViaPau-00 . + +base:personnames\/26 a base:personnames; + base:personnames\#IDPersonname 26; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Artur"; + base:personnames\#personSurName "Bodansky"; + base:personnames\#ref-IDPerson base:person\/BodArt-00 . + +base:personnames\/260 a base:personnames; + base:personnames\#IDPersonname 260; + base:personnames\#personName "Michelle "; + base:personnames\#personSurName "Viadot-Garcia"; + base:personnames\#ref-IDPerson base:person\/ViaPau-00 . + +base:personnames\/261 a base:personnames; + base:personnames\#IDPersonname 261; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Pauline"; + base:personnames\#personSurName "Viardot-Garcia"; + base:personnames\#ref-IDPerson base:person\/ViaPau-00 . + +base:personnames\/262 a base:personnames; + base:personnames\#DateStart_Min "1840-04-18"^^xsd:date; + base:personnames\#IDPersonname 262; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "Wedding 18th april 1840 with Parisian theater director and art writer Louis Viardot"; + base:personnames\#personName "Michelle Ferdinande Pauline"; + base:personnames\#personSurName "Viardot-García"; + base:personnames\#ref-IDPerson base:person\/ViaPau-00 . + +base:personnames\/263 a base:personnames; + base:personnames\#IDPersonname 263; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "Portuguese version"; + base:personnames\#personName "Rosa"; + base:personnames\#personSurName "Villiot"; + base:personnames\#ref-IDPerson base:person\/VilRos-00 . + +base:personnames\/264 a base:personnames; + base:personnames\#IDPersonname 264; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Johanna"; + base:personnames\#personSurName "Jachmann-Wagner"; + base:personnames\#ref-IDPerson base:person\/WagJoh-00 . + +base:personnames\/265 a base:personnames; + base:personnames\#IDPersonname 265; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Minna"; + base:personnames\#personSurName "Walter"; + base:personnames\#ref-IDPerson base:person\/WalMin-00 . + +base:personnames\/266 a base:personnames; + base:personnames\#IDPersonname 266; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Wilhelmine Maria"; + base:personnames\#personSurName "Walter"; + base:personnames\#ref-IDPerson base:person\/WalMin-00 . + +base:personnames\/267 a base:personnames; + base:personnames\#IDPersonname 267; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Wilhelmine Maria"; + base:personnames\#personSurName "Pfeiffer v. Weissenegg"; + base:personnames\#ref-IDPerson base:person\/WalMin-00 . + +base:personnames\/268 a base:personnames; + base:personnames\#IDPersonname 268; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Aurelie"; + base:personnames\#personSurName "Jäger"; + base:personnames\#ref-IDPerson base:person\/WilAur-00 . + +base:personnames\/269 a base:personnames; + base:personnames\#IDPersonname 269; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Wilhelmine Henriette Friederike Marie "; + base:personnames\#personSurName "Schröder-Devrient"; + base:personnames\#ref-IDPerson base:person\/SchWil-00 . + +base:personnames\/27 a base:personnames; + base:personnames\#IDPersonname 27; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Artur"; + base:personnames\#personSurName "Bodanszky"; + base:personnames\#ref-IDPerson base:person\/BodArt-00 . + +base:personnames\/270 a base:personnames; + base:personnames\#IDPersonname 270; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Wilhelmine Henriette Friederike Marie "; + base:personnames\#personSurName "Schröder"; + base:personnames\#ref-IDPerson base:person\/SchWil-00 . + +base:personnames\/271 a base:personnames; + base:personnames\#IDPersonname 271; + base:personnames\#personName "Wilhelmine"; + base:personnames\#personSurName "Schroeder-Devrient"; + base:personnames\#ref-IDPerson base:person\/SchWil-00 . + +base:personnames\/272 a base:personnames; + base:personnames\#IDPersonname 272; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Wilhelmine"; + base:personnames\#personSurName "Schroeder"; + base:personnames\#ref-IDPerson base:person\/SchWil-00 . + +base:personnames\/273 a base:personnames; + base:personnames\#IDPersonname 273; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment ""; + base:personnames\#personName "Al"; + base:personnames\#personSurName "Roberts"; + base:personnames\#ref-IDPerson base:person\/ZemAle-00 . + +base:personnames\/28 a base:personnames; + base:personnames\#IDPersonname 28; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Artur"; + base:personnames\#personSurName "Bodzansky"; + base:personnames\#ref-IDPerson base:person\/BodArt-00 . + +base:personnames\/284 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1897"; + base:personnames\#DateEnd_Max "1897-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1897-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1884-05-10"^^xsd:date; + base:personnames\#DateStart_Min "1884-05-10"^^xsd:date; + base:personnames\#IDPersonname 284; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "María Alejandra"; + base:personnames\#personSurName "Barrientos Llopis"; + base:personnames\#ref-IDPerson base:person\/BarMar-00 . + +base:personnames\/289 a base:personnames; + base:personnames\#DateEnd_Max "1946-08-08"^^xsd:date; + base:personnames\#DateEnd_Min "1946-08-08"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1898"; + base:personnames\#DateStart_Max "1898-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1898-01-01"^^xsd:date; + base:personnames\#IDPersonname 289; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "María"; + base:personnames\#personSurName "Barrientos"; + base:personnames\#ref-IDPerson base:person\/BarMar-00 . + +base:personnames\/29 a base:personnames; + base:personnames\#IDPersonname 29; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Arthur"; + base:personnames\#personSurName "Bodanzky"; + base:personnames\#ref-IDPerson base:person\/BodArt-00 . + +base:personnames\/294 a base:personnames; + base:personnames\#DateEnd_Max "1946-08-08"^^xsd:date; + base:personnames\#DateEnd_Min "1946-08-08"^^xsd:date; + base:personnames\#DateStart_Max "1907-06-20"^^xsd:date; + base:personnames\#DateStart_Min "1907-06-20"^^xsd:date; + base:personnames\#IDPersonname 294; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "María"; + base:personnames\#personSurName "Barrientos de Keen"; + base:personnames\#ref-IDPerson base:person\/BarMar-00 . + +base:personnames\/299 a base:personnames; + base:personnames\#IDPersonname 299; + base:personnames\#personName "Kochanski"; + base:personnames\#personSurName "Marcelline"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/3 a base:personnames; + base:personnames\#IDPersonname 3; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "first marriage"; + base:personnames\#personName "Hermine"; + base:personnames\#personSurName "Gräfin Nyary"; + base:personnames\#ref-IDPerson base:person\/AlbHer-00 . + +base:personnames\/30 a base:personnames; + base:personnames\#IDPersonname 30; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Danton"; + base:personnames\#personSurName "-"; + base:personnames\#ref-IDPerson base:person\/BodRob-00 . + +base:personnames\/304 a base:personnames; + base:personnames\#IDPersonname 304; + base:personnames\#personName "Prakseda Marcelina"; + base:personnames\#personSurName "Kochańska"; + base:personnames\#ref-IDPerson base:person\/SemMar-00 . + +base:personnames\/308 a base:personnames; + base:personnames\#DateStart_Max "1872-05-31"^^xsd:date; + base:personnames\#DateStart_Min "1872-05-31"^^xsd:date; + base:personnames\#IDPersonname 308; + base:personnames\#personName "Else"; + base:personnames\#personSurName "Breuer"; + base:personnames\#ref-IDPerson base:person\/BreEli-00 . + +base:personnames\/31 a base:personnames; + base:personnames\#IDPersonname 31; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Else Ilse"; + base:personnames\#personSurName "Boas"; + base:personnames\#ref-IDPerson base:person\/BoiIls-00 . + +base:personnames\/313 a base:personnames; + base:personnames\#IDPersonname 313; + base:personnames\#personName "Ludwig von dem"; + base:personnames\#personSurName "Bruch"; + base:personnames\#ref-IDPerson base:person\/BruLud-00 . + +base:personnames\/314 a base:personnames; + base:personnames\#DateStart_Min "1869-05-30"^^xsd:date; + base:personnames\#IDPersonname 314; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ludwig"; + base:personnames\#personSurName "Peterzilka"; + base:personnames\#ref-IDPerson base:person\/BruLud-00 . + +base:personnames\/316 a base:personnames; + base:personnames\#DateStart_Max "1878-10-13"^^xsd:date; + base:personnames\#DateStart_Min "1878-10-13"^^xsd:date; + base:personnames\#IDPersonname 316; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Tini"; + base:personnames\#personSurName "Rössler"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/319 a base:personnames; + base:personnames\#IDPersonname 319; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "Rössler"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/32 a base:personnames; + base:personnames\#IDPersonname 32; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Raphael Augusto"; + base:personnames\#personSurName "Prostes Bordallo Pinheiro"; + base:personnames\#ref-IDPerson base:person\/BorRap-00 . + +base:personnames\/324 a base:personnames; + base:personnames\#IDPersonname 324; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "Rossler"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/329 a base:personnames; + base:personnames\#IDPersonname 329; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "Roessler"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/33 a base:personnames; + base:personnames\#IDPersonname 33; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Herman"; + base:personnames\#personSurName "Brag"; + base:personnames\#ref-IDPerson base:person\/BraHer-00 . + +base:personnames\/334 a base:personnames; + base:personnames\#DateEnd_Max "1914-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1914-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1905-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1905-01-01"^^xsd:date; + base:personnames\#IDPersonname 334; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "Rapp"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/339 a base:personnames; + base:personnames\#IDPersonname 339; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "S.-Heink"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/34 a base:personnames; + base:personnames\#IDPersonname 34; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "Fuoco = the mother's family name, given because there was more than one \"Maria Brambilla\" at the dance school, it means fire"; + base:personnames\#personName "Sofia"; + base:personnames\#personSurName "Fuoco"; + base:personnames\#ref-IDPerson base:person\/BraMar-00 . + +base:personnames\/344 a base:personnames; + base:personnames\#DateEnd_Max "1904-11-28"^^xsd:date; + base:personnames\#DateEnd_Min "1904-11-28"^^xsd:date; + base:personnames\#DateStart_Max "1892-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1892-01-01"^^xsd:date; + base:personnames\#IDPersonname 344; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Ernestine"; + base:personnames\#personSurName "Schumann"; + base:personnames\#ref-IDPerson base:person\/SchErn-00 . + +base:personnames\/349 a base:personnames; + base:personnames\#IDPersonname 349; + base:personnames\#personName "Sophie"; + base:personnames\#personSurName "Tuck"; + base:personnames\#ref-IDPerson base:person\/TucSop-00 . + +base:personnames\/35 a base:personnames; + base:personnames\#IDPersonname 35; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "Bischof"; + base:personnames\#ref-IDPerson base:person\/BraMar-01 . + +base:personnames\/354 a base:personnames; + base:personnames\#IDPersonname 354; + base:personnames\#personName "Manuel Patricio"; + base:personnames\#personSurName "Rodríguez Sitches"; + base:personnames\#ref-IDPerson base:person\/GarMan-01 . + +base:personnames\/359 a base:personnames; + base:personnames\#IDPersonname 359; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Erneste"; + base:personnames\#personSurName "Grisi"; + base:personnames\#ref-IDPerson base:person\/GriErn-00 . + +base:personnames\/36 a base:personnames; + base:personnames\#IDPersonname 36; + base:personnames\#personName "Teresa"; + base:personnames\#personSurName "Brambilla"; + base:personnames\#ref-IDPerson base:person\/BraTer-01 . + +base:personnames\/364 a base:personnames; + base:personnames\#IDPersonname 364; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ernestina"; + base:personnames\#personSurName "Grisi"; + base:personnames\#ref-IDPerson base:person\/GriErn-00 . + +base:personnames\/369 a base:personnames; + base:personnames\#IDPersonname 369; + base:personnames\#ref-IDPerson base:person\/GriErn-00 . + +base:personnames\/37 a base:personnames; + base:personnames\#IDPersonname 37; + base:personnames\#personName "Max Christian Friedrich"; + base:personnames\#personSurName "Bruch"; + base:personnames\#ref-IDPerson base:person\/BruMax-00 . + +base:personnames\/374 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1896"; + base:personnames\#DateEnd_Max "1896-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1896-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1860-04-04"^^xsd:date; + base:personnames\#DateStart_Min "1860-04-04"^^xsd:date; + base:personnames\#IDPersonname 374; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Vicenzo"; + base:personnames\#personSurName "Di Napoli Vita"; + base:personnames\#ref-IDPerson base:person\/DenVic-00 . + +base:personnames\/379 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1935"; + base:personnames\#DateEnd_Max "1935-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1935-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1896"; + base:personnames\#DateStart_Max "1896-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1896-01-01"^^xsd:date; + base:personnames\#IDPersonname 379; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Vicente"; + base:personnames\#personSurName "Di Napoli Vita"; + base:personnames\#ref-IDPerson base:person\/DenVic-00 . + +base:personnames\/38 a base:personnames; + base:personnames\#IDPersonname 38; + base:personnames\#personName "Max Karl August"; + base:personnames\#personSurName "Bruch"; + base:personnames\#ref-IDPerson base:person\/BruMax-00 . + +base:personnames\/384 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1935"; + base:personnames\#DateEnd_Max "1935-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1935-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1896"; + base:personnames\#DateStart_Max "1896-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1896-01-01"^^xsd:date; + base:personnames\#IDPersonname 384; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Vicente"; + base:personnames\#personSurName "De Napoli Vita"; + base:personnames\#ref-IDPerson base:person\/DenVic-00 . + +base:personnames\/389 a base:personnames; + base:personnames\#DateEnd_Max "1948-12-17"^^xsd:date; + base:personnames\#DateStart_Max "1881-03-23"^^xsd:date; + base:personnames\#DateStart_Min "1881-03-23"^^xsd:date; + base:personnames\#IDPersonname 389; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Eusebio"; + base:personnames\#personSurName "de Gorbea Lemmi"; + base:personnames\#ref-IDPerson base:person\/DegEus-00 . + +base:personnames\/39 a base:personnames; + base:personnames\#IDPersonname 39; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Christine"; + base:personnames\#personSurName "von Bukovics"; + base:personnames\#ref-IDPerson base:person\/BukChr-00 . + +base:personnames\/394 a base:personnames; + base:personnames\#DateEnd_Max "1948-12-17"^^xsd:date; + base:personnames\#IDPersonname 394; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Eusebio"; + base:personnames\#personSurName "de Gorbea"; + base:personnames\#ref-IDPerson base:person\/DegEus-00 . + +base:personnames\/396 a base:personnames; + base:personnames\#DateEnd_Max "1938-05-20"^^xsd:date; + base:personnames\#DateEnd_Min "1938-05-20"^^xsd:date; + base:personnames\#DateStart_Max "1888-02-06"^^xsd:date; + base:personnames\#DateStart_Min "1850-02-06"^^xsd:date; + base:personnames\#IDPersonname 396; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Nicolás"; + base:personnames\#personSurName "de las Llanderas Fraga"; + base:personnames\#ref-IDPerson base:person\/DelNic-00 . + +base:personnames\/399 a base:personnames; + base:personnames\#DateEnd_Max "1938-05-20"^^xsd:date; + base:personnames\#DateEnd_Min "1938-05-20"^^xsd:date; + base:personnames\#IDPersonname 399; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Nicolás"; + base:personnames\#personSurName "de las Llanderas"; + base:personnames\#ref-IDPerson base:person\/DelNic-00 . + +base:personnames\/4 a base:personnames; + base:personnames\#IDPersonname 4; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "second marriage"; + base:personnames\#personName "Hermine"; + base:personnames\#personSurName "Gräfin Normann-Ehrenfels"; + base:personnames\#ref-IDPerson base:person\/AlbHer-00 . + +base:personnames\/40 a base:personnames; + base:personnames\#IDPersonname 40; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Christine"; + base:personnames\#personSurName "von Bukovics von Kiss-Alacska"; + base:personnames\#ref-IDPerson base:person\/BukChr-00 . + +base:personnames\/404 a base:personnames; + base:personnames\#DateEnd_Max "1941-11-01"^^xsd:date; + base:personnames\#DateEnd_Min "1941-11-01"^^xsd:date; + base:personnames\#IDPersonname 404; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Francisco"; + base:personnames\#personSurName "Delgado"; + base:personnames\#ref-IDPerson base:person\/DelFra-00 . + +base:personnames\/409 a base:personnames; + base:personnames\#DateEnd_Max "1941-11-01"^^xsd:date; + base:personnames\#DateEnd_Min "1941-11-01"^^xsd:date; + base:personnames\#IDPersonname 409; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Francisco \"Paco\""; + base:personnames\#personSurName "Delgado"; + base:personnames\#ref-IDPerson base:person\/DelFra-00 . + +base:personnames\/41 a base:personnames; + base:personnames\#IDPersonname 41; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Christine"; + base:personnames\#personSurName "von Bukovics von Kis-Alaska"; + base:personnames\#ref-IDPerson base:person\/BukChr-00 . + +base:personnames\/414 a base:personnames; + base:personnames\#IDPersonname 414; + base:personnames\#ref-IDPerson base:person\/BecMar-00 . + +base:personnames\/419 a base:personnames; + base:personnames\#IDPersonname 419; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Aurelie"; + base:personnames\#personSurName "Jäger-Wilczek"; + base:personnames\#ref-IDPerson base:person\/WilAur-00 . + +base:personnames\/42 a base:personnames; + base:personnames\#IDPersonname 42; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Christine"; + base:personnames\#personSurName "Geiringer"; + base:personnames\#ref-IDPerson base:person\/BukChr-00 . + +base:personnames\/424 a base:personnames; + base:personnames\#IDPersonname 424; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Aurelia"; + base:personnames\#personSurName "Jaeger-Wilczek"; + base:personnames\#ref-IDPerson base:person\/WilAur-00 . + +base:personnames\/429 a base:personnames; + base:personnames\#IDPersonname 429; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Aurelie"; + base:personnames\#personSurName "Wilczek"; + base:personnames\#ref-IDPerson base:person\/WilAur-00 . + +base:personnames\/43 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1905"; + base:personnames\#DateEnd_Max "1905-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1905-01-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1870-01-08"; + base:personnames\#DateStart_Max "1870-01-08"^^xsd:date; + base:personnames\#DateStart_Min "1870-01-08"^^xsd:date; + base:personnames\#IDPersonname 43; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Sara Jane "; + base:personnames\#personSurName "Layton Walker"; + base:personnames\#ref-IDPerson base:person\/CahCha-00 . + +base:personnames\/434 a base:personnames; + base:personnames\#IDPersonname 434; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Carmen"; + base:personnames\#personSurName "Miranda"; + base:personnames\#ref-IDPerson base:person\/MirCar-00 . + +base:personnames\/439 a base:personnames; + base:personnames\#IDPersonname 439; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria do Carmo"; + base:personnames\#personSurName "Miranda da Cunha"; + base:personnames\#ref-IDPerson base:person\/MirCar-00 . + +base:personnames\/44 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1951-04-15"; + base:personnames\#DateEnd_Max "1951-04-15"^^xsd:date; + base:personnames\#DateEnd_Min "1951-04-15"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1905"; + base:personnames\#DateStart_Max "1905-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1905-01-01"^^xsd:date; + base:personnames\#IDPersonname 44; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Sara"; + base:personnames\#personSurName "Charles-Cahier"; + base:personnames\#ref-IDPerson base:person\/CahCha-00 . + +base:personnames\/449 a base:personnames; + base:personnames\#DateStart_Fuzzy "Approx.1846-1847"; + base:personnames\#IDPersonname 449; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Bendowa"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/45 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1951-04-15"; + base:personnames\#DateEnd_Max "1951-04-15"^^xsd:date; + base:personnames\#DateEnd_Min "1951-04-15"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1905"; + base:personnames\#DateStart_Max "1905-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1905-01-01"^^xsd:date; + base:personnames\#IDPersonname 45; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#comment ""; + base:personnames\#personName "Mdm. Charles"; + base:personnames\#personSurName "Cahier"; + base:personnames\#ref-IDPerson base:person\/CahCha-00 . + +base:personnames\/454 a base:personnames; + base:personnames\#IDPersonname 454; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Jadwiga Misel"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/459 a base:personnames; + base:personnames\#IDPersonname 459; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Jadwiga Mizel"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/46 a base:personnames; + base:personnames\#IDPersonname 46; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName """Eugénia Malvina +"""; + base:personnames\#personSurName "Garrigues"; + base:personnames\#ref-IDPerson base:person\/SchMal-00 . + +base:personnames\/464 a base:personnames; + base:personnames\#IDPersonname 464; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Jadwiga Helena"; + base:personnames\#personSurName "Misel"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/469 a base:personnames; + base:personnames\#IDPersonname 469; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Jadwiga Helena"; + base:personnames\#personSurName "Chłapowska"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/47 a base:personnames; + base:personnames\#IDPersonname 47; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Malvina"; + base:personnames\#personSurName "Garrigues"; + base:personnames\#ref-IDPerson base:person\/SchMal-00 . + +base:personnames\/474 a base:personnames; + base:personnames\#IDPersonname 474; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Modrzejewska-Chłapowska"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/48 a base:personnames; + base:personnames\#IDPersonname 48; + base:personnames\#personName "Eugénia Malvina"; + base:personnames\#personSurName "Schnorr v. Carolsfeld"; + base:personnames\#ref-IDPerson base:person\/SchMal-00 . + +base:personnames\/484 a base:personnames; + base:personnames\#IDPersonname 484; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Helena"; + base:personnames\#personSurName "Chłapowska"; + base:personnames\#ref-IDPerson base:person\/ModHel-00 . + +base:personnames\/49 a base:personnames; + base:personnames\#IDPersonname 49; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Charlie"; + base:personnames\#personSurName "Chaplin"; + base:personnames\#ref-IDPerson base:person\/ChaCha-00 . + +base:personnames\/5 a base:personnames; + base:personnames\#IDPersonname 5; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment ""; + base:personnames\#personName "Hermine"; + base:personnames\#personSurName "Normann-Ehrenfels"; + base:personnames\#ref-IDPerson base:person\/AlbHer-00 . + +base:personnames\/50 a base:personnames; + base:personnames\#IDPersonname 50; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Rosamond Maria"; + base:personnames\#personSurName "Coghlan"; + base:personnames\#ref-IDPerson base:person\/CogRos-00 . + +base:personnames\/51 a base:personnames; + base:personnames\#IDPersonname 51; + base:personnames\#personName "Isabella"; + base:personnames\#personSurName "Collbran"; + base:personnames\#ref-IDPerson base:person\/ColIsa-00 . + +base:personnames\/514 a base:personnames; + base:personnames\#IDPersonname 514; + base:personnames\#personName "Salvatore"; + base:personnames\#personSurName "Marchesi de Castrone"; + base:personnames\#ref-IDPerson base:person\/MarSal-00 . + +base:personnames\/519 a base:personnames; + base:personnames\#IDPersonname 519; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Friederike"; + base:personnames\#personSurName "Ress"; + base:personnames\#ref-IDPerson base:person\/ResFre-00 . + +base:personnames\/52 a base:personnames; + base:personnames\#IDPersonname 52; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Isabella"; + base:personnames\#personSurName "Rossini"; + base:personnames\#ref-IDPerson base:person\/ColIsa-00 . + +base:personnames\/524 a base:personnames; + base:personnames\#IDPersonname 524; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Augusta"; + base:personnames\#personSurName "Candiani"; + base:personnames\#ref-IDPerson base:person\/CanAug-00 . + +base:personnames\/529 a base:personnames; + base:personnames\#IDPersonname 529; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Carlotta Augusta Angeolina"; + base:personnames\#personSurName "Candiani"; + base:personnames\#ref-IDPerson base:person\/CanAug-00 . + +base:personnames\/53 a base:personnames; + base:personnames\#IDPersonname 53; + base:personnames\#personName "Isabella"; + base:personnames\#personSurName "Colbrand"; + base:personnames\#ref-IDPerson base:person\/ColIsa-00 . + +base:personnames\/54 a base:personnames; + base:personnames\#IDPersonname 54; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria Dorothea"; + base:personnames\#personSurName "Herrmann"; + base:personnames\#ref-IDPerson base:person\/CorBla-00 . + +base:personnames\/55 a base:personnames; + base:personnames\#IDPersonname 55; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Rosa"; + base:personnames\#personSurName "Goldstein"; + base:personnames\#ref-IDPerson base:person\/CsiRos-00 . + +base:personnames\/56 a base:personnames; + base:personnames\#IDPersonname 56; + base:personnames\#personName """Hariclea Hartulari + +"""; + base:personnames\#personSurName "Darclée"; + base:personnames\#ref-IDPerson base:person\/DarHar-00 . + +base:personnames\/57 a base:personnames; + base:personnames\#IDPersonname 57; + base:personnames\#personName "Hariclea"; + base:personnames\#personSurName "Haricli"; + base:personnames\#ref-IDPerson base:person\/DarHar-00 . + +base:personnames\/58 a base:personnames; + base:personnames\#IDPersonname 58; + base:personnames\#personName "Emilie Věnceslava Pavlína"; + base:personnames\#personSurName "Kittlová"; + base:personnames\#ref-IDPerson base:person\/DesEma-00 . + +base:personnames\/589 a base:personnames; + base:personnames\#IDPersonname 589; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "name adaptation into portuguese"; + base:personnames\#personName "Caetano"; + base:personnames\#personSurName "Carrancini"; + base:personnames\#ref-IDPerson base:person\/CarGae-00 . + +base:personnames\/59 a base:personnames; + base:personnames\#IDPersonname 59; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Emilie"; + base:personnames\#personSurName "Halsbach"; + base:personnames\#ref-IDPerson base:person\/DesEma-00 . + +base:personnames\/594 a base:personnames; + base:personnames\#IDPersonname 594; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Luís Cândido"; + base:personnames\#personSurName "Pinheiro Furtado Coelho"; + base:personnames\#ref-IDPerson base:person\/FurCoe-00 . + +base:personnames\/599 a base:personnames; + base:personnames\#IDPersonname 599; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Carlos"; + base:personnames\#personSurName "de Mello Leal"; + base:personnames\#ref-IDPerson base:person\/LeaCar-00 . + +base:personnames\/6 a base:personnames; + base:personnames\#IDPersonname 6; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria Anna Marzia"; + base:personnames\#personSurName "Alboni"; + base:personnames\#ref-IDPerson base:person\/AlbMar-00 . + +base:personnames\/60 a base:personnames; + base:personnames\#IDPersonname 60; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName """Emmy +"""; + base:personnames\#personSurName "Destinn"; + base:personnames\#ref-IDPerson base:person\/DesEma-00 . + +base:personnames\/604 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "1st August 1856"; + base:personnames\#DateStart_Max "1856-08-01"^^xsd:date; + base:personnames\#DateStart_Min "1856-08-01"^^xsd:date; + base:personnames\#IDPersonname 604; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Pauline"; + base:personnames\#personSurName "Lyon"; + base:personnames\#ref-IDPerson base:person\/LyoPau-00 . + +base:personnames\/609 a base:personnames; + base:personnames\#DateEnd_Fuzzy "-"; + base:personnames\#DateStart_Fuzzy "-"; + base:personnames\#IDPersonname 609; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Anna"; + base:personnames\#personSurName "José"; + base:personnames\#ref-IDPerson base:person\/LyoPau-00 . + +base:personnames\/61 a base:personnames; + base:personnames\#IDPersonname 61; + base:personnames\#personName "Ema"; + base:personnames\#personSurName "Destinnová"; + base:personnames\#ref-IDPerson base:person\/DesEma-00 . + +base:personnames\/614 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1898-12-31"; + base:personnames\#DateEnd_Max "1898-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1898-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1886-04-02"^^xsd:date; + base:personnames\#DateStart_Min "1886-04-02"^^xsd:date; + base:personnames\#IDPersonname 614; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Enzo Luis Humberto Victor Manuel"; + base:personnames\#personSurName "Aloisi"; + base:personnames\#ref-IDPerson base:person\/AloEnz-00 . + +base:personnames\/619 a base:personnames; + base:personnames\#DateEnd_Max "1875-05-02"^^xsd:date; + base:personnames\#DateEnd_Min "1975-05-02"^^xsd:date; + base:personnames\#DateStart_Fuzzy "1898-01-01"; + base:personnames\#DateStart_Max "1898-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1898-01-01"^^xsd:date; + base:personnames\#IDPersonname 619; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "Migration related"; + base:personnames\#personName "Enzo Carlos"; + base:personnames\#personSurName "Aloisi"; + base:personnames\#ref-IDPerson base:person\/AloEnz-00 . + +base:personnames\/62 a base:personnames; + base:personnames\#IDPersonname 62; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment "Portuguese version"; + base:personnames\#personName "Emílio"; + base:personnames\#personSurName "Doux"; + base:personnames\#ref-IDPerson base:person\/DouEmi-00 . + +base:personnames\/624 a base:personnames; + base:personnames\#IDPersonname 624; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Lucinda Augusta"; + base:personnames\#personSurName "da Silva Borges"; + base:personnames\#ref-IDPerson base:person\/SimLuc-00 . + +base:personnames\/629 a base:personnames; + base:personnames\#DateEnd_Max "1956-03-30"^^xsd:date; + base:personnames\#DateEnd_Min "1956-03-30"^^xsd:date; + base:personnames\#DateStart_Max "1889-09-23"^^xsd:date; + base:personnames\#DateStart_Min "1889-09-23"^^xsd:date; + base:personnames\#IDPersonname 629; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Luis"; + base:personnames\#personSurName "Bayón Herrera"; + base:personnames\#ref-IDPerson base:person\/HerLui-00 . + +base:personnames\/63 a base:personnames; + base:personnames\#IDPersonname 63; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#comment ""; + base:personnames\#personName "Louisa "; + base:personnames\#personSurName "Lane"; + base:personnames\#ref-IDPerson base:person\/DreLou-00 . + +base:personnames\/634 a base:personnames; + base:personnames\#IDPersonname 634; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Juan"; + base:personnames\#personSurName "Pueblo"; + base:personnames\#ref-IDPerson base:person\/HerLui-00 . + +base:personnames\/639 a base:personnames; + base:personnames\#DateEnd_Max "1933-11-20"^^xsd:date; + base:personnames\#DateEnd_Min "1933-11-20"^^xsd:date; + base:personnames\#DateStart_Min "1860-12-19"^^xsd:date; + base:personnames\#IDPersonname 639; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Arturo Nemesio"; + base:personnames\#personSurName "Eusevi de Valladares"; + base:personnames\#ref-IDPerson base:person\/EusArt-00 . + +base:personnames\/64 a base:personnames; + base:personnames\#IDPersonname 64; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment ""; + base:personnames\#personName "Mrs. John Drew"; + base:personnames\#personSurName ""; + base:personnames\#ref-IDPerson base:person\/DreLou-00 . + +base:personnames\/644 a base:personnames; + base:personnames\#DateEnd_Max "1933-11-20"^^xsd:date; + base:personnames\#DateEnd_Min "1933-11-20"^^xsd:date; + base:personnames\#DateStart_Min "1860-12-19"^^xsd:date; + base:personnames\#IDPersonname 644; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Arturo Nemesio"; + base:personnames\#personSurName "Eusevi"; + base:personnames\#ref-IDPerson base:person\/EusArt-00 . + +base:personnames\/649 a base:personnames; + base:personnames\#DateEnd_Max "1933-11-20"^^xsd:date; + base:personnames\#DateEnd_Min "1933-11-20"^^xsd:date; + base:personnames\#DateStart_Min "1860-12-19"^^xsd:date; + base:personnames\#IDPersonname 649; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Arturo"; + base:personnames\#personSurName "Eusevi"; + base:personnames\#ref-IDPerson base:person\/EusArt-00 . + +base:personnames\/65 a base:personnames; + base:personnames\#IDPersonname 65; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Edward Mieczisław"; + base:personnames\#personSurName "Reszke"; + base:personnames\#ref-IDPerson base:person\/ResEdo-00 . + +base:personnames\/654 a base:personnames; + base:personnames\#DateEnd_Fuzzy "1853"; + base:personnames\#DateEnd_Max "1853-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1853-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1837-06-16"^^xsd:date; + base:personnames\#DateStart_Min "1837-06-16"^^xsd:date; + base:personnames\#IDPersonname 654; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Jean Émile"; + base:personnames\#personSurName "Bieckert"; + base:personnames\#ref-IDPerson base:person\/BieEmi-00 . + +base:personnames\/659 a base:personnames; + base:personnames\#DateStart_Fuzzy "1853"; + base:personnames\#DateStart_Max "1853-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1853-01-01"^^xsd:date; + base:personnames\#IDPersonname 659; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Emilio"; + base:personnames\#personSurName "Bieckert"; + base:personnames\#ref-IDPerson base:person\/BieEmi-00 . + +base:personnames\/66 a base:personnames; + base:personnames\#IDPersonname 66; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Édouard"; + base:personnames\#personSurName "de Reske"; + base:personnames\#ref-IDPerson base:person\/ResEdo-00 . + +base:personnames\/664 a base:personnames; + base:personnames\#IDPersonname 664; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Barón Juan Emilio"; + base:personnames\#personSurName "Bieckert Lugensland"; + base:personnames\#ref-IDPerson base:person\/BieEmi-00 . + +base:personnames\/669 a base:personnames; + base:personnames\#DateEnd_Max "1977-06-05"^^xsd:date; + base:personnames\#DateEnd_Min "1977-06-05"^^xsd:date; + base:personnames\#DateStart_Max "1902-05-28"^^xsd:date; + base:personnames\#DateStart_Min "1902-05-28"^^xsd:date; + base:personnames\#IDPersonname 669; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Luis César"; + base:personnames\#personSurName "Amadori"; + base:personnames\#ref-IDPerson base:person\/AmaLui-00 . + +base:personnames\/67 a base:personnames; + base:personnames\#IDPersonname 67; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Marian Eberhard Franz Emil"; + base:personnames\#personSurName "von Kleydorff"; + base:personnames\#ref-IDPerson base:person\/EgeFra-00 . + +base:personnames\/674 a base:personnames; + base:personnames\#DateEnd_Max "1974-02-06"^^xsd:date; + base:personnames\#DateEnd_Min "1974-02-06"^^xsd:date; + base:personnames\#DateStart_Max "1899-12-08"^^xsd:date; + base:personnames\#DateStart_Min "1899-12-08"^^xsd:date; + base:personnames\#IDPersonname 674; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Alfredo"; + base:personnames\#personSurName "de la Guardia"; + base:personnames\#ref-IDPerson base:person\/GuaAlf-00 . + +base:personnames\/679 a base:personnames; + base:personnames\#IDPersonname 679; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Heinrich"; + base:personnames\#personSurName "Cohn"; + base:personnames\#ref-IDPerson base:person\/ConHei-00 . + +base:personnames\/68 a base:personnames; + base:personnames\#IDPersonname 68; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Toni"; + base:personnames\#personSurName "Claar-Eibenschütz"; + base:personnames\#ref-IDPerson base:person\/EibAnt-00 . + +base:personnames\/684 a base:personnames; + base:personnames\#IDPersonname 684; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Arthur"; + base:personnames\#personSurName "Napoleão dos Santos"; + base:personnames\#ref-IDPerson base:person\/NapArt-00 . + +base:personnames\/689 a base:personnames; + base:personnames\#IDPersonname 689; + base:personnames\#personName "Galton"; + base:personnames\#personSurName "Susie"; + base:personnames\#ref-IDPerson base:person\/GalSus-00 . + +base:personnames\/69 a base:personnames; + base:personnames\#IDPersonname 69; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Riza"; + base:personnames\#personSurName "Malata-Eibenschütz"; + base:personnames\#ref-IDPerson base:person\/EibRiz-00 . + +base:personnames\/693 a base:personnames; + base:personnames\#IDPersonname 693; + base:personnames\#personName "Galton Kelleher"; + base:personnames\#personSurName "Susan"; + base:personnames\#ref-IDPerson base:person\/GalSus-00 . + +base:personnames\/694 a base:personnames; + base:personnames\#IDPersonname 694; + base:personnames\#personName "C. Miln"; + base:personnames\#personSurName "Geo."; + base:personnames\#ref-IDPerson base:person\/MilGeo-00 . + +base:personnames\/7 a base:personnames; + base:personnames\#IDPersonname 7; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Fanny Jane"; + base:personnames\#personSurName "Davis"; + base:personnames\#ref-IDPerson base:person\/AldFra-00 . + +base:personnames\/70 a base:personnames; + base:personnames\#DateEnd_Min "1914-09-05"^^xsd:date; + base:personnames\#DateStart_Max "1843-06-30"^^xsd:date; + base:personnames\#DateStart_Min "1843-06-01"^^xsd:date; + base:personnames\#IDPersonname 70; + base:personnames\#personName "G. B."; + base:personnames\#personSurName "Fentum"; + base:personnames\#ref-IDPerson base:person\/FenGeo-00 . + +base:personnames\/71 a base:personnames; + base:personnames\#IDPersonname 71; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "temporary"; + base:personnames\#personName "Clara"; + base:personnames\#personSurName "Fisher Maeder"; + base:personnames\#ref-IDPerson base:person\/FisCla-00 . + +base:personnames\/719 a base:personnames; + base:personnames\#IDPersonname 719; + base:personnames\#personName "Міша"; + base:personnames\#personSurName "Левицький"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/72 a base:personnames; + base:personnames\#IDPersonname 72; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Oskar"; + base:personnames\#personSurName "Fiedler"; + base:personnames\#ref-IDPerson base:person\/FieOsc-00 . + +base:personnames\/724 a base:personnames; + base:personnames\#IDPersonname 724; + base:personnames\#personName "Mischa"; + base:personnames\#personSurName "Levitzky"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/729 a base:personnames; + base:personnames\#IDPersonname 729; + base:personnames\#personName "Misha"; + base:personnames\#personSurName "Levitski"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/73 a base:personnames; + base:personnames\#IDPersonname 73; + base:personnames\#personName "Josephine"; + base:personnames\#personSurName "Fodor"; + base:personnames\#ref-IDPerson base:person\/FodJos-00 . + +base:personnames\/734 a base:personnames; + base:personnames\#IDPersonname 734; + base:personnames\#personName "Mischa"; + base:personnames\#personSurName "Levitski"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/739 a base:personnames; + base:personnames\#IDPersonname 739; + base:personnames\#personName "Misha"; + base:personnames\#personSurName "Levitsky"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/74 a base:personnames; + base:personnames\#IDPersonname 74; + base:personnames\#personName "Josephine"; + base:personnames\#personSurName "Fodor-Mainvielle"; + base:personnames\#ref-IDPerson base:person\/FodJos-00 . + +base:personnames\/744 a base:personnames; + base:personnames\#IDPersonname 744; + base:personnames\#personName "Mischa"; + base:personnames\#personSurName "Levitsky"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/749 a base:personnames; + base:personnames\#IDPersonname 749; + base:personnames\#personName "Misha"; + base:personnames\#personSurName "Levitzki"; + base:personnames\#ref-IDPerson base:person\/LevMis-00 . + +base:personnames\/75 a base:personnames; + base:personnames\#IDPersonname 75; + base:personnames\#personName "Josephine"; + base:personnames\#personSurName "Mainvielle-Fodor"; + base:personnames\#ref-IDPerson base:person\/FodJos-00 . + +base:personnames\/759 a base:personnames; + base:personnames\#IDPersonname 759; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Catherine"; + base:personnames\#personSurName "Mary Reignolds-Winslow"; + base:personnames\#ref-IDPerson base:person\/ReiCat-00 . + +base:personnames\/76 a base:personnames; + base:personnames\#IDPersonname 76; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Johanna Emilia Agnes"; + base:personnames\#personSurName "Gadski"; + base:personnames\#ref-IDPerson base:person\/JohGad-00 . + +base:personnames\/764 a base:personnames; + base:personnames\#DateStart_Fuzzy "December 1857"; + base:personnames\#DateStart_Max "1857-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1857-12-01"^^xsd:date; + base:personnames\#IDPersonname 764; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Kate"; + base:personnames\#personSurName "Farren"; + base:personnames\#ref-IDPerson base:person\/ReiCat-00 . + +base:personnames\/769 a base:personnames; + base:personnames\#IDPersonname 769; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Catherine"; + base:personnames\#personSurName "Winslow"; + base:personnames\#ref-IDPerson base:person\/ReiCat-00 . + +base:personnames\/77 a base:personnames; + base:personnames\#IDPersonname 77; + base:personnames\#personName "Marius Friedrich Caesar Karl Theodor"; + base:personnames\#personSurName "Galster"; + base:personnames\#ref-IDPerson base:person\/GalCae-00 . + +base:personnames\/774 a base:personnames; + base:personnames\#IDPersonname 774; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Catherine"; + base:personnames\#personSurName "Reignolds"; + base:personnames\#ref-IDPerson base:person\/ReiCat-00 . + +base:personnames\/778 a base:personnames; + base:personnames\#IDPersonname 778; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Ida"; + base:personnames\#personSurName "Baier"; + base:personnames\#ref-IDPerson base:person\/BaiIda-00 . + +base:personnames\/78 a base:personnames; + base:personnames\#IDPersonname 78; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Georgine"; + base:personnames\#personSurName "Meysel"; + base:personnames\#ref-IDPerson base:person\/GalGeo-00 . + +base:personnames\/782 a base:personnames; + base:personnames\#IDPersonname 782; + base:personnames\#personName "Tsipa"; + base:personnames\#personSurName "Abelman"; + base:personnames\#ref-IDPerson base:person\/AbeTsi-00 . + +base:personnames\/786 a base:personnames; + base:personnames\#IDPersonname 786; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Vadeco"; + base:personnames\#ref-IDPerson base:person\/LuaOsw-00 . + +base:personnames\/79 a base:personnames; + base:personnames\#IDPersonname 79; + base:personnames\#personName "Manuel"; + base:personnames\#personSurName "Garcia"; + base:personnames\#ref-IDPerson base:person\/GarMan-00 . + +base:personnames\/790 a base:personnames; + base:personnames\#IDPersonname 790; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Garoto"; + base:personnames\#ref-IDPerson base:person\/LuaGar-00 . + +base:personnames\/794 a base:personnames; + base:personnames\#IDPersonname 794; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Salvatore Antonio"; + base:personnames\#personSurName "Guaragno"; + base:personnames\#ref-IDPerson base:person\/GuaHar-00 . + +base:personnames\/798 a base:personnames; + base:personnames\#IDPersonname 798; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Zezinho"; + base:personnames\#ref-IDPerson base:person\/LuaZez-00 . + +base:personnames\/8 a base:personnames; + base:personnames\#IDPersonname 8; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Claire Augustine Mélanie Francoise"; + base:personnames\#personSurName "Lardinois"; + base:personnames\#ref-IDPerson base:person\/ArrBla-00 . + +base:personnames\/80 a base:personnames; + base:personnames\#IDPersonname 80; + base:personnames\#personName "Manuel"; + base:personnames\#personSurName "Rodriguez Garcia"; + base:personnames\#ref-IDPerson base:person\/GarMan-01 . + +base:personnames\/802 a base:personnames; + base:personnames\#IDPersonname 802; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Zé Carioca"; + base:personnames\#ref-IDPerson base:person\/LuaZez-00 . + +base:personnames\/806 a base:personnames; + base:personnames\#IDPersonname 806; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Lulu"; + base:personnames\#ref-IDPerson base:person\/LulAlu-00 . + +base:personnames\/81 a base:personnames; + base:personnames\#IDPersonname 81; + base:personnames\#personName "Manuel Patricio"; + base:personnames\#personSurName "Rodriguez García"; + base:personnames\#ref-IDPerson base:person\/GarMan-01 . + +base:personnames\/810 a base:personnames; + base:personnames\#IDPersonname 810; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Russinho"; + base:personnames\#ref-IDPerson base:person\/RusJos-01 . + +base:personnames\/814 a base:personnames; + base:personnames\#IDPersonname 814; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "José Rubem"; + base:personnames\#personSurName "Fonseca"; + base:personnames\#ref-IDPerson base:person\/FonJos-00 . + +base:personnames\/818 a base:personnames; + base:personnames\#IDPersonname 818; + base:personnames\#personName "Henry"; + base:personnames\#personSurName "Boernstein"; + base:personnames\#ref-IDPerson base:person\/BorHei-00 . + +base:personnames\/82 a base:personnames; + base:personnames\#DateEnd_Max "1879-12-31"^^xsd:date; + base:personnames\#DateEnd_Min "1879-01-01"^^xsd:date; + base:personnames\#DateStart_Max "1844-03-12"^^xsd:date; + base:personnames\#DateStart_Min "1844-03-12"^^xsd:date; + base:personnames\#IDPersonname 82; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Blanche"; + base:personnames\#personSurName "Galton"; + base:personnames\#ref-IDPerson base:person\/WhiBla-00 . + +base:personnames\/822 a base:personnames; + base:personnames\#IDPersonname 822; + base:personnames\#personName "Daniel E."; + base:personnames\#personSurName "Bandmann"; + base:personnames\#ref-IDPerson base:person\/BanDan-00 . + +base:personnames\/826 a base:personnames; + base:personnames\#IDPersonname 826; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Yisroel"; + base:personnames\#personSurName "Adler"; + base:personnames\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:personnames\/83 a base:personnames; + base:personnames\#IDPersonname 83; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "Mrs. Thomas Whiffen"; + base:personnames\#personSurName "Thomas Whiffen"; + base:personnames\#ref-IDPerson base:person\/WhiBla-00 . + +base:personnames\/830 a base:personnames; + base:personnames\#IDPersonname 830; + base:personnames\#personName "Jacob Pavlovich"; + base:personnames\#personSurName "Adler"; + base:personnames\#ref-IDPerson base:person\/AdlJac-706 . + +base:personnames\/834 a base:personnames; + base:personnames\#IDPersonname 834; + base:personnames\#personName "Avraham"; + base:personnames\#personSurName "Bielotserkovski"; + base:personnames\#ref-IDPerson base:person\/BelAdo-1246 . + +base:personnames\/838 a base:personnames; + base:personnames\#IDPersonname 838; + base:personnames\#personName "Isaac"; + base:personnames\#personSurName "Dov Berkowitz"; + base:personnames\#ref-IDPerson base:person\/BerYit-1275 . + +base:personnames\/84 a base:personnames; + base:personnames\#DateEnd_Max "1936-11-26"^^xsd:date; + base:personnames\#DateEnd_Min "1936-11-25"^^xsd:date; + base:personnames\#DateStart_Max "1844-03-12"^^xsd:date; + base:personnames\#DateStart_Min "1844-03-12"^^xsd:date; + base:personnames\#IDPersonname 84; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Maria Fanny"; + base:personnames\#personSurName "Blanche Galton"; + base:personnames\#ref-IDPerson base:person\/WhiBla-00 . + +base:personnames\/842 a base:personnames; + base:personnames\#IDPersonname 842; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Dawid"; + base:personnames\#personSurName "Dawidow"; + base:personnames\#ref-IDPerson base:person\/DavDav-3821 . + +base:personnames\/846 a base:personnames; + base:personnames\#IDPersonname 846; + base:personnames\#personName "Rakhel"; + base:personnames\#personSurName "Feygenberg"; + base:personnames\#ref-IDPerson base:person\/FeiRac-1622 . + +base:personnames\/85 a base:personnames; + base:personnames\#DateEnd_Max "1936-11-26"^^xsd:date; + base:personnames\#DateEnd_Min "1936-11-25"^^xsd:date; + base:personnames\#DateStart_Max "1868-07-11"^^xsd:date; + base:personnames\#DateStart_Min "1868-07-11"^^xsd:date; + base:personnames\#IDPersonname 85; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Blanche"; + base:personnames\#personSurName "Whiffen"; + base:personnames\#ref-IDPerson base:person\/WhiBla-00 . + +base:personnames\/850 a base:personnames; + base:personnames\#IDPersonname 850; + base:personnames\#personName "Rachel"; + base:personnames\#personSurName "Feigenberg-Eamri"; + base:personnames\#ref-IDPerson base:person\/FeiRac-1622 . + +base:personnames\/854 a base:personnames; + base:personnames\#IDPersonname 854; + base:personnames\#personName "Mordechai"; + base:personnames\#personSurName "Kompaneyets"; + base:personnames\#ref-IDPerson base:person\/KomMax-2133 . + +base:personnames\/858 a base:personnames; + base:personnames\#IDPersonname 858; + base:personnames\#personName "Motek"; + base:personnames\#personSurName "Kompaneyets"; + base:personnames\#ref-IDPerson base:person\/KomMax-2133 . + +base:personnames\/86 a base:personnames; + base:personnames\#IDPersonname 86; + base:personnames\#personName "Berta"; + base:personnames\#personSurName "Gerstenmann"; + base:personnames\#ref-IDPerson base:person\/GerBer-00 . + +base:personnames\/862 a base:personnames; + base:personnames\#IDPersonname 862; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Gitele"; + base:personnames\#personSurName "Finkelshteyn"; + base:personnames\#ref-IDPerson base:person\/LatIze-LatIze-927 . + +base:personnames\/866 a base:personnames; + base:personnames\#IDPersonname 866; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Sarah"; + base:personnames\#personSurName "Katz"; + base:personnames\#ref-IDPerson base:person\/NadSon-840 . + +base:personnames\/87 a base:personnames; + base:personnames\#IDPersonname 87; + base:personnames\#Nametype base:Nametype-; + base:personnames\#comment "professionally billed"; + base:personnames\#personName "Mrs. G. H. Gilbert"; + base:personnames\#ref-IDPerson base:person\/GilAnn-00 . + +base:personnames\/873 a base:personnames; + base:personnames\#IDPersonname 873; + base:personnames\#personName "Bina"; + base:personnames\#personSurName "Fuks"; + base:personnames\#ref-IDPerson base:person\/AbrBin-742 . + +base:personnames\/878 a base:personnames; + base:personnames\#IDPersonname 878; + base:personnames\#personName "Bina"; + base:personnames\#personSurName "Fuchs"; + base:personnames\#ref-IDPerson base:person\/AbrBin-742 . + +base:personnames\/88 a base:personnames; + base:personnames\#IDPersonname 88; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Reba"; + base:personnames\#personSurName "Fiersohn"; + base:personnames\#ref-IDPerson base:person\/GluAlm-00 . + +base:personnames\/883 a base:personnames; + base:personnames\#IDPersonname 883; + base:personnames\#personName "Bina"; + base:personnames\#personSurName "Abramowitz"; + base:personnames\#ref-IDPerson base:person\/AbrBin-742 . + +base:personnames\/888 a base:personnames; + base:personnames\#IDPersonname 888; + base:personnames\#personName "Elsa"; + base:personnames\#personSurName "Bassermann"; + base:personnames\#ref-IDPerson base:person\/BasEls-00 . + +base:personnames\/889 a base:personnames; + base:personnames\#IDPersonname 889; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Boaz"; + base:personnames\#personSurName "Young"; + base:personnames\#ref-IDPerson base:person\/YouBer-3320 . + +base:personnames\/89 a base:personnames; + base:personnames\#IDPersonname 89; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "unclear if Feinsohn or Fiersohn "; + base:personnames\#personName "Reba"; + base:personnames\#personSurName "Feinsohn"; + base:personnames\#ref-IDPerson base:person\/GluAlm-00 . + +base:personnames\/893 a base:personnames; + base:personnames\#IDPersonname 893; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Boaz"; + base:personnames\#personSurName "Yungvits"; + base:personnames\#ref-IDPerson base:person\/YouBer-3320 . + +base:personnames\/898 a base:personnames; + base:personnames\#IDPersonname 898; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Moysheh"; + base:personnames\#personSurName "Zeyfert"; + base:personnames\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:personnames\/9 a base:personnames; + base:personnames\#IDPersonname 9; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#comment "after second marriage"; + base:personnames\#personName "Clara"; + base:personnames\#personSurName "L. Wheeler"; + base:personnames\#ref-IDPerson base:person\/ArrBla-00 . + +base:personnames\/90 a base:personnames; + base:personnames\#DateEnd_Max "1922-04-06"^^xsd:date; + base:personnames\#DateStart_Min "1859-05-12"^^xsd:date; + base:personnames\#IDPersonname 90; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Arabella"; + base:personnames\#personSurName "Goddard Davison"; + base:personnames\#ref-IDPerson base:person\/GodAra-00 . + +base:personnames\/903 a base:personnames; + base:personnames\#DateStart_Fuzzy "1817"; + base:personnames\#DateStart_Max "1817-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1817-01-01"^^xsd:date; + base:personnames\#IDPersonname 903; + base:personnames\#comment "during his school time"; + base:personnames\#personName "Wilhelm Richard"; + base:personnames\#personSurName "Geyer"; + base:personnames\#ref-IDPerson base:person\/WagRic-00 . + +base:personnames\/908 a base:personnames; + base:personnames\#IDPersonname 908; + base:personnames\#ref-IDPerson base:person\/WagRic-00 . + +base:personnames\/909 a base:personnames; + base:personnames\#IDPersonname 909; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Frieda"; + base:personnames\#personSurName "Zibel-Goldstein"; + base:personnames\#ref-IDPerson base:person\/ZibFri-3386 . + +base:personnames\/91 a base:personnames; + base:personnames\#IDPersonname 91; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#comment ""; + base:personnames\#personName "Avrum"; + base:personnames\#personSurName "Goldnfoden"; + base:personnames\#ref-IDPerson base:person\/GolAbr-00 . + +base:personnames\/914 a base:personnames; + base:personnames\#IDPersonname 914; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Frieda"; + base:personnames\#personSurName "Gespass"; + base:personnames\#ref-IDPerson base:person\/ZibFri-3386 . + +base:personnames\/919 a base:personnames; + base:personnames\#IDPersonname 919; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Frieda"; + base:personnames\#personSurName "Zwiebel"; + base:personnames\#ref-IDPerson base:person\/ZibFri-3386 . + +base:personnames\/92 a base:personnames; + base:personnames\#IDPersonname 92; + base:personnames\#comment ""; + base:personnames\#personName "Avram"; + base:personnames\#personSurName "Goldfaden"; + base:personnames\#ref-IDPerson base:person\/GolAbr-00 . + +base:personnames\/924 a base:personnames; + base:personnames\#IDPersonname 924; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Frieda"; + base:personnames\#personSurName "Goldstein"; + base:personnames\#ref-IDPerson base:person\/ZibFri-3386 . + +base:personnames\/929 a base:personnames; + base:personnames\#IDPersonname 929; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Carl"; + base:personnames\#personSurName "Silverman"; + base:personnames\#ref-IDPerson base:person\/ZilKar-3399 . + +base:personnames\/93 a base:personnames; + base:personnames\#IDPersonname 93; + base:personnames\#comment ""; + base:personnames\#personName "Abraham"; + base:personnames\#personSurName "ben Chajim Lippe Goldfaden"; + base:personnames\#ref-IDPerson base:person\/GolAbr-00 . + +base:personnames\/934 a base:personnames; + base:personnames\#IDPersonname 934; + base:personnames\#personName "Yakov ben"; + base:personnames\#personSurName "Pinchas"; + base:personnames\#ref-IDPerson base:person\/AdlJac-706 . + +base:personnames\/939 a base:personnames; + base:personnames\#IDPersonname 939; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Asher-Zelig"; + base:personnames\#personSurName "Feinman"; + base:personnames\#ref-IDPerson base:person\/FeiSig-714 . + +base:personnames\/94 a base:personnames; + base:personnames\#IDPersonname 94; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Avrom"; + base:personnames\#personSurName "Goldfaden"; + base:personnames\#ref-IDPerson base:person\/GolAbr-00 . + +base:personnames\/944 a base:personnames; + base:personnames\#IDPersonname 944; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Cesare"; + base:personnames\#personSurName "Ciacchi"; + base:personnames\#ref-IDPerson base:person\/CiaCes-00 . + +base:personnames\/947 a base:personnames; + base:personnames\#DateEnd_Max "1861-01-17"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably 17.02.1821"; + base:personnames\#DateStart_Max "1821-02-17"^^xsd:date; + base:personnames\#IDPersonname 947; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Eliza Rosanna"; + base:personnames\#personSurName "Gilbert"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/95 a base:personnames; + base:personnames\#IDPersonname 95; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Lucina Alexia"; + base:personnames\#personSurName "Grahn"; + base:personnames\#ref-IDPerson base:person\/GraLuc-00 . + +base:personnames\/952 a base:personnames; + base:personnames\#DateStart_Max "1837-07-23"^^xsd:date; + base:personnames\#IDPersonname 952; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Eliza"; + base:personnames\#personSurName "James"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/957 a base:personnames; + base:personnames\#DateStart_Max "1837-07-23"^^xsd:date; + base:personnames\#IDPersonname 957; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Eliza Rosanna"; + base:personnames\#personSurName "James"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/96 a base:personnames; + base:personnames\#IDPersonname 96; + base:personnames\#Nametype base:Nametype-Birthname; + base:personnames\#personName "Caronna Adela Giuseppina Maria"; + base:personnames\#ref-IDPerson base:person\/GriCar-00 . + +base:personnames\/962 a base:personnames; + base:personnames\#DateEnd_Max "1861-01-17"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably 1843"; + base:personnames\#DateStart_Max "1843-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1843-01-01"^^xsd:date; + base:personnames\#IDPersonname 962; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "de los Dolores Porrys y Montez"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/967 a base:personnames; + base:personnames\#DateEnd_Max "1861-01-17"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably 1843"; + base:personnames\#DateStart_Max "1843-12-31"^^xsd:date; + base:personnames\#DateStart_Min "1843-01-01"^^xsd:date; + base:personnames\#IDPersonname 967; + base:personnames\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:personnames\#personName "Lola"; + base:personnames\#personSurName "Montez"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/97 a base:personnames; + base:personnames\#IDPersonname 97; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Adele"; + base:personnames\#personSurName "Jonas"; + base:personnames\#ref-IDPerson base:person\/GroAde-00 . + +base:personnames\/972 a base:personnames; + base:personnames\#DateStart_Fuzzy "Probably 7.10.1846"; + base:personnames\#IDPersonname 972; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Lollita"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/977 a base:personnames; + base:personnames\#DateEnd_Fuzzy "August 1847"; + base:personnames\#DateEnd_Max "1847-08-31"^^xsd:date; + base:personnames\#DateEnd_Min "1847-08-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably January 1847"; + base:personnames\#DateStart_Max "1847-01-31"^^xsd:date; + base:personnames\#DateStart_Min "1847-01-01"^^xsd:date; + base:personnames\#IDPersonname 977; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Gräfin Lola"; + base:personnames\#personSurName "Montez"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/98 a base:personnames; + base:personnames\#IDPersonname 98; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Franz Friedrich"; + base:personnames\#personSurName "Grünbaum"; + base:personnames\#ref-IDPerson base:person\/GruFri-00 . + +base:personnames\/982 a base:personnames; + base:personnames\#DateStart_Fuzzy "August 1847"; + base:personnames\#DateStart_Max "1847-08-31"^^xsd:date; + base:personnames\#DateStart_Min "1847-08-01"^^xsd:date; + base:personnames\#IDPersonname 982; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "Gräfin von Landsfeld"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/987 a base:personnames; + base:personnames\#DateStart_Fuzzy "February 1848"; + base:personnames\#DateStart_Max "1848-02-29"^^xsd:date; + base:personnames\#DateStart_Min "1848-02-01"^^xsd:date; + base:personnames\#IDPersonname 987; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personSurName "Mrs Bolton"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/99 a base:personnames; + base:personnames\#IDPersonname 99; + base:personnames\#Nametype base:Nametype-; + base:personnames\#personName "Ellen Maria Elizabeth"; + base:personnames\#personSurName "Gulbranson"; + base:personnames\#ref-IDPerson base:person\/GulEll-00 . + +base:personnames\/992 a base:personnames; + base:personnames\#DateEnd_Fuzzy "Probably July 1849"; + base:personnames\#DateEnd_Max "1849-07-31"^^xsd:date; + base:personnames\#DateEnd_Min "1849-07-01"^^xsd:date; + base:personnames\#DateStart_Fuzzy "Probably July 1849"; + base:personnames\#DateStart_Max "1849-07-31"^^xsd:date; + base:personnames\#DateStart_Min "1849-07-01"^^xsd:date; + base:personnames\#IDPersonname 992; + base:personnames\#Nametype base:Nametype-Other; + base:personnames\#personName "Maria"; + base:personnames\#personSurName "de los Dolores de Landsfeld"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/997 a base:personnames; + base:personnames\#DateEnd_Max "1861-01-17"^^xsd:date; + base:personnames\#DateStart_Fuzzy "July 1849"; + base:personnames\#DateStart_Max "1849-07-31"^^xsd:date; + base:personnames\#DateStart_Min "1849-07-01"^^xsd:date; + base:personnames\#IDPersonname 997; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personSurName "Mrs Heald"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:personnames\/998 a base:personnames; + base:personnames\#IDPersonname 998; + base:personnames\#Nametype base:Nametype-Marriage; + base:personnames\#personName "Marie"; + base:personnames\#personSurName "de Landsfeld-Heald"; + base:personnames\#ref-IDPerson base:person\/MonLol-00 . + +base:relationship\/1 a base:relationship; + base:relationship\#IDRel 1; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/HelAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/GolAbr-00 . + +base:relationship\/10 a base:relationship; + base:relationship\#IDRel 10; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1835"; + base:relationship\#comment "ballet master"; + base:relationship\#ref-IDPerson_active base:person\/GilAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/TagPau-00 . + +base:relationship\/10000 a base:relationship; + base:relationship\#IDRel 10000; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Boston"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WarWil-00 . + +base:relationship\/10010 a base:relationship; + base:relationship\#IDRel 10010; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/SchSig-00 . + +base:relationship\/10016 a base:relationship; + base:relationship\#DateEnd_Max "1871-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10016; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Fiancee . + +base:relationship\/10021 a base:relationship; + base:relationship\#DateEnd_Max "1871-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10021; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Fiancee . + +base:relationship\/10026 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1918"; + base:relationship\#DateEnd_Max "1918-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1918-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10026; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "San Francisco"; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10031 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1918"; + base:relationship\#DateEnd_Max "1918-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1918-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10031; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "San Francisco"; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10036 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10036; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00 . + +base:relationship\/10041 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10041; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00 . + +base:relationship\/10046 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10046; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10051 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10051; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10056 a base:relationship; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10056; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00 . + +base:relationship\/10061 a base:relationship; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10061; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00 . + +base:relationship\/10066 a base:relationship; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10066; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10071 a base:relationship; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10071; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10076 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10076; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/PynMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10081 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1869 till end of 1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 10081; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/KelAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/PynMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/10085 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1886"; + base:relationship\#DateEnd_Max "1886-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1886-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1885"; + base:relationship\#DateStart_Max "1885-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1885-01-01"^^xsd:date; + base:relationship\#IDRel 10085; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDOrganisation base:organisation\/1450; + base:relationship\#ref-IDPerson_active base:person\/CarGae-00; + base:relationship\#ref-IDPerson_passive base:person\/BraLui-00 . + +base:relationship\/10095 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1893"; + base:relationship\#DateEnd_Max "1893-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 10095; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDOrganisation base:organisation\/1455; + base:relationship\#ref-IDPerson_active base:person\/CarGae-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJac-00 . + +base:relationship\/10105 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 10105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDOrganisation base:organisation\/1460; + base:relationship\#ref-IDPerson_active base:person\/CarGae-00; + base:relationship\#ref-IDPerson_passive base:person\/BraDia-00 . + +base:relationship\/10115 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1913"; + base:relationship\#DateEnd_Max "1913-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1913-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 10115; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDOrganisation base:organisation\/1465; + base:relationship\#ref-IDPerson_active base:person\/CarGae-00; + base:relationship\#ref-IDPerson_passive base:person\/ColOre-00 . + +base:relationship\/10125 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1917"; + base:relationship\#DateEnd_Max "1917-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1917-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 10125; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDOrganisation base:organisation\/1470; + base:relationship\#ref-IDPerson_active base:person\/CarGae-00; + base:relationship\#ref-IDPerson_passive base:person\/SegPas-00 . + +base:relationship\/10135 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10135; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/LouAri-00 . + +base:relationship\/10140 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10140; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/LouAri-00 . + +base:relationship\/10145 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10145; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KalFri-00 . + +base:relationship\/10150 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10150; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KalFri-00 . + +base:relationship\/10155 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10155; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/AndLuc-00 . + +base:relationship\/10160 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10160; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/AndLuc-00 . + +base:relationship\/10165 a base:relationship; + base:relationship\#IDRel 10165; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KuhWil-00 . + +base:relationship\/10170 a base:relationship; + base:relationship\#IDRel 10170; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KuhWil-00 . + +base:relationship\/10175 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10175; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/ThaSig-00 . + +base:relationship\/10180 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10180; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/ThaSig-00 . + +base:relationship\/10185 a base:relationship; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 10185; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacGeo-00 . + +base:relationship\/10190 a base:relationship; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 10190; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacGeo-00 . + +base:relationship\/10195 a base:relationship; + base:relationship\#IDRel 10195; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MosIgn-00 . + +base:relationship\/102 a base:relationship; + base:relationship\#IDRel 102; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "He engaged Gustav Mahler for conducting in Hamburg."; + base:relationship\#ref-IDLocation base:location\/GER-HH-00; + base:relationship\#ref-IDPerson_active base:person\/PolBer-00; + base:relationship\#ref-IDPerson_passive base:person\/MahGus-00 . + +base:relationship\/10200 a base:relationship; + base:relationship\#IDRel 10200; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MosIgn-00 . + +base:relationship\/10205 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 10205; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00 . + +base:relationship\/10210 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 10210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00 . + +base:relationship\/10215 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-03-24"^^xsd:date; + base:relationship\#DateStart_Max "1859-05-12"^^xsd:date; + base:relationship\#DateStart_Min "1859-05-12"^^xsd:date; + base:relationship\#IDRel 10215; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/10220 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-03-24"^^xsd:date; + base:relationship\#DateStart_Max "1859-05-12"^^xsd:date; + base:relationship\#DateStart_Min "1859-05-12"^^xsd:date; + base:relationship\#IDRel 10220; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/10225 a base:relationship; + base:relationship\#IDRel 10225; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/VieHen-00 . + +base:relationship\/10230 a base:relationship; + base:relationship\#IDRel 10230; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/VieHen-00 . + +base:relationship\/10235 a base:relationship; + base:relationship\#IDRel 10235; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-00 . + +base:relationship\/10240 a base:relationship; + base:relationship\#IDRel 10240; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-00 . + +base:relationship\/10245 a base:relationship; + base:relationship\#IDRel 10245; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SebJoh-00 . + +base:relationship\/10250 a base:relationship; + base:relationship\#IDRel 10250; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SebJoh-00 . + +base:relationship\/10255 a base:relationship; + base:relationship\#IDRel 10255; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/HalCha-00 . + +base:relationship\/10260 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10260; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/LouAri-00 . + +base:relationship\/10265 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10265; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/LouAri-00 . + +base:relationship\/10270 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10270; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KalFri-00 . + +base:relationship\/10275 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 10275; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KalFri-00 . + +base:relationship\/10280 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10280; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/AndLuc-00 . + +base:relationship\/10285 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10285; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/AndLuc-00 . + +base:relationship\/10290 a base:relationship; + base:relationship\#IDRel 10290; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KuhWil-00 . + +base:relationship\/10295 a base:relationship; + base:relationship\#IDRel 10295; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/KuhWil-00 . + +base:relationship\/10300 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10300; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/ThaSig-00 . + +base:relationship\/10305 a base:relationship; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 10305; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/ThaSig-00 . + +base:relationship\/10310 a base:relationship; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 10310; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacGeo-00 . + +base:relationship\/10315 a base:relationship; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 10315; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacGeo-00 . + +base:relationship\/10320 a base:relationship; + base:relationship\#IDRel 10320; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MosIgn-00 . + +base:relationship\/10325 a base:relationship; + base:relationship\#IDRel 10325; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MosIgn-00 . + +base:relationship\/10330 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 10330; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00 . + +base:relationship\/10335 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 10335; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00 . + +base:relationship\/10340 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-03-24"^^xsd:date; + base:relationship\#DateStart_Max "1859-05-12"^^xsd:date; + base:relationship\#DateStart_Min "1859-05-12"^^xsd:date; + base:relationship\#IDRel 10340; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/10345 a base:relationship; + base:relationship\#DateEnd_Max "1885-03-24"^^xsd:date; + base:relationship\#DateEnd_Min "1885-03-24"^^xsd:date; + base:relationship\#DateStart_Max "1859-05-12"^^xsd:date; + base:relationship\#DateStart_Min "1859-05-12"^^xsd:date; + base:relationship\#IDRel 10345; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/10350 a base:relationship; + base:relationship\#IDRel 10350; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/VieHen-00 . + +base:relationship\/10355 a base:relationship; + base:relationship\#IDRel 10355; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/VieHen-00 . + +base:relationship\/10360 a base:relationship; + base:relationship\#IDRel 10360; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-00 . + +base:relationship\/10365 a base:relationship; + base:relationship\#IDRel 10365; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-00 . + +base:relationship\/10370 a base:relationship; + base:relationship\#IDRel 10370; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SebJoh-00 . + +base:relationship\/10375 a base:relationship; + base:relationship\#IDRel 10375; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SebJoh-00 . + +base:relationship\/10380 a base:relationship; + base:relationship\#IDRel 10380; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/HalCha-00 . + +base:relationship\/10385 a base:relationship; + base:relationship\#IDRel 10385; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/HalCha-00 . + +base:relationship\/10390 a base:relationship; + base:relationship\#IDRel 10390; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/10395 a base:relationship; + base:relationship\#IDRel 10395; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/10400 a base:relationship; + base:relationship\#IDRel 10400; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MenFel-00 . + +base:relationship\/10405 a base:relationship; + base:relationship\#IDRel 10405; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MenFel-00 . + +base:relationship\/10410 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10410; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDOrganisation base:organisation\/1530; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/GroGeo-00 . + +base:relationship\/10415 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10415; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDOrganisation base:organisation\/1530; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/GroGeo-00 . + +base:relationship\/10420 a base:relationship; + base:relationship\#IDRel 10420; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/BelAnn-00 . + +base:relationship\/10425 a base:relationship; + base:relationship\#IDRel 10425; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/BelAnn-00 . + +base:relationship\/10430 a base:relationship; + base:relationship\#IDRel 10430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacEmm-00 . + +base:relationship\/10435 a base:relationship; + base:relationship\#IDRel 10435; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/MacEmm-00 . + +base:relationship\/10440 a base:relationship; + base:relationship\#IDRel 10440; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/RoeJan-00 . + +base:relationship\/10445 a base:relationship; + base:relationship\#IDRel 10445; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GodAra-00; + base:relationship\#ref-IDPerson_passive base:person\/RoeJan-00 . + +base:relationship\/10450 a base:relationship; + base:relationship\#IDRel 10450; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/WalGus-00 . + +base:relationship\/10455 a base:relationship; + base:relationship\#IDRel 10455; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/WalGus-00 . + +base:relationship\/10480 a base:relationship; + base:relationship\#IDRel 10480; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Beverungen"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyHer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/10485 a base:relationship; + base:relationship\#IDRel 10485; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Beverungen"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyHer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/10490 a base:relationship; + base:relationship\#IDRel 10490; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Beverungen"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJet-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/10495 a base:relationship; + base:relationship\#IDRel 10495; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Beverungen"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJet-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/105 a base:relationship; + base:relationship\#IDRel 105; + base:relationship\#ref-IDLocation base:location\/CZ-Prag-00; + base:relationship\#ref-IDPerson_active base:person\/NacFra-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoFra-00 . + +base:relationship\/10500 a base:relationship; + base:relationship\#IDRel 10500; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/FriNan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10505 a base:relationship; + base:relationship\#IDRel 10505; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/FriNan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10510 a base:relationship; + base:relationship\#IDRel 10510; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyNan-00 . + +base:relationship\/10515 a base:relationship; + base:relationship\#IDRel 10515; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyNan-00 . + +base:relationship\/10520 a base:relationship; + base:relationship\#IDRel 10520; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/10525 a base:relationship; + base:relationship\#IDRel 10525; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/10530 a base:relationship; + base:relationship\#IDRel 10530; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJes-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/10535 a base:relationship; + base:relationship\#IDRel 10535; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyJes-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/10540 a base:relationship; + base:relationship\#IDRel 10540; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/RooEli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/10545 a base:relationship; + base:relationship\#IDRel 10545; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/RooEli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/10550 a base:relationship; + base:relationship\#IDRel 10550; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyMos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/10555 a base:relationship; + base:relationship\#IDRel 10555; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyMos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/10560 a base:relationship; + base:relationship\#IDRel 10560; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/DanSal-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/10565 a base:relationship; + base:relationship\#IDRel 10565; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/DanSal-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/10570 a base:relationship; + base:relationship\#IDRel 10570; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/BecLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/10575 a base:relationship; + base:relationship\#IDRel 10575; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "USA"; + base:relationship\#ref-IDPerson_active base:person\/MeyMor-00; + base:relationship\#ref-IDPerson_passive base:person\/BecLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/10580 a base:relationship; + base:relationship\#DateEnd_Max "1953-01-01"^^xsd:date; + base:relationship\#DateEnd_Min "1953-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1916-01-01"^^xsd:date; + base:relationship\#DateStart_Min "1916-01-01"^^xsd:date; + base:relationship\#IDRel 10580; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MisMim-00; + base:relationship\#ref-IDPerson_passive base:person\/RosBer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10585 a base:relationship; + base:relationship\#DateEnd_Max "1953-01-01"^^xsd:date; + base:relationship\#DateEnd_Min "1953-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1916-01-01"^^xsd:date; + base:relationship\#DateStart_Min "1916-01-01"^^xsd:date; + base:relationship\#IDRel 10585; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MisMim-00; + base:relationship\#ref-IDPerson_passive base:person\/RosBer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/10595 a base:relationship; + base:relationship\#DateEnd_Max "1864-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1864-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10595; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AdlThe-00 . + +base:relationship\/106 a base:relationship; + base:relationship\#IDRel 106; + base:relationship\#Timeperiod "1909 - 1915"; + base:relationship\#ref-IDOrganisation base:organisation\/537; + base:relationship\#ref-IDPerson_active base:person\/BasAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/10605 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 10605; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1600; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AdoWil-00 . + +base:relationship\/10615 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10615; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AltAnn-00 . + +base:relationship\/10625 a base:relationship; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10625; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AmsJoh-00 . + +base:relationship\/10635 a base:relationship; + base:relationship\#DateEnd_Max "1866-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10635; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeCar-00 . + +base:relationship\/10645 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 10645; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/PadMar-00 . + +base:relationship\/10655 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 10655; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/AusMar-00 . + +base:relationship\/10665 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 10665; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BalWil-00 . + +base:relationship\/10675 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1873-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1873-01-01"^^xsd:date; + base:relationship\#IDRel 10675; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BauCar-00 . + +base:relationship\/10685 a base:relationship; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10685; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BauCar-00 . + +base:relationship\/10695 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-01-01"^^xsd:date; + base:relationship\#IDRel 10695; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BeiBer-00 . + +base:relationship\/10705 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10705; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BelEmi-00 . + +base:relationship\/10715 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10715; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BelAug-00 . + +base:relationship\/10725 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 10725; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BelSam-00 . + +base:relationship\/10735 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 10735; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BenBer-00 . + +base:relationship\/10745 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1873-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1873-01-01"^^xsd:date; + base:relationship\#IDRel 10745; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BerLeo-00 . + +base:relationship\/10755 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-01-01"^^xsd:date; + base:relationship\#IDRel 10755; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/EbeOtt-00 . + +base:relationship\/10765 a base:relationship; + base:relationship\#DateEnd_Max "1868-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 10765; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BerLud-00 . + +base:relationship\/10775 a base:relationship; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1864-01-01"^^xsd:date; + base:relationship\#IDRel 10775; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BerAlo-00 . + +base:relationship\/10785 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10785; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BerRob-00 . + +base:relationship\/10795 a base:relationship; + base:relationship\#DateEnd_Max "1866-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10795; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/Be\%C3\%9FMar-00 . + +base:relationship\/10805 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10805; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BeyJac-00 . + +base:relationship\/10815 a base:relationship; + base:relationship\#DateEnd_Max "1858-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1858-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1858-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1858-01-01"^^xsd:date; + base:relationship\#IDRel 10815; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Timisioara"; + base:relationship\#ref-IDOrganisation base:organisation\/992; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BieWen-00 . + +base:relationship\/10825 a base:relationship; + base:relationship\#DateEnd_Max "1873-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1873-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1873-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1873-01-01"^^xsd:date; + base:relationship\#IDRel 10825; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BieJoh-00 . + +base:relationship\/10835 a base:relationship; + base:relationship\#DateEnd_Max "1866-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1864-01-01"^^xsd:date; + base:relationship\#IDRel 10835; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BitAnt-00 . + +base:relationship\/10845 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 10845; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BitAnt-00 . + +base:relationship\/10855 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 10855; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaJoh-00 . + +base:relationship\/10865 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1864-01-01"^^xsd:date; + base:relationship\#IDRel 10865; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaKar-00 . + +base:relationship\/10875 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1873-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1873-01-01"^^xsd:date; + base:relationship\#IDRel 10875; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BloMor-00 . + +base:relationship\/10885 a base:relationship; + base:relationship\#DateEnd_Max "1873-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1873-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1873-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1873-01-01"^^xsd:date; + base:relationship\#IDRel 10885; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Pest"; + base:relationship\#ref-IDOrganisation base:organisation\/537; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BluFri-00 . + +base:relationship\/10895 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10895; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BluJos-00 . + +base:relationship\/109 a base:relationship; + base:relationship\#IDRel 109; + base:relationship\#ref-IDPerson_active base:person\/BasAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/BasEls-00 . + +base:relationship\/10905 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 10905; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BluEli-00 . + +base:relationship\/10915 a base:relationship; + base:relationship\#DateEnd_Max "1864-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1864-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10915; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BluJos-00 . + +base:relationship\/10925 a base:relationship; + base:relationship\#DateEnd_Max "1863-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1863-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10925; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BogFri-00 . + +base:relationship\/10935 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 10935; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BosHen-00 . + +base:relationship\/10945 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 10945; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BosHei-00 . + +base:relationship\/10955 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10955; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BraAdo-00 . + +base:relationship\/10965 a base:relationship; + base:relationship\#DateEnd_Max "1866-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1866-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-01-01"^^xsd:date; + base:relationship\#IDRel 10965; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BraThe-00 . + +base:relationship\/10975 a base:relationship; + base:relationship\#DateEnd_Max "1864-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1864-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 10975; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BroPhi-01 . + +base:relationship\/10985 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 10985; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BroMor-00 . + +base:relationship\/10995 a base:relationship; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1864-01-01"^^xsd:date; + base:relationship\#IDRel 10995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/Br\%C3\%BCAma-00 . + +base:relationship\/11 a base:relationship; + base:relationship\#IDRel 11; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1880"; + base:relationship\#comment "Together with Ada Rehan, John Drew, Jr , and James Lewis, became known as “The Big Four”, 1880, highly acclaimed team unrivaled in ensemble technique"; + base:relationship\#ref-IDPerson_active base:person\/GilAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/RehAda-00 . + +base:relationship\/11005 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1872-01-01"^^xsd:date; + base:relationship\#IDRel 11005; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BucChr-00 . + +base:relationship\/11015 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 11015; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/BucJos-00 . + +base:relationship\/11025 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 11025; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CalEnr-00 . + +base:relationship\/11035 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 11035; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CamCar-00 . + +base:relationship\/11045 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 11045; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CarKar-00 . + +base:relationship\/11065 a base:relationship; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-02-27"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 11065; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CasFer-00 . + +base:relationship\/11085 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 11085; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ChaPau-00 . + +base:relationship\/11095 a base:relationship; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1867-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 11095; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CheLeo-00 . + +base:relationship\/11105 a base:relationship; + base:relationship\#DateEnd_Max "1866-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1866-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-01-01"^^xsd:date; + base:relationship\#IDRel 11105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ChrSop-00 . + +base:relationship\/11115 a base:relationship; + base:relationship\#DateEnd_Max "1868-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 11115; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaHer-00 . + +base:relationship\/11125 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 11125; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaPhi-00 . + +base:relationship\/11135 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 11135; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Pest"; + base:relationship\#ref-IDOrganisation base:organisation\/537; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaPhi-00 . + +base:relationship\/11145 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1864-01-01"^^xsd:date; + base:relationship\#IDRel 11145; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CloSop-00 . + +base:relationship\/11155 a base:relationship; + base:relationship\#DateEnd_Max "1874-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1874-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 11155; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1004; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ConJul-00 . + +base:relationship\/11165 a base:relationship; + base:relationship\#DateEnd_Max "1882-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-09-02"^^xsd:date; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-09-01"^^xsd:date; + base:relationship\#IDRel 11165; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CoqCon-00 . + +base:relationship\/11175 a base:relationship; + base:relationship\#DateEnd_Max "1861-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1861-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 11175; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1001; + base:relationship\#ref-IDPerson_active base:person\/StrFri-00; + base:relationship\#ref-IDPerson_passive base:person\/CouLeo-00 . + +base:relationship\/11180 a base:relationship; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 11180; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/HouHar-00 . + +base:relationship\/11190 a base:relationship; + base:relationship\#DateEnd_Max "1940-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1940-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 11190; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/HouHar-00 . + +base:relationship\/112 a base:relationship; + base:relationship\#IDRel 112; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1908"; + base:relationship\#ref-IDPerson_active base:person\/BasAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/BasEls-00 . + +base:relationship\/11200 a base:relationship; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 11200; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyMor-00 . + +base:relationship\/11210 a base:relationship; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 11210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ButAlf-00 . + +base:relationship\/11220 a base:relationship; + base:relationship\#DateEnd_Max "1940-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1940-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1920-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 11220; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BecLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/11255 a base:relationship; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 11255; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyMor-00 . + +base:relationship\/11290 a base:relationship; + base:relationship\#IDRel 11290; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CreWil-00 . + +base:relationship\/11300 a base:relationship; + base:relationship\#IDRel 11300; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/DayBla-00 . + +base:relationship\/11310 a base:relationship; + base:relationship\#IDRel 11310; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/RusJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/11320 a base:relationship; + base:relationship\#IDRel 11320; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/MouJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/11330 a base:relationship; + base:relationship\#IDRel 11330; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/RusTom-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/11335 a base:relationship; + base:relationship\#DateEnd_Max "1897-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1897-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 11335; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/PreEug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11345 a base:relationship; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 11345; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/HarOsw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11360 a base:relationship; + base:relationship\#IDRel 11360; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/CarTho-00 . + +base:relationship\/11370 a base:relationship; + base:relationship\#IDRel 11370; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/AusJan-00 . + +base:relationship\/11380 a base:relationship; + base:relationship\#IDRel 11380; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/CooJam-00 . + +base:relationship\/11390 a base:relationship; + base:relationship\#IDRel 11390; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/HawNat-00 . + +base:relationship\/11400 a base:relationship; + base:relationship\#IDRel 11400; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RusAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoHen-00 . + +base:relationship\/11410 a base:relationship; + base:relationship\#IDRel 11410; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MosMin-00; + base:relationship\#ref-IDPerson_passive base:person\/MosWil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/11420 a base:relationship; + base:relationship\#IDRel 11420; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MosMin-00; + base:relationship\#ref-IDPerson_passive base:person\/LeoFri-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/11430 a base:relationship; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 11430; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MosMin-00; + base:relationship\#ref-IDPerson_passive base:person\/EdwEdw-00 . + +base:relationship\/11440 a base:relationship; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 11440; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MosMin-00; + base:relationship\#ref-IDPerson_passive base:person\/HelHel-00 . + +base:relationship\/11450 a base:relationship; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 11450; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SteWil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11460 a base:relationship; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 11460; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDOrganisation base:organisation\/1690; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SteWil-00 . + +base:relationship\/11470 a base:relationship; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 11470; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDOrganisation base:organisation\/1690; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BruSig-00 . + +base:relationship\/11480 a base:relationship; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 11480; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Weimar"; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/11490 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 11490; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1695; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJos-00 . + +base:relationship\/115 a base:relationship; + base:relationship\#IDRel 115; + base:relationship\#ref-IDPerson_active base:person\/NebHei-00; + base:relationship\#ref-IDPerson_passive base:person\/VeiCon-00 . + +base:relationship\/11500 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 11500; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/1695; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/RokVik-00 . + +base:relationship\/11510 a base:relationship; + base:relationship\#DateEnd_Max "1878-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 11510; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Milan"; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LamGio-00 . + +base:relationship\/11520 a base:relationship; + base:relationship\#DateEnd_Max "1878-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1885-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1885-01-01"^^xsd:date; + base:relationship\#IDRel 11520; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Milan"; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LamFra-00 . + +base:relationship\/11530 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 11530; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SeeMar-00 . + +base:relationship\/11540 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 11540; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LewRic-00 . + +base:relationship\/11550 a base:relationship; + base:relationship\#IDRel 11550; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GluAlm-00 . + +base:relationship\/11560 a base:relationship; + base:relationship\#IDRel 11560; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LasHul-00 . + +base:relationship\/11570 a base:relationship; + base:relationship\#IDRel 11570; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/SemMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarQue-00 . + +base:relationship\/11580 a base:relationship; + base:relationship\#IDRel 11580; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/NorCat-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJun-00 . + +base:relationship\/11590 a base:relationship; + base:relationship\#IDRel 11590; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/NorCat-00; + base:relationship\#ref-IDPerson_passive base:person\/Edw-00 . + +base:relationship\/116 a base:relationship; + base:relationship\#IDRel 116; + base:relationship\#ref-IDPerson_active base:person\/NebHei-00; + base:relationship\#ref-IDPerson_passive base:person\/KorFri-00 . + +base:relationship\/11600 a base:relationship; + base:relationship\#IDRel 11600; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/NorCat-00; + base:relationship\#ref-IDPerson_passive base:person\/KeeLau-01 . + +base:relationship\/11610 a base:relationship; + base:relationship\#DateEnd_Max "1852-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1852-01-01"^^xsd:date; + base:relationship\#IDRel 11610; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NorCat-00; + base:relationship\#ref-IDPerson_passive base:person\/ForEdw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11620 a base:relationship; + base:relationship\#IDRel 11620; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NorCat-00; + base:relationship\#ref-IDPerson_passive base:person\/SinJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/11625 a base:relationship; + base:relationship\#DateEnd_Max "1913-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1913-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1903-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1903-01-01"^^xsd:date; + base:relationship\#IDRel 11625; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/TucLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11635 a base:relationship; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1917-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 11635; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/WesFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11645 a base:relationship; + base:relationship\#DateEnd_Max "1934-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1934-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 11645; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/LacAl-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/11655 a base:relationship; + base:relationship\#DateStart_Max "1921-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1921-01-01"^^xsd:date; + base:relationship\#IDRel 11655; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/ShaTed-00 . + +base:relationship\/11665 a base:relationship; + base:relationship\#IDRel 11665; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiMam-00 . + +base:relationship\/11675 a base:relationship; + base:relationship\#IDRel 11675; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/WatEth-00 . + +base:relationship\/11685 a base:relationship; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 11685; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/TucSop-00; + base:relationship\#ref-IDPerson_passive base:person\/YelJac-00 . + +base:relationship\/11776 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11776; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJul-00 . + +base:relationship\/11786 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11786; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Deo-00 . + +base:relationship\/11796 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11796; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Vas-00 . + +base:relationship\/11806 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11806; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/VicEdu-00 . + +base:relationship\/11816 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11816; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Dia-00 . + +base:relationship\/11826 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11826; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/602; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/CaeJo\%C3\%A3-00 . + +base:relationship\/11836 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11836; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/1766; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJoa-00 . + +base:relationship\/11846 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11846; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1806; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/VilRos-00 . + +base:relationship\/11856 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11856; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1806; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/VasFra-00 . + +base:relationship\/11866 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 11866; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1806; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/AzeArt-00 . + +base:relationship\/11876 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 11876; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Bra-00 . + +base:relationship\/119 a base:relationship; + base:relationship\#IDRel 119; + base:relationship\#ref-IDPerson_active base:person\/KorFri-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/12 a base:relationship; + base:relationship\#IDRel 12; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1912-1913"; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/GluAlm-00; + base:relationship\#ref-IDPerson_passive base:person\/SemMar-00 . + +base:relationship\/12041 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1880s"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 12041; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/BasSou-00 . + +base:relationship\/12051 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 12051; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJul-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/12111 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 12111; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLuc-00 . + +base:relationship\/12121 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Spring 1858"; + base:relationship\#DateEnd_Max "1858-06-03"^^xsd:date; + base:relationship\#DateEnd_Min "1858-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "24th March 1856"; + base:relationship\#DateStart_Max "1856-03-24"^^xsd:date; + base:relationship\#DateStart_Min "1856-03-24"^^xsd:date; + base:relationship\#IDRel 12121; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/SilFlo-00 . + +base:relationship\/12126 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Spring 1858"; + base:relationship\#DateEnd_Max "1858-06-03"^^xsd:date; + base:relationship\#DateEnd_Min "1858-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "24th March 1856"; + base:relationship\#DateStart_Max "1856-03-24"^^xsd:date; + base:relationship\#DateStart_Min "1856-03-24"^^xsd:date; + base:relationship\#IDRel 12126; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/604; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/SouPer-00 . + +base:relationship\/12131 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1867"; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 12131; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "and later in Teatro São Januário"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/602; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Ris-00 . + +base:relationship\/12136 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870"; + base:relationship\#DateEnd_Max "1870-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 12136; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1746; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00 . + +base:relationship\/12141 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1867"; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 12141; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/602; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/CorBer-00 . + +base:relationship\/12146 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 12146; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/HelAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/12151 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1885"; + base:relationship\#DateEnd_Max "1885-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-01"^^xsd:date; + base:relationship\#IDRel 12151; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1796; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/GarEdu-00 . + +base:relationship\/12156 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "12th May 1886"; + base:relationship\#DateStart_Min "1886-05-12"^^xsd:date; + base:relationship\#IDRel 12156; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/PolCin-01 . + +base:relationship\/12161 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1894"; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 12161; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/MesHen-00 . + +base:relationship\/12166 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1895"; + base:relationship\#DateEnd_Max "1895-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1895-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 12166; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1826; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/Cos-00 . + +base:relationship\/12171 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 12171; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1826; + base:relationship\#ref-IDPerson_active base:person\/HelJac-00; + base:relationship\#ref-IDPerson_passive base:person\/RuiPep-00 . + +base:relationship\/12181 a base:relationship; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 12181; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2051; + base:relationship\#ref-IDPerson_active base:person\/AimMar-00; + base:relationship\#ref-IDPerson_passive base:person\/FisJim-00 . + +base:relationship\/12191 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1877"; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1877-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 12191; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2051; + base:relationship\#ref-IDPerson_active base:person\/AimMar-00; + base:relationship\#ref-IDPerson_passive base:person\/OffJac-00 . + +base:relationship\/122 a base:relationship; + base:relationship\#IDRel 122; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JanEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/LubErn-00 . + +base:relationship\/12201 a base:relationship; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1878-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 12201; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2051; + base:relationship\#ref-IDPerson_active base:person\/AimMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GraMau-00 . + +base:relationship\/12211 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1869"; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "18th June 1864"; + base:relationship\#DateStart_Max "1864-06-18"^^xsd:date; + base:relationship\#DateStart_Min "1864-06-18"^^xsd:date; + base:relationship\#IDRel 12211; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/2106; + base:relationship\#ref-IDPerson_active base:person\/AimMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnJos-00 . + +base:relationship\/12226 a base:relationship; + base:relationship\#DateStart_Fuzzy "1858"; + base:relationship\#DateStart_Max "1858-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1858-01-01"^^xsd:date; + base:relationship\#IDRel 12226; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-Rdj-00; + base:relationship\#ref-IDOrganisation base:organisation\/2111; + base:relationship\#ref-IDPerson_active base:person\/LyoPau-00; + base:relationship\#ref-IDPerson_passive base:person\/HotLeo-00 . + +base:relationship\/12231 a base:relationship; + base:relationship\#DateStart_Fuzzy "1859"; + base:relationship\#DateStart_Max "1859-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1859-01-01"^^xsd:date; + base:relationship\#IDRel 12231; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-Rdj-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/LyoPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnJos-00 . + +base:relationship\/125 a base:relationship; + base:relationship\#IDRel 125; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JanEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/12675 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12675; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/12680 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12680; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/12685 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12685; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HodSar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/12690 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12690; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HodSar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/12695 a base:relationship; + base:relationship\#DateEnd_Max "1900-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1900-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 12695; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TabRob-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/12700 a base:relationship; + base:relationship\#DateEnd_Max "1900-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1900-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 12700; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TabRob-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/12705 a base:relationship; + base:relationship\#DateEnd_Max "1900-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 12705; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TabRob-00 . + +base:relationship\/12710 a base:relationship; + base:relationship\#DateEnd_Max "1900-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 12710; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TabRob-00 . + +base:relationship\/12715 a base:relationship; + base:relationship\#DateEnd_Max "1933-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1933-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1911-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1911-08-17"^^xsd:date; + base:relationship\#IDRel 12715; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SotEdw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/12720 a base:relationship; + base:relationship\#DateEnd_Max "1933-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1933-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1911-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1911-08-17"^^xsd:date; + base:relationship\#IDRel 12720; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SotEdw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/12725 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12725; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/12730 a base:relationship; + base:relationship\#DateStart_Max "1866-08-17"^^xsd:date; + base:relationship\#DateStart_Min "1865-08-17"^^xsd:date; + base:relationship\#IDRel 12730; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/12735 a base:relationship; + base:relationship\#IDRel 12735; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ForGeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/12740 a base:relationship; + base:relationship\#IDRel 12740; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ForGeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/12745 a base:relationship; + base:relationship\#IDRel 12745; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/12750 a base:relationship; + base:relationship\#IDRel 12750; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "England, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/12755 a base:relationship; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12755; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDOrganisation base:organisation\/2380; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroAnn-00 . + +base:relationship\/12760 a base:relationship; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12760; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDOrganisation base:organisation\/2380; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroAnn-00 . + +base:relationship\/12765 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-04-01"^^xsd:date; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12765; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati, New London"; + base:relationship\#ref-IDOrganisation base:organisation\/2250; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/MilCol-00 . + +base:relationship\/12770 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-04-01"^^xsd:date; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12770; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati, New London"; + base:relationship\#ref-IDOrganisation base:organisation\/2250; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/MilCol-00 . + +base:relationship\/12775 a base:relationship; + base:relationship\#IDRel 12775; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ModHel-00 . + +base:relationship\/12780 a base:relationship; + base:relationship\#IDRel 12780; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ModHel-00 . + +base:relationship\/12785 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12785; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDOrganisation base:organisation\/2380; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00 . + +base:relationship\/12790 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-01"^^xsd:date; + base:relationship\#IDRel 12790; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDOrganisation base:organisation\/2380; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00 . + +base:relationship\/12795 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 12795; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Cincinnati, New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00 . + +base:relationship\/128 a base:relationship; + base:relationship\#IDRel 128; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JanEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/NegPol-00 . + +base:relationship\/12800 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 12800; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Cincinnati, New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00 . + +base:relationship\/12805 a base:relationship; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 12805; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Cincinnati, New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/12810 a base:relationship; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 12810; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Cincinnati, New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DowAda-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/12815 a base:relationship; + base:relationship\#IDRel 12815; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilGar-00 . + +base:relationship\/12820 a base:relationship; + base:relationship\#IDRel 12820; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilGar-00 . + +base:relationship\/12825 a base:relationship; + base:relationship\#IDRel 12825; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HesJoh-00 . + +base:relationship\/12830 a base:relationship; + base:relationship\#IDRel 12830; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HesJoh-00 . + +base:relationship\/12835 a base:relationship; + base:relationship\#IDRel 12835; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TorCar-00 . + +base:relationship\/12840 a base:relationship; + base:relationship\#IDRel 12840; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Cincinnati"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/TorCar-00 . + +base:relationship\/12845 a base:relationship; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 12845; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2255; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McWRob-00 . + +base:relationship\/12850 a base:relationship; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 12850; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2255; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McWRob-00 . + +base:relationship\/12855 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 12855; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New London"; + base:relationship\#ref-IDOrganisation base:organisation\/2260; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BeaWil-00 . + +base:relationship\/12860 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 12860; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New London"; + base:relationship\#ref-IDOrganisation base:organisation\/2260; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BeaWil-00 . + +base:relationship\/12865 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12865; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/EvaFra-00 . + +base:relationship\/12870 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/EvaFra-00 . + +base:relationship\/12875 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12875; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BreJ-00 . + +base:relationship\/12880 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12880; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BreJ-00 . + +base:relationship\/12885 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12885; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AllLes-00 . + +base:relationship\/12890 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12890; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AllLes-00 . + +base:relationship\/12895 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12895; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/NasGeo-00 . + +base:relationship\/12900 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12900; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/NasGeo-00 . + +base:relationship\/12905 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12905; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CurF-00 . + +base:relationship\/12910 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12910; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CurF-00 . + +base:relationship\/12915 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12915; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HenB-00 . + +base:relationship\/12920 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12920; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HenB-00 . + +base:relationship\/12925 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12925; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DamJ-00 . + +base:relationship\/12930 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12930; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DamJ-00 . + +base:relationship\/12935 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12935; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilC-00 . + +base:relationship\/12940 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12940; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilC-00 . + +base:relationship\/12945 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12945; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WalF-00 . + +base:relationship\/12950 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12950; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WalF-00 . + +base:relationship\/12955 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12955; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PieB-00 . + +base:relationship\/12960 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12960; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PieB-00 . + +base:relationship\/12965 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12965; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CumWil-00 . + +base:relationship\/12970 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12970; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CumWil-00 . + +base:relationship\/12975 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12975; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilF-00 . + +base:relationship\/12980 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12980; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilF-00 . + +base:relationship\/12985 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12985; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CotL-00 . + +base:relationship\/12990 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12990; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CotL-00 . + +base:relationship\/12995 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 12995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilEff-00 . + +base:relationship\/130 a base:relationship; + base:relationship\#IDRel 130; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/RicHan-00 . + +base:relationship\/13000 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 13000; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WilEff-00 . + +base:relationship\/13005 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 13005; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WalIsa-00 . + +base:relationship\/13010 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-10-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-10-01"^^xsd:date; + base:relationship\#IDRel 13010; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2270; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WalIsa-00 . + +base:relationship\/13015 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13015; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HawJos-00 . + +base:relationship\/13020 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13020; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HawJos-00 . + +base:relationship\/13025 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13025; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McKSta-00 . + +base:relationship\/13030 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13030; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McKSta-00 . + +base:relationship\/13035 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13035; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CleVan-00 . + +base:relationship\/13040 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13040; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CleVan-00 . + +base:relationship\/13045 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13045; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WheAnd-00 . + +base:relationship\/13050 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13050; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WheAnd-00 . + +base:relationship\/13055 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13055; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BriHen-00 . + +base:relationship\/13060 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13060; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BriHen-00 . + +base:relationship\/13065 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13065; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AbbHen-00 . + +base:relationship\/13070 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13070; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AbbHen-00 . + +base:relationship\/13075 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13075; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PalAm-00 . + +base:relationship\/13080 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13080; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PalAm-00 . + +base:relationship\/13085 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13085; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroCha-00 . + +base:relationship\/13090 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13090; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroCha-00 . + +base:relationship\/13095 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13095; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GilWil-00 . + +base:relationship\/13100 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13100; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GilWil-00 . + +base:relationship\/13105 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/J\.MJMH-00 . + +base:relationship\/13110 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13110; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/J\.MJMH-00 . + +base:relationship\/13115 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13115; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroDan-00 . + +base:relationship\/13120 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13120; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FroDan-00 . + +base:relationship\/13125 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13125; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/1083; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FreHen-00 . + +base:relationship\/13130 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13130; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/1083; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FreHen-00 . + +base:relationship\/13135 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13135; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2390; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RogGeo-00 . + +base:relationship\/13140 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 13140; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2390; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RogGeo-00 . + +base:relationship\/13145 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 13145; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BarAri-00 . + +base:relationship\/13150 a base:relationship; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 13150; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BarAri-00 . + +base:relationship\/13155 a base:relationship; + base:relationship\#IDRel 13155; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RusCha-00 . + +base:relationship\/13160 a base:relationship; + base:relationship\#IDRel 13160; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RusCha-00 . + +base:relationship\/13165 a base:relationship; + base:relationship\#DateEnd_Max "1892-09-22"^^xsd:date; + base:relationship\#DateEnd_Min "1892-06-21"^^xsd:date; + base:relationship\#DateStart_Max "1892-09-22"^^xsd:date; + base:relationship\#DateStart_Min "1892-06-21"^^xsd:date; + base:relationship\#IDRel 13165; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DreMrs-00 . + +base:relationship\/13170 a base:relationship; + base:relationship\#DateEnd_Max "1892-09-22"^^xsd:date; + base:relationship\#DateEnd_Min "1892-06-21"^^xsd:date; + base:relationship\#DateStart_Max "1892-09-22"^^xsd:date; + base:relationship\#DateStart_Min "1892-06-21"^^xsd:date; + base:relationship\#IDRel 13170; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DreMrs-00 . + +base:relationship\/13175 a base:relationship; + base:relationship\#DateEnd_Max "1894-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 13175; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/JewHen-00 . + +base:relationship\/13180 a base:relationship; + base:relationship\#DateEnd_Max "1894-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 13180; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/JewHen-00 . + +base:relationship\/13185 a base:relationship; + base:relationship\#IDRel 13185; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HowEdw-00 . + +base:relationship\/13190 a base:relationship; + base:relationship\#IDRel 13190; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HowEdw-00 . + +base:relationship\/13195 a base:relationship; + base:relationship\#DateEnd_Max "1905-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 13195; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HunJam-00 . + +base:relationship\/13200 a base:relationship; + base:relationship\#DateEnd_Max "1905-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 13200; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HunJam-00 . + +base:relationship\/13205 a base:relationship; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-09-01"^^xsd:date; + base:relationship\#IDRel 13205; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BelE-00 . + +base:relationship\/13210 a base:relationship; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-09-01"^^xsd:date; + base:relationship\#IDRel 13210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BelE-00 . + +base:relationship\/13215 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "September 1904"; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13215; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DavEdw-00 . + +base:relationship\/13220 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "September 1904"; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13220; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DavEdw-00 . + +base:relationship\/13225 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13225; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BarLaw-00 . + +base:relationship\/13230 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13230; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BarLaw-00 . + +base:relationship\/13235 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13235; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BooEdw-00 . + +base:relationship\/13240 a base:relationship; + base:relationship\#DateEnd_Max "1904-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1904-09-01"^^xsd:date; + base:relationship\#DateStart_Max "1904-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1904-09-01"^^xsd:date; + base:relationship\#IDRel 13240; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BooEdw-00 . + +base:relationship\/13245 a base:relationship; + base:relationship\#DateEnd_Max "1906-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1905 - 1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 13245; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ShuLee-00 . + +base:relationship\/13250 a base:relationship; + base:relationship\#DateEnd_Max "1906-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1905 - 1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 13250; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDOrganisation base:organisation\/2395; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ShuLee-00 . + +base:relationship\/13255 a base:relationship; + base:relationship\#IDRel 13255; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Boston"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McCEli-00 . + +base:relationship\/13260 a base:relationship; + base:relationship\#IDRel 13260; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Boston"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/McCEli-00 . + +base:relationship\/13265 a base:relationship; + base:relationship\#DateEnd_Max "1907-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1906-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1906 - 1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 13265; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SudHer-00 . + +base:relationship\/13270 a base:relationship; + base:relationship\#DateEnd_Max "1907-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1906-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1906 - 1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 13270; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SudHer-00 . + +base:relationship\/13275 a base:relationship; + base:relationship\#IDRel 13275; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FagJ-00 . + +base:relationship\/13280 a base:relationship; + base:relationship\#IDRel 13280; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FagJ-00 . + +base:relationship\/13285 a base:relationship; + base:relationship\#DateEnd_Max "1909-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1908-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1908"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-01-01"^^xsd:date; + base:relationship\#IDRel 13285; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/JohMar-00 . + +base:relationship\/13290 a base:relationship; + base:relationship\#DateEnd_Max "1909-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1908-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1908"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-01-01"^^xsd:date; + base:relationship\#IDRel 13290; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/JohMar-00 . + +base:relationship\/13295 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13295; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SkiOti-00 . + +base:relationship\/133 a base:relationship; + base:relationship\#IDRel 133; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Connection with the„Nibelungen-Kanzlei“ "; + base:relationship\#ref-IDLocation base:location\/GER-Bayr-00; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MotFel-00 . + +base:relationship\/13300 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13300; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SkiOti-00 . + +base:relationship\/13305 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13305; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AngMar-00 . + +base:relationship\/13310 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13310; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AngMar-00 . + +base:relationship\/13315 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13315; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ForJ-00 . + +base:relationship\/13320 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13320; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ForJ-00 . + +base:relationship\/13325 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13325; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FavWil-00 . + +base:relationship\/13330 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13330; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FavWil-00 . + +base:relationship\/13335 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13335; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WarDav-00 . + +base:relationship\/13340 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13340; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WarDav-00 . + +base:relationship\/13345 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13345; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiWal-00 . + +base:relationship\/13350 a base:relationship; + base:relationship\#DateEnd_Max "1912-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1912-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-05-01"^^xsd:date; + base:relationship\#IDRel 13350; + base:relationship\#comment "Chicago"; + base:relationship\#ref-IDPerson_active base:person\/MarJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiWal-00 . + +base:relationship\/13355 a base:relationship; + base:relationship\#IDRel 13355; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/FryA-00 . + +base:relationship\/13365 a base:relationship; + base:relationship\#IDRel 13365; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PhiAde-00 . + +base:relationship\/13375 a base:relationship; + base:relationship\#IDRel 13375; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PatAde-00 . + +base:relationship\/13385 a base:relationship; + base:relationship\#IDRel 13385; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/NeuAdo-00 . + +base:relationship\/13395 a base:relationship; + base:relationship\#IDRel 13395; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/AmoAle-00 . + +base:relationship\/13405 a base:relationship; + base:relationship\#IDRel 13405; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BosAng-00 . + +base:relationship\/13415 a base:relationship; + base:relationship\#IDRel 13415; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/13425 a base:relationship; + base:relationship\#IDRel 13425; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SeiAnt-00 . + +base:relationship\/13435 a base:relationship; + base:relationship\#IDRel 13435; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BerApo-00 . + +base:relationship\/13445 a base:relationship; + base:relationship\#IDRel 13445; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BerApo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/13455 a base:relationship; + base:relationship\#IDRel 13455; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/NapBar-00 . + +base:relationship\/13470 a base:relationship; + base:relationship\#IDRel 13470; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "New York, Havana"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/UllBer-00 . + +base:relationship\/13480 a base:relationship; + base:relationship\#IDRel 13480; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BerCar-00 . + +base:relationship\/13485 a base:relationship; + base:relationship\#IDRel 13485; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDOrganisation base:organisation\/2490; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/EckCar-00 . + +base:relationship\/13500 a base:relationship; + base:relationship\#IDRel 13500; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GriCar-00 . + +base:relationship\/13510 a base:relationship; + base:relationship\#IDRel 13510; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BadCes-00 . + +base:relationship\/13520 a base:relationship; + base:relationship\#IDRel 13520; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/KelCla-00 . + +base:relationship\/13530 a base:relationship; + base:relationship\#IDRel 13530; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LorDom-00 . + +base:relationship\/13535 a base:relationship; + base:relationship\#IDRel 13535; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/VerDr-00 . + +base:relationship\/13545 a base:relationship; + base:relationship\#IDRel 13545; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/FryEdw-00 . + +base:relationship\/13555 a base:relationship; + base:relationship\#IDRel 13555; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ForEdw-00 . + +base:relationship\/13565 a base:relationship; + base:relationship\#IDRel 13565; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MuzEma-00 . + +base:relationship\/13575 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 13575; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/JanFan-00 . + +base:relationship\/13585 a base:relationship; + base:relationship\#IDRel 13585; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFer-00 . + +base:relationship\/13595 a base:relationship; + base:relationship\#IDRel 13595; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/Fio-00 . + +base:relationship\/136 a base:relationship; + base:relationship\#IDRel 136; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Connection with the„Nibelungen-Kanzlei“. Strong relationship with the Wagner family. Got colder in his time in USA because of modernizing conducting Wagner."; + base:relationship\#ref-IDLocation base:location\/GER-Bayr-00; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/RicHan-00 . + +base:relationship\/13610 a base:relationship; + base:relationship\#IDRel 13610; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Havana, Cuba"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/TorFra-00 . + +base:relationship\/13615 a base:relationship; + base:relationship\#IDRel 13615; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StuFra-00 . + +base:relationship\/13625 a base:relationship; + base:relationship\#IDRel 13625; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StuFra-00 . + +base:relationship\/13630 a base:relationship; + base:relationship\#IDRel 13630; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StuFra-01 . + +base:relationship\/13645 a base:relationship; + base:relationship\#IDRel 13645; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GyeFre-00 . + +base:relationship\/13650 a base:relationship; + base:relationship\#IDRel 13650; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GyeFre-00 . + +base:relationship\/13655 a base:relationship; + base:relationship\#IDRel 13655; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ChoFry-00 . + +base:relationship\/13665 a base:relationship; + base:relationship\#IDRel 13665; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BriGeo-00 . + +base:relationship\/13675 a base:relationship; + base:relationship\#IDRel 13675; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyGia-00 . + +base:relationship\/13685 a base:relationship; + base:relationship\#IDRel 13685; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/RosGio-00 . + +base:relationship\/13695 a base:relationship; + base:relationship\#IDRel 13695; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/RonGio-00 . + +base:relationship\/13705 a base:relationship; + base:relationship\#IDRel 13705; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StiGio-00 . + +base:relationship\/13715 a base:relationship; + base:relationship\#DateStart_Max "1854-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-10-01"^^xsd:date; + base:relationship\#IDRel 13715; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDOrganisation base:organisation\/2470; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GriGiu-01 . + +base:relationship\/13725 a base:relationship; + base:relationship\#DateStart_Max "1854-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-10-01"^^xsd:date; + base:relationship\#IDRel 13725; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDOrganisation base:organisation\/2470; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGiu-00 . + +base:relationship\/13730 a base:relationship; + base:relationship\#DateStart_Max "1854-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-10-01"^^xsd:date; + base:relationship\#IDRel 13730; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/2470; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGiu-00 . + +base:relationship\/13735 a base:relationship; + base:relationship\#IDRel 13735; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PatGra-00 . + +base:relationship\/13745 a base:relationship; + base:relationship\#IDRel 13745; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/B\%C3\%BClHan-00 . + +base:relationship\/13755 a base:relationship; + base:relationship\#IDRel 13755; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BerHec-00 . + +base:relationship\/13765 a base:relationship; + base:relationship\#IDRel 13765; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiHei-00 . + +base:relationship\/13775 a base:relationship; + base:relationship\#IDRel 13775; + base:relationship\#comment "New York New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SonHen-00 . + +base:relationship\/13785 a base:relationship; + base:relationship\#IDRel 13785; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/CoiHen-00 . + +base:relationship\/13795 a base:relationship; + base:relationship\#IDRel 13795; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HerHen-00 . + +base:relationship\/13805 a base:relationship; + base:relationship\#IDRel 13805; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/WikHen-00 . + +base:relationship\/13815 a base:relationship; + base:relationship\#IDRel 13815; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SeyIgn-00 . + +base:relationship\/13825 a base:relationship; + base:relationship\#IDRel 13825; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIgn-00 . + +base:relationship\/13830 a base:relationship; + base:relationship\#IDRel 13830; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIgn-00 . + +base:relationship\/13835 a base:relationship; + base:relationship\#IDRel 13835; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HinIsa-00 . + +base:relationship\/13845 a base:relationship; + base:relationship\#IDRel 13845; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GraJac-00 . + +base:relationship\/13855 a base:relationship; + base:relationship\#IDRel 13855; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/OffJac-00 . + +base:relationship\/13860 a base:relationship; + base:relationship\#IDRel 13860; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/OffJac-00 . + +base:relationship\/13865 a base:relationship; + base:relationship\#IDRel 13865; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/NunJai-00 . + +base:relationship\/13870 a base:relationship; + base:relationship\#IDRel 13870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/NunJai-00 . + +base:relationship\/13875 a base:relationship; + base:relationship\#IDRel 13875; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BenJam-00 . + +base:relationship\/13880 a base:relationship; + base:relationship\#IDRel 13880; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BenJam-00 . + +base:relationship\/13885 a base:relationship; + base:relationship\#DateStart_Max "1854-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-10-01"^^xsd:date; + base:relationship\#IDRel 13885; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2470; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HacJam-00 . + +base:relationship\/13890 a base:relationship; + base:relationship\#DateStart_Max "1854-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-10-01"^^xsd:date; + base:relationship\#IDRel 13890; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2470; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HacJam-00 . + +base:relationship\/13895 a base:relationship; + base:relationship\#IDRel 13895; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LinJen-00 . + +base:relationship\/139 a base:relationship; + base:relationship\#IDRel 139; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/13900 a base:relationship; + base:relationship\#IDRel 13900; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LinJen-00 . + +base:relationship\/13905 a base:relationship; + base:relationship\#IDRel 13905; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/IJoh-00 . + +base:relationship\/13910 a base:relationship; + base:relationship\#IDRel 13910; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/IJoh-00 . + +base:relationship\/13915 a base:relationship; + base:relationship\#IDRel 13915; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/FisJos-00 . + +base:relationship\/13920 a base:relationship; + base:relationship\#IDRel 13920; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/FisJos-00 . + +base:relationship\/13925 a base:relationship; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 13925; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LabL-00 . + +base:relationship\/13930 a base:relationship; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 13930; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LabL-00 . + +base:relationship\/13935 a base:relationship; + base:relationship\#IDRel 13935; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GroLeo-00 . + +base:relationship\/13940 a base:relationship; + base:relationship\#IDRel 13940; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GroLeo-00 . + +base:relationship\/13945 a base:relationship; + base:relationship\#IDRel 13945; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ErnLeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/13950 a base:relationship; + base:relationship\#IDRel 13950; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ErnLeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/13955 a base:relationship; + base:relationship\#IDRel 13955; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MonLol-00 . + +base:relationship\/13960 a base:relationship; + base:relationship\#IDRel 13960; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MonLol-00 . + +base:relationship\/13965 a base:relationship; + base:relationship\#IDRel 13965; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SalLor-00 . + +base:relationship\/13970 a base:relationship; + base:relationship\#IDRel 13970; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SalLor-00 . + +base:relationship\/13975 a base:relationship; + base:relationship\#IDRel 13975; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ArdLui-00 . + +base:relationship\/13980 a base:relationship; + base:relationship\#IDRel 13980; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ArdLui-00 . + +base:relationship\/13985 a base:relationship; + base:relationship\#IDRel 13985; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LumLum-00 . + +base:relationship\/13990 a base:relationship; + base:relationship\#IDRel 13990; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LumLum-00 . + +base:relationship\/13995 a base:relationship; + base:relationship\#IDRel 13995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LumLum-00 . + +base:relationship\/14 a base:relationship; + base:relationship\#IDRel 14; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "sister"; + base:relationship\#ref-IDPerson_active base:person\/JagEls-00; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/14000 a base:relationship; + base:relationship\#IDRel 14000; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LumLum-00 . + +base:relationship\/14005 a base:relationship; + base:relationship\#IDRel 14005; + base:relationship\#comment "French"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/TroMRD-00 . + +base:relationship\/14010 a base:relationship; + base:relationship\#IDRel 14010; + base:relationship\#comment "French"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/TroMRD-00 . + +base:relationship\/14015 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14015; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PuzMad-00 . + +base:relationship\/14020 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14020; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PuzMad-00 . + +base:relationship\/14025 a base:relationship; + base:relationship\#IDRel 14025; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/AlbMar-00 . + +base:relationship\/14030 a base:relationship; + base:relationship\#IDRel 14030; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/AlbMar-00 . + +base:relationship\/14035 a base:relationship; + base:relationship\#IDRel 14035; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GazMar-00 . + +base:relationship\/14040 a base:relationship; + base:relationship\#IDRel 14040; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/GazMar-00 . + +base:relationship\/14045 a base:relationship; + base:relationship\#IDRel 14045; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/14050 a base:relationship; + base:relationship\#IDRel 14050; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/14055 a base:relationship; + base:relationship\#IDRel 14055; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMax-00 . + +base:relationship\/14060 a base:relationship; + base:relationship\#IDRel 14060; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMax-00 . + +base:relationship\/14065 a base:relationship; + base:relationship\#IDRel 14065; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SteMes-00 . + +base:relationship\/14070 a base:relationship; + base:relationship\#IDRel 14070; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/SteMes-00 . + +base:relationship\/14075 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14075; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BalMic-00 . + +base:relationship\/14080 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14080; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BalMic-00 . + +base:relationship\/14085 a base:relationship; + base:relationship\#IDRel 14085; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HauMin-00 . + +base:relationship\/14090 a base:relationship; + base:relationship\#IDRel 14090; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HauMin-00 . + +base:relationship\/14095 a base:relationship; + base:relationship\#IDRel 14095; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/N\.PNPW-00 . + +base:relationship\/14105 a base:relationship; + base:relationship\#IDRel 14105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BulOle-00 . + +base:relationship\/14115 a base:relationship; + base:relationship\#IDRel 14115; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/XinPan-00 . + +base:relationship\/14125 a base:relationship; + base:relationship\#IDRel 14125; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BriPas-00 . + +base:relationship\/14135 a base:relationship; + base:relationship\#IDRel 14135; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ColPau-00 . + +base:relationship\/14145 a base:relationship; + base:relationship\#IDRel 14145; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BarPhi-00 . + +base:relationship\/14155 a base:relationship; + base:relationship\#IDRel 14155; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarR-00 . + +base:relationship\/14165 a base:relationship; + base:relationship\#IDRel 14165; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarRap-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/14175 a base:relationship; + base:relationship\#IDRel 14175; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Vienna"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/14185 a base:relationship; + base:relationship\#IDRel 14185; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/EmmRob-00 . + +base:relationship\/14195 a base:relationship; + base:relationship\#IDRel 14195; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MarRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/142 a base:relationship; + base:relationship\#IDRel 142; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/NieAlb-00 . + +base:relationship\/14205 a base:relationship; + base:relationship\#IDRel 14205; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/HenRut-00 . + +base:relationship\/14215 a base:relationship; + base:relationship\#IDRel 14215; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PatSal-00 . + +base:relationship\/14225 a base:relationship; + base:relationship\#IDRel 14225; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/PanSan-00 . + +base:relationship\/14235 a base:relationship; + base:relationship\#IDRel 14235; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ParTer-00 . + +base:relationship\/14245 a base:relationship; + base:relationship\#IDRel 14245; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoThe-00 . + +base:relationship\/14255 a base:relationship; + base:relationship\#IDRel 14255; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/DavTho-00 . + +base:relationship\/14265 a base:relationship; + base:relationship\#IDRel 14265; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/LauVic-00 . + +base:relationship\/14275 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14275; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, Italy"; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BalW-00 . + +base:relationship\/14280 a base:relationship; + base:relationship\#DateEnd_Max "1848-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-01-01"^^xsd:date; + base:relationship\#IDRel 14280; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, Italy"; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/BalW-00 . + +base:relationship\/14295 a base:relationship; + base:relationship\#IDRel 14295; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/DamWal-00 . + +base:relationship\/14305 a base:relationship; + base:relationship\#IDRel 14305; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/DamWal-00 . + +base:relationship\/14315 a base:relationship; + base:relationship\#IDRel 14315; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/MacWil-00 . + +base:relationship\/14325 a base:relationship; + base:relationship\#IDRel 14325; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/FryWil-00 . + +base:relationship\/14335 a base:relationship; + base:relationship\#IDRel 14335; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/MarMax-00; + base:relationship\#ref-IDPerson_passive base:person\/NibWil-00 . + +base:relationship\/14345 a base:relationship; + base:relationship\#IDRel 14345; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SanIsa-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/14350 a base:relationship; + base:relationship\#IDRel 14350; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SanIsa-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/14355 a base:relationship; + base:relationship\#IDRel 14355; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CabAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14360 a base:relationship; + base:relationship\#IDRel 14360; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CabAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14365 a base:relationship; + base:relationship\#DateEnd_Max "1943-12-21"^^xsd:date; + base:relationship\#DateEnd_Min "1943-12-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 14365; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Barcelona"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/GuaAdr-00 . + +base:relationship\/14370 a base:relationship; + base:relationship\#DateEnd_Max "1943-12-21"^^xsd:date; + base:relationship\#DateEnd_Min "1943-12-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 14370; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Barcelona"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/GuaAdr-00 . + +base:relationship\/14375 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 14375; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SalMan-00 . + +base:relationship\/14380 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 14380; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SalMan-00 . + +base:relationship\/14385 a base:relationship; + base:relationship\#IDRel 14385; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CasJos-00 . + +base:relationship\/14390 a base:relationship; + base:relationship\#IDRel 14390; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CasJos-00 . + +base:relationship\/14395 a base:relationship; + base:relationship\#IDRel 14395; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/VelEnr-00 . + +base:relationship\/14400 a base:relationship; + base:relationship\#IDRel 14400; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/VelEnr-00 . + +base:relationship\/14405 a base:relationship; + base:relationship\#IDRel 14405; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarLeo-00 . + +base:relationship\/14410 a base:relationship; + base:relationship\#IDRel 14410; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarLeo-00 . + +base:relationship\/14415 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14415; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIri-00 . + +base:relationship\/14420 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14420; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIri-00 . + +base:relationship\/14425 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14425; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FraEva-00 . + +base:relationship\/14430 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FraEva-00 . + +base:relationship\/14435 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14435; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/GamNin-00 . + +base:relationship\/14440 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14440; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/GamNin-00 . + +base:relationship\/14445 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14445; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/QueMar-00 . + +base:relationship\/14450 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14450; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/QueMar-00 . + +base:relationship\/14455 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14455; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/HelTin-00 . + +base:relationship\/14460 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14460; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/HelTin-00 . + +base:relationship\/14465 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14465; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MonNur-00 . + +base:relationship\/14470 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14470; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MonNur-00 . + +base:relationship\/14475 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14475; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/G\%C3\%B3mPil-00 . + +base:relationship\/14480 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14480; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/G\%C3\%B3mPil-00 . + +base:relationship\/14485 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14485; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/PodMar-00 . + +base:relationship\/14490 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14490; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/PodMar-00 . + +base:relationship\/14495 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14495; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/VehLui-00 . + +base:relationship\/145 a base:relationship; + base:relationship\#IDRel 145; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/DamWal-00 . + +base:relationship\/14500 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14500; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/VehLui-00 . + +base:relationship\/14505 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14505; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FerGlo-00 . + +base:relationship\/14510 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14510; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FerGlo-00 . + +base:relationship\/14515 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14515; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/RocMig-00 . + +base:relationship\/14520 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14520; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/RocMig-00 . + +base:relationship\/14525 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14525; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/PetFra-00 . + +base:relationship\/14530 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14530; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/PetFra-00 . + +base:relationship\/14535 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14535; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/BatGui-00 . + +base:relationship\/14540 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14540; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/BatGui-00 . + +base:relationship\/14545 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14545; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/ArrSan-00 . + +base:relationship\/14550 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14550; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/ArrSan-00 . + +base:relationship\/14555 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14555; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/C\%C3\%A1rHom-00 . + +base:relationship\/14560 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14560; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/C\%C3\%A1rHom-00 . + +base:relationship\/14565 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14565; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/DanMar-00 . + +base:relationship\/14570 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14570; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/DanMar-00 . + +base:relationship\/14575 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14575; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MagAng-00 . + +base:relationship\/14580 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14580; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/MagAng-00 . + +base:relationship\/14585 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14585; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CouSan-00 . + +base:relationship\/14590 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14590; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/CouSan-00 . + +base:relationship\/14595 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14595; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FerFlo-00 . + +base:relationship\/14600 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14600; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/FerFlo-00 . + +base:relationship\/14605 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14605; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/AccPab-00 . + +base:relationship\/14610 a base:relationship; + base:relationship\#DateStart_Max "1936-04-24"^^xsd:date; + base:relationship\#DateStart_Min "1936-04-24"^^xsd:date; + base:relationship\#IDRel 14610; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/AccPab-00 . + +base:relationship\/14615 a base:relationship; + base:relationship\#DateStart_Fuzzy "1934"; + base:relationship\#DateStart_Max "1934-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-01-01"^^xsd:date; + base:relationship\#IDRel 14615; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/671; + base:relationship\#ref-IDPerson_active base:person\/CunAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/LorFed-00 . + +base:relationship\/14625 a base:relationship; + base:relationship\#DateEnd_Min "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Max "1871-01-06"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-06"^^xsd:date; + base:relationship\#IDRel 14625; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Lisbon"; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/PacFel-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/14635 a base:relationship; + base:relationship\#DateStart_Min "1871-01-05"^^xsd:date; + base:relationship\#IDRel 14635; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Lisbon"; + base:relationship\#ref-IDOrganisation base:organisation\/2635; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/PacPie-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/14645 a base:relationship; + base:relationship\#DateEnd_Min "1942-03-23"^^xsd:date; + base:relationship\#DateStart_Max "1907-04-29"^^xsd:date; + base:relationship\#DateStart_Min "1907-04-29"^^xsd:date; + base:relationship\#IDRel 14645; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/AlvMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/14655 a base:relationship; + base:relationship\#IDRel 14655; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Lisbon"; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/CamCon-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/14665 a base:relationship; + base:relationship\#DateEnd_Min "1890-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 14665; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/14675 a base:relationship; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 14675; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Lisbon"; + base:relationship\#ref-IDOrganisation base:organisation\/2640; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/OrlQue-00 . + +base:relationship\/14685 a base:relationship; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 14685; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Madrid"; + base:relationship\#ref-IDOrganisation base:organisation\/2645; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/CriQue-00 . + +base:relationship\/14695 a base:relationship; + base:relationship\#DateStart_Max "1902-06-04"^^xsd:date; + base:relationship\#DateStart_Min "1902-06-04"^^xsd:date; + base:relationship\#IDRel 14695; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDOrganisation base:organisation\/2620; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEdu-00 . + +base:relationship\/14705 a base:relationship; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 14705; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2650; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/CarPas-00 . + +base:relationship\/14715 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14715; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/VelEnr-00 . + +base:relationship\/14725 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14725; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/SerEnr-00 . + +base:relationship\/14735 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14735; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/ParFlo-00 . + +base:relationship\/14745 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14745; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIri-00 . + +base:relationship\/14755 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14755; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/VehLui-00 . + +base:relationship\/14765 a base:relationship; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 14765; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/PacReg-00; + base:relationship\#ref-IDPerson_passive base:person\/QueMar-00 . + +base:relationship\/14775 a base:relationship; + base:relationship\#IDRel 14775; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/MenEul-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/14785 a base:relationship; + base:relationship\#IDRel 14785; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadMar-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/14790 a base:relationship; + base:relationship\#IDRel 14790; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadMar-02; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/148 a base:relationship; + base:relationship\#IDRel 148; + base:relationship\#ref-IDPerson_active base:person\/SeiAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/DamLeo-00 . + +base:relationship\/14805 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14805; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Montevideo"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/HouM\%C3\%A1x-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/14815 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14815; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires y Montevideo"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadPil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/14825 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14825; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires y Montevideo"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadMan-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14835 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14835; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadJul-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14855 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14855; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadFau-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14875 a base:relationship; + base:relationship\#DateStart_Min "1891-10-27"^^xsd:date; + base:relationship\#IDRel 14875; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires y Montevideo"; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJos-00 . + +base:relationship\/14885 a base:relationship; + base:relationship\#DateEnd_Min "1922-05-05"^^xsd:date; + base:relationship\#IDRel 14885; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/PadMan-00; + base:relationship\#ref-IDPerson_passive base:person\/PadMar-03; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/14895 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1910"; + base:relationship\#DateEnd_Max "1910-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1910-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1900-05-29"^^xsd:date; + base:relationship\#DateStart_Min "1900-05-29"^^xsd:date; + base:relationship\#IDRel 14895; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Denmark, Buenos Aires, Argentina"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/14900 a base:relationship; + base:relationship\#DateEnd_Max "1944-06-28"^^xsd:date; + base:relationship\#DateEnd_Min "1944-06-28"^^xsd:date; + base:relationship\#DateStart_Max "1901-03-02"^^xsd:date; + base:relationship\#DateStart_Min "1901-03-02"^^xsd:date; + base:relationship\#IDRel 14900; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires, Argentina"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AdePau-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14905 a base:relationship; + base:relationship\#DateStart_Max "1902-06-28"^^xsd:date; + base:relationship\#DateStart_Min "1902-06-28"^^xsd:date; + base:relationship\#IDRel 14905; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/14910 a base:relationship; + base:relationship\#DateStart_Max "1905-03-13"^^xsd:date; + base:relationship\#DateStart_Min "1905-03-13"^^xsd:date; + base:relationship\#IDRel 14910; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeEva-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/14915 a base:relationship; + base:relationship\#DateStart_Max "1908-06-14"^^xsd:date; + base:relationship\#DateStart_Min "1908-06-14"^^xsd:date; + base:relationship\#IDRel 14915; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeErn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/14925 a base:relationship; + base:relationship\#DateEnd_Max "1968-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1968-01-31"^^xsd:date; + base:relationship\#IDRel 14925; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Bahía Blanca, Carhué, Argentina"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaGar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/14935 a base:relationship; + base:relationship\#IDRel 14935; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/BurJua-00 . + +base:relationship\/14945 a base:relationship; + base:relationship\#IDRel 14945; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/ElfAda-00 . + +base:relationship\/14955 a base:relationship; + base:relationship\#IDRel 14955; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/AroCar-00 . + +base:relationship\/14965 a base:relationship; + base:relationship\#IDRel 14965; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/CurMar-00 . + +base:relationship\/14985 a base:relationship; + base:relationship\#IDRel 14985; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Buenos Aires"; + base:relationship\#ref-IDPerson_active base:person\/JesOlg-00; + base:relationship\#ref-IDPerson_passive base:person\/CarAde-00 . + +base:relationship\/14990 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 14990; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/BalHel-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00 . + +base:relationship\/14995 a base:relationship; + base:relationship\#DateStart_Max "1874-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 14995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/586; + base:relationship\#ref-IDPerson_active base:person\/BalHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ValJos-00 . + +base:relationship\/15 a base:relationship; + base:relationship\#DateStart_Fuzzy "1869-07-25"; + base:relationship\#IDRel 15; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment "daughter"; + base:relationship\#ref-IDPerson_active base:person\/JagEls-00; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/15000 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 15000; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-Manaus-00; + base:relationship\#ref-IDPerson_active base:person\/BalHel-00; + base:relationship\#ref-IDPerson_passive base:person\/RodEdu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/15005 a base:relationship; + base:relationship\#IDRel 15005; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AubDan-00; + base:relationship\#ref-IDPerson_passive base:person\/CheLui-00 . + +base:relationship\/15010 a base:relationship; + base:relationship\#IDRel 15010; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HitAlf-00 . + +base:relationship\/15055 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15055; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BerEmi-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/15060 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15060; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BruAnt-00 . + +base:relationship\/15065 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15065; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/KreFra-00 . + +base:relationship\/15075 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15075; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BruAnt-00 . + +base:relationship\/15080 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15080; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/FucRob-00 . + +base:relationship\/15085 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 15085; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/BerHei-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJos-00 . + +base:relationship\/15090 a base:relationship; + base:relationship\#IDRel 15090; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BodRob-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/15095 a base:relationship; + base:relationship\#IDRel 15095; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BraTer-00; + base:relationship\#ref-IDPerson_passive base:person\/BraGui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/151 a base:relationship; + base:relationship\#IDRel 151; + base:relationship\#ref-IDPerson_active base:person\/KreHei-00; + base:relationship\#ref-IDPerson_passive base:person\/KreMar-00 . + +base:relationship\/15100 a base:relationship; + base:relationship\#IDRel 15100; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BraTer-01; + base:relationship\#ref-IDPerson_passive base:person\/BraGui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/15105 a base:relationship; + base:relationship\#IDRel 15105; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/BraTer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/15110 a base:relationship; + base:relationship\#IDRel 15110; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/BraGui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/15115 a base:relationship; + base:relationship\#IDRel 15115; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/BraTer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/15120 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably between 1821-1827"; + base:relationship\#DateStart_Fuzzy "Probably between 1821-1827"; + base:relationship\#IDRel 15120; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/IT-Mila-00; + base:relationship\#ref-IDOrganisation base:organisation\/534; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/SecAnt-00 . + +base:relationship\/15125 a base:relationship; + base:relationship\#IDRel 15125; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/BraPao-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/15130 a base:relationship; + base:relationship\#IDRel 15130; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BraTer-00; + base:relationship\#ref-IDPerson_passive base:person\/BraMar-02; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/15135 a base:relationship; + base:relationship\#IDRel 15135; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Also student"; + base:relationship\#ref-IDPerson_active base:person\/BraTer-01; + base:relationship\#ref-IDPerson_passive base:person\/BraTer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/15140 a base:relationship; + base:relationship\#IDRel 15140; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Also student"; + base:relationship\#ref-IDPerson_active base:person\/BraTer-01; + base:relationship\#ref-IDPerson_passive base:person\/BraMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/15145 a base:relationship; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#DateStart_Max "1847-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1847-01-01"^^xsd:date; + base:relationship\#IDRel 15145; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Wedding in 1847"; + base:relationship\#ref-IDPerson_active base:person\/BraTer-01; + base:relationship\#ref-IDPerson_passive base:person\/PonA-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/15150 a base:relationship; + base:relationship\#IDRel 15150; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/CapVic-00; + base:relationship\#ref-IDPerson_passive base:person\/AboBes-00 . + +base:relationship\/15155 a base:relationship; + base:relationship\#IDRel 15155; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/CapVic-00; + base:relationship\#ref-IDPerson_passive base:person\/FarGer-00 . + +base:relationship\/15165 a base:relationship; + base:relationship\#IDRel 15165; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CapVic-00; + base:relationship\#ref-IDPerson_passive base:person\/OffJac-00 . + +base:relationship\/154 a base:relationship; + base:relationship\#IDRel 154; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BoiCur-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/15616 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15616; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BurHen-00 . + +base:relationship\/15681 a base:relationship; + base:relationship\#IDRel 15681; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ScaAde-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/15686 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1874-03-20"; + base:relationship\#DateEnd_Max "1874-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15686; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Academy, Soho Square and U.S.-Tour"; + base:relationship\#ref-IDOrganisation base:organisation\/2911; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KirImr-00 . + +base:relationship\/157 a base:relationship; + base:relationship\#IDRel 157; + base:relationship\#comment "siblings"; + base:relationship\#ref-IDPerson_active base:person\/BoiCur-00; + base:relationship\#ref-IDPerson_passive base:person\/BoiIls-00 . + +base:relationship\/15706 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1874-03-20"; + base:relationship\#DateEnd_Max "1874-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15706; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "U.S.-Tour"; + base:relationship\#ref-IDOrganisation base:organisation\/2916; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/DufJoh-00 . + +base:relationship\/15716 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1874-03-20"; + base:relationship\#DateEnd_Max "1874-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15716; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Boston"; + base:relationship\#ref-IDOrganisation base:organisation\/2726; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/SteJoh-00 . + +base:relationship\/15726 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably between 1868 and 1874"; + base:relationship\#DateEnd_Max "1874-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15726; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.-Tour"; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/LewGus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Fiance . + +base:relationship\/15736 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Between 1868 and 1874-03-20"; + base:relationship\#DateEnd_Max "1874-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Between 1868 and 1874-03-20"; + base:relationship\#DateStart_Max "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15736; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Paris"; + base:relationship\#ref-IDOrganisation base:organisation\/2921; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BroPro-00 . + +base:relationship\/15746 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1875"; + base:relationship\#DateEnd_Max "1875-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1875-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1874-03-21"; + base:relationship\#DateStart_Max "1874-03-21"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-21"^^xsd:date; + base:relationship\#IDRel 15746; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/2746; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/SchHer-00 . + +base:relationship\/15756 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1896-12-17"; + base:relationship\#DateEnd_Max "1896-12-17"^^xsd:date; + base:relationship\#DateEnd_Min "1896-12-17"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Between 1868 and 1874-03-20"; + base:relationship\#DateStart_Max "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 15756; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HerAle-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/15771 a base:relationship; + base:relationship\#IDRel 15771; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BosAda-00 . + +base:relationship\/15781 a base:relationship; + base:relationship\#IDRel 15781; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HerSam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/15791 a base:relationship; + base:relationship\#IDRel 15791; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HerCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/15801 a base:relationship; + base:relationship\#IDRel 15801; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HerLeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/15811 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15811; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KatAwa-00 . + +base:relationship\/15821 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15821; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/LeoGeo-00 . + +base:relationship\/15831 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15831; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/JohJB-00 . + +base:relationship\/15841 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15841; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/DavED-00 . + +base:relationship\/15851 a base:relationship; + base:relationship\#DateEnd_Fuzzy "until his death; unknown"; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15851; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/NelWil-00 . + +base:relationship\/15861 a base:relationship; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 15861; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/DelRal-00 . + +base:relationship\/15881 a base:relationship; + base:relationship\#DateStart_Fuzzy "August 1888"; + base:relationship\#DateStart_Max "1888-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-08-01"^^xsd:date; + base:relationship\#IDRel 15881; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BosHob-00 . + +base:relationship\/15891 a base:relationship; + base:relationship\#IDRel 15891; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KilQui-00 . + +base:relationship\/15901 a base:relationship; + base:relationship\#IDRel 15901; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ErnLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/15911 a base:relationship; + base:relationship\#IDRel 15911; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/RobWil-00 . + +base:relationship\/15921 a base:relationship; + base:relationship\#IDRel 15921; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/NewRic-00 . + +base:relationship\/15931 a base:relationship; + base:relationship\#IDRel 15931; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BloEd-00 . + +base:relationship\/15941 a base:relationship; + base:relationship\#IDRel 15941; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KreJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/15951 a base:relationship; + base:relationship\#IDRel 15951; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KreKre-00 . + +base:relationship\/15961 a base:relationship; + base:relationship\#IDRel 15961; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HerFel-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/15971 a base:relationship; + base:relationship\#IDRel 15971; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/PalHer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/15981 a base:relationship; + base:relationship\#IDRel 15981; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiAde-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/15986 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably October 1908"; + base:relationship\#DateEnd_Max "1908-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1908-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably Summer 1908"; + base:relationship\#DateStart_Max "1908-09-22"^^xsd:date; + base:relationship\#DateStart_Min "1908-06-21"^^xsd:date; + base:relationship\#IDRel 15986; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Central and South America-Tour"; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaHar-00 . + +base:relationship\/16 a base:relationship; + base:relationship\#IDRel 16; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment "daughter"; + base:relationship\#ref-IDPerson_active base:person\/JagEls-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/160 a base:relationship; + base:relationship\#IDRel 160; + base:relationship\#comment "married couple"; + base:relationship\#ref-IDPerson_active base:person\/BoiIls-00; + base:relationship\#ref-IDPerson_passive base:person\/RobKur-00 . + +base:relationship\/16001 a base:relationship; + base:relationship\#IDRel 16001; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KelHar-00 . + +base:relationship\/16011 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1932-02-19"; + base:relationship\#DateEnd_Min "1932-02-19"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 16011; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/CraWil-00 . + +base:relationship\/16021 a base:relationship; + base:relationship\#IDRel 16021; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/PatAde-00 . + +base:relationship\/16031 a base:relationship; + base:relationship\#IDRel 16031; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BerSar-00 . + +base:relationship\/16041 a base:relationship; + base:relationship\#IDRel 16041; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/BarPT-00 . + +base:relationship\/16051 a base:relationship; + base:relationship\#IDRel 16051; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/CodWF-00 . + +base:relationship\/16071 a base:relationship; + base:relationship\#IDRel 16071; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/TerEll-00 . + +base:relationship\/16081 a base:relationship; + base:relationship\#IDRel 16081; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/JefJos-00 . + +base:relationship\/16091 a base:relationship; + base:relationship\#IDRel 16091; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ManRic-00 . + +base:relationship\/16101 a base:relationship; + base:relationship\#IDRel 16101; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/WilES-00 . + +base:relationship\/16111 a base:relationship; + base:relationship\#IDRel 16111; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HamOsc-00 . + +base:relationship\/16141 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably 1868"; + base:relationship\#DateStart_Max "1874-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 16141; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "London and U.S.-Tour"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/KirBol-00 . + +base:relationship\/16641 a base:relationship; + base:relationship\#IDRel 16641; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ReeRol-00 . + +base:relationship\/16651 a base:relationship; + base:relationship\#IDRel 16651; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/RusIsa-00 . + +base:relationship\/167 a base:relationship; + base:relationship\#IDRel 167; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BasAlb-00 . + +base:relationship\/16774 a base:relationship; + base:relationship\#IDRel 16774; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/16779 a base:relationship; + base:relationship\#IDRel 16779; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/16784 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1884"; + base:relationship\#DateStart_Fuzzy "1863"; + base:relationship\#IDRel 16784; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/16789 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1886"; + base:relationship\#DateStart_Fuzzy "1885"; + base:relationship\#IDRel 16789; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/RapLau-00 . + +base:relationship\/16794 a base:relationship; + base:relationship\#IDRel 16794; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/SimFri-00 . + +base:relationship\/16799 a base:relationship; + base:relationship\#IDRel 16799; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/16804 a base:relationship; + base:relationship\#DateStart_Fuzzy "1863"; + base:relationship\#IDRel 16804; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/BraJoh-00 . + +base:relationship\/16809 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1888"; + base:relationship\#DateEnd_Max "1888-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 16809; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/IT-Mila-00; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00; + base:relationship\#ref-IDPerson_passive base:person\/LamFra-00 . + +base:relationship\/16814 a base:relationship; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 16814; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Ffm-00; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00; + base:relationship\#ref-IDPerson_passive base:person\/StoJul-00 . + +base:relationship\/16819 a base:relationship; + base:relationship\#IDRel 16819; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00; + base:relationship\#ref-IDPerson_passive base:person\/EggIva-00 . + +base:relationship\/16824 a base:relationship; + base:relationship\#IDRel 16824; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00; + base:relationship\#ref-IDPerson_passive base:person\/MorIda-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/16829 a base:relationship; + base:relationship\#IDRel 16829; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00 . + +base:relationship\/16834 a base:relationship; + base:relationship\#IDRel 16834; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/IT-Mila-00; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/LamFra-00 . + +base:relationship\/16839 a base:relationship; + base:relationship\#IDRel 16839; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeMir-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/16844 a base:relationship; + base:relationship\#IDRel 16844; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/IT-Mila-00; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/CamCle-00 . + +base:relationship\/16848 a base:relationship; + base:relationship\#IDRel 16848; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/AldFra-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEnr-00 . + +base:relationship\/16851 a base:relationship; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#DateStart_Max "1901-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1901-01-01"^^xsd:date; + base:relationship\#IDRel 16851; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/AldFra-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/16854 a base:relationship; + base:relationship\#IDRel 16854; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AldFra-00; + base:relationship\#ref-IDPerson_passive base:person\/CasGiu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/16859 a base:relationship; + base:relationship\#IDRel 16859; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/AreFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/16864 a base:relationship; + base:relationship\#IDRel 16864; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/GorMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/16869 a base:relationship; + base:relationship\#IDRel 16869; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/MarFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/16874 a base:relationship; + base:relationship\#IDRel 16874; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/GalMar-00 . + +base:relationship\/16879 a base:relationship; + base:relationship\#IDRel 16879; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/BonTeo-00 . + +base:relationship\/16884 a base:relationship; + base:relationship\#IDRel 16884; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/FerCon-00 . + +base:relationship\/16889 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#DateStart_Max "1903-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1903-01-01"^^xsd:date; + base:relationship\#IDRel 16889; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/PetIvo-00 . + +base:relationship\/16894 a base:relationship; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 16894; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2525; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJer-00 . + +base:relationship\/16899 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1924"; + base:relationship\#DateEnd_Max "1924-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1924-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 16899; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/TesAng-00 . + +base:relationship\/16904 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1915"; + base:relationship\#DateEnd_Max "1915-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1915-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 16904; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/DuhAlf-00 . + +base:relationship\/16909 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1919-12-31"; + base:relationship\#DateStart_Fuzzy "1918-01-01"; + base:relationship\#IDRel 16909; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/RicOrf-00 . + +base:relationship\/16914 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1918-12-31"; + base:relationship\#DateStart_Fuzzy "1918-01-01"; + base:relationship\#IDRel 16914; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/PodPab-00 . + +base:relationship\/16919 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1919-12-31"; + base:relationship\#DateStart_Fuzzy "1919-01-01"; + base:relationship\#IDRel 16919; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/SanJul-00 . + +base:relationship\/16924 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1924-12-31"; + base:relationship\#DateStart_Fuzzy "1923-01-01"; + base:relationship\#IDRel 16924; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiCam-00 . + +base:relationship\/16929 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1927-12-31"; + base:relationship\#DateStart_Fuzzy "1927-01-01"; + base:relationship\#IDRel 16929; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/756; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/GomArg-00 . + +base:relationship\/16934 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1932-12-31"; + base:relationship\#DateStart_Fuzzy "1932-01-01"; + base:relationship\#IDRel 16934; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/SinPau-00 . + +base:relationship\/16939 a base:relationship; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 16939; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/RatCes-00 . + +base:relationship\/16944 a base:relationship; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 16944; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/RatPep-00 . + +base:relationship\/16949 a base:relationship; + base:relationship\#IDRel 16949; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/BreFan-00 . + +base:relationship\/16954 a base:relationship; + base:relationship\#IDRel 16954; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/VidBla-00 . + +base:relationship\/16959 a base:relationship; + base:relationship\#IDRel 16959; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/MonJoa-00 . + +base:relationship\/16964 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1908-12-31"; + base:relationship\#DateStart_Fuzzy "1906-01-01"; + base:relationship\#IDRel 16964; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/CibBen-00 . + +base:relationship\/16969 a base:relationship; + base:relationship\#IDRel 16969; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Barc-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LloEsp-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/16974 a base:relationship; + base:relationship\#IDRel 16974; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Barc-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BarAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/16979 a base:relationship; + base:relationship\#IDRel 16979; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ES-Barc-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BonFra-00 . + +base:relationship\/16984 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#DateStart_Max "1898-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 16984; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Barc-00; + base:relationship\#ref-IDOrganisation base:organisation\/4880; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnEva-00 . + +base:relationship\/16989 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1912"; + base:relationship\#DateEnd_Max "1912-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1907-06-20"^^xsd:date; + base:relationship\#DateStart_Min "1907-06-20"^^xsd:date; + base:relationship\#IDRel 16989; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-Ber-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/KeeJor-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/16994 a base:relationship; + base:relationship\#DateEnd_Max "1946-08-08"^^xsd:date; + base:relationship\#DateEnd_Min "1946-08-08"^^xsd:date; + base:relationship\#DateStart_Max "1909-08-13"^^xsd:date; + base:relationship\#DateStart_Min "1909-08-13"^^xsd:date; + base:relationship\#IDRel 16994; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/KeeJor-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/16999 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 16999; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/DeFMan-00 . + +base:relationship\/17 a base:relationship; + base:relationship\#IDRel 17; + base:relationship\#Timeperiod ""; + base:relationship\#comment "brother"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-00; + base:relationship\#ref-IDPerson_passive base:person\/JagEls-00 . + +base:relationship\/170 a base:relationship; + base:relationship\#IDRel 170; + base:relationship\#ref-IDPerson_active base:person\/ChaCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiLeo-00 . + +base:relationship\/17004 a base:relationship; + base:relationship\#IDRel 17004; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/2985; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MilLlu-00 . + +base:relationship\/17009 a base:relationship; + base:relationship\#IDRel 17009; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/2985; + base:relationship\#ref-IDPerson_active base:person\/BarMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ManJoa-00 . + +base:relationship\/17014 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Winter of 1882"; + base:relationship\#DateStart_Max "1883-03-24"^^xsd:date; + base:relationship\#DateStart_Min "1882-12-24"^^xsd:date; + base:relationship\#IDRel 17014; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/17019 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between 1877 and 1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 17019; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CabAlf-00 . + +base:relationship\/17024 a base:relationship; + base:relationship\#DateEnd_Fuzzy "October 1894"; + base:relationship\#DateEnd_Max "1894-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1894-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "9th May 1892"; + base:relationship\#DateStart_Max "1892-05-09"^^xsd:date; + base:relationship\#DateStart_Min "1892-05-09"^^xsd:date; + base:relationship\#IDRel 17024; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PesSer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/17029 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 17029; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GlaIra-00 . + +base:relationship\/17034 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 17034; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LarJea-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/17039 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1898/1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1898-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1898/1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 17039; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/FucRob-00 . + +base:relationship\/17044 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1898/1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1898-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1898/1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 17044; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiHug-00 . + +base:relationship\/17049 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1898/1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1898-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1898/1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 17049; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/TheLou-00 . + +base:relationship\/17054 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1898/1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1898-01-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1898/1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 17054; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/StoSte-00 . + +base:relationship\/17059 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1898/1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1898-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1898/1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 17059; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/488; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/SchFra-01 . + +base:relationship\/17064 a base:relationship; + base:relationship\#IDRel 17064; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/442; + base:relationship\#ref-IDPerson_active base:person\/BaiAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/17069 a base:relationship; + base:relationship\#IDRel 17069; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BaiAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/BaiIda-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/17074 a base:relationship; + base:relationship\#IDRel 17074; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/442; + base:relationship\#ref-IDPerson_active base:person\/BaiAnn-00; + base:relationship\#ref-IDPerson_passive base:person\/DusLou-00 . + +base:relationship\/17079 a base:relationship; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 17079; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Ffm-00; + base:relationship\#ref-IDPerson_active base:person\/BreEli-00; + base:relationship\#ref-IDPerson_passive base:person\/StoJul-00 . + +base:relationship\/17084 a base:relationship; + base:relationship\#IDRel 17084; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Dresd-00; + base:relationship\#ref-IDPerson_active base:person\/BreEli-00; + base:relationship\#ref-IDPerson_passive base:person\/IffAug-00 . + +base:relationship\/17089 a base:relationship; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#DateStart_Max "1901-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1901-01-01"^^xsd:date; + base:relationship\#IDRel 17089; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/CZ-Prag-00; + base:relationship\#ref-IDPerson_active base:person\/BroPhi-00; + base:relationship\#ref-IDPerson_passive base:person\/BleLeo-00 . + +base:relationship\/17094 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1895"; + base:relationship\#DateEnd_Max "1895-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1895-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1894"; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 17094; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BroPhi-00; + base:relationship\#ref-IDPerson_passive base:person\/HarAug-00 . + +base:relationship\/17099 a base:relationship; + base:relationship\#DateStart_Fuzzy "1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 17099; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BroPhi-00; + base:relationship\#ref-IDPerson_passive base:person\/RosCar-00 . + +base:relationship\/17124 a base:relationship; + base:relationship\#IDRel 17124; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3305; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/BerJua-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/17129 a base:relationship; + base:relationship\#IDRel 17129; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17134 a base:relationship; + base:relationship\#IDRel 17134; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ES-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17139 a base:relationship; + base:relationship\#IDRel 17139; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17144 a base:relationship; + base:relationship\#IDRel 17144; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/17149 a base:relationship; + base:relationship\#IDRel 17149; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/17154 a base:relationship; + base:relationship\#IDRel 17154; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "son or daughter"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/17159 a base:relationship; + base:relationship\#IDRel 17159; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/CarArt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/17164 a base:relationship; + base:relationship\#IDRel 17164; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/GonSan-00 . + +base:relationship\/17169 a base:relationship; + base:relationship\#IDRel 17169; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/VazMod-00 . + +base:relationship\/17174 a base:relationship; + base:relationship\#IDRel 17174; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiFer-00 . + +base:relationship\/17179 a base:relationship; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 17179; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3305; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/CubLui-00 . + +base:relationship\/17184 a base:relationship; + base:relationship\#IDRel 17184; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3305; + base:relationship\#ref-IDPerson_active base:person\/CarRit-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEdu-01 . + +base:relationship\/17193 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 17193; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/FarGer-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEnr-00 . + +base:relationship\/17194 a base:relationship; + base:relationship\#IDRel 17194; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FarGer-00; + base:relationship\#ref-IDPerson_passive base:person\/ThuEmm-00 . + +base:relationship\/17198 a base:relationship; + base:relationship\#IDRel 17198; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/USA-Bost-00; + base:relationship\#ref-IDPerson_active base:person\/FarGer-00; + base:relationship\#ref-IDPerson_passive base:person\/LonJ\.H-00 . + +base:relationship\/17203 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 17203; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/FarGer-00; + base:relationship\#ref-IDPerson_passive base:person\/de\+Pie-00 . + +base:relationship\/17204 a base:relationship; + base:relationship\#IDRel 17204; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/FarGer-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/17209 a base:relationship; + base:relationship\#IDRel 17209; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/17214 a base:relationship; + base:relationship\#IDRel 17214; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/BroPhi-00 . + +base:relationship\/17219 a base:relationship; + base:relationship\#IDRel 17219; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/MalMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/17224 a base:relationship; + base:relationship\#IDRel 17224; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/ViaPau-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/17229 a base:relationship; + base:relationship\#DateStart_Fuzzy "1826"; + base:relationship\#DateStart_Max "1826-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1826-01-01"^^xsd:date; + base:relationship\#IDRel 17229; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/PonLor-00 . + +base:relationship\/17234 a base:relationship; + base:relationship\#IDRel 17234; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/SchMal-00 . + +base:relationship\/17239 a base:relationship; + base:relationship\#IDRel 17239; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/LinJen-00 . + +base:relationship\/17243 a base:relationship; + base:relationship\#IDRel 17243; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/StoJul-00 . + +base:relationship\/17245 a base:relationship; + base:relationship\#IDRel 17245; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/WagJoh-00 . + +base:relationship\/17250 a base:relationship; + base:relationship\#IDRel 17250; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/GarGus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17255 a base:relationship; + base:relationship\#IDRel 17255; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/MayEug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/17260 a base:relationship; + base:relationship\#IDRel 17260; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/RipAnt-00 . + +base:relationship\/17265 a base:relationship; + base:relationship\#IDRel 17265; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/AlmJ\.-00 . + +base:relationship\/17269 a base:relationship; + base:relationship\#IDRel 17269; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GriCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/17274 a base:relationship; + base:relationship\#IDRel 17274; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GriGiu-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Cousin . + +base:relationship\/17279 a base:relationship; + base:relationship\#IDRel 17279; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GriGiu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Cousin . + +base:relationship\/17284 a base:relationship; + base:relationship\#DateEnd_Fuzzy "March 1866"; + base:relationship\#DateEnd_Max "1866-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1866-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1843"; + base:relationship\#DateStart_Max "1843-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1843-01-01"^^xsd:date; + base:relationship\#IDRel 17284; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GauTh\%C3\%83-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/17289 a base:relationship; + base:relationship\#IDRel 17289; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GauJud-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/17294 a base:relationship; + base:relationship\#IDRel 17294; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GriErn-00; + base:relationship\#ref-IDPerson_passive base:person\/GauEst-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/173 a base:relationship; + base:relationship\#IDRel 173; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1923-01-00"; + base:relationship\#ref-IDPerson_active base:person\/ChaCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NegPol-00 . + +base:relationship\/17319 a base:relationship; + base:relationship\#DateStart_Fuzzy "1902"; + base:relationship\#DateStart_Max "1902-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1902-01-01"^^xsd:date; + base:relationship\#IDRel 17319; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/3125; + base:relationship\#ref-IDPerson_active base:person\/HemFri-00; + base:relationship\#ref-IDPerson_passive base:person\/NicSel-00 . + +base:relationship\/17324 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1904-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 17324; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CasJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJer-00 . + +base:relationship\/17329 a base:relationship; + base:relationship\#IDRel 17329; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/309; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/Par-00 . + +base:relationship\/17334 a base:relationship; + base:relationship\#IDRel 17334; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/309; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/ConN\%2FA-00 . + +base:relationship\/17339 a base:relationship; + base:relationship\#IDRel 17339; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/PauTat-00 . + +base:relationship\/17344 a base:relationship; + base:relationship\#IDRel 17344; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/AlmIta-00 . + +base:relationship\/17349 a base:relationship; + base:relationship\#IDRel 17349; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/L\%C3\%B3pIre-00 . + +base:relationship\/17354 a base:relationship; + base:relationship\#IDRel 17354; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/KraWer-00 . + +base:relationship\/17359 a base:relationship; + base:relationship\#IDRel 17359; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/UrbGeo-00 . + +base:relationship\/17364 a base:relationship; + base:relationship\#IDRel 17364; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/FalArm-00 . + +base:relationship\/17369 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1936"; + base:relationship\#DateEnd_Max "1936-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1936-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 17369; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/GarFed-00 . + +base:relationship\/17374 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1936"; + base:relationship\#DateEnd_Max "1936-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1936-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 17374; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/SinBer-00 . + +base:relationship\/17379 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1947-12-31"; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 17379; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/DisArm-00 . + +base:relationship\/17384 a base:relationship; + base:relationship\#DateEnd_Max "1948-01-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 17384; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/DeREnr-00 . + +base:relationship\/17389 a base:relationship; + base:relationship\#DateEnd_Max "1948-01-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 17389; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiCam-00 . + +base:relationship\/17394 a base:relationship; + base:relationship\#DateEnd_Max "1956-12-25"^^xsd:date; + base:relationship\#IDRel 17394; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/DeBAnt-00 . + +base:relationship\/17399 a base:relationship; + base:relationship\#DateEnd_Max "1957-04-07"^^xsd:date; + base:relationship\#IDRel 17399; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/EscJul-00 . + +base:relationship\/17404 a base:relationship; + base:relationship\#DateStart_Fuzzy "1940-01-01"; + base:relationship\#IDRel 17404; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/OrtMec-00 . + +base:relationship\/17409 a base:relationship; + base:relationship\#IDRel 17409; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/FreNic-00 . + +base:relationship\/17410 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1956-12-31"; + base:relationship\#DateStart_Fuzzy "1943-01-01"; + base:relationship\#IDRel 17410; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/FraEva-01 . + +base:relationship\/17413 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1943-12-31"; + base:relationship\#DateStart_Fuzzy "1943-01-01"; + base:relationship\#IDRel 17413; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/RocMig-00 . + +base:relationship\/17415 a base:relationship; + base:relationship\#DateStart_Fuzzy "1936-01-01"; + base:relationship\#IDRel 17415; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/VehLui-01 . + +base:relationship\/17418 a base:relationship; + base:relationship\#IDRel 17418; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/SerEst-00 . + +base:relationship\/17420 a base:relationship; + base:relationship\#IDRel 17420; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/SanLui-00 . + +base:relationship\/17425 a base:relationship; + base:relationship\#IDRel 17425; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/RamJos-00 . + +base:relationship\/17430 a base:relationship; + base:relationship\#IDRel 17430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/DisEnr-00 . + +base:relationship\/17433 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1952-12-31"; + base:relationship\#DateStart_Fuzzy "1952-01-01"; + base:relationship\#IDRel 17433; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/LucEle-00 . + +base:relationship\/17438 a base:relationship; + base:relationship\#IDRel 17438; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/SusEnr-00 . + +base:relationship\/17440 a base:relationship; + base:relationship\#IDRel 17440; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/MerTit-00 . + +base:relationship\/17443 a base:relationship; + base:relationship\#IDRel 17443; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/PodPab-00 . + +base:relationship\/17448 a base:relationship; + base:relationship\#IDRel 17448; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/AraLui-00 . + +base:relationship\/17449 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1956-12-31"; + base:relationship\#DateStart_Fuzzy "1956-01-01"; + base:relationship\#IDRel 17449; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/DiFPe-00 . + +base:relationship\/17454 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1956-12-31"; + base:relationship\#DateStart_Fuzzy "1941-01-01"; + base:relationship\#IDRel 17454; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/IbaNar-00 . + +base:relationship\/17459 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1956-12-31"; + base:relationship\#DateStart_Fuzzy "1956-01-01"; + base:relationship\#IDRel 17459; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/ConSan-00; + base:relationship\#ref-IDPerson_passive base:person\/SteHno-00 . + +base:relationship\/17469 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 17469; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FreCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/17474 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1910-01-01/1910-12-31"; + base:relationship\#DateEnd_Max "1910-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1910-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1909-01-01/1909-12-31"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 17474; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/454; + base:relationship\#ref-IDPerson_active base:person\/AscLeo-00; + base:relationship\#ref-IDPerson_passive base:person\/LasBel-00 . + +base:relationship\/17479 a base:relationship; + base:relationship\#IDRel 17479; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CreWil-00 . + +base:relationship\/17489 a base:relationship; + base:relationship\#IDRel 17489; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17494 a base:relationship; + base:relationship\#IDRel 17494; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17498 a base:relationship; + base:relationship\#IDRel 17498; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17503 a base:relationship; + base:relationship\#IDRel 17503; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17508 a base:relationship; + base:relationship\#IDRel 17508; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17509 a base:relationship; + base:relationship\#IDRel 17509; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17514 a base:relationship; + base:relationship\#IDRel 17514; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00 . + +base:relationship\/17524 a base:relationship; + base:relationship\#DateEnd_Max "1919-01-24"^^xsd:date; + base:relationship\#DateEnd_Min "1919-01-24"^^xsd:date; + base:relationship\#IDRel 17524; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BecMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/17529 a base:relationship; + base:relationship\#IDRel 17529; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/BecMar-00 . + +base:relationship\/17534 a base:relationship; + base:relationship\#IDRel 17534; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/BecMar-00 . + +base:relationship\/17540 a base:relationship; + base:relationship\#IDRel 17540; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BruOtt-00; + base:relationship\#ref-IDPerson_passive base:person\/BetFra-00 . + +base:relationship\/17541 a base:relationship; + base:relationship\#IDRel 17541; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BruOtt-00; + base:relationship\#ref-IDPerson_passive base:person\/KahHei-00 . + +base:relationship\/17544 a base:relationship; + base:relationship\#DateStart_Fuzzy "1829"; + base:relationship\#IDRel 17544; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/F\%C3\%83\%C2\%A9Fra-00 . + +base:relationship\/17549 a base:relationship; + base:relationship\#IDRel 17549; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/ArnGus-00 . + +base:relationship\/17550 a base:relationship; + base:relationship\#IDRel 17550; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/FreErm-00 . + +base:relationship\/17554 a base:relationship; + base:relationship\#IDRel 17554; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/FeoHan-00 . + +base:relationship\/17559 a base:relationship; + base:relationship\#IDRel 17559; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/WalHen-00 . + +base:relationship\/17564 a base:relationship; + base:relationship\#IDRel 17564; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/vonRai-00 . + +base:relationship\/17574 a base:relationship; + base:relationship\#IDRel 17574; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/JeaRes-00 . + +base:relationship\/17579 a base:relationship; + base:relationship\#IDRel 17579; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CapVic-00 . + +base:relationship\/17584 a base:relationship; + base:relationship\#IDRel 17584; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KonFid-00 . + +base:relationship\/17589 a base:relationship; + base:relationship\#IDRel 17589; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaAma-00 . + +base:relationship\/17594 a base:relationship; + base:relationship\#IDRel 17594; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-MUC-00; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WalBru-00 . + +base:relationship\/176 a base:relationship; + base:relationship\#IDRel 176; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/EgeFra-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/17604 a base:relationship; + base:relationship\#IDRel 17604; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/17609 a base:relationship; + base:relationship\#IDRel 17609; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MarSal-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/17614 a base:relationship; + base:relationship\#IDRel 17614; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GulEll-00 . + +base:relationship\/17619 a base:relationship; + base:relationship\#IDRel 17619; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MelNel-00 . + +base:relationship\/17624 a base:relationship; + base:relationship\#IDRel 17624; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BruMur-00 . + +base:relationship\/17629 a base:relationship; + base:relationship\#IDRel 17629; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ArcPhy-00 . + +base:relationship\/17634 a base:relationship; + base:relationship\#IDRel 17634; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TomBla-00 . + +base:relationship\/17639 a base:relationship; + base:relationship\#IDRel 17639; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01 . + +base:relationship\/17644 a base:relationship; + base:relationship\#IDRel 17644; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/AldFra-00 . + +base:relationship\/17649 a base:relationship; + base:relationship\#IDRel 17649; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMar-00 . + +base:relationship\/17654 a base:relationship; + base:relationship\#IDRel 17654; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/GulEll-00 . + +base:relationship\/17659 a base:relationship; + base:relationship\#IDRel 17659; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/MelNel-00 . + +base:relationship\/17664 a base:relationship; + base:relationship\#IDRel 17664; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCle-00 . + +base:relationship\/17669 a base:relationship; + base:relationship\#IDRel 17669; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Ffm-00; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/RonFel-00 . + +base:relationship\/17674 a base:relationship; + base:relationship\#IDRel 17674; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/NicOtt-00 . + +base:relationship\/17684 a base:relationship; + base:relationship\#IDRel 17684; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/AbbEmm-00 . + +base:relationship\/17689 a base:relationship; + base:relationship\#IDRel 17689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/SchHan-00 . + +base:relationship\/17694 a base:relationship; + base:relationship\#DateStart_Fuzzy "1878"; + base:relationship\#IDRel 17694; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/SahHei-00 . + +base:relationship\/17699 a base:relationship; + base:relationship\#IDRel 17699; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-01 . + +base:relationship\/17719 a base:relationship; + base:relationship\#IDRel 17719; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00; + base:relationship\#ref-IDPerson_passive base:person\/McaJoy-00 . + +base:relationship\/17724 a base:relationship; + base:relationship\#IDRel 17724; + base:relationship\#ref-IDPerson_active base:person\/MarBla-00 . + +base:relationship\/17729 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1834"; + base:relationship\#DateEnd_Max "1834-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1834-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1832"; + base:relationship\#DateStart_Max "1832-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1832-01-01"^^xsd:date; + base:relationship\#IDRel 17729; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/17734 a base:relationship; + base:relationship\#IDRel 17734; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/17739 a base:relationship; + base:relationship\#DateStart_Fuzzy "1838"; + base:relationship\#DateStart_Max "1838-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1838-01-01"^^xsd:date; + base:relationship\#IDRel 17739; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/17740 a base:relationship; + base:relationship\#IDRel 17740; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyGia-00 . + +base:relationship\/17744 a base:relationship; + base:relationship\#IDRel 17744; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BerHec-00 . + +base:relationship\/17749 a base:relationship; + base:relationship\#IDRel 17749; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/17754 a base:relationship; + base:relationship\#IDRel 17754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BraJoh-00 . + +base:relationship\/17759 a base:relationship; + base:relationship\#IDRel 17759; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/WagJoh-00 . + +base:relationship\/17764 a base:relationship; + base:relationship\#IDRel 17764; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/H\%C3\%A9rLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/17769 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883"; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "18th April 1840"; + base:relationship\#DateStart_Max "1840-04-18"^^xsd:date; + base:relationship\#DateStart_Min "1840-04-18"^^xsd:date; + base:relationship\#IDRel 17769; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ViaLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/17774 a base:relationship; + base:relationship\#IDRel 17774; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GarAlb-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/17779 a base:relationship; + base:relationship\#DateStart_Fuzzy "1829"; + base:relationship\#DateStart_Max "1829-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1829-01-01"^^xsd:date; + base:relationship\#IDRel 17779; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyS\%C3\%A8b-00 . + +base:relationship\/17784 a base:relationship; + base:relationship\#IDRel 17784; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiAnt-00 . + +base:relationship\/17789 a base:relationship; + base:relationship\#DateStart_Fuzzy "1843"; + base:relationship\#IDRel 17789; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/TurSer-00 . + +base:relationship\/17794 a base:relationship; + base:relationship\#IDRel 17794; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/RieJul-00 . + +base:relationship\/17799 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#IDRel 17799; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SanGeo-00 . + +base:relationship\/17804 a base:relationship; + base:relationship\#IDRel 17804; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SaiCam-00 . + +base:relationship\/17809 a base:relationship; + base:relationship\#IDRel 17809; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MasJul-00 . + +base:relationship\/17814 a base:relationship; + base:relationship\#IDRel 17814; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/NouAdo-00 . + +base:relationship\/17819 a base:relationship; + base:relationship\#IDRel 17819; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/RubArt-00 . + +base:relationship\/17824 a base:relationship; + base:relationship\#IDRel 17824; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/RubAnt-00 . + +base:relationship\/17829 a base:relationship; + base:relationship\#IDRel 17829; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/NicFri-00 . + +base:relationship\/17834 a base:relationship; + base:relationship\#IDRel 17834; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LevHer-01 . + +base:relationship\/17839 a base:relationship; + base:relationship\#IDRel 17839; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/JoaJos-01 . + +base:relationship\/17844 a base:relationship; + base:relationship\#IDRel 17844; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ArtD\%C3\%A9s-00 . + +base:relationship\/17849 a base:relationship; + base:relationship\#IDRel 17849; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/BerSar-00 . + +base:relationship\/17854 a base:relationship; + base:relationship\#IDRel 17854; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiSac-00 . + +base:relationship\/17859 a base:relationship; + base:relationship\#DateStart_Fuzzy "1911"; + base:relationship\#DateStart_Max "1911-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1911-01-01"^^xsd:date; + base:relationship\#IDRel 17859; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/RusSan-00 . + +base:relationship\/17864 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1913"; + base:relationship\#DateEnd_Max "1913-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1913-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1912"; + base:relationship\#DateStart_Max "1912-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-01-01"^^xsd:date; + base:relationship\#IDRel 17864; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2965; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/Marrgu-00 . + +base:relationship\/17869 a base:relationship; + base:relationship\#IDRel 17869; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/DusEle-01 . + +base:relationship\/17874 a base:relationship; + base:relationship\#IDRel 17874; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/DiLTI-00 . + +base:relationship\/17879 a base:relationship; + base:relationship\#IDRel 17879; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/GueMar-00 . + +base:relationship\/17884 a base:relationship; + base:relationship\#IDRel 17884; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/PinRos-00 . + +base:relationship\/17889 a base:relationship; + base:relationship\#IDRel 17889; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/D\%C3\%ADMFer-00 . + +base:relationship\/17894 a base:relationship; + base:relationship\#IDRel 17894; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/FraMon-00 . + +base:relationship\/17899 a base:relationship; + base:relationship\#IDRel 17899; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/Leones-00 . + +base:relationship\/179 a base:relationship; + base:relationship\#IDRel 179; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/EgeFra-00; + base:relationship\#ref-IDPerson_passive base:person\/MauVic-00 . + +base:relationship\/17904 a base:relationship; + base:relationship\#IDRel 17904; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/DeTAnt-00 . + +base:relationship\/17909 a base:relationship; + base:relationship\#IDRel 17909; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/Anance-00 . + +base:relationship\/17914 a base:relationship; + base:relationship\#IDRel 17914; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/Enrrri-00 . + +base:relationship\/17919 a base:relationship; + base:relationship\#IDRel 17919; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/CleGeo-00 . + +base:relationship\/17924 a base:relationship; + base:relationship\#IDRel 17924; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/JauJea-00 . + +base:relationship\/17929 a base:relationship; + base:relationship\#IDRel 17929; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/FerGui-00 . + +base:relationship\/17934 a base:relationship; + base:relationship\#IDRel 17934; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/IbaVic-00 . + +base:relationship\/17939 a base:relationship; + base:relationship\#IDRel 17939; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/MarVic-00 . + +base:relationship\/17944 a base:relationship; + base:relationship\#IDRel 17944; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DarFau-00; + base:relationship\#ref-IDPerson_passive base:person\/CoqCon-01 . + +base:relationship\/17949 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-01-01"^^xsd:date; + base:relationship\#IDRel 17949; + base:relationship\#comment "Place: Naples and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/IT-Nap-00; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/CiaCes-00 . + +base:relationship\/17950 a base:relationship; + base:relationship\#IDRel 17950; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3325; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/DeLGreg-00 . + +base:relationship\/17955 a base:relationship; + base:relationship\#IDRel 17955; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiH\%C3\%A9c-00 . + +base:relationship\/17958 a base:relationship; + base:relationship\#IDRel 17958; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiCam-00 . + +base:relationship\/17959 a base:relationship; + base:relationship\#IDRel 17959; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/NovErm-00 . + +base:relationship\/17964 a base:relationship; + base:relationship\#IDRel 17964; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DenVic-00; + base:relationship\#ref-IDPerson_passive base:person\/DiLTI-00 . + +base:relationship\/17968 a base:relationship; + base:relationship\#DateEnd_Max "1948-12-17"^^xsd:date; + base:relationship\#DateEnd_Min "1948-12-17"^^xsd:date; + base:relationship\#DateStart_Max "1906-05-08"^^xsd:date; + base:relationship\#DateStart_Min "1906-05-08"^^xsd:date; + base:relationship\#IDRel 17968; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Madrid and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/AraMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/17969 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1954"; + base:relationship\#DateEnd_Max "1954-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1954-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1908"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-01-01"^^xsd:date; + base:relationship\#IDRel 17969; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/AraLui-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17974 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920"; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 17974; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/AraMan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/17979 a base:relationship; + base:relationship\#IDRel 17979; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiCam-00 . + +base:relationship\/17984 a base:relationship; + base:relationship\#IDRel 17984; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3405; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/LemLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/17989 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1909-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 17989; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/P\%C3\%A9rBen-00 . + +base:relationship\/17994 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 17994; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/ChaRos-00 . + +base:relationship\/17999 a base:relationship; + base:relationship\#IDRel 17999; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/RivCip-00 . + +base:relationship\/18 a base:relationship; + base:relationship\#DateStart_Fuzzy "1871-01-19"; + base:relationship\#IDRel 18; + base:relationship\#Timeperiod ""; + base:relationship\#comment "son"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-00; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/18004 a base:relationship; + base:relationship\#IDRel 18004; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGre-00 . + +base:relationship\/18009 a base:relationship; + base:relationship\#IDRel 18009; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/BarP\%C3\%ADo-00 . + +base:relationship\/18013 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1929"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 18013; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/DonMag-00 . + +base:relationship\/18014 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1929"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 18014; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/ZarNat-00 . + +base:relationship\/18018 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1929"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 18018; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGlo-00 . + +base:relationship\/18019 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1929"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 18019; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/BarSal-00 . + +base:relationship\/18024 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1929"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1929-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 18024; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/3385; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/LorFed-00 . + +base:relationship\/18029 a base:relationship; + base:relationship\#IDRel 18029; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DegEus-00; + base:relationship\#ref-IDPerson_passive base:person\/IncRam-00 . + +base:relationship\/18034 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1888-02-06"^^xsd:date; + base:relationship\#DateStart_Min "1888-02-06"^^xsd:date; + base:relationship\#IDRel 18034; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Coruna-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/PasTeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/18039 a base:relationship; + base:relationship\#DateStart_Max "1888-02-06"^^xsd:date; + base:relationship\#DateStart_Min "1888-02-06"^^xsd:date; + base:relationship\#IDRel 18039; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Coruna-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/FraEsc-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/18044 a base:relationship; + base:relationship\#DateEnd_Max "1938-05-20"^^xsd:date; + base:relationship\#DateEnd_Min "1938-05-20"^^xsd:date; + base:relationship\#DateStart_Max "1888-02-06"^^xsd:date; + base:relationship\#DateStart_Min "1888-02-06"^^xsd:date; + base:relationship\#IDRel 18044; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Coruna-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/LlaIgn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/18049 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1888"; + base:relationship\#DateEnd_Max "1888-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1888-02-06"^^xsd:date; + base:relationship\#DateStart_Min "1888-02-06"^^xsd:date; + base:relationship\#IDRel 18049; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Coruna-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/LlaMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/18054 a base:relationship; + base:relationship\#DateEnd_Max "1938-05-20"^^xsd:date; + base:relationship\#DateEnd_Min "1938-05-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 18054; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Coruna-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/DeLTeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/18059 a base:relationship; + base:relationship\#DateEnd_Max "1938-05-20"^^xsd:date; + base:relationship\#DateEnd_Min "1938-05-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1918"; + base:relationship\#DateStart_Max "1918-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1918-01-01"^^xsd:date; + base:relationship\#IDRel 18059; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/MalArn-00 . + +base:relationship\/18064 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1918-12-31"; + base:relationship\#DateEnd_Max "1918-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1918-01-01"^^xsd:date; + base:relationship\#IDRel 18064; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/SilJos-00 . + +base:relationship\/18069 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1934"; + base:relationship\#DateEnd_Max "1934-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1934-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1934"; + base:relationship\#DateStart_Max "1934-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-01-01"^^xsd:date; + base:relationship\#IDRel 18069; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/MuiEnr-00 . + +base:relationship\/18074 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1934"; + base:relationship\#DateEnd_Max "1934-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1934-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1934"; + base:relationship\#DateStart_Max "1934-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-01-01"^^xsd:date; + base:relationship\#IDRel 18074; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DelNic-00; + base:relationship\#ref-IDPerson_passive base:person\/AliEl\%C3\%AD-00 . + +base:relationship\/18079 a base:relationship; + base:relationship\#DateStart_Max "1894-12-25"^^xsd:date; + base:relationship\#DateStart_Min "1894-12-25"^^xsd:date; + base:relationship\#IDRel 18079; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/IT-Tur-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/DeaJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/18084 a base:relationship; + base:relationship\#DateEnd_Max "1948-07-26"^^xsd:date; + base:relationship\#DateEnd_Min "1948-07-26"^^xsd:date; + base:relationship\#IDRel 18084; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/590; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/CarPas-00 . + +base:relationship\/18089 a base:relationship; + base:relationship\#DateEnd_Max "1923-04-26"^^xsd:date; + base:relationship\#DateEnd_Min "1923-04-26"^^xsd:date; + base:relationship\#IDRel 18089; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/PodPab-00 . + +base:relationship\/18094 a base:relationship; + base:relationship\#DateEnd_Max "1929-05-30"^^xsd:date; + base:relationship\#DateEnd_Min "1929-05-30"^^xsd:date; + base:relationship\#IDRel 18094; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/CasRob-00 . + +base:relationship\/18099 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1960"; + base:relationship\#DateEnd_Max "1960-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1960-01-01"^^xsd:date; + base:relationship\#IDRel 18099; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/MorCar-00 . + +base:relationship\/18104 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1925"; + base:relationship\#DateEnd_Max "1925-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1925-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 18104; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/PacReg-00 . + +base:relationship\/18109 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1925"; + base:relationship\#DateEnd_Max "1925-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1925-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 18109; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/AlvMar-00 . + +base:relationship\/18114 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1925"; + base:relationship\#DateEnd_Max "1925-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1925-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 18114; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2630; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/ParCar-00 . + +base:relationship\/18128 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 18128; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/ParMar-00 . + +base:relationship\/18131 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 18131; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/LamLib-00 . + +base:relationship\/18136 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1948"; + base:relationship\#DateEnd_Max "1948-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1948-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1933"; + base:relationship\#DateStart_Max "1933-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 18136; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2970; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/CamAlf-00 . + +base:relationship\/18139 a base:relationship; + base:relationship\#DateEnd_Max "1979-10-03"^^xsd:date; + base:relationship\#DateEnd_Min "1979-10-03"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1933"; + base:relationship\#DateStart_Max "1933-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 18139; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2970; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/CapMar-00 . + +base:relationship\/18144 a base:relationship; + base:relationship\#DateEnd_Max "1965-12-20"^^xsd:date; + base:relationship\#DateEnd_Min "1965-12-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1933"; + base:relationship\#DateStart_Max "1933-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 18144; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2970; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/SerEnr-00 . + +base:relationship\/18149 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18149; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/MorZul-00 . + +base:relationship\/18154 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18154; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/AleNor-00 . + +base:relationship\/18159 a base:relationship; + base:relationship\#DateEnd_Max "1980-07-05"^^xsd:date; + base:relationship\#DateEnd_Min "1980-07-05"^^xsd:date; + base:relationship\#IDRel 18159; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/Luiini-00 . + +base:relationship\/18164 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18164; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/PorJav-00 . + +base:relationship\/18169 a base:relationship; + base:relationship\#DateEnd_Max "1977-02-08"^^xsd:date; + base:relationship\#DateEnd_Min "1977-02-08"^^xsd:date; + base:relationship\#IDRel 18169; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/BozOli-00 . + +base:relationship\/18174 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18174; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/Mu\%C3\%B1Pep-00 . + +base:relationship\/18179 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1978"; + base:relationship\#DateStart_Max "1978-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1978-01-01"^^xsd:date; + base:relationship\#IDRel 18179; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/JurJor-00 . + +base:relationship\/18184 a base:relationship; + base:relationship\#DateEnd_Max "1952-07-26"^^xsd:date; + base:relationship\#DateEnd_Min "1952-07-26"^^xsd:date; + base:relationship\#IDRel 18184; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/DuaEva-00 . + +base:relationship\/18189 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18189; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/MarIri-00 . + +base:relationship\/18194 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18194; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/LuqVir-00 . + +base:relationship\/18199 a base:relationship; + base:relationship\#DateEnd_Max "1971-03-18"^^xsd:date; + base:relationship\#DateEnd_Min "1971-03-18"^^xsd:date; + base:relationship\#IDRel 18199; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/NavFan-00 . + +base:relationship\/18204 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18204; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/OlmSab-00 . + +base:relationship\/18209 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18209; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/RotSil-00 . + +base:relationship\/18214 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1962"; + base:relationship\#DateEnd_Max "1962-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1962-01-01"^^xsd:date; + base:relationship\#IDRel 18214; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/ConRos-00 . + +base:relationship\/18219 a base:relationship; + base:relationship\#DateEnd_Max "1983-01-21"^^xsd:date; + base:relationship\#DateEnd_Min "1983-01-21"^^xsd:date; + base:relationship\#IDRel 18219; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3155; + base:relationship\#ref-IDPerson_active base:person\/DeaPie-00; + base:relationship\#ref-IDPerson_passive base:person\/MuxPer-00 . + +base:relationship\/18223 a base:relationship; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 18223; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/P\%C3\%A9rRog-00 . + +base:relationship\/18228 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1927"; + base:relationship\#DateEnd_Max "1927-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1927-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1918"; + base:relationship\#DateStart_Max "1918-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1918-01-01"^^xsd:date; + base:relationship\#IDRel 18228; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/MuiEnr-00 . + +base:relationship\/18233 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1927"; + base:relationship\#DateEnd_Max "1927-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1927-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1918"; + base:relationship\#DateStart_Max "1918-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1918-01-01"^^xsd:date; + base:relationship\#IDRel 18233; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/AliEl\%C3\%AD-00 . + +base:relationship\/18238 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920"; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1920"; + base:relationship\#DateStart_Max "1920-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 18238; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PolMan-00 . + +base:relationship\/18243 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1923"; + base:relationship\#DateEnd_Max "1923-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1923-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 18243; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Madrid and Barcelona: Apolo and Tívoli"; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/DeREnr-00 . + +base:relationship\/18253 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1923"; + base:relationship\#DateEnd_Max "1923-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1923-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 18253; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/RivN\%2FA-00 . + +base:relationship\/18258 a base:relationship; + base:relationship\#IDRel 18258; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BalPep-00 . + +base:relationship\/18263 a base:relationship; + base:relationship\#IDRel 18263; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/D\%C3\%ADAEmi-00 . + +base:relationship\/18268 a base:relationship; + base:relationship\#IDRel 18268; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PlaAnt-00 . + +base:relationship\/18278 a base:relationship; + base:relationship\#IDRel 18278; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/VilErn-00 . + +base:relationship\/18279 a base:relationship; + base:relationship\#IDRel 18279; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/VivAnt-00 . + +base:relationship\/18284 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 18284; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires and Madrid; Teatro Florida and Teatro Apolo"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3300; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/GarCar-00 . + +base:relationship\/18289 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 18289; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires and Madrid; Teatro Florida and Teatro Apolo"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3300; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/RazJos-00 . + +base:relationship\/18294 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1923"; + base:relationship\#DateEnd_Max "1923-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1923-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 18294; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/DelFra-00; + base:relationship\#ref-IDPerson_passive base:person\/RoaAma-00 . + +base:relationship\/18299 a base:relationship; + base:relationship\#DateStart_Max "1881-02-09"^^xsd:date; + base:relationship\#DateStart_Min "1881-02-09"^^xsd:date; + base:relationship\#IDRel 18299; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Bayo-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/DeNRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/183 a base:relationship; + base:relationship\#IDRel 183; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDPerson_active base:person\/MauVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/18304 a base:relationship; + base:relationship\#IDRel 18304; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3145; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/SarAng-00 . + +base:relationship\/18309 a base:relationship; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 18309; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/ColCar-00 . + +base:relationship\/18314 a base:relationship; + base:relationship\#IDRel 18314; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/IriFlo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Cousin . + +base:relationship\/18319 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1905"; + base:relationship\#DateEnd_Max "1905-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 18319; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/590; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/ArdRob-00 . + +base:relationship\/18324 a base:relationship; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 18324; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/590; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/RicOrf-00 . + +base:relationship\/18329 a base:relationship; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 18329; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/DeVJoa-00 . + +base:relationship\/18334 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 18334; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJos-00 . + +base:relationship\/18339 a base:relationship; + base:relationship\#DateEnd_Max "1937-11-25"^^xsd:date; + base:relationship\#DateEnd_Min "1937-11-25"^^xsd:date; + base:relationship\#IDRel 18339; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/S\%C3\%A1nFlo-00 . + +base:relationship\/18344 a base:relationship; + base:relationship\#DateEnd_Max "1937-11-25"^^xsd:date; + base:relationship\#DateEnd_Min "1937-11-25"^^xsd:date; + base:relationship\#IDRel 18344; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3145; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/SalJos-00 . + +base:relationship\/18349 a base:relationship; + base:relationship\#IDRel 18349; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3370; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEva-00 . + +base:relationship\/18354 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1913"; + base:relationship\#DateEnd_Max "1913-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1913-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1913-03-01"^^xsd:date; + base:relationship\#DateStart_Min "1913-03-01"^^xsd:date; + base:relationship\#IDRel 18354; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2945; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/PodPab-00 . + +base:relationship\/18359 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920"; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1920"; + base:relationship\#DateStart_Max "1920-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 18359; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/CasRob-00 . + +base:relationship\/18364 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1905"; + base:relationship\#DateEnd_Max "1905-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1905-06-03"^^xsd:date; + base:relationship\#DateStart_Min "1905-06-03"^^xsd:date; + base:relationship\#IDRel 18364; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/590; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJer-00 . + +base:relationship\/18369 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1904-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 18369; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/NovAlb-00; + base:relationship\#ref-IDPerson_passive base:person\/ParFlo-00 . + +base:relationship\/18374 a base:relationship; + base:relationship\#IDRel 18374; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CarCec-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/18379 a base:relationship; + base:relationship\#IDRel 18379; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MirAur-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/18384 a base:relationship; + base:relationship\#IDRel 18384; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CunAma-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/18389 a base:relationship; + base:relationship\#IDRel 18389; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CunJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/18394 a base:relationship; + base:relationship\#IDRel 18394; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MirMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/18399 a base:relationship; + base:relationship\#DateStart_Fuzzy "December 1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-12-01"^^xsd:date; + base:relationship\#IDRel 18399; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BarJos-00 . + +base:relationship\/18404 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 23rd January and 1st March 1930"; + base:relationship\#DateStart_Max "1930-03-01"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-23"^^xsd:date; + base:relationship\#IDRel 18404; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CarJub-00 . + +base:relationship\/18409 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1st July and 8th August 1932"; + base:relationship\#DateStart_Max "1932-08-08"^^xsd:date; + base:relationship\#DateStart_Min "1932-07-01"^^xsd:date; + base:relationship\#IDRel 18409; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CalSyl-00 . + +base:relationship\/18414 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1st July 1932 and 8th August 1932"; + base:relationship\#DateStart_Max "1932-08-08"^^xsd:date; + base:relationship\#DateStart_Min "1932-07-01"^^xsd:date; + base:relationship\#IDRel 18414; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AlvFra-00 . + +base:relationship\/18419 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1st July 1932 and 8th August 1932"; + base:relationship\#DateStart_Max "1932-08-08"^^xsd:date; + base:relationship\#DateStart_Min "1932-07-01"^^xsd:date; + base:relationship\#IDRel 18419; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RosNoe-00 . + +base:relationship\/18424 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1st July and 8th August 1932"; + base:relationship\#DateStart_Max "1932-08-08"^^xsd:date; + base:relationship\#DateStart_Min "1932-07-01"^^xsd:date; + base:relationship\#IDRel 18424; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-Salva-00; + base:relationship\#ref-IDOrganisation base:organisation\/3655; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/OliJos-00 . + +base:relationship\/18429 a base:relationship; + base:relationship\#DateStart_Fuzzy "August 1933"; + base:relationship\#DateStart_Max "1933-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-08-01"^^xsd:date; + base:relationship\#IDRel 18429; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3795; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LadC\%C3\%A9s-00 . + +base:relationship\/18434 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 18434; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiAnn-00 . + +base:relationship\/18439 a base:relationship; + base:relationship\#DateStart_Fuzzy "March 1934"; + base:relationship\#DateStart_Max "1934-03-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-03-01"^^xsd:date; + base:relationship\#IDRel 18439; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/SilSyn-00 . + +base:relationship\/18444 a base:relationship; + base:relationship\#DateStart_Fuzzy "March 1934"; + base:relationship\#DateStart_Max "1934-03-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-03-01"^^xsd:date; + base:relationship\#IDRel 18444; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MesCus-00 . + +base:relationship\/18449 a base:relationship; + base:relationship\#DateStart_Fuzzy "March 1935"; + base:relationship\#DateStart_Max "1935-03-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-03-01"^^xsd:date; + base:relationship\#IDRel 18449; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LacBen-00 . + +base:relationship\/18454 a base:relationship; + base:relationship\#DateStart_Fuzzy "May 1935"; + base:relationship\#DateStart_Max "1935-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-05-01"^^xsd:date; + base:relationship\#IDRel 18454; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/DowWal-00 . + +base:relationship\/18459 a base:relationship; + base:relationship\#DateStart_Fuzzy "September 1935"; + base:relationship\#DateStart_Max "1935-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1935-09-01"^^xsd:date; + base:relationship\#IDRel 18459; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/VerAlc-00 . + +base:relationship\/18464 a base:relationship; + base:relationship\#IDRel 18464; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FarCar-00 . + +base:relationship\/18469 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th December 1937"; + base:relationship\#DateStart_Max "1937-12-17"^^xsd:date; + base:relationship\#DateStart_Min "1937-12-15"^^xsd:date; + base:relationship\#IDRel 18469; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3795; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AlmAra-00 . + +base:relationship\/18474 a base:relationship; + base:relationship\#DateStart_Fuzzy "December 1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-12-01"^^xsd:date; + base:relationship\#IDRel 18474; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3790; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RolJoa-00 . + +base:relationship\/18479 a base:relationship; + base:relationship\#DateStart_Fuzzy "23rd May 1935"; + base:relationship\#DateStart_Max "1935-05-23"^^xsd:date; + base:relationship\#DateStart_Min "1935-05-23"^^xsd:date; + base:relationship\#IDRel 18479; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3745; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/YanJai-00 . + +base:relationship\/18484 a base:relationship; + base:relationship\#IDRel 18484; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New York"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaAlo-00 . + +base:relationship\/18489 a base:relationship; + base:relationship\#DateEnd_Fuzzy "6th August 1942"; + base:relationship\#DateEnd_Max "1942-08-06"^^xsd:date; + base:relationship\#DateEnd_Min "1942-08-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1939"; + base:relationship\#DateStart_Max "1939-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1939-02-01"^^xsd:date; + base:relationship\#IDRel 18489; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They met in Rio de Janeiro, he was the responsible for bring Carmen Miranda to US"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/147; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/ShuLee-00 . + +base:relationship\/18494 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18494; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New York"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaH\%C3\%A9l-00 . + +base:relationship\/18499 a base:relationship; + base:relationship\#DateEnd_Fuzzy "30th August 1939"; + base:relationship\#DateEnd_Max "1939-08-30"^^xsd:date; + base:relationship\#DateEnd_Min "1939-08-30"^^xsd:date; + base:relationship\#IDRel 18499; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New York"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaIvo-00 . + +base:relationship\/18504 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18504; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New York"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaOsw-00 . + +base:relationship\/18509 a base:relationship; + base:relationship\#IDRel 18509; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New York"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaIrm-00 . + +base:relationship\/18514 a base:relationship; + base:relationship\#DateStart_Fuzzy "February 1939"; + base:relationship\#DateStart_Max "1939-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1939-02-01"^^xsd:date; + base:relationship\#IDRel 18514; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RicJay-00 . + +base:relationship\/18519 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "17th May 1939"; + base:relationship\#DateStart_Max "1939-05-17"^^xsd:date; + base:relationship\#DateStart_Min "1939-05-17"^^xsd:date; + base:relationship\#IDRel 18519; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MouD\%C3\%A9c-00 . + +base:relationship\/18524 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "between May and December 1939"; + base:relationship\#DateStart_Max "1939-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1939-05-01"^^xsd:date; + base:relationship\#IDRel 18524; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaGar-00 . + +base:relationship\/18529 a base:relationship; + base:relationship\#DateStart_Fuzzy "between May and December 1939"; + base:relationship\#DateStart_Max "1939-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1939-05-01"^^xsd:date; + base:relationship\#IDRel 18529; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PenAlc-00 . + +base:relationship\/18534 a base:relationship; + base:relationship\#DateStart_Fuzzy "End of July 1940"; + base:relationship\#DateStart_Max "1940-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-07-15"^^xsd:date; + base:relationship\#IDRel 18534; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3790; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PeiLui-00 . + +base:relationship\/18539 a base:relationship; + base:relationship\#DateStart_Fuzzy "End of July 1940"; + base:relationship\#DateStart_Max "1940-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-07-15"^^xsd:date; + base:relationship\#IDRel 18539; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3790; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MacCar-00 . + +base:relationship\/18544 a base:relationship; + base:relationship\#DateStart_Fuzzy "August 1940"; + base:relationship\#DateStart_Max "1940-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-08-01"^^xsd:date; + base:relationship\#IDRel 18544; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/3790; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/OthGra-00 . + +base:relationship\/18549 a base:relationship; + base:relationship\#DateStart_Fuzzy "August 1940"; + base:relationship\#DateStart_Max "1940-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-08-01"^^xsd:date; + base:relationship\#IDRel 18549; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together in Rio de Janeiro and New Yor"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaNes-00 . + +base:relationship\/18554 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 17th and 25th  October 1940"; + base:relationship\#DateStart_Max "1940-10-25"^^xsd:date; + base:relationship\#DateStart_Min "1940-10-17"^^xsd:date; + base:relationship\#IDRel 18554; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-CHIC-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/YacZac-00 . + +base:relationship\/18559 a base:relationship; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 18559; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BanTra-00 . + +base:relationship\/18564 a base:relationship; + base:relationship\#DateStart_Fuzzy "end of October 1940"; + base:relationship\#DateStart_Max "1940-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-10-15"^^xsd:date; + base:relationship\#IDRel 18564; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/SouGil-00 . + +base:relationship\/18569 a base:relationship; + base:relationship\#DateStart_Fuzzy "end of October 1940"; + base:relationship\#DateStart_Max "1940-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-10-15"^^xsd:date; + base:relationship\#IDRel 18569; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/OrgDan-00 . + +base:relationship\/18574 a base:relationship; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 18574; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/ZanDar-00 . + +base:relationship\/18579 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18579; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CumIrv-00 . + +base:relationship\/18584 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18584; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GraBet-00 . + +base:relationship\/18589 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18589; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FayAli-00 . + +base:relationship\/18594 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18594; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AmeDon-00 . + +base:relationship\/18599 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18599; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RomC\%C3\%A9s-00 . + +base:relationship\/186 a base:relationship; + base:relationship\#IDRel 186; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Studies with Lilly Lehmann in Berlin"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/WeeMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/18604 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18604; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PayJoh-00 . + +base:relationship\/18609 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18609; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LebWil-00 . + +base:relationship\/18614 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18614; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GuaHar-00 . + +base:relationship\/18619 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18619; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PanHer-00 . + +base:relationship\/18624 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th November 1940"; + base:relationship\#DateStart_Max "1940-11-15"^^xsd:date; + base:relationship\#DateStart_Min "1940-11-15"^^xsd:date; + base:relationship\#IDRel 18624; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FraGeo-00 . + +base:relationship\/18629 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18629; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LuaZez-00 . + +base:relationship\/18639 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18639; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/HorEdw-00 . + +base:relationship\/18644 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18644; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/KinLeo-00 . + +base:relationship\/18649 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18649; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GreCha-00 . + +base:relationship\/18654 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18654; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GilBil-00 . + +base:relationship\/18658 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18658; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarChr-00 . + +base:relationship\/18659 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18659; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BopRau-00 . + +base:relationship\/18664 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18664; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMar-00 . + +base:relationship\/18669 a base:relationship; + base:relationship\#IDRel 18669; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/HenSon-00 . + +base:relationship\/18674 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18674; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They also worked together in 20th Century Fox in Hollywood"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/3840; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BroFay-00 . + +base:relationship\/18679 a base:relationship; + base:relationship\#DateStart_Fuzzy "1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 18679; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They also worked together in 20th Century Fox in Hollywood"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/3840; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHar-00 . + +base:relationship\/18684 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 18684; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BerBus-00 . + +base:relationship\/18689 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 18689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarTon-00 . + +base:relationship\/18694 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 18694; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/WooYvo-00 . + +base:relationship\/18699 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 18699; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/ElaViv-00 . + +base:relationship\/18703 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 18703; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/C\%C3\%B3rArt-00 . + +base:relationship\/18704 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#DateStart_Max "1944-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 18704; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AndDan-00 . + +base:relationship\/18709 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#DateStart_Max "1944-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 18709; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/YouHar-00 . + +base:relationship\/18714 a base:relationship; + base:relationship\#DateStart_Fuzzy "1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1945-01-01"^^xsd:date; + base:relationship\#IDRel 18714; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/WayJoh-00 . + +base:relationship\/18719 a base:relationship; + base:relationship\#DateStart_Fuzzy "1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1945-01-01"^^xsd:date; + base:relationship\#IDRel 18719; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDOrganisation base:organisation\/3845; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/StaIrv-00 . + +base:relationship\/18724 a base:relationship; + base:relationship\#IDRel 18724; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/NieCar-00 . + +base:relationship\/18729 a base:relationship; + base:relationship\#DateStart_Fuzzy "1946"; + base:relationship\#DateStart_Max "1946-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1946-01-01"^^xsd:date; + base:relationship\#IDRel 18729; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MorVin-00 . + +base:relationship\/18734 a base:relationship; + base:relationship\#DateStart_Fuzzy "1946"; + base:relationship\#DateStart_Max "1946-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1946-01-01"^^xsd:date; + base:relationship\#IDRel 18734; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGro-00 . + +base:relationship\/18739 a base:relationship; + base:relationship\#DateStart_Fuzzy "1946"; + base:relationship\#DateStart_Max "1946-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1946-01-01"^^xsd:date; + base:relationship\#IDRel 18739; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BatWal-00 . + +base:relationship\/18744 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th March 1947"; + base:relationship\#DateStart_Max "1947-03-17"^^xsd:date; + base:relationship\#DateStart_Min "1947-03-17"^^xsd:date; + base:relationship\#IDRel 18744; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "They also worked together in 1946"; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/SebDav-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/18749 a base:relationship; + base:relationship\#DateStart_Fuzzy "1947"; + base:relationship\#DateStart_Max "1947-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1947-01-01"^^xsd:date; + base:relationship\#IDRel 18749; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MagPas-00 . + +base:relationship\/18754 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PasJoe-00 . + +base:relationship\/18759 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18759; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CugXav-00 . + +base:relationship\/18764 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18764; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FerMil-00 . + +base:relationship\/18769 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18769; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LatC\%C3\%A9s-00 . + +base:relationship\/18774 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18774; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AlvLuc-00 . + +base:relationship\/18779 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18779; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CosS\%C3\%A9r-00 . + +base:relationship\/18784 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18784; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AlmHar-00 . + +base:relationship\/18789 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18789; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LulAlu-00 . + +base:relationship\/18794 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1952"; + base:relationship\#DateEnd_Max "1952-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1952-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18794; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RusJos-01 . + +base:relationship\/18799 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18799; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PinWal-00 . + +base:relationship\/188 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1888"; + base:relationship\#DateEnd_Max "1888-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 188; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BraHer-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/18804 a base:relationship; + base:relationship\#DateStart_Fuzzy "1949"; + base:relationship\#DateStart_Max "1949-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1949-01-01"^^xsd:date; + base:relationship\#IDRel 18804; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/SmaRau-00 . + +base:relationship\/18809 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 18809; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CasNic-00 . + +base:relationship\/18814 a base:relationship; + base:relationship\#DateStart_Fuzzy "1951"; + base:relationship\#DateStart_Max "1951-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1951-01-01"^^xsd:date; + base:relationship\#IDRel 18814; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/RobBru-00 . + +base:relationship\/18819 a base:relationship; + base:relationship\#DateStart_Fuzzy "1952"; + base:relationship\#DateStart_Max "1952-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1952-01-01"^^xsd:date; + base:relationship\#IDRel 18819; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LewJer-00 . + +base:relationship\/18824 a base:relationship; + base:relationship\#DateStart_Fuzzy "1952"; + base:relationship\#DateStart_Max "1952-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1952-01-01"^^xsd:date; + base:relationship\#IDRel 18824; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FriMar-00 . + +base:relationship\/18829 a base:relationship; + base:relationship\#IDRel 18829; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/BarLex-00 . + +base:relationship\/18834 a base:relationship; + base:relationship\#IDRel 18834; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MonRic-00 . + +base:relationship\/18839 a base:relationship; + base:relationship\#IDRel 18839; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/LamFer-00 . + +base:relationship\/18844 a base:relationship; + base:relationship\#DateStart_Fuzzy "1953"; + base:relationship\#DateStart_Max "1953-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1953-01-01"^^xsd:date; + base:relationship\#IDRel 18844; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FonJos-00 . + +base:relationship\/18849 a base:relationship; + base:relationship\#DateStart_Fuzzy "1954"; + base:relationship\#DateStart_Max "1954-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1954-01-01"^^xsd:date; + base:relationship\#IDRel 18849; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MacGis-00 . + +base:relationship\/18854 a base:relationship; + base:relationship\#DateStart_Fuzzy "1954"; + base:relationship\#DateStart_Max "1954-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1954-01-01"^^xsd:date; + base:relationship\#IDRel 18854; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/FonAll-00 . + +base:relationship\/18859 a base:relationship; + base:relationship\#DateStart_Fuzzy "1955"; + base:relationship\#DateStart_Max "1955-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1955-01-01"^^xsd:date; + base:relationship\#IDRel 18859; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CarVic-00 . + +base:relationship\/18864 a base:relationship; + base:relationship\#IDRel 18864; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/AdaSuz-00 . + +base:relationship\/18869 a base:relationship; + base:relationship\#IDRel 18869; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnSig-00 . + +base:relationship\/18874 a base:relationship; + base:relationship\#IDRel 18874; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/AxaRos-00 . + +base:relationship\/18879 a base:relationship; + base:relationship\#IDRel 18879; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/CalEmm-00 . + +base:relationship\/18884 a base:relationship; + base:relationship\#IDRel 18884; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/DumJul-00 . + +base:relationship\/18889 a base:relationship; + base:relationship\#IDRel 18889; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/EamEmm-00 . + +base:relationship\/18894 a base:relationship; + base:relationship\#IDRel 18894; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/EttRos-00 . + +base:relationship\/18899 a base:relationship; + base:relationship\#IDRel 18899; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/FilMar-00 . + +base:relationship\/18904 a base:relationship; + base:relationship\#IDRel 18904; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/GerEte-00 . + +base:relationship\/18909 a base:relationship; + base:relationship\#IDRel 18909; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/GalHer-00 . + +base:relationship\/18914 a base:relationship; + base:relationship\#IDRel 18914; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/KraGab-00 . + +base:relationship\/18918 a base:relationship; + base:relationship\#IDRel 18918; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/IhlAug-00 . + +base:relationship\/18919 a base:relationship; + base:relationship\#IDRel 18919; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/KurSel-00 . + +base:relationship\/18924 a base:relationship; + base:relationship\#IDRel 18924; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/MurIlm-00 . + +base:relationship\/18929 a base:relationship; + base:relationship\#IDRel 18929; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/NevEmm-00 . + +base:relationship\/18934 a base:relationship; + base:relationship\#IDRel 18934; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/PapRos-00 . + +base:relationship\/18939 a base:relationship; + base:relationship\#IDRel 18939; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/RadLui-00 . + +base:relationship\/18944 a base:relationship; + base:relationship\#IDRel 18944; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/R\%C3\%B6hSof-00 . + +base:relationship\/18949 a base:relationship; + base:relationship\#IDRel 18949; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/SanSib-00 . + +base:relationship\/18954 a base:relationship; + base:relationship\#IDRel 18954; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/SavFra-00 . + +base:relationship\/18959 a base:relationship; + base:relationship\#IDRel 18959; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/StaGis-00 . + +base:relationship\/18964 a base:relationship; + base:relationship\#IDRel 18964; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00 . + +base:relationship\/18969 a base:relationship; + base:relationship\#IDRel 18969; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00 . + +base:relationship\/18974 a base:relationship; + base:relationship\#IDRel 18974; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00 . + +base:relationship\/18979 a base:relationship; + base:relationship\#IDRel 18979; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00 . + +base:relationship\/18984 a base:relationship; + base:relationship\#IDRel 18984; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/OrgAgl-00 . + +base:relationship\/18989 a base:relationship; + base:relationship\#IDRel 18989; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LitFel-00 . + +base:relationship\/18994 a base:relationship; + base:relationship\#IDRel 18994; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SieMar-00 . + +base:relationship\/18999 a base:relationship; + base:relationship\#IDRel 18999; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ArkTer-00 . + +base:relationship\/19 a base:relationship; + base:relationship\#IDRel 19; + base:relationship\#Timeperiod ""; + base:relationship\#comment "son"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00 . + +base:relationship\/19004 a base:relationship; + base:relationship\#IDRel 19004; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/AdiAda-00 . + +base:relationship\/19009 a base:relationship; + base:relationship\#IDRel 19009; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SalMaf-00 . + +base:relationship\/19014 a base:relationship; + base:relationship\#IDRel 19014; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BeeLol-00 . + +base:relationship\/19019 a base:relationship; + base:relationship\#IDRel 19019; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BiaBia-00 . + +base:relationship\/19024 a base:relationship; + base:relationship\#IDRel 19024; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GerJea-00 . + +base:relationship\/19025 a base:relationship; + base:relationship\#IDRel 19025; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BaiLil-00 . + +base:relationship\/19029 a base:relationship; + base:relationship\#IDRel 19029; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PhiMar-00 . + +base:relationship\/19034 a base:relationship; + base:relationship\#IDRel 19034; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BebIda-00 . + +base:relationship\/19039 a base:relationship; + base:relationship\#IDRel 19039; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GodGer-00 . + +base:relationship\/19044 a base:relationship; + base:relationship\#IDRel 19044; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/FinJet-00 . + +base:relationship\/19049 a base:relationship; + base:relationship\#IDRel 19049; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/CarAnn-00 . + +base:relationship\/19054 a base:relationship; + base:relationship\#IDRel 19054; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LefMar-00 . + +base:relationship\/19059 a base:relationship; + base:relationship\#IDRel 19059; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/HauMar-00 . + +base:relationship\/19064 a base:relationship; + base:relationship\#IDRel 19064; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/HerMar-00 . + +base:relationship\/19069 a base:relationship; + base:relationship\#IDRel 19069; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/HeySop-00 . + +base:relationship\/19074 a base:relationship; + base:relationship\#IDRel 19074; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/HieHel-00 . + +base:relationship\/19079 a base:relationship; + base:relationship\#IDRel 19079; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/KirEmm-00 . + +base:relationship\/19084 a base:relationship; + base:relationship\#IDRel 19084; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/KugHel-00 . + +base:relationship\/19089 a base:relationship; + base:relationship\#IDRel 19089; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/L\%E2\%80\%99aPau-00 . + +base:relationship\/19094 a base:relationship; + base:relationship\#IDRel 19094; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LeyAgn-00 . + +base:relationship\/19099 a base:relationship; + base:relationship\#IDRel 19099; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiEli-00 . + +base:relationship\/19104 a base:relationship; + base:relationship\#IDRel 19104; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LawJel-00 . + +base:relationship\/19109 a base:relationship; + base:relationship\#IDRel 19109; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MeiLou-00 . + +base:relationship\/19114 a base:relationship; + base:relationship\#IDRel 19114; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MenLon-00 . + +base:relationship\/19119 a base:relationship; + base:relationship\#IDRel 19119; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/TraSop-00 . + +base:relationship\/19124 a base:relationship; + base:relationship\#IDRel 19124; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SchMar-00 . + +base:relationship\/19129 a base:relationship; + base:relationship\#IDRel 19129; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SchAme-00 . + +base:relationship\/19134 a base:relationship; + base:relationship\#IDRel 19134; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyCor-00 . + +base:relationship\/19139 a base:relationship; + base:relationship\#IDRel 19139; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PetEle-00 . + +base:relationship\/19144 a base:relationship; + base:relationship\#IDRel 19144; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SteAnt-00 . + +base:relationship\/19149 a base:relationship; + base:relationship\#IDRel 19149; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/R\%C3\%B6hSof-00 . + +base:relationship\/19154 a base:relationship; + base:relationship\#IDRel 19154; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BerCha-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/19159 a base:relationship; + base:relationship\#IDRel 19159; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/IreNat-00 . + +base:relationship\/19164 a base:relationship; + base:relationship\#IDRel 19164; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/RoeEli-00 . + +base:relationship\/19169 a base:relationship; + base:relationship\#IDRel 19169; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SeeGer-00 . + +base:relationship\/19174 a base:relationship; + base:relationship\#IDRel 19174; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PykLou-00 . + +base:relationship\/19179 a base:relationship; + base:relationship\#IDRel 19179; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GroAde-00; + base:relationship\#ref-IDPerson_passive base:person\/HaaFri-00 . + +base:relationship\/19184 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881"; + base:relationship\#DateEnd_Max "1881-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1881-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881"; + base:relationship\#DateStart_Max "1881-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1881-01-01"^^xsd:date; + base:relationship\#IDRel 19184; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/GroAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ElmFra-00 . + +base:relationship\/19189 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1902"; + base:relationship\#DateEnd_Max "1902-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1902-08-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1875-01-01"^^xsd:date; + base:relationship\#IDRel 19189; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/GroAde-00; + base:relationship\#ref-IDPerson_passive base:person\/JohRic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19194 a base:relationship; + base:relationship\#IDRel 19194; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/BosHer-00 . + +base:relationship\/19204 a base:relationship; + base:relationship\#IDRel 19204; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/19209 a base:relationship; + base:relationship\#IDRel 19209; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01 . + +base:relationship\/19214 a base:relationship; + base:relationship\#IDRel 19214; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/IT-Mila-00; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/LamFra-00 . + +base:relationship\/19219 a base:relationship; + base:relationship\#IDRel 19219; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/IT-Sici-00; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/RaiMae-00 . + +base:relationship\/19224 a base:relationship; + base:relationship\#IDRel 19224; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00; + base:relationship\#ref-IDPerson_passive base:person\/ResCar-00 . + +base:relationship\/19229 a base:relationship; + base:relationship\#IDRel 19229; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00; + base:relationship\#ref-IDPerson_passive base:person\/ResJoh-00 . + +base:relationship\/19234 a base:relationship; + base:relationship\#IDRel 19234; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00; + base:relationship\#ref-IDPerson_passive base:person\/ResLui-00 . + +base:relationship\/19239 a base:relationship; + base:relationship\#IDRel 19239; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00 . + +base:relationship\/19244 a base:relationship; + base:relationship\#IDRel 19244; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00 . + +base:relationship\/19249 a base:relationship; + base:relationship\#IDRel 19249; + base:relationship\#ref-IDPerson_active base:person\/ResFre-00 . + +base:relationship\/19254 a base:relationship; + base:relationship\#IDRel 19254; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/rescar-00; + base:relationship\#ref-IDPerson_passive base:person\/ResFre-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19259 a base:relationship; + base:relationship\#IDRel 19259; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/rescar-00; + base:relationship\#ref-IDPerson_passive base:person\/ResJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/19264 a base:relationship; + base:relationship\#IDRel 19264; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/rescar-00; + base:relationship\#ref-IDPerson_passive base:person\/ResLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19269 a base:relationship; + base:relationship\#IDRel 19269; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/ResCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/19274 a base:relationship; + base:relationship\#IDRel 19274; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/ResFre-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19279 a base:relationship; + base:relationship\#IDRel 19279; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/ResLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19284 a base:relationship; + base:relationship\#IDRel 19284; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/KurSel-00 . + +base:relationship\/19289 a base:relationship; + base:relationship\#IDRel 19289; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/Pr\%C3\%B6Rud-00 . + +base:relationship\/19299 a base:relationship; + base:relationship\#IDRel 19299; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/HieIda-00 . + +base:relationship\/19304 a base:relationship; + base:relationship\#IDRel 19304; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/KerBea-00 . + +base:relationship\/19309 a base:relationship; + base:relationship\#IDRel 19309; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiMel-00 . + +base:relationship\/19314 a base:relationship; + base:relationship\#IDRel 19314; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/Paa-00 . + +base:relationship\/19319 a base:relationship; + base:relationship\#IDRel 19319; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/DipAnd-00 . + +base:relationship\/19324 a base:relationship; + base:relationship\#IDRel 19324; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/resjoh-00; + base:relationship\#ref-IDPerson_passive base:person\/PenAlo-00 . + +base:relationship\/19329 a base:relationship; + base:relationship\#IDRel 19329; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/Fon-00 . + +base:relationship\/19334 a base:relationship; + base:relationship\#IDRel 19334; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/FraMor-00 . + +base:relationship\/19339 a base:relationship; + base:relationship\#IDRel 19339; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/FraLud-00 . + +base:relationship\/19344 a base:relationship; + base:relationship\#IDRel 19344; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19349 a base:relationship; + base:relationship\#IDRel 19349; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19354 a base:relationship; + base:relationship\#IDRel 19354; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19359 a base:relationship; + base:relationship\#IDRel 19359; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19364 a base:relationship; + base:relationship\#IDRel 19364; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19369 a base:relationship; + base:relationship\#IDRel 19369; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19374 a base:relationship; + base:relationship\#IDRel 19374; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19379 a base:relationship; + base:relationship\#IDRel 19379; + base:relationship\#ref-IDPerson_active base:person\/ResJoh-00 . + +base:relationship\/19384 a base:relationship; + base:relationship\#IDRel 19384; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/SteCar-00 . + +base:relationship\/19388 a base:relationship; + base:relationship\#IDRel 19388; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ZimEmm-00 . + +base:relationship\/19389 a base:relationship; + base:relationship\#IDRel 19389; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/VanEli-00 . + +base:relationship\/19394 a base:relationship; + base:relationship\#IDRel 19394; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/WenAlm-00 . + +base:relationship\/19399 a base:relationship; + base:relationship\#IDRel 19399; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MeaGeo-00 . + +base:relationship\/194 a base:relationship; + base:relationship\#IDRel 194; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/GarMan-01; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/19404 a base:relationship; + base:relationship\#IDRel 19404; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/KraMax-00 . + +base:relationship\/19409 a base:relationship; + base:relationship\#IDRel 19409; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ElmJoh-00 . + +base:relationship\/19414 a base:relationship; + base:relationship\#IDRel 19414; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/Pr\%C3\%B6Rud-00 . + +base:relationship\/19419 a base:relationship; + base:relationship\#IDRel 19419; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BreSof-00 . + +base:relationship\/19424 a base:relationship; + base:relationship\#IDRel 19424; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/NogMat-00 . + +base:relationship\/19428 a base:relationship; + base:relationship\#IDRel 19428; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MayBen-00 . + +base:relationship\/19429 a base:relationship; + base:relationship\#IDRel 19429; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/DieMar-00 . + +base:relationship\/19434 a base:relationship; + base:relationship\#IDRel 19434; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GruEmm-00 . + +base:relationship\/19484 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19484; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/AimMar-00 . + +base:relationship\/19489 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19489; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/MerRos-00 . + +base:relationship\/19494 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19494; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/Ris-00 . + +base:relationship\/19499 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19499; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/AzeArt-00 . + +base:relationship\/19504 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19504; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/VasFra-00 . + +base:relationship\/19509 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19509; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/OliGer-00 . + +base:relationship\/19514 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1854"; + base:relationship\#DateStart_Max "1854-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-01-01"^^xsd:date; + base:relationship\#IDRel 19514; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/CabJos-00 . + +base:relationship\/19519 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870"; + base:relationship\#DateEnd_Max "1870-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19519; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/CabJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19529 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19529; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/CanMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/19534 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19534; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/JunJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/19539 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19539; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/MagBar-00 . + +base:relationship\/19544 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19544; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CanAug-00; + base:relationship\#ref-IDPerson_passive base:person\/MagBar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19558 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1893"; + base:relationship\#DateEnd_Max "1893-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "26th September 1872"; + base:relationship\#DateStart_Max "1872-09-26"^^xsd:date; + base:relationship\#DateStart_Min "1872-09-26"^^xsd:date; + base:relationship\#IDRel 19558; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLuc-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/19563 a base:relationship; + base:relationship\#IDRel 19563; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLuc-00 . + +base:relationship\/19568 a base:relationship; + base:relationship\#IDRel 19568; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/19570 a base:relationship; + base:relationship\#DateStart_Fuzzy "1856"; + base:relationship\#DateStart_Max "1856-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1856-01-01"^^xsd:date; + base:relationship\#IDRel 19570; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/CaeJoa-00 . + +base:relationship\/19575 a base:relationship; + base:relationship\#DateStart_Fuzzy "1856"; + base:relationship\#DateStart_Max "1856-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1856-01-01"^^xsd:date; + base:relationship\#IDRel 19575; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/CaeJoa-00 . + +base:relationship\/19580 a base:relationship; + base:relationship\#DateStart_Fuzzy "1862"; + base:relationship\#DateStart_Max "1862-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1862-01-01"^^xsd:date; + base:relationship\#IDRel 19580; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/AssMac-00 . + +base:relationship\/19581 a base:relationship; + base:relationship\#DateStart_Fuzzy "1862"; + base:relationship\#DateStart_Max "1862-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1862-01-01"^^xsd:date; + base:relationship\#IDRel 19581; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/FurCoe-00; + base:relationship\#ref-IDPerson_passive base:person\/AssMac-00 . + +base:relationship\/19584 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 19584; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/TavAfo-00 . + +base:relationship\/19619 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1902"; + base:relationship\#DateEnd_Max "1902-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1902-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-01-01"^^xsd:date; + base:relationship\#IDRel 19619; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDOrganisation base:organisation\/649; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/ValJos-00 . + +base:relationship\/19625 a base:relationship; + base:relationship\#IDRel 19625; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HerAde-00; + base:relationship\#ref-IDPerson_passive base:person\/ScaPie-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/19629 a base:relationship; + base:relationship\#IDRel 19629; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Toscana and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/IT-Tosc-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AloEnr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/19634 a base:relationship; + base:relationship\#IDRel 19634; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Toscana and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/IT-Tosc-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AmaAni-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/19639 a base:relationship; + base:relationship\#DateEnd_Max "1975-05-02"^^xsd:date; + base:relationship\#DateEnd_Min "1975-05-02"^^xsd:date; + base:relationship\#DateStart_Max "1922-05-24"^^xsd:date; + base:relationship\#DateStart_Min "1922-05-24"^^xsd:date; + base:relationship\#IDRel 19639; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/GroSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/19649 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 19649; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AloEnr-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/19654 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1926"; + base:relationship\#DateEnd_Max "1926-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1926-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1924"; + base:relationship\#DateStart_Max "1924-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 19654; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AloSil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/19659 a base:relationship; + base:relationship\#DateStart_Fuzzy "1924"; + base:relationship\#DateStart_Max "1924-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 19659; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AloAli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/19664 a base:relationship; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 19664; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/AloCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/19669 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 19669; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/LacMig-00 . + +base:relationship\/19674 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 19674; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/GonBer-00 . + +base:relationship\/19679 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1941"; + base:relationship\#DateEnd_Max "1941-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1941-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1941"; + base:relationship\#DateStart_Max "1941-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 19679; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3290; + base:relationship\#ref-IDPerson_active base:person\/AloEnz-00; + base:relationship\#ref-IDPerson_passive base:person\/BarLeo-00 . + +base:relationship\/19684 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1906"; + base:relationship\#DateStart_Max "1906-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1906-06-01"^^xsd:date; + base:relationship\#IDRel 19684; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BauRos-00; + base:relationship\#ref-IDPerson_passive base:person\/Boc-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19689 a base:relationship; + base:relationship\#DateEnd_Max "1923-04-26"^^xsd:date; + base:relationship\#DateEnd_Min "1923-04-26"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 19689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/752; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/PodPab-00 . + +base:relationship\/19694 a base:relationship; + base:relationship\#DateEnd_Max "1923-08-05"^^xsd:date; + base:relationship\#DateEnd_Min "1923-08-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 19694; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/752; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJer-00 . + +base:relationship\/19699 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 19699; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3350; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCar-00 . + +base:relationship\/197 a base:relationship; + base:relationship\#IDRel 197; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/MarSal-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19704 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1937"; + base:relationship\#DateEnd_Max "1937-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1937-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1931"; + base:relationship\#DateStart_Max "1931-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1931-01-01"^^xsd:date; + base:relationship\#IDRel 19704; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires and Paris"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3350; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Manero-00 . + +base:relationship\/19709 a base:relationship; + base:relationship\#DateEnd_Max "1937-10-22"^^xsd:date; + base:relationship\#DateEnd_Min "1937-10-22"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1916"; + base:relationship\#DateStart_Max "1916-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1916-01-01"^^xsd:date; + base:relationship\#IDRel 19709; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3350; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/CasJos-01 . + +base:relationship\/19714 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#IDRel 19714; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Ivolay-00 . + +base:relationship\/19719 a base:relationship; + base:relationship\#DateEnd_Max "1937-11-25"^^xsd:date; + base:relationship\#DateEnd_Min "1937-11-25"^^xsd:date; + base:relationship\#IDRel 19719; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/NovAlb-00 . + +base:relationship\/19724 a base:relationship; + base:relationship\#DateEnd_Max "1935-06-24"^^xsd:date; + base:relationship\#DateEnd_Min "1935-06-24"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1931"; + base:relationship\#DateStart_Max "1931-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1931-01-01"^^xsd:date; + base:relationship\#IDRel 19724; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires and Paris"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3180; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/GarCar-00 . + +base:relationship\/19729 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19729; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/LusTit-00 . + +base:relationship\/19734 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19734; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/SerEnr-00 . + +base:relationship\/19739 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#IDRel 19739; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Joslla-00 . + +base:relationship\/19744 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#IDRel 19744; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/HoyRa\%C3\%BA-00 . + +base:relationship\/19749 a base:relationship; + base:relationship\#DateEnd_Max "1942-05-03"^^xsd:date; + base:relationship\#DateEnd_Min "1942-05-03"^^xsd:date; + base:relationship\#IDRel 19749; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/AliEl\%C3\%AD-00 . + +base:relationship\/19754 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 19754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/DelHug-00 . + +base:relationship\/19758 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1941"; + base:relationship\#DateStart_Max "1941-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 19758; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Luiini-00 . + +base:relationship\/19761 a base:relationship; + base:relationship\#DateEnd_Max "1952-07-26"^^xsd:date; + base:relationship\#DateEnd_Min "1952-07-26"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1941"; + base:relationship\#DateStart_Max "1941-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 19761; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/DuaEva-00 . + +base:relationship\/19764 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1950"; + base:relationship\#DateStart_Max "1950-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1950-01-01"^^xsd:date; + base:relationship\#IDRel 19764; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Agusta-00 . + +base:relationship\/19769 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1951"; + base:relationship\#DateStart_Max "1951-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1951-01-01"^^xsd:date; + base:relationship\#IDRel 19769; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/D\%C3\%ADaMar-00 . + +base:relationship\/19774 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1951"; + base:relationship\#DateStart_Max "1951-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1951-01-01"^^xsd:date; + base:relationship\#IDRel 19774; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/AmaBla-00 . + +base:relationship\/19779 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1951"; + base:relationship\#DateStart_Max "1951-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1951-01-01"^^xsd:date; + base:relationship\#IDRel 19779; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/CabMar-00 . + +base:relationship\/19784 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1951"; + base:relationship\#DateEnd_Max "1951-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1951-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19784; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Pedcci-00 . + +base:relationship\/19789 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1951"; + base:relationship\#DateEnd_Max "1951-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1951-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19789; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/FerSev-00 . + +base:relationship\/19794 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1951"; + base:relationship\#DateEnd_Max "1951-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1951-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19794; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Benlas-00 . + +base:relationship\/19799 a base:relationship; + base:relationship\#DateEnd_Max "1956-03-30"^^xsd:date; + base:relationship\#DateEnd_Min "1956-03-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 19799; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/HerLui-00; + base:relationship\#ref-IDPerson_passive base:person\/MarNin-00 . + +base:relationship\/19804 a base:relationship; + base:relationship\#IDRel 19804; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/NunJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/19809 a base:relationship; + base:relationship\#IDRel 19809; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/NunJos-00 . + +base:relationship\/19814 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1893"; + base:relationship\#DateEnd_Max "1893-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "26th September 1872"; + base:relationship\#DateStart_Max "1872-09-26"^^xsd:date; + base:relationship\#DateStart_Min "1872-09-26"^^xsd:date; + base:relationship\#IDRel 19814; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/19819 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1893"; + base:relationship\#DateEnd_Max "1893-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1893-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19819; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00 . + +base:relationship\/19824 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19824; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/19829 a base:relationship; + base:relationship\#IDRel 19829; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLui-00 . + +base:relationship\/19834 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 19834; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/BraEdu-00 . + +base:relationship\/19839 a base:relationship; + base:relationship\#IDRel 19839; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/DeREnr-00 . + +base:relationship\/19844 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "31st May 1862"; + base:relationship\#DateStart_Max "1862-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1862-05-31"^^xsd:date; + base:relationship\#IDRel 19844; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/DucCha-00 . + +base:relationship\/19849 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 19849; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1931; + base:relationship\#ref-IDPerson_active base:person\/ArnJos-00; + base:relationship\#ref-IDPerson_passive base:person\/GarCes-00 . + +base:relationship\/19854 a base:relationship; + base:relationship\#IDRel 19854; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-CanIsl-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AndFed-00 . + +base:relationship\/19859 a base:relationship; + base:relationship\#IDRel 19859; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MocFra-00 . + +base:relationship\/19864 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896-01-01"; + base:relationship\#IDRel 19864; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MayMan-00 . + +base:relationship\/19869 a base:relationship; + base:relationship\#IDRel 19869; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/CaoJos-00 . + +base:relationship\/19874 a base:relationship; + base:relationship\#DateStart_Max "1860-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1860-12-19"^^xsd:date; + base:relationship\#IDRel 19874; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ES-Tener-00; + base:relationship\#ref-IDOrganisation base:organisation\/4141; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ValEdu-00 . + +base:relationship\/19879 a base:relationship; + base:relationship\#DateStart_Fuzzy "1887-01-01"; + base:relationship\#IDRel 19879; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Tener-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/VilFra-00 . + +base:relationship\/19884 a base:relationship; + base:relationship\#DateStart_Fuzzy "1887-01-01"; + base:relationship\#IDRel 19884; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Tener-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMig-00 . + +base:relationship\/19889 a base:relationship; + base:relationship\#DateStart_Fuzzy "1889-01-01"; + base:relationship\#IDRel 19889; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Tener-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ZamLui-00 . + +base:relationship\/19894 a base:relationship; + base:relationship\#IDRel 19894; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaCon-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/19899 a base:relationship; + base:relationship\#DateStart_Fuzzy "1889-08-01"; + base:relationship\#IDRel 19899; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4151; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/CirJul-00 . + +base:relationship\/19904 a base:relationship; + base:relationship\#DateStart_Fuzzy "1895-01-01"; + base:relationship\#IDRel 19904; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4166; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/PeuJac-00 . + +base:relationship\/19924 a base:relationship; + base:relationship\#DateStart_Fuzzy "1887"; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 19924; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ES-Tener-00; + base:relationship\#ref-IDOrganisation base:organisation\/3705; + base:relationship\#ref-IDPerson_active base:person\/EusArt-00; + base:relationship\#ref-IDPerson_passive base:person\/VilJos-00 . + +base:relationship\/19929 a base:relationship; + base:relationship\#DateEnd_Max "1865-03-18"^^xsd:date; + base:relationship\#DateEnd_Min "1865-03-18"^^xsd:date; + base:relationship\#DateStart_Max "1837-06-16"^^xsd:date; + base:relationship\#DateStart_Min "1837-06-16"^^xsd:date; + base:relationship\#IDRel 19929; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieJea-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/19934 a base:relationship; + base:relationship\#DateEnd_Max "1848-07-01"^^xsd:date; + base:relationship\#DateEnd_Min "1848-07-01"^^xsd:date; + base:relationship\#DateStart_Max "1837-06-16"^^xsd:date; + base:relationship\#DateStart_Min "1837-06-16"^^xsd:date; + base:relationship\#IDRel 19934; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/HirMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/19939 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1909-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1860"; + base:relationship\#DateStart_Max "1860-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1860-01-01"^^xsd:date; + base:relationship\#IDRel 19939; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/MicSim-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/19943 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1839"; + base:relationship\#DateEnd_Max "1839-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1839-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1838"; + base:relationship\#DateStart_Max "1838-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1838-01-01"^^xsd:date; + base:relationship\#IDRel 19943; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieGus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/19944 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1846"; + base:relationship\#DateEnd_Max "1846-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1846-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1840-01-01"^^xsd:date; + base:relationship\#IDRel 19944; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieEdu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/19949 a base:relationship; + base:relationship\#DateStart_Fuzzy "1841"; + base:relationship\#DateStart_Max "1841-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1841-01-01"^^xsd:date; + base:relationship\#IDRel 19949; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieEug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19954 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 19954; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieFan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19959 a base:relationship; + base:relationship\#DateStart_Fuzzy "1846"; + base:relationship\#DateStart_Max "1846-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1846-01-01"^^xsd:date; + base:relationship\#IDRel 19959; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/BieMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19964 a base:relationship; + base:relationship\#DateEnd_Max "1913-07-19"^^xsd:date; + base:relationship\#DateEnd_Min "1913-07-19"^^xsd:date; + base:relationship\#IDRel 19964; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Barr and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/FR-Barr-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/Aniert-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/19969 a base:relationship; + base:relationship\#DateEnd_Max "1913-07-19"^^xsd:date; + base:relationship\#DateEnd_Min "1913-07-19"^^xsd:date; + base:relationship\#IDRel 19969; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeBer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/19974 a base:relationship; + base:relationship\#DateEnd_Max "1913-07-19"^^xsd:date; + base:relationship\#DateEnd_Min "1913-07-19"^^xsd:date; + base:relationship\#IDRel 19974; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/Aniert-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/19979 a base:relationship; + base:relationship\#DateEnd_Max "1913-07-19"^^xsd:date; + base:relationship\#DateEnd_Min "1913-07-19"^^xsd:date; + base:relationship\#IDRel 19979; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/Feroog-00 . + +base:relationship\/19984 a base:relationship; + base:relationship\#DateEnd_Max "1913-07-19"^^xsd:date; + base:relationship\#DateEnd_Min "1913-07-19"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 19984; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/Ludfer-00 . + +base:relationship\/19989 a base:relationship; + base:relationship\#IDRel 19989; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/GueMar-00 . + +base:relationship\/19994 a base:relationship; + base:relationship\#IDRel 19994; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BieEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/RocJul-00 . + +base:relationship\/19998 a base:relationship; + base:relationship\#DateEnd_Max "1977-06-05"^^xsd:date; + base:relationship\#DateEnd_Min "1977-06-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1947"; + base:relationship\#DateStart_Max "1947-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1947-01-01"^^xsd:date; + base:relationship\#IDRel 19998; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Theatre and Cinema Industry"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/MorZul-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/2 a base:relationship; + base:relationship\#IDRel 2; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/MamEmm-00 . + +base:relationship\/20 a base:relationship; + base:relationship\#IDRel 20; + base:relationship\#Timeperiod ""; + base:relationship\#comment "husband"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-01; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/20001 a base:relationship; + base:relationship\#IDRel 20001; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Luiori-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/20004 a base:relationship; + base:relationship\#DateEnd_Max "1977-06-05"^^xsd:date; + base:relationship\#DateEnd_Min "1977-06-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1947"; + base:relationship\#DateStart_Max "1941-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1947-01-01"^^xsd:date; + base:relationship\#IDRel 20004; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Alblez-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/20009 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1927-10-26"^^xsd:date; + base:relationship\#DateStart_Min "1927-10-26"^^xsd:date; + base:relationship\#IDRel 20009; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/CaiHum-00 . + +base:relationship\/20014 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1936"; + base:relationship\#DateEnd_Max "1936-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1936-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 20014; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Marici-00 . + +base:relationship\/20019 a base:relationship; + base:relationship\#DateEnd_Max "1959-08-28"^^xsd:date; + base:relationship\#DateEnd_Min "1959-08-28"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 20019; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Ivolay-00 . + +base:relationship\/20024 a base:relationship; + base:relationship\#DateEnd_Max "1977-06-05"^^xsd:date; + base:relationship\#DateEnd_Min "1977-06-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1938"; + base:relationship\#DateStart_Max "1938-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1938-01-01"^^xsd:date; + base:relationship\#IDRel 20024; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/MarNin-00 . + +base:relationship\/20029 a base:relationship; + base:relationship\#DateEnd_Max "1977-06-05"^^xsd:date; + base:relationship\#DateEnd_Min "1977-06-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1939"; + base:relationship\#DateStart_Max "1939-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1939-01-01"^^xsd:date; + base:relationship\#IDRel 20029; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/LegMir-00 . + +base:relationship\/20034 a base:relationship; + base:relationship\#IDRel 20034; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3250; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/EscJul-00 . + +base:relationship\/20039 a base:relationship; + base:relationship\#IDRel 20039; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3345; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/\%C3\%81lvAug-00 . + +base:relationship\/20044 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20044; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/BroMar-00 . + +base:relationship\/20049 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20049; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Anttta-00 . + +base:relationship\/20054 a base:relationship; + base:relationship\#IDRel 20054; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Hollywood and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/DisWal-00 . + +base:relationship\/20059 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20059; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/SinBer-00 . + +base:relationship\/20064 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20064; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/SerVer-00 . + +base:relationship\/20069 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20069; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/AlmIta-00 . + +base:relationship\/20074 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20074; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/PavTat-00 . + +base:relationship\/20079 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20079; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/TasVal-00 . + +base:relationship\/20084 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20084; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/GreJac-00 . + +base:relationship\/20089 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1928"; + base:relationship\#DateEnd_Max "1928-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1928-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 20089; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3270; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/SinPau-00 . + +base:relationship\/20094 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1931"; + base:relationship\#DateEnd_Max "1931-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1931-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 20094; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/HoyRa\%C3\%BA-00 . + +base:relationship\/20099 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20099; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/MorRos-00 . + +base:relationship\/20104 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20104; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/BozSof-00 . + +base:relationship\/20109 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20109; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Carlba-00 . + +base:relationship\/20114 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20114; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/DieHan-00 . + +base:relationship\/20119 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20119; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/AraLui-00 . + +base:relationship\/20124 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20124; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2960; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/DeREnr-00 . + +base:relationship\/20129 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1955"; + base:relationship\#DateEnd_Max "1955-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1955-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1940"; + base:relationship\#DateStart_Max "1940-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1940-01-01"^^xsd:date; + base:relationship\#IDRel 20129; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3280; + base:relationship\#ref-IDPerson_active base:person\/AmaLui-00; + base:relationship\#ref-IDPerson_passive base:person\/Albros-00 . + +base:relationship\/20134 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1945"; + base:relationship\#DateEnd_Max "1945-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1945-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#DateStart_Max "1944-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 20134; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/AgrMan-00 . + +base:relationship\/20139 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1944"; + base:relationship\#DateEnd_Max "1944-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1944-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#DateStart_Max "1944-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 20139; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/PicPed-00 . + +base:relationship\/20144 a base:relationship; + base:relationship\#DateEnd_Max "1974-02-06"^^xsd:date; + base:relationship\#DateEnd_Min "1974-02-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1965"; + base:relationship\#DateStart_Max "1965-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1965-01-01"^^xsd:date; + base:relationship\#IDRel 20144; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3135; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/EstFer-00 . + +base:relationship\/20149 a base:relationship; + base:relationship\#DateEnd_Max "1974-02-06"^^xsd:date; + base:relationship\#DateEnd_Min "1974-02-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1965"; + base:relationship\#DateStart_Max "1965-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1965-01-01"^^xsd:date; + base:relationship\#IDRel 20149; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3135; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/MalEdu-00 . + +base:relationship\/20154 a base:relationship; + base:relationship\#DateEnd_Max "1974-02-06"^^xsd:date; + base:relationship\#DateEnd_Min "1974-02-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1965"; + base:relationship\#DateStart_Max "1965-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1965-01-01"^^xsd:date; + base:relationship\#IDRel 20154; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3135; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/DeVLe\%C3\%B3-00 . + +base:relationship\/20159 a base:relationship; + base:relationship\#DateEnd_Max "1974-02-06"^^xsd:date; + base:relationship\#DateEnd_Min "1974-02-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1965"; + base:relationship\#DateStart_Max "1965-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1965-01-01"^^xsd:date; + base:relationship\#IDRel 20159; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3135; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00 . + +base:relationship\/20164 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#IDRel 20164; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/MahGus-00 . + +base:relationship\/20169 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#IDRel 20169; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEnr-00 . + +base:relationship\/20174 a base:relationship; + base:relationship\#IDRel 20174; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/HerCar-00 . + +base:relationship\/20179 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#IDRel 20179; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/MotFel-00 . + +base:relationship\/20184 a base:relationship; + base:relationship\#DateStart_Fuzzy "1878"; + base:relationship\#IDRel 20184; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/NeuAdo-00 . + +base:relationship\/20189 a base:relationship; + base:relationship\#IDRel 20189; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00; + base:relationship\#ref-IDPerson_passive base:person\/SomAgn-00 . + +base:relationship\/20194 a base:relationship; + base:relationship\#IDRel 20194; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00 . + +base:relationship\/20199 a base:relationship; + base:relationship\#IDRel 20199; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00 . + +base:relationship\/20204 a base:relationship; + base:relationship\#IDRel 20204; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00 . + +base:relationship\/20209 a base:relationship; + base:relationship\#IDRel 20209; + base:relationship\#ref-IDPerson_active base:person\/ConHei-00 . + +base:relationship\/20214 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#DateStart_Max "1898-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 20214; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/593; + base:relationship\#ref-IDPerson_active base:person\/SimLuc-00; + base:relationship\#ref-IDPerson_passive base:person\/PinCha-00 . + +base:relationship\/20219 a base:relationship; + base:relationship\#IDRel 20219; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3520; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/BatGui-00 . + +base:relationship\/20224 a base:relationship; + base:relationship\#IDRel 20224; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4776; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/GioSil-00 . + +base:relationship\/20229 a base:relationship; + base:relationship\#IDRel 20229; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4776; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/Julrsa-00 . + +base:relationship\/20234 a base:relationship; + base:relationship\#DateEnd_Max "1929-05-30"^^xsd:date; + base:relationship\#DateEnd_Min "1929-05-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1916"; + base:relationship\#DateStart_Max "1916-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1916-01-01"^^xsd:date; + base:relationship\#IDRel 20234; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4780; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/CasRob-00 . + +base:relationship\/20239 a base:relationship; + base:relationship\#DateEnd_Max "1958-05-23"^^xsd:date; + base:relationship\#DateEnd_Min "1958-05-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1945-01-01"^^xsd:date; + base:relationship\#IDRel 20239; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/Vil-00 . + +base:relationship\/20243 a base:relationship; + base:relationship\#DateEnd_Max "1958-05-23"^^xsd:date; + base:relationship\#DateEnd_Min "1958-05-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1945-01-01"^^xsd:date; + base:relationship\#IDRel 20243; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/AmoEdu-00; + base:relationship\#ref-IDPerson_passive base:person\/Alo-00 . + +base:relationship\/20244 a base:relationship; + base:relationship\#IDRel 20244; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/PynMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/20249 a base:relationship; + base:relationship\#IDRel 20249; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/PynLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/20254 a base:relationship; + base:relationship\#IDRel 20254; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/PynSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/20259 a base:relationship; + base:relationship\#IDRel 20259; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/20264 a base:relationship; + base:relationship\#IDRel 20264; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/FrySus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandmother . + +base:relationship\/20269 a base:relationship; + base:relationship\#IDRel 20269; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/MitMag-00 . + +base:relationship\/20274 a base:relationship; + base:relationship\#IDRel 20274; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoLyd-00 . + +base:relationship\/20279 a base:relationship; + base:relationship\#IDRel 20279; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/GanSop-00 . + +base:relationship\/20284 a base:relationship; + base:relationship\#IDRel 20284; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00; + base:relationship\#ref-IDPerson_passive base:person\/ColSam-00 . + +base:relationship\/20294 a base:relationship; + base:relationship\#IDRel 20294; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00 . + +base:relationship\/20299 a base:relationship; + base:relationship\#IDRel 20299; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00 . + +base:relationship\/203 a base:relationship; + base:relationship\#IDRel 203; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Blanche Marchesi is the daugther of Mathilde and Salvatore Marchesi"; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/MarBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/20304 a base:relationship; + base:relationship\#IDRel 20304; + base:relationship\#ref-IDPerson_active base:person\/GalSus-00 . + +base:relationship\/20309 a base:relationship; + base:relationship\#IDRel 20309; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MilGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/JewHen-00 . + +base:relationship\/20314 a base:relationship; + base:relationship\#IDRel 20314; + base:relationship\#ref-IDPerson_active base:person\/MilGeo-00 . + +base:relationship\/20319 a base:relationship; + base:relationship\#IDRel 20319; + base:relationship\#ref-IDPerson_active base:person\/MilGeo-00 . + +base:relationship\/20324 a base:relationship; + base:relationship\#IDRel 20324; + base:relationship\#ref-IDPerson_active base:person\/MilGeo-00 . + +base:relationship\/20329 a base:relationship; + base:relationship\#IDRel 20329; + base:relationship\#ref-IDPerson_active base:person\/MilGeo-00 . + +base:relationship\/20334 a base:relationship; + base:relationship\#IDRel 20334; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20339 a base:relationship; + base:relationship\#IDRel 20339; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20344 a base:relationship; + base:relationship\#IDRel 20344; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20349 a base:relationship; + base:relationship\#IDRel 20349; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20354 a base:relationship; + base:relationship\#IDRel 20354; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20359 a base:relationship; + base:relationship\#IDRel 20359; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20364 a base:relationship; + base:relationship\#IDRel 20364; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20369 a base:relationship; + base:relationship\#IDRel 20369; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20374 a base:relationship; + base:relationship\#IDRel 20374; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20378 a base:relationship; + base:relationship\#IDRel 20378; + base:relationship\#ref-IDPerson_active base:person\/LevMis-00 . + +base:relationship\/20379 a base:relationship; + base:relationship\#IDRel 20379; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20384 a base:relationship; + base:relationship\#IDRel 20384; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20389 a base:relationship; + base:relationship\#IDRel 20389; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20393 a base:relationship; + base:relationship\#IDRel 20393; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20398 a base:relationship; + base:relationship\#IDRel 20398; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20403 a base:relationship; + base:relationship\#IDRel 20403; + base:relationship\#ref-IDPerson_active base:person\/FaiBoo-00 . + +base:relationship\/20404 a base:relationship; + base:relationship\#IDRel 20404; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00; + base:relationship\#ref-IDPerson_passive base:person\/ForEdw-00 . + +base:relationship\/20406 a base:relationship; + base:relationship\#IDRel 20406; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJun-00 . + +base:relationship\/20409 a base:relationship; + base:relationship\#IDRel 20409; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00; + base:relationship\#ref-IDPerson_passive base:person\/WarWil-00 . + +base:relationship\/20414 a base:relationship; + base:relationship\#IDRel 20414; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00; + base:relationship\#ref-IDPerson_passive base:person\/DavEdw-00 . + +base:relationship\/20419 a base:relationship; + base:relationship\#IDRel 20419; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20424 a base:relationship; + base:relationship\#IDRel 20424; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20429 a base:relationship; + base:relationship\#IDRel 20429; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20434 a base:relationship; + base:relationship\#IDRel 20434; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20439 a base:relationship; + base:relationship\#IDRel 20439; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20444 a base:relationship; + base:relationship\#IDRel 20444; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00 . + +base:relationship\/20449 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 20449; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/HerHen-00 . + +base:relationship\/20454 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20454; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/HalCha-00 . + +base:relationship\/20464 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 20464; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyGia-00 . + +base:relationship\/20469 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1856"; + base:relationship\#DateStart_Max "1856-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1856-01-01"^^xsd:date; + base:relationship\#IDRel 20469; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-Weim-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/20474 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between May und October 1866"; + base:relationship\#DateStart_Max "1866-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-05-01"^^xsd:date; + base:relationship\#IDRel 20474; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1756; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnJos-00 . + +base:relationship\/20479 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between May und October 1866"; + base:relationship\#DateStart_Max "1866-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-05-01"^^xsd:date; + base:relationship\#IDRel 20479; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00 . + +base:relationship\/20484 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between May und October 1866"; + base:relationship\#DateStart_Max "1866-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-05-01"^^xsd:date; + base:relationship\#IDRel 20484; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/FurCoe-00 . + +base:relationship\/20489 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between May und October 1866"; + base:relationship\#DateStart_Max "1866-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-05-01"^^xsd:date; + base:relationship\#IDRel 20489; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AssMac-00 . + +base:relationship\/20490 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between May und October 1866"; + base:relationship\#DateStart_Max "1866-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1866-05-01"^^xsd:date; + base:relationship\#IDRel 20490; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AssMac-00 . + +base:relationship\/20494 a base:relationship; + base:relationship\#IDRel 20494; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NapAle-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/20499 a base:relationship; + base:relationship\#IDRel 20499; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Founded together the „Sociedade de Concertos Clássicos“"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiJos-00 . + +base:relationship\/20504 a base:relationship; + base:relationship\#IDRel 20504; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NapAlf-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/20509 a base:relationship; + base:relationship\#IDRel 20509; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/GonChi-00 . + +base:relationship\/20514 a base:relationship; + base:relationship\#IDRel 20514; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NapAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/20519 a base:relationship; + base:relationship\#DateStart_Fuzzy "1869"; + base:relationship\#IDRel 20519; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Founded together the publisher"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4281; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BraNar-00 . + +base:relationship\/20524 a base:relationship; + base:relationship\#IDRel 20524; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4281; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MigLeo-00 . + +base:relationship\/20529 a base:relationship; + base:relationship\#IDRel 20529; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NunJo\%C3\%A3-00 . + +base:relationship\/20534 a base:relationship; + base:relationship\#DateStart_Fuzzy "1851"; + base:relationship\#IDRel 20534; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/PT-Porto-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NovFau-00 . + +base:relationship\/20539 a base:relationship; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#IDRel 20539; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SwiMrs-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/20544 a base:relationship; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#IDRel 20544; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/WooTho-00 . + +base:relationship\/20549 a base:relationship; + base:relationship\#DateStart_Fuzzy "1854"; + base:relationship\#IDRel 20549; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BraJos-00 . + +base:relationship\/20554 a base:relationship; + base:relationship\#IDRel 20554; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AraSam-00 . + +base:relationship\/20559 a base:relationship; + base:relationship\#DateStart_Fuzzy "1856"; + base:relationship\#IDRel 20559; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Brem-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiCar-00 . + +base:relationship\/20564 a base:relationship; + base:relationship\#IDRel 20564; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/PacJoa-00 . + +base:relationship\/20569 a base:relationship; + base:relationship\#IDRel 20569; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/OrtBar-00 . + +base:relationship\/20574 a base:relationship; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#IDRel 20574; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/PT-Porto-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SouAnt-00 . + +base:relationship\/20579 a base:relationship; + base:relationship\#DateStart_Fuzzy "between May and October 1866"; + base:relationship\#IDRel 20579; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SerJoa-00 . + +base:relationship\/20584 a base:relationship; + base:relationship\#IDRel 20584; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SerJoa-00 . + +base:relationship\/20589 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1900"; + base:relationship\#DateStart_Fuzzy "25th February 1876"; + base:relationship\#IDRel 20589; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AveL\%C3\%ADv-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/20594 a base:relationship; + base:relationship\#DateStart_Fuzzy "25th February 1879"; + base:relationship\#IDRel 20594; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4291; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/DuaUrb-00 . + +base:relationship\/20599 a base:relationship; + base:relationship\#DateStart_Fuzzy "25th February 1879"; + base:relationship\#IDRel 20599; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4291; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/RebAnd-00 . + +base:relationship\/206 a base:relationship; + base:relationship\#IDRel 206; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Blanche Marchesi is the daugther of Mathilde and Salvatore Marchesi"; + base:relationship\#ref-IDPerson_active base:person\/MarSal-00; + base:relationship\#ref-IDPerson_passive base:person\/MarBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/20603 a base:relationship; + base:relationship\#DateStart_Fuzzy "25th February 1879"; + base:relationship\#IDRel 20603; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4291; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/TauVis-00 . + +base:relationship\/20604 a base:relationship; + base:relationship\#DateStart_Fuzzy "1885"; + base:relationship\#IDRel 20604; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/4281; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NepAlb-00 . + +base:relationship\/20609 a base:relationship; + base:relationship\#DateStart_Fuzzy "1890"; + base:relationship\#IDRel 20609; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Partner at the Music Store"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SamFra-00 . + +base:relationship\/20614 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#IDRel 20614; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1791; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MotVia-00 . + +base:relationship\/20619 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#IDRel 20619; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/1756; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/S\%C3\%A1Ber-00 . + +base:relationship\/20624 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#IDRel 20624; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00; + base:relationship\#ref-IDPerson_passive base:person\/Le\%C3\%A3Rit-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/20629 a base:relationship; + base:relationship\#IDRel 20629; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00 . + +base:relationship\/20634 a base:relationship; + base:relationship\#IDRel 20634; + base:relationship\#ref-IDPerson_active base:person\/NapArt-00 . + +base:relationship\/20644 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20644; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/441; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MelNel-00 . + +base:relationship\/20649 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between 1874 and 1875"; + base:relationship\#DateStart_Max "1875-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-01-01"^^xsd:date; + base:relationship\#IDRel 20649; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ChiPri-00 . + +base:relationship\/20654 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1882 (probably)"; + base:relationship\#DateStart_Max "1982-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 20654; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CarLeo-00 . + +base:relationship\/20659 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20659; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/441; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LerMad-00 . + +base:relationship\/20664 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1884 (probably)"; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 20664; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/441; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MerCec-00 . + +base:relationship\/20669 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1880"; + base:relationship\#DateEnd_Max "1880-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1880-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 20669; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/4345; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DupAug-00 . + +base:relationship\/20674 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1880"; + base:relationship\#DateEnd_Max "1880-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1880-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 20674; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/4345; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TorMad-00 . + +base:relationship\/20679 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Early 1904"; + base:relationship\#DateStart_Max "1904-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 20679; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/SG-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BasHam-00 . + +base:relationship\/20680 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "May 1908"; + base:relationship\#DateStart_Max "1908-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-05-01"^^xsd:date; + base:relationship\#IDRel 20680; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FJ-Suv-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LonJac-00 . + +base:relationship\/20683 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "May 1908"; + base:relationship\#DateStart_Max "1908-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-05-01"^^xsd:date; + base:relationship\#IDRel 20683; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FJ-Suv-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LonCha-00 . + +base:relationship\/20684 a base:relationship; + base:relationship\#DateEnd_Fuzzy "25th January 1913"; + base:relationship\#DateEnd_Max "1913-01-25"^^xsd:date; + base:relationship\#DateEnd_Min "1913-01-25"^^xsd:date; + base:relationship\#DateStart_Fuzzy "4th November 1912"; + base:relationship\#DateStart_Max "1912-11-04"^^xsd:date; + base:relationship\#DateStart_Min "1912-11-04"^^xsd:date; + base:relationship\#IDRel 20684; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/4525; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LafMau-00 . + +base:relationship\/20689 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/441; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/NevEmm-00 . + +base:relationship\/20694 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20694; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/441; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BerSar-00 . + +base:relationship\/20699 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Sommer 1885"; + base:relationship\#DateStart_Max "1885-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1885-06-24"^^xsd:date; + base:relationship\#IDRel 20699; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/207 a base:relationship; + base:relationship\#IDRel 207; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1883"; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/GulEll-00; + base:relationship\#ref-IDPerson_passive base:person\/MarBla-00 . + +base:relationship\/20704 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20704; + base:relationship\#comment "Théâtre Arcadia"; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDOrganisation base:organisation\/449; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GunRao-00 . + +base:relationship\/20709 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 20709; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2776; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GraMau-00 . + +base:relationship\/20714 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1903 and 1904"; + base:relationship\#DateStart_Max "1904-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1903-01-01"^^xsd:date; + base:relationship\#IDRel 20714; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HouHar-00 . + +base:relationship\/20719 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 20719; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PesAle-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/20724 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 20724; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/XauFer-00 . + +base:relationship\/20729 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 20729; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GunRao-00 . + +base:relationship\/20734 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20734; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiMar-00 . + +base:relationship\/20739 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20739; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ZanMar-00 . + +base:relationship\/20742 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20742; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MasJul-00 . + +base:relationship\/20746 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20746; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MioMar-00 . + +base:relationship\/20750 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20750; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DelLeo-00 . + +base:relationship\/20754 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20754; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CarAlb-00 . + +base:relationship\/20758 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20758; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DanJul-00 . + +base:relationship\/20762 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20762; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CobArt-00 . + +base:relationship\/20766 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20766; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TasAle-00 . + +base:relationship\/20770 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20770; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FugLuc-00 . + +base:relationship\/20774 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20774; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TerAnt-00 . + +base:relationship\/20778 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20778; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CosMar-00 . + +base:relationship\/20782 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1883 and 1890"; + base:relationship\#DateStart_Max "1890-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 20782; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HugVic-00 . + +base:relationship\/20786 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20786; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/VasLeo-00 . + +base:relationship\/20787 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20787; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MonMon-00 . + +base:relationship\/20788 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20788; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MonMad-01 . + +base:relationship\/20790 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20790; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/NumAlf-00 . + +base:relationship\/20794 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20794; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ItuJua-00 . + +base:relationship\/20798 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20798; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GraEnr-00 . + +base:relationship\/20802 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20802; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/SanEle-00 . + +base:relationship\/20806 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20806; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/QueIsa-00 . + +base:relationship\/20810 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Sommer 1885"; + base:relationship\#DateStart_Max "1885-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1885-06-24"^^xsd:date; + base:relationship\#IDRel 20810; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/YsaEug-00 . + +base:relationship\/20812 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Sommer 1885"; + base:relationship\#DateStart_Max "1885-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1885-06-24"^^xsd:date; + base:relationship\#IDRel 20812; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HolJos-00 . + +base:relationship\/20814 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Sommer 1885"; + base:relationship\#DateStart_Max "1885-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1885-06-24"^^xsd:date; + base:relationship\#IDRel 20814; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PanMon-00 . + +base:relationship\/20818 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Sommer 1885"; + base:relationship\#DateStart_Max "1885-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1885-06-24"^^xsd:date; + base:relationship\#IDRel 20818; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PlaPol-00 . + +base:relationship\/20822 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20822; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FulLoi-00 . + +base:relationship\/20826 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20826; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DebMad-00 . + +base:relationship\/20830 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20830; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/SorC\%C3\%A9c-00 . + +base:relationship\/20834 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20834; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiYve-00 . + +base:relationship\/20838 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1889"; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1889-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 20838; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/4375; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MonMad-00 . + +base:relationship\/20842 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1889"; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1889-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 20842; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/4375; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/M\%C3\%A9aMad-00 . + +base:relationship\/20846 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20846; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ChaCom-00 . + +base:relationship\/20850 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20850; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GunMad-00 . + +base:relationship\/20854 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20854; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/EdsTho-00 . + +base:relationship\/20858 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20858; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MonMar-00 . + +base:relationship\/20862 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20862; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GerAdm-00 . + +base:relationship\/20866 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20866; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DevMad-00 . + +base:relationship\/20870 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Summer 1891"; + base:relationship\#DateStart_Max "1891-09-23"^^xsd:date; + base:relationship\#DateStart_Min "1891-06-24"^^xsd:date; + base:relationship\#IDRel 20870; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LegFat-00 . + +base:relationship\/20874 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20874; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "(Mikhailovsky Theatre)"; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/AndMon-00 . + +base:relationship\/20878 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20878; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "(Mikhailovsky Theatre)"; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LarMon-00 . + +base:relationship\/20882 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20882; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/TR-Ist-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PesFeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/20884 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 20884; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/RU-StPet-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LobPri-00 . + +base:relationship\/20888 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 20888; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/TR-Ist-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BeyAli-00 . + +base:relationship\/20890 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20890; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PugRau-00 . + +base:relationship\/20894 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20894; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CSTR-SanJos-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/IglRaf-00 . + +base:relationship\/20896 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1898 and 1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 20896; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/463; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/SouGab-00 . + +base:relationship\/20900 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1898 and 1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 20900; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/463; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/AudEdm-00 . + +base:relationship\/20902 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1898 and 1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 20902; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/463; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MauJea-00 . + +base:relationship\/20904 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Between 1898 and 1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 20904; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-BRU-00; + base:relationship\#ref-IDOrganisation base:organisation\/463; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MalLui-00 . + +base:relationship\/20906 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20906; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EG-Cairo-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PasCom-00 . + +base:relationship\/20910 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20910; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BolPau-00 . + +base:relationship\/20914 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "between 1904 and 1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1904-01-01"^^xsd:date; + base:relationship\#IDRel 20914; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WieEli-00 . + +base:relationship\/20918 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 20918; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "(London’s Steinway Hall)"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MapHen-00 . + +base:relationship\/20922 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 20922; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Tour"; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/ArrBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ChaLou-00 . + +base:relationship\/20926 a base:relationship; + base:relationship\#IDRel 20926; + base:relationship\#comment "Louis Marie Paulin Benoist Alphonse Révial"; + base:relationship\#ref-IDPerson_active base:person\/CapVic-00 . + +base:relationship\/20930 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20930; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SteJoh-00 . + +base:relationship\/20934 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20934; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/EdwEdw-00 . + +base:relationship\/20938 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 20938; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJun-00 . + +base:relationship\/20942 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1828"; + base:relationship\#DateEnd_Max "1828-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1828-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 20942; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HacJam-00 . + +base:relationship\/20950 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1897"; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1897-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1888"; + base:relationship\#DateStart_Max "1888-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 20950; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "editor and probably co-writer of her autobiography"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/TayDou-00 . + +base:relationship\/20954 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1876"; + base:relationship\#DateEnd_Max "1876-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1834"; + base:relationship\#DateStart_Max "1834-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1834-01-01"^^xsd:date; + base:relationship\#IDRel 20954; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MaeJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/20958 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20958; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/VerJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/20962 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20962; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MaeGas-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/20966 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20966; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MaeFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/20970 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20970; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MaeFre-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/20974 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "October 1827"; + base:relationship\#DateStart_Max "1827-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-10-01"^^xsd:date; + base:relationship\#IDRel 20974; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SimEdw-00 . + +base:relationship\/20978 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "October 1827"; + base:relationship\#DateStart_Max "1827-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-10-01"^^xsd:date; + base:relationship\#IDRel 20978; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarTho-00 . + +base:relationship\/20982 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1822"; + base:relationship\#DateStart_Max "1822-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1822-01-01"^^xsd:date; + base:relationship\#IDRel 20982; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MatMs\.-00 . + +base:relationship\/20986 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20986; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/IhmHen-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/20990 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20990; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SheJan-00 . + +base:relationship\/20994 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20994; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BruBre-00 . + +base:relationship\/20998 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 20998; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BruLou-00 . + +base:relationship\/21 a base:relationship; + base:relationship\#IDRel 21; + base:relationship\#Timeperiod ""; + base:relationship\#comment "father"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-01; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/210 a base:relationship; + base:relationship\#IDRel 210; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1883"; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/GulEll-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/21002 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21002; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BurJos-00 . + +base:relationship\/21006 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21006; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/AndGeo-00 . + +base:relationship\/21010 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21010; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WalJam-00 . + +base:relationship\/21014 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21014; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HolGeo-00 . + +base:relationship\/21018 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21018; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/VerGeo-00 . + +base:relationship\/21022 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1827"; + base:relationship\#DateEnd_Max "1827-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1827-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 21022; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WheJul-00 . + +base:relationship\/21026 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1828"; + base:relationship\#DateEnd_Max "1828-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1828-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 21026; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SimEdm-00 . + +base:relationship\/21030 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1828"; + base:relationship\#DateEnd_Max "1828-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1828-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 21030; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WooMr\.-00 . + +base:relationship\/21034 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1828"; + base:relationship\#DateEnd_Max "1828-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1828-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 21034; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/PlaTho-00 . + +base:relationship\/21038 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1828"; + base:relationship\#DateEnd_Max "1828-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1828-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 21038; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/RicPet-00 . + +base:relationship\/21042 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1829"; + base:relationship\#DateEnd_Max "1829-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1829-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1828"; + base:relationship\#DateStart_Max "1828-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1828-01-01"^^xsd:date; + base:relationship\#IDRel 21042; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Balti-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SteMr\.-00 . + +base:relationship\/21046 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1829"; + base:relationship\#DateEnd_Max "1829-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1829-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1828"; + base:relationship\#DateStart_Max "1828-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1828-01-01"^^xsd:date; + base:relationship\#IDRel 21046; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Balti-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaHen-00 . + +base:relationship\/21050 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21050; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MurJam-00 . + +base:relationship\/21054 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21054; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Wash-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HouGen-00 . + +base:relationship\/21058 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21058; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Wash-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SteSpe-00 . + +base:relationship\/21062 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21062; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Wash-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WirAtt-00 . + +base:relationship\/21066 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21066; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CooJan-00 . + +base:relationship\/21070 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21070; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaAda-00 . + +base:relationship\/21074 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Early 1830s"; + base:relationship\#DateStart_Max "1835-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1830-01-01"^^xsd:date; + base:relationship\#IDRel 21074; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Ludlow’s Cincinnati Theatre"; + base:relationship\#ref-IDLocation base:location\/USA-Cinc-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/RicMr\.-00 . + +base:relationship\/21078 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21078; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CooTho-00 . + +base:relationship\/21082 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21082; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CelMad-00 . + +base:relationship\/21086 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21086; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SteMrs-00 . + +base:relationship\/21090 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21090; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/EllMrs-00 . + +base:relationship\/21094 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21094; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilHen-00 . + +base:relationship\/21098 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21098; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaWil-00 . + +base:relationship\/21102 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21102; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarGeo-00 . + +base:relationship\/21106 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21106; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FlyTho-00 . + +base:relationship\/21110 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21110; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoCha-00 . + +base:relationship\/21114 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Winter 1839"; + base:relationship\#DateStart_Max "1840-03-23"^^xsd:date; + base:relationship\#DateStart_Min "1839-12-24"^^xsd:date; + base:relationship\#IDRel 21114; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MitWil-00 . + +base:relationship\/21118 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1840-01-01"^^xsd:date; + base:relationship\#IDRel 21118; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/TayMar-00 . + +base:relationship\/21122 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1840-01-01"^^xsd:date; + base:relationship\#IDRel 21122; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/283; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HilCha-00 . + +base:relationship\/21126 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21126; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/734; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HieWil-00 . + +base:relationship\/21130 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1837"; + base:relationship\#DateStart_Max "1837-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1837-01-01"^^xsd:date; + base:relationship\#IDRel 21130; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Natch-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/GilJoh-00 . + +base:relationship\/21134 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21134; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/DreLou-00 . + +base:relationship\/21138 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Late 1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-09-01"^^xsd:date; + base:relationship\#IDRel 21138; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MorFan-00 . + +base:relationship\/21142 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "May 1849"; + base:relationship\#DateStart_Max "1849-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-05-01"^^xsd:date; + base:relationship\#IDRel 21142; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2415; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/NibWil-00 . + +base:relationship\/21146 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "May 1849"; + base:relationship\#DateStart_Max "1849-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-05-01"^^xsd:date; + base:relationship\#IDRel 21146; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/2415; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/HacJam-00 . + +base:relationship\/21150 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21150; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/JefJos-00 . + +base:relationship\/21154 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21154; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SefJoh-00 . + +base:relationship\/21158 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21158; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MumJoh-00 . + +base:relationship\/21162 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21162; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MorGen-00 . + +base:relationship\/21166 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-01-01"^^xsd:date; + base:relationship\#IDRel 21166; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/4632; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/JorGeo-00 . + +base:relationship\/21170 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21170; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BroJoh-00 . + +base:relationship\/21174 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-01-01"^^xsd:date; + base:relationship\#IDRel 21174; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/4632; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SkeGeo-00 . + +base:relationship\/21178 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21178; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Bost-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/OweJoh-00 . + +base:relationship\/21182 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Late 1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-09-01"^^xsd:date; + base:relationship\#IDRel 21182; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Alb-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMad-00 . + +base:relationship\/21186 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "Late 1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-09-01"^^xsd:date; + base:relationship\#IDRel 21186; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Alb-00; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CusCha-00 . + +base:relationship\/21190 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 21190; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/RehArt-00 . + +base:relationship\/21194 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21194; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/RobAgn-00 . + +base:relationship\/21198 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21198; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FecCha-00 . + +base:relationship\/212 a base:relationship; + base:relationship\#IDRel 212; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1881"; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/ArrBla-00 . + +base:relationship\/21202 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21202; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/DraFra-00 . + +base:relationship\/21206 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21206; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CowJos-00 . + +base:relationship\/21210 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/PowTyr-00 . + +base:relationship\/21214 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21214; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CalJam-00 . + +base:relationship\/21218 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21218; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/MayRob-00 . + +base:relationship\/21222 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21222; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/WemFra-00 . + +base:relationship\/21226 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21226; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiSol-00 . + +base:relationship\/21230 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "June 1833"; + base:relationship\#DateStart_Max "1833-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1833-06-01"^^xsd:date; + base:relationship\#IDRel 21230; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/KemFan-00 . + +base:relationship\/21234 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "June 1833"; + base:relationship\#DateStart_Max "1833-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1833-06-01"^^xsd:date; + base:relationship\#IDRel 21234; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/KemCha-00 . + +base:relationship\/21238 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21238; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FisAle-00 . + +base:relationship\/21242 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21242; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/JefBes-00 . + +base:relationship\/21246 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1837"; + base:relationship\#DateEnd_Max "1837-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1837-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1836"; + base:relationship\#DateStart_Max "1836-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1836-01-01"^^xsd:date; + base:relationship\#IDRel 21246; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FieJos-00 . + +base:relationship\/21250 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1837"; + base:relationship\#DateEnd_Max "1837-01-01"^^xsd:date; + base:relationship\#DateEnd_Min "1837-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1836"; + base:relationship\#DateStart_Max "1836-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1836-01-01"^^xsd:date; + base:relationship\#IDRel 21250; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/RidEli-00 . + +base:relationship\/21254 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1837"; + base:relationship\#DateEnd_Max "1837-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1837-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1836"; + base:relationship\#DateStart_Max "1836-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1836-01-01"^^xsd:date; + base:relationship\#IDRel 21254; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/JacBla-00 . + +base:relationship\/21258 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21258; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CamVin-00 . + +base:relationship\/21262 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21262; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FieM-00 . + +base:relationship\/21266 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21266; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/BatHez-00 . + +base:relationship\/21270 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21270; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/CowJow-00 . + +base:relationship\/21274 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 21274; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00; + base:relationship\#ref-IDPerson_passive base:person\/FarGoe-00 . + +base:relationship\/21290 a base:relationship; + base:relationship\#IDRel 21290; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AubDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HerFlo-00 . + +base:relationship\/21294 a base:relationship; + base:relationship\#IDRel 21294; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/AubDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MarJea-00 . + +base:relationship\/21298 a base:relationship; + base:relationship\#IDRel 21298; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMat-00 . + +base:relationship\/213 a base:relationship; + base:relationship\#IDRel 213; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/BaiAnn-00 . + +base:relationship\/21302 a base:relationship; + base:relationship\#IDRel 21302; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00; + base:relationship\#ref-IDPerson_passive base:person\/FoeA-00 . + +base:relationship\/21306 a base:relationship; + base:relationship\#IDRel 21306; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21310 a base:relationship; + base:relationship\#IDRel 21310; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21314 a base:relationship; + base:relationship\#IDRel 21314; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21318 a base:relationship; + base:relationship\#IDRel 21318; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21322 a base:relationship; + base:relationship\#IDRel 21322; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21326 a base:relationship; + base:relationship\#IDRel 21326; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21330 a base:relationship; + base:relationship\#IDRel 21330; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21334 a base:relationship; + base:relationship\#IDRel 21334; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00 . + +base:relationship\/21338 a base:relationship; + base:relationship\#IDRel 21338; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SwaH\.-00 . + +base:relationship\/21342 a base:relationship; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 21342; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5124; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/AshPeg-00 . + +base:relationship\/21346 a base:relationship; + base:relationship\#IDRel 21346; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LawGer-00 . + +base:relationship\/21354 a base:relationship; + base:relationship\#DateStart_Fuzzy "28th February 1928"; + base:relationship\#DateStart_Max "1928-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1928-02-28"^^xsd:date; + base:relationship\#IDRel 21354; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BanTal-00 . + +base:relationship\/21358 a base:relationship; + base:relationship\#IDRel 21358; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WooSam-00 . + +base:relationship\/21362 a base:relationship; + base:relationship\#IDRel 21362; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/FarJoh-00 . + +base:relationship\/21366 a base:relationship; + base:relationship\#IDRel 21366; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GouEdm-00 . + +base:relationship\/21368 a base:relationship; + base:relationship\#IDRel 21368; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WhaJam-00 . + +base:relationship\/21369 a base:relationship; + base:relationship\#IDRel 21369; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/StuJoh-00 . + +base:relationship\/21370 a base:relationship; + base:relationship\#IDRel 21370; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/AubDan-00; + base:relationship\#ref-IDPerson_passive base:person\/LadIgn-00 . + +base:relationship\/21374 a base:relationship; + base:relationship\#IDRel 21374; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21378 a base:relationship; + base:relationship\#IDRel 21378; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21382 a base:relationship; + base:relationship\#IDRel 21382; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21386 a base:relationship; + base:relationship\#IDRel 21386; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21390 a base:relationship; + base:relationship\#IDRel 21390; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21394 a base:relationship; + base:relationship\#IDRel 21394; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21398 a base:relationship; + base:relationship\#IDRel 21398; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21402 a base:relationship; + base:relationship\#IDRel 21402; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21406 a base:relationship; + base:relationship\#IDRel 21406; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21410 a base:relationship; + base:relationship\#IDRel 21410; + base:relationship\#ref-IDPerson_active base:person\/FisCla-00 . + +base:relationship\/21414 a base:relationship; + base:relationship\#IDRel 21414; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/GER-Kas-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Sol-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/21418 a base:relationship; + base:relationship\#IDRel 21418; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BenLil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/21422 a base:relationship; + base:relationship\#IDRel 21422; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BenCha-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/21426 a base:relationship; + base:relationship\#DateStart_Fuzzy "1911"; + base:relationship\#DateStart_Max "1911-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1911-01-01"^^xsd:date; + base:relationship\#IDRel 21426; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/21430 a base:relationship; + base:relationship\#DateStart_Fuzzy "April 1927"; + base:relationship\#DateStart_Max "1927-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1927-04-01"^^xsd:date; + base:relationship\#IDRel 21430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/4748; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GieJoh-00 . + +base:relationship\/21438 a base:relationship; + base:relationship\#DateStart_Fuzzy "September 1929"; + base:relationship\#DateStart_Max "1929-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1929-09-01"^^xsd:date; + base:relationship\#IDRel 21438; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ShuLee-00 . + +base:relationship\/21442 a base:relationship; + base:relationship\#DateStart_Fuzzy "1911"; + base:relationship\#DateStart_Max "1911-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1911-01-01"^^xsd:date; + base:relationship\#IDRel 21442; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/556; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CocCha-00 . + +base:relationship\/21446 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 21446; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5120; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RanArt-00 . + +base:relationship\/21450 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 21450; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SamG\.b-00 . + +base:relationship\/21454 a base:relationship; + base:relationship\#IDRel 21454; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-Tewk-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/PeaGeo-00 . + +base:relationship\/21458 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 21458; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/EdwGeo-00 . + +base:relationship\/21462 a base:relationship; + base:relationship\#IDRel 21462; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5116; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BarRod-00 . + +base:relationship\/21466 a base:relationship; + base:relationship\#DateStart_Fuzzy "August 1914"; + base:relationship\#DateStart_Max "1914-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1914-08-01"^^xsd:date; + base:relationship\#IDRel 21466; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/TreHer-00 . + +base:relationship\/21470 a base:relationship; + base:relationship\#DateStart_Fuzzy "April 1927"; + base:relationship\#DateStart_Max "1927-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1927-04-01"^^xsd:date; + base:relationship\#IDRel 21470; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/4748; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LorRob-00 . + +base:relationship\/21474 a base:relationship; + base:relationship\#DateStart_Fuzzy "April 1927"; + base:relationship\#DateStart_Max "1927-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1927-04-01"^^xsd:date; + base:relationship\#IDRel 21474; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/4748; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/EllGer-00 . + +base:relationship\/21478 a base:relationship; + base:relationship\#DateStart_Fuzzy "April 1927"; + base:relationship\#DateStart_Max "1927-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1927-04-01"^^xsd:date; + base:relationship\#IDRel 21478; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/4748; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KniEsm-00 . + +base:relationship\/21482 a base:relationship; + base:relationship\#DateStart_Fuzzy "Late 1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-09-01"^^xsd:date; + base:relationship\#IDRel 21482; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CheCec-00 . + +base:relationship\/21486 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 21486; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GorJan-00 . + +base:relationship\/21490 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 21490; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GorCor-00 . + +base:relationship\/21494 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920s"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 21494; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/3930; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RivDie-00 . + +base:relationship\/21498 a base:relationship; + base:relationship\#IDRel 21498; + base:relationship\#ref-IDPerson_active base:person\/AbeTsi-00 . + +base:relationship\/215 a base:relationship; + base:relationship\#IDRel 215; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/BaiIda-00 . + +base:relationship\/21501 a base:relationship; + base:relationship\#IDRel 21501; + base:relationship\#ref-IDPerson_active base:person\/HelAnn-00 . + +base:relationship\/21502 a base:relationship; + base:relationship\#IDRel 21502; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/GER-Kas-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Reb-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/21506 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1865-1869"; + base:relationship\#DateEnd_Max "1869-02-01"^^xsd:date; + base:relationship\#DateEnd_Min "1865-06-22"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-06-22"^^xsd:date; + base:relationship\#DateStart_Min "1865-06-22"^^xsd:date; + base:relationship\#IDRel 21506; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/NorthAmerica; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HerAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/21510 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1905"; + base:relationship\#DateEnd_Max "1905-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1905-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 21510; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/NorthAmerica; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/KelMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/21514 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1858-1861"; + base:relationship\#DateEnd_Max "1861-11-11"^^xsd:date; + base:relationship\#DateEnd_Min "1858-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1858-1861"; + base:relationship\#DateStart_Max "1861-11-11"^^xsd:date; + base:relationship\#DateStart_Min "1858-01-01"^^xsd:date; + base:relationship\#IDRel 21514; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Germany, Prussia and Austria"; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Meck-00 . + +base:relationship\/21515 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1863-1867"; + base:relationship\#DateEnd_Max "1867-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1863-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1863-1867"; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 21515; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDOrganisation base:organisation\/4206; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ForEdw-00 . + +base:relationship\/21517 a base:relationship; + base:relationship\#DateStart_Fuzzy "1879"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 21517; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BeaLou-00 . + +base:relationship\/21518 a base:relationship; + base:relationship\#IDRel 21518; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BeaLou-00 . + +base:relationship\/21520 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Sept.-Dec. 1863"; + base:relationship\#DateEnd_Max "1863-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1863-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Sept.-Dec. 1863"; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-09-01"^^xsd:date; + base:relationship\#IDRel 21520; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MetJoh-00 . + +base:relationship\/21524 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1863"; + base:relationship\#DateEnd_Max "1863-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1863-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1863"; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 21524; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BraEmi-00 . + +base:relationship\/21525 a base:relationship; + base:relationship\#IDRel 21525; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/JoyJam-00 . + +base:relationship\/21526 a base:relationship; + base:relationship\#DateStart_Fuzzy "1858"; + base:relationship\#DateStart_Max "1858-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1858-01-01"^^xsd:date; + base:relationship\#IDRel 21526; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ReuAug-00 . + +base:relationship\/21534 a base:relationship; + base:relationship\#IDRel 21534; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HulJam-00 . + +base:relationship\/21538 a base:relationship; + base:relationship\#IDRel 21538; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/TicHow-00 . + +base:relationship\/21542 a base:relationship; + base:relationship\#IDRel 21542; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WeiJoh-00 . + +base:relationship\/21546 a base:relationship; + base:relationship\#IDRel 21546; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WinWil-00 . + +base:relationship\/21550 a base:relationship; + base:relationship\#IDRel 21550; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BelAle-00 . + +base:relationship\/21554 a base:relationship; + base:relationship\#IDRel 21554; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BanMau-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/21558 a base:relationship; + base:relationship\#IDRel 21558; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/StaAde-00 . + +base:relationship\/21562 a base:relationship; + base:relationship\#IDRel 21562; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "San Francisco, Sydney"; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/AckCha-00 . + +base:relationship\/21565 a base:relationship; + base:relationship\#IDRel 21565; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/LewJef-00 . + +base:relationship\/21566 a base:relationship; + base:relationship\#IDRel 21566; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/CarLin-00 . + +base:relationship\/21570 a base:relationship; + base:relationship\#IDRel 21570; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/AndLil-00 . + +base:relationship\/21574 a base:relationship; + base:relationship\#IDRel 21574; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WalCla-00 . + +base:relationship\/21578 a base:relationship; + base:relationship\#DateStart_Fuzzy "1859"; + base:relationship\#DateStart_Max "1859-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1859-01-01"^^xsd:date; + base:relationship\#IDRel 21578; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "San Francisco, Cleveland"; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MorCla-00 . + +base:relationship\/21582 a base:relationship; + base:relationship\#IDRel 21582; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/OneJam-00 . + +base:relationship\/21586 a base:relationship; + base:relationship\#IDRel 21586; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Bra-01 . + +base:relationship\/21590 a base:relationship; + base:relationship\#IDRel 21590; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Bis-00 . + +base:relationship\/21594 a base:relationship; + base:relationship\#IDRel 21594; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mor-00 . + +base:relationship\/21598 a base:relationship; + base:relationship\#DateStart_Fuzzy "1870s"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21598; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WynJus-00 . + +base:relationship\/21602 a base:relationship; + base:relationship\#IDRel 21602; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/GreEdw-00 . + +base:relationship\/21606 a base:relationship; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 21606; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Gor-00 . + +base:relationship\/21610 a base:relationship; + base:relationship\#IDRel 21610; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AU-Brisb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Dru-00 . + +base:relationship\/21614 a base:relationship; + base:relationship\#IDRel 21614; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Sto-00 . + +base:relationship\/21618 a base:relationship; + base:relationship\#IDRel 21618; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Byn-00 . + +base:relationship\/21622 a base:relationship; + base:relationship\#IDRel 21622; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Ste-00 . + +base:relationship\/21626 a base:relationship; + base:relationship\#IDRel 21626; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Rob-00 . + +base:relationship\/21630 a base:relationship; + base:relationship\#IDRel 21630; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mac-00 . + +base:relationship\/21634 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mar.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Mar.-Sept. 1881"; + base:relationship\#DateStart_Max "1881-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-03-01"^^xsd:date; + base:relationship\#IDRel 21634; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Tima-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WalR-00 . + +base:relationship\/21638 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mar.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21638; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Rom-00 . + +base:relationship\/21642 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mar.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21642; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/SouAra-00 . + +base:relationship\/21646 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mar.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21646; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/RomFre-00 . + +base:relationship\/21650 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateStart_Max "1881-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21650; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/GorArt-00 . + +base:relationship\/21654 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateStart_Max "1881-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21654; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Gor-00 . + +base:relationship\/21658 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateEnd_Max "1881-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.-Sept. 1881"; + base:relationship\#DateStart_Max "1881-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21658; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MurP-00 . + +base:relationship\/21662 a base:relationship; + base:relationship\#IDRel 21662; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/NZ-Dune-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAle-00 . + +base:relationship\/21665 a base:relationship; + base:relationship\#IDRel 21665; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WynJud-00 . + +base:relationship\/21669 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21669; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-Nap-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/KenJud-00 . + +base:relationship\/21671 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21671; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-Nap-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Ken-00 . + +base:relationship\/21674 a base:relationship; + base:relationship\#IDRel 21674; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HerJam-00 . + +base:relationship\/21678 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 21678; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/HovHer-00 . + +base:relationship\/21682 a base:relationship; + base:relationship\#DateStart_Fuzzy "1955"; + base:relationship\#DateStart_Max "1955-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1955-01-01"^^xsd:date; + base:relationship\#IDRel 21682; + base:relationship\#ref-IDLocation base:location\/USA-LosAng-00; + base:relationship\#ref-IDPerson_active base:person\/MirCar-00; + base:relationship\#ref-IDPerson_passive base:person\/PeiCau-00 . + +base:relationship\/21686 a base:relationship; + base:relationship\#IDRel 21686; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/MamEmm-00 . + +base:relationship\/21690 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21690; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Auckland, Melbourne"; + base:relationship\#ref-IDLocation base:location\/NZ-Auck-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/EdiDuk-00 . + +base:relationship\/21694 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21694; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-Auck-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Sch-01 . + +base:relationship\/21698 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21698; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-Auck-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Gri-00 . + +base:relationship\/21702 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateEnd_Max "1881-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr-Jun.1881"; + base:relationship\#DateStart_Max "1881-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-04-01"^^xsd:date; + base:relationship\#IDRel 21702; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/NZ-Auck-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/AndMar-00 . + +base:relationship\/21706 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-Nov. 1883"; + base:relationship\#DateEnd_Max "1883-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21706; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mow-00 . + +base:relationship\/21710 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-Nov. 1883"; + base:relationship\#DateEnd_Max "1883-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21710; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MatCha-00 . + +base:relationship\/21714 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-Nov. 1883"; + base:relationship\#DateEnd_Max "1883-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 21714; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HRH-00 . + +base:relationship\/21718 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-1883"; + base:relationship\#DateEnd_Max "1883-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881"; + base:relationship\#DateStart_Max "1881-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1881-10-05"^^xsd:date; + base:relationship\#IDRel 21718; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WieW-00 . + +base:relationship\/21722 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Nov. 1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Dec. 1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-12-01"^^xsd:date; + base:relationship\#IDRel 21722; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/TreCon-00 . + +base:relationship\/21726 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Dec. 1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-12-01"^^xsd:date; + base:relationship\#IDRel 21726; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Adelaide, Bombay"; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/FerJam-00 . + +base:relationship\/21730 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Nov. 1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Dec.1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-12-01"^^xsd:date; + base:relationship\#IDRel 21730; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/FerEdi-00 . + +base:relationship\/21734 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Nov. 1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Dec.1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-12-01"^^xsd:date; + base:relationship\#IDRel 21734; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MowMor-00 . + +base:relationship\/21738 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Nov. 1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Nov. 1881"; + base:relationship\#DateStart_Max "1881-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-11-05"^^xsd:date; + base:relationship\#IDRel 21738; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/OxcJoh-00 . + +base:relationship\/21742 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Nov. 1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Nov. 1881"; + base:relationship\#DateStart_Max "1881-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-11-05"^^xsd:date; + base:relationship\#IDRel 21742; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/TayTom-00 . + +base:relationship\/21746 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Nov. 1881"; + base:relationship\#DateStart_Max "1881-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1881-11-05"^^xsd:date; + base:relationship\#IDRel 21746; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Adelaide, Ceylon, Madras"; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Sim-00 . + +base:relationship\/21750 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21750; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BerWil-00 . + +base:relationship\/21754 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21754; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "London, Calcutta"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lyt-00 . + +base:relationship\/21758 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21758; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/YorEli-00 . + +base:relationship\/21762 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21762; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Hai-00 . + +base:relationship\/21766 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21766; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/FerCha-00 . + +base:relationship\/21770 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21770; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BerCha-01 . + +base:relationship\/21774 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21774; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/FerBro-00 . + +base:relationship\/21778 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21778; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BehMah-00 . + +base:relationship\/21782 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21782; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/OgdDor-00 . + +base:relationship\/21786 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21786; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/NewDen-00 . + +base:relationship\/21790 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21790; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Kel-00 . + +base:relationship\/21794 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-12-01"^^xsd:date; + base:relationship\#IDRel 21794; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/IN-Calc-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/EdeAsh-00 . + +base:relationship\/21798 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1883"; + base:relationship\#DateEnd_Max "1883-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1883"; + base:relationship\#DateStart_Max "1883-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1881-11-01"^^xsd:date; + base:relationship\#IDRel 21798; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/SriLanka-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WitHen-00 . + +base:relationship\/218 a base:relationship; + base:relationship\#IDRel 218; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "sisters"; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00; + base:relationship\#ref-IDPerson_passive base:person\/BaiAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/21802 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1884"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21802; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Bra-02 . + +base:relationship\/21806 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21806; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Kre-00 . + +base:relationship\/21810 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21810; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Bla-00 . + +base:relationship\/21814 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21814; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Kra-00 . + +base:relationship\/21818 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21818; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Haa-00 . + +base:relationship\/21822 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21822; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Gui-00 . + +base:relationship\/21826 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21826; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Men-00 . + +base:relationship\/21830 a base:relationship; + base:relationship\#DateEnd_Fuzzy "May 1882"; + base:relationship\#DateEnd_Max "1882-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Apr.1882"; + base:relationship\#DateStart_Max "1882-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1882-04-01"^^xsd:date; + base:relationship\#IDRel 21830; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Gro-00 . + +base:relationship\/21834 a base:relationship; + base:relationship\#IDRel 21834; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ForJoh-00 . + +base:relationship\/21838 a base:relationship; + base:relationship\#IDRel 21838; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ReaCha-00 . + +base:relationship\/21842 a base:relationship; + base:relationship\#IDRel 21842; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Fra-00 . + +base:relationship\/21846 a base:relationship; + base:relationship\#IDRel 21846; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/SidPhi-00 . + +base:relationship\/21850 a base:relationship; + base:relationship\#IDRel 21850; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/DavJoh-00 . + +base:relationship\/21854 a base:relationship; + base:relationship\#IDRel 21854; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MacM-00 . + +base:relationship\/21858 a base:relationship; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 21858; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mos-00 . + +base:relationship\/21862 a base:relationship; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 21862; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Rou-00 . + +base:relationship\/21866 a base:relationship; + base:relationship\#IDRel 21866; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Wil-00 . + +base:relationship\/21870 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.1882"; + base:relationship\#DateEnd_Max "1882-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-07-01"^^xsd:date; + base:relationship\#IDRel 21870; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-HKG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/PhiGeo-00 . + +base:relationship\/21874 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.1882"; + base:relationship\#DateEnd_Max "1882-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-07-01"^^xsd:date; + base:relationship\#IDRel 21874; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-HKG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiFra-00 . + +base:relationship\/21878 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jun.-Jul.1882"; + base:relationship\#DateEnd_Max "1882-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-06-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jun.-Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-06-01"^^xsd:date; + base:relationship\#IDRel 21878; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-Guang-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Str-00 . + +base:relationship\/21882 a base:relationship; + base:relationship\#IDRel 21882; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HouEdw-00 . + +base:relationship\/21886 a base:relationship; + base:relationship\#IDRel 21886; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-CHIC-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WinWil-00 . + +base:relationship\/21890 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.1882"; + base:relationship\#DateEnd_Max "1882-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-07-01"^^xsd:date; + base:relationship\#IDRel 21890; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/CN-HKG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MosCol-00 . + +base:relationship\/21894 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.1882"; + base:relationship\#DateEnd_Max "1882-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-07-01"^^xsd:date; + base:relationship\#IDRel 21894; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/SG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WelF-00 . + +base:relationship\/21898 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1882-1883"; + base:relationship\#DateEnd_Max "1883-03-15"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.1882"; + base:relationship\#DateStart_Max "1882-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-07-01"^^xsd:date; + base:relationship\#IDRel 21898; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/SG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Wel-00 . + +base:relationship\/219 a base:relationship; + base:relationship\#IDRel 219; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BaiIda-00; + base:relationship\#ref-IDPerson_passive base:person\/LieIgn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/21902 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1882-1883"; + base:relationship\#DateEnd_Max "1883-03-15"^^xsd:date; + base:relationship\#DateEnd_Min "1882-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-08-07"^^xsd:date; + base:relationship\#DateStart_Min "1882-08-07"^^xsd:date; + base:relationship\#IDRel 21902; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/SG-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/FriJ-00 . + +base:relationship\/21906 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1882"; + base:relationship\#DateEnd_Max "1882-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1881-1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1881-11-05"^^xsd:date; + base:relationship\#IDRel 21906; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/LK-Colomb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HopBer-00 . + +base:relationship\/21910 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1881-1882"; + base:relationship\#DateEnd_Max "1882-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1881-11-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Aug.1882"; + base:relationship\#DateStart_Max "1882-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-08-01"^^xsd:date; + base:relationship\#IDRel 21910; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/LK-Colomb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lon-00 . + +base:relationship\/21914 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-1883"; + base:relationship\#DateEnd_Max "1883-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1869"; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-01-01"^^xsd:date; + base:relationship\#IDRel 21914; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Melb-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/KniJos-00 . + +base:relationship\/21918 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870-1881"; + base:relationship\#DateEnd_Max "1881-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1870-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Dec. 1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-12-01"^^xsd:date; + base:relationship\#IDRel 21918; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-Adel-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/McmG-00 . + +base:relationship\/21922 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mar.1883"; + base:relationship\#DateEnd_Max "1883-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-03-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Mar.1883"; + base:relationship\#DateStart_Max "1883-03-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-03-01"^^xsd:date; + base:relationship\#IDRel 21922; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AUS-PortDarw-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WarArt-00 . + +base:relationship\/21926 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.-Oct. 1883"; + base:relationship\#DateEnd_Max "1883-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.-Oct. 1883"; + base:relationship\#DateStart_Max "1883-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-07-01"^^xsd:date; + base:relationship\#IDRel 21926; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/GarC-00 . + +base:relationship\/21930 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Jul.-Oct. 1883"; + base:relationship\#DateEnd_Max "1883-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Jul.-Oct. 1883"; + base:relationship\#DateStart_Max "1883-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-07-01"^^xsd:date; + base:relationship\#IDRel 21930; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-Syd-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lof-00 . + +base:relationship\/21934 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883"; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 21934; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Ham-00 . + +base:relationship\/21938 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883"; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 21938; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Bea-00 . + +base:relationship\/21942 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883"; + base:relationship\#DateEnd_Max "1883-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 21942; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/AUS-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Web-00 . + +base:relationship\/21946 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21946; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mag-00 . + +base:relationship\/21950 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21950; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/NewPau-00 . + +base:relationship\/21954 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Dec.1883-Jan.1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-01"^^xsd:date; + base:relationship\#IDRel 21954; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/KalKin-00 . + +base:relationship\/21958 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Dec.1883-Jan.1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-01"^^xsd:date; + base:relationship\#IDRel 21958; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/VKam-00 . + +base:relationship\/21962 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Dec.1883-Jan.1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-01"^^xsd:date; + base:relationship\#IDRel 21962; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lun-00 . + +base:relationship\/21966 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21966; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lil-00 . + +base:relationship\/21970 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21970; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/DomJoh-00 . + +base:relationship\/21974 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21974; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Lik-00 . + +base:relationship\/21978 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21978; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/CleArc-00 . + +base:relationship\/21982 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21982; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BisC-00 . + +base:relationship\/21986 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21986; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/GibW-00 . + +base:relationship\/21990 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21990; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/GerC-00 . + +base:relationship\/21994 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21994; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/KapI-00 . + +base:relationship\/21998 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 21998; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/CumJoh-00 . + +base:relationship\/22 a base:relationship; + base:relationship\#DateStart_Fuzzy "1869-07-25"; + base:relationship\#IDRel 22; + base:relationship\#Timeperiod ""; + base:relationship\#comment "father"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-01; + base:relationship\#ref-IDPerson_passive base:person\/JagEls-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/22002 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22002; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BoyI-00 . + +base:relationship\/22006 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22006; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Jud-00 . + +base:relationship\/22010 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22010; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/Mor-01 . + +base:relationship\/22014 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22014; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHar-01 . + +base:relationship\/22018 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Dec.1883-Jan.1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1871"; + base:relationship\#DateStart_Max "1871-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1871-01-01"^^xsd:date; + base:relationship\#IDRel 22018; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WodJam-00 . + +base:relationship\/22022 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1882-1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 22022; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/LobCha-00 . + +base:relationship\/22026 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22026; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/DalBea-00 . + +base:relationship\/22030 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22030; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ScoM-00 . + +base:relationship\/22034 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22034; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/ParH-00 . + +base:relationship\/22038 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22038; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiA-00 . + +base:relationship\/22042 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22042; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/CarAle-00 . + +base:relationship\/22046 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22046; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HutAlf-00 . + +base:relationship\/22050 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22050; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HydC-00 . + +base:relationship\/22054 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22054; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/JohWil-00 . + +base:relationship\/22058 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22058; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HilMal-00 . + +base:relationship\/22062 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22062; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/RogCha-00 . + +base:relationship\/22066 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22066; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/WatHen-00 . + +base:relationship\/22070 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22070; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/MarA-00 . + +base:relationship\/22074 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1883-1884"; + base:relationship\#DateEnd_Max "1884-01-28"^^xsd:date; + base:relationship\#DateEnd_Min "1883-12-23"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883-1884"; + base:relationship\#DateStart_Max "1884-01-28"^^xsd:date; + base:relationship\#DateStart_Min "1883-12-23"^^xsd:date; + base:relationship\#IDRel 22074; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Honul-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/HolH-00 . + +base:relationship\/22082 a base:relationship; + base:relationship\#DateEnd_Fuzzy "approx.1878"; + base:relationship\#DateEnd_Max "1878-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1869"; + base:relationship\#DateStart_Max "1869-02-09"^^xsd:date; + base:relationship\#DateStart_Min "1869-02-09"^^xsd:date; + base:relationship\#IDRel 22082; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BanMil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/22086 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1878"; + base:relationship\#DateEnd_Max "1878-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1869"; + base:relationship\#DateStart_Max "1869-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1869-02-01"^^xsd:date; + base:relationship\#IDRel 22086; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, other cities in United Kingdom; Australia; New Zealand and other places in the southern hemisphere, America"; + base:relationship\#ref-IDLocation base:location\/UK-00; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/BanMil-00 . + +base:relationship\/22094 a base:relationship; + base:relationship\#IDRel 22094; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BanDan-00; + base:relationship\#ref-IDPerson_passive base:person\/DalAug-00 . + +base:relationship\/22098 a base:relationship; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 22098; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5124; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/FieAle-00 . + +base:relationship\/22102 a base:relationship; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 22102; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5128; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WooAl-00 . + +base:relationship\/22103 a base:relationship; + base:relationship\#DateStart_Fuzzy "28th February 1928"; + base:relationship\#DateStart_Max "1928-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1928-02-28"^^xsd:date; + base:relationship\#IDRel 22103; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5128; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MasRay-00 . + +base:relationship\/22105 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1928"; + base:relationship\#DateStart_Max "1928-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1928-06-01"^^xsd:date; + base:relationship\#IDRel 22105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Regent Theatre (King’s Cross)"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/555; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HowVio-00 . + +base:relationship\/22107 a base:relationship; + base:relationship\#DateStart_Fuzzy "26th December 1928"; + base:relationship\#DateStart_Max "1928-12-26"^^xsd:date; + base:relationship\#DateStart_Min "1928-12-26"^^xsd:date; + base:relationship\#IDRel 22107; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/573; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DevDav-00 . + +base:relationship\/22110 a base:relationship; + base:relationship\#DateStart_Fuzzy "Early 1930s"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 22110; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked together also at Gaumont British"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5136; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KinGeo-00 . + +base:relationship\/22114 a base:relationship; + base:relationship\#IDRel 22114; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BenTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22118 a base:relationship; + base:relationship\#DateStart_Fuzzy "February 1932"; + base:relationship\#DateStart_Max "1932-02-29"^^xsd:date; + base:relationship\#DateStart_Min "1932-02-01"^^xsd:date; + base:relationship\#IDRel 22118; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-MtCarlo-00; + base:relationship\#ref-IDOrganisation base:organisation\/5144; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/StiEdw-00 . + +base:relationship\/22122 a base:relationship; + base:relationship\#DateStart_Fuzzy "1934"; + base:relationship\#DateStart_Max "1934-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-01-01"^^xsd:date; + base:relationship\#IDRel 22122; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GraEve-00 . + +base:relationship\/22126 a base:relationship; + base:relationship\#DateStart_Fuzzy "January 1936"; + base:relationship\#DateStart_Max "1936-01-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 22126; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/136; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GarGre-00 . + +base:relationship\/22130 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-01-01"^^xsd:date; + base:relationship\#IDRel 22130; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/VeiCon-00 . + +base:relationship\/22138 a base:relationship; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 22138; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/OndAnn-00 . + +base:relationship\/22142 a base:relationship; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 22142; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BarJoa-00 . + +base:relationship\/22146 a base:relationship; + base:relationship\#DateStart_Fuzzy "15th April 1929"; + base:relationship\#DateStart_Max "1929-04-15"^^xsd:date; + base:relationship\#DateStart_Min "1929-04-15"^^xsd:date; + base:relationship\#IDRel 22146; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5148; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NetArc-00 . + +base:relationship\/22150 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 22150; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5148; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ForWal-00 . + +base:relationship\/22154 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 22154; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5148; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MeaHar-00 . + +base:relationship\/22155 a base:relationship; + base:relationship\#DateStart_Fuzzy "September 1931"; + base:relationship\#DateStart_Max "1931-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1931-09-01"^^xsd:date; + base:relationship\#IDRel 22155; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5136; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MycWal-00 . + +base:relationship\/22158 a base:relationship; + base:relationship\#DateStart_Fuzzy "September 1931"; + base:relationship\#DateStart_Max "1931-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1931-09-01"^^xsd:date; + base:relationship\#IDRel 22158; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5136; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MaxJoh-00 . + +base:relationship\/22162 a base:relationship; + base:relationship\#DateStart_Fuzzy "September 1931"; + base:relationship\#DateStart_Max "1931-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1931-09-01"^^xsd:date; + base:relationship\#IDRel 22162; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5136; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KorAle-00 . + +base:relationship\/22166 a base:relationship; + base:relationship\#DateStart_Fuzzy "Early 1930s"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 22166; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BriBil-00 . + +base:relationship\/22170 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-01-01"^^xsd:date; + base:relationship\#IDRel 22170; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GilSid-00 . + +base:relationship\/22174 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-01-01"^^xsd:date; + base:relationship\#IDRel 22174; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LeeAnn-00 . + +base:relationship\/22178 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#DateStart_Max "1935-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1935-01-01"^^xsd:date; + base:relationship\#IDRel 22178; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RobPau-00 . + +base:relationship\/22182 a base:relationship; + base:relationship\#IDRel 22182; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SteRob-00 . + +base:relationship\/22186 a base:relationship; + base:relationship\#IDRel 22186; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SelDav-00 . + +base:relationship\/22190 a base:relationship; + base:relationship\#IDRel 22190; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NatRob-00 . + +base:relationship\/22198 a base:relationship; + base:relationship\#IDRel 22198; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WraFay-00 . + +base:relationship\/222 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1903"; + base:relationship\#DateEnd_Max "1903-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1903-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#DateStart_Max "1901-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1901-01-01"^^xsd:date; + base:relationship\#IDRel 222; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#Timeperiod "1901-1903"; + base:relationship\#comment "Artur Bodanzky was the assistant of Gustav Mahler"; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/71; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MahGus-00 . + +base:relationship\/22202 a base:relationship; + base:relationship\#IDRel 22202; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LauFra-00 . + +base:relationship\/22206 a base:relationship; + base:relationship\#IDRel 22206; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHaw-00 . + +base:relationship\/22210 a base:relationship; + base:relationship\#IDRel 22210; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HogMic-00 . + +base:relationship\/22214 a base:relationship; + base:relationship\#IDRel 22214; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SavVic-00 . + +base:relationship\/22218 a base:relationship; + base:relationship\#DateStart_Fuzzy "1933"; + base:relationship\#DateStart_Max "1933-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 22218; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CarMad-00 . + +base:relationship\/22222 a base:relationship; + base:relationship\#IDRel 22222; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5140; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WooC\.-00 . + +base:relationship\/22226 a base:relationship; + base:relationship\#IDRel 22226; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5140; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SidSyl-00 . + +base:relationship\/22230 a base:relationship; + base:relationship\#IDRel 22230; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BarEth-00 . + +base:relationship\/22234 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Spring 1890"; + base:relationship\#DateEnd_Max "1890-06-20"^^xsd:date; + base:relationship\#DateEnd_Min "1890-03-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-29"^^xsd:date; + base:relationship\#DateStart_Min "1889-09-23"^^xsd:date; + base:relationship\#IDRel 22234; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/Edw-00 . + +base:relationship\/22238 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1880"; + base:relationship\#DateEnd_Max "1880-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1880-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 22238; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ForJ-00 . + +base:relationship\/22242 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1865"; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Approx.1861"; + base:relationship\#DateStart_Max "1861-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1861-01-01"^^xsd:date; + base:relationship\#IDRel 22242; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ModGus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/22246 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1865"; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Approx.1850-1852"; + base:relationship\#DateStart_Max "1852-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 22246; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ModGus-00 . + +base:relationship\/22250 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1865"; + base:relationship\#DateEnd_Max "1865-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1865-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1861"; + base:relationship\#DateStart_Max "1861-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1861-01-01"^^xsd:date; + base:relationship\#IDRel 22250; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ModGus-00 . + +base:relationship\/22254 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-09-12"^^xsd:date; + base:relationship\#DateStart_Min "1868-09-12"^^xsd:date; + base:relationship\#IDRel 22254; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Poland, U.S.A."; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/Ch\%C5\%82Kar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/22258 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1861"; + base:relationship\#DateStart_Max "1861-01-27"^^xsd:date; + base:relationship\#DateStart_Min "1861-01-27"^^xsd:date; + base:relationship\#IDRel 22258; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Poland, U.S.A."; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ModRud-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/22262 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1885"; + base:relationship\#DateStart_Max "1885-12-29"^^xsd:date; + base:relationship\#DateStart_Min "1885-12-29"^^xsd:date; + base:relationship\#IDRel 22262; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BenFel-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/22266 a base:relationship; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22266; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BenJ\%C3\%B3z-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/22270 a base:relationship; + base:relationship\#IDRel 22270; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BenSzy-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/22271 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1870"; + base:relationship\#DateEnd_Max "1870-06-15"^^xsd:date; + base:relationship\#DateEnd_Min "1870-06-15"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1803"; + base:relationship\#DateStart_Max "1803-09-20"^^xsd:date; + base:relationship\#DateStart_Min "1803-09-20"^^xsd:date; + base:relationship\#IDRel 22271; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/SanW\%C5\%82a-00 . + +base:relationship\/22273 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1845"; + base:relationship\#DateEnd_Max "1845-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1845-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22273; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/OpiMic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/22274 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1845"; + base:relationship\#DateEnd_Max "1845-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1845-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22274; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/OpiMic-00 . + +base:relationship\/22275 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Spring 1865"; + base:relationship\#DateEnd_Max "1865-06-20"^^xsd:date; + base:relationship\#DateEnd_Min "1865-03-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1862"; + base:relationship\#DateStart_Max "1862-04-10"^^xsd:date; + base:relationship\#DateStart_Min "1862-04-10"^^xsd:date; + base:relationship\#IDRel 22275; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMar-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/22278 a base:relationship; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22278; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/SzyJ\%C3\%B3z-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22282 a base:relationship; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22282; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/OpiAdo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22286 a base:relationship; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-10-12"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-12"^^xsd:date; + base:relationship\#IDRel 22286; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BenFel-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22290 a base:relationship; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 22290; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-CA-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/SypJul-00 . + +base:relationship\/22294 a base:relationship; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 22294; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-CA-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/Pap\%C5\%81uc-00 . + +base:relationship\/22297 a base:relationship; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 22297; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-CA-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/SieHen-00 . + +base:relationship\/22300 a base:relationship; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 22300; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-CA-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/WitSta-00 . + +base:relationship\/22302 a base:relationship; + base:relationship\#IDRel 22302; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-CA-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ChmAda-00 . + +base:relationship\/22303 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#IDRel 22303; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/BenWla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/22306 a base:relationship; + base:relationship\#IDRel 22306; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/PayThe-00 . + +base:relationship\/22310 a base:relationship; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 22310; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/SarHar-00 . + +base:relationship\/22313 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Oct. 1869"; + base:relationship\#DateEnd_Max "1869-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Oct. 1865"; + base:relationship\#DateStart_Max "1865-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-10-01"^^xsd:date; + base:relationship\#IDRel 22313; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDOrganisation base:organisation\/4652; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/Ko\%C5\%BASta-00 . + +base:relationship\/22315 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Oct. 1869"; + base:relationship\#DateEnd_Max "1869-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Oct. 1865"; + base:relationship\#DateStart_Max "1865-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-10-01"^^xsd:date; + base:relationship\#IDRel 22315; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDOrganisation base:organisation\/4652; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/RapWin-00 . + +base:relationship\/22319 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Oct. 1869"; + base:relationship\#DateEnd_Max "1869-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Oct. 1865"; + base:relationship\#DateStart_Max "1865-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-10-01"^^xsd:date; + base:relationship\#IDRel 22319; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/PL-Crac-00; + base:relationship\#ref-IDOrganisation base:organisation\/4652; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/HofAnt-00 . + +base:relationship\/22322 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1868-1876"; + base:relationship\#DateEnd_Max "1876-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-10-04"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-10-04"^^xsd:date; + base:relationship\#DateStart_Min "1868-10-04"^^xsd:date; + base:relationship\#IDRel 22322; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/PL-WA-00; + base:relationship\#ref-IDOrganisation base:organisation\/175; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/MucSer-00 . + +base:relationship\/22326 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1868-1876"; + base:relationship\#DateEnd_Max "1876-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-10-04"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-10-04"^^xsd:date; + base:relationship\#DateStart_Min "1868-10-04"^^xsd:date; + base:relationship\#IDRel 22326; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-WA-00; + base:relationship\#ref-IDOrganisation base:organisation\/175; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/KalMar-00 . + +base:relationship\/22330 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1884"; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 22330; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/PadIgn-00 . + +base:relationship\/22334 a base:relationship; + base:relationship\#IDRel 22334; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/LobKon-00 . + +base:relationship\/22338 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Max "1909-04-08"^^xsd:date; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1879"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 22338; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/KraJ\%C3\%B3z-00 . + +base:relationship\/22342 a base:relationship; + base:relationship\#IDRel 22342; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/WysSta-00 . + +base:relationship\/22346 a base:relationship; + base:relationship\#IDRel 22346; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ZglPel-00 . + +base:relationship\/22350 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1880"; + base:relationship\#DateEnd_Max "1880-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1880-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 22350; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/RosCha-00 . + +base:relationship\/22354 a base:relationship; + base:relationship\#IDRel 22354; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/NeuIgn-00 . + +base:relationship\/22358 a base:relationship; + base:relationship\#IDRel 22358; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/MccJoh-00 . + +base:relationship\/22362 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1909"; + base:relationship\#DateEnd_Min "1909-04-08"^^xsd:date; + base:relationship\#IDRel 22362; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ModHel-00; + base:relationship\#ref-IDPerson_passive base:person\/ModMar-00 . + +base:relationship\/22386 a base:relationship; + base:relationship\#IDRel 22386; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ElvMau-00 . + +base:relationship\/22390 a base:relationship; + base:relationship\#IDRel 22390; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5140; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HomOsk-00 . + +base:relationship\/22394 a base:relationship; + base:relationship\#IDRel 22394; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BevRic-00 . + +base:relationship\/22398 a base:relationship; + base:relationship\#IDRel 22398; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HitAlm-00 . + +base:relationship\/22402 a base:relationship; + base:relationship\#IDRel 22402; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5140; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/OstIsi-00 . + +base:relationship\/22406 a base:relationship; + base:relationship\#IDRel 22406; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/5140; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/OstMau-00 . + +base:relationship\/22410 a base:relationship; + base:relationship\#IDRel 22410; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/304; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WasLew-00 . + +base:relationship\/22414 a base:relationship; + base:relationship\#IDRel 22414; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Bennett suspects he may be his real father"; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BelKyr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/22418 a base:relationship; + base:relationship\#IDRel 22418; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HarJoa-00 . + +base:relationship\/22422 a base:relationship; + base:relationship\#IDRel 22422; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MonIvo-00 . + +base:relationship\/22426 a base:relationship; + base:relationship\#IDRel 22426; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RaiCla-00 . + +base:relationship\/22430 a base:relationship; + base:relationship\#IDRel 22430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MacAng-00 . + +base:relationship\/22434 a base:relationship; + base:relationship\#IDRel 22434; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BaxJan-00 . + +base:relationship\/22438 a base:relationship; + base:relationship\#IDRel 22438; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/304; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ZanDar-00 . + +base:relationship\/22442 a base:relationship; + base:relationship\#IDRel 22442; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WayJoh-00 . + +base:relationship\/22450 a base:relationship; + base:relationship\#IDRel 22450; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DemCec-00 . + +base:relationship\/22454 a base:relationship; + base:relationship\#IDRel 22454; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GolSam-00 . + +base:relationship\/22458 a base:relationship; + base:relationship\#IDRel 22458; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CohHar-00 . + +base:relationship\/22462 a base:relationship; + base:relationship\#IDRel 22462; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WarJac-00 . + +base:relationship\/22466 a base:relationship; + base:relationship\#IDRel 22466; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MayLou-00 . + +base:relationship\/22470 a base:relationship; + base:relationship\#IDRel 22470; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ZukAdo-00 . + +base:relationship\/22474 a base:relationship; + base:relationship\#IDRel 22474; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/KomMax-2133; + base:relationship\#ref-IDPerson_passive base:person\/KomIsr-2131; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22478 a base:relationship; + base:relationship\#IDRel 22478; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/KomMax-2133; + base:relationship\#ref-IDPerson_passive base:person\/KomLea-2132; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/22482 a base:relationship; + base:relationship\#IDRel 22482; + base:relationship\#ref-IDPerson_active base:person\/KomMax-2133 . + +base:relationship\/22483 a base:relationship; + base:relationship\#IDRel 22483; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/KomIsr-2131; + base:relationship\#ref-IDPerson_passive base:person\/KomLea-2132; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/22487 a base:relationship; + base:relationship\#IDRel 22487; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/KomIsr-2131; + base:relationship\#ref-IDPerson_passive base:person\/KomMax-2133; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22490 a base:relationship; + base:relationship\#IDRel 22490; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Joseph Latayner"; + base:relationship\#ref-IDPerson_active base:person\/LatIze-LatIze-927; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/22494 a base:relationship; + base:relationship\#IDRel 22494; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/304; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LaeCar-00 . + +base:relationship\/22498 a base:relationship; + base:relationship\#IDRel 22498; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HamHar-00 . + +base:relationship\/225 a base:relationship; + base:relationship\#IDRel 225; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BodArt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22502 a base:relationship; + base:relationship\#IDRel 22502; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SelMyr-00 . + +base:relationship\/22506 a base:relationship; + base:relationship\#IDRel 22506; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SheRob-00 . + +base:relationship\/22510 a base:relationship; + base:relationship\#IDRel 22510; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HelLil-00 . + +base:relationship\/22514 a base:relationship; + base:relationship\#IDRel 22514; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NicDud-00 . + +base:relationship\/22518 a base:relationship; + base:relationship\#IDRel 22518; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RisRob-00 . + +base:relationship\/22522 a base:relationship; + base:relationship\#IDRel 22522; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HecBen-00 . + +base:relationship\/22526 a base:relationship; + base:relationship\#IDRel 22526; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ParDor-00 . + +base:relationship\/22530 a base:relationship; + base:relationship\#IDRel 22530; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ManJoe-00 . + +base:relationship\/22534 a base:relationship; + base:relationship\#IDRel 22534; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3900; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WeiLar-00 . + +base:relationship\/22538 a base:relationship; + base:relationship\#IDRel 22538; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3900; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ManEdd-00 . + +base:relationship\/22542 a base:relationship; + base:relationship\#IDRel 22542; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MasEri-00 . + +base:relationship\/22545 a base:relationship; + base:relationship\#IDRel 22545; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3900; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SchRei-00 . + +base:relationship\/22546 a base:relationship; + base:relationship\#IDRel 22546; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ColRon-00 . + +base:relationship\/22550 a base:relationship; + base:relationship\#IDRel 22550; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GraCar-00 . + +base:relationship\/22554 a base:relationship; + base:relationship\#IDRel 22554; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LauCha-00 . + +base:relationship\/22558 a base:relationship; + base:relationship\#IDRel 22558; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NivDav-00 . + +base:relationship\/22562 a base:relationship; + base:relationship\#IDRel 22562; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiViv-00 . + +base:relationship\/22566 a base:relationship; + base:relationship\#IDRel 22566; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/FonJoa-00 . + +base:relationship\/22570 a base:relationship; + base:relationship\#IDRel 22570; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HavOli-00 . + +base:relationship\/22574 a base:relationship; + base:relationship\#IDRel 22574; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MilRay-00 . + +base:relationship\/22578 a base:relationship; + base:relationship\#IDRel 22578; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HarCed-00 . + +base:relationship\/22582 a base:relationship; + base:relationship\#IDRel 22582; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/YouRol-00 . + +base:relationship\/22584 a base:relationship; + base:relationship\#IDRel 22584; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BruNig-00 . + +base:relationship\/22587 a base:relationship; + base:relationship\#IDRel 22587; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiAub-00 . + +base:relationship\/22590 a base:relationship; + base:relationship\#IDRel 22590; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KarBor-00 . + +base:relationship\/22594 a base:relationship; + base:relationship\#IDRel 22594; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GweEdm-00 . + +base:relationship\/22598 a base:relationship; + base:relationship\#IDRel 22598; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/AheBri-00 . + +base:relationship\/22602 a base:relationship; + base:relationship\#IDRel 22602; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiMay-00 . + +base:relationship\/22606 a base:relationship; + base:relationship\#IDRel 22606; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CooGla-00 . + +base:relationship\/22610 a base:relationship; + base:relationship\#IDRel 22610; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/FlyErr-00 . + +base:relationship\/22614 a base:relationship; + base:relationship\#IDRel 22614; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DonRob-00 . + +base:relationship\/22618 a base:relationship; + base:relationship\#IDRel 22618; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LodJoh-00 . + +base:relationship\/22622 a base:relationship; + base:relationship\#IDRel 22622; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RatBas-00 . + +base:relationship\/22626 a base:relationship; + base:relationship\#IDRel 22626; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CurMic-00 . + +base:relationship\/22630 a base:relationship; + base:relationship\#IDRel 22630; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RosBil-00 . + +base:relationship\/22634 a base:relationship; + base:relationship\#IDRel 22634; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/EpsJac-00 . + +base:relationship\/22638 a base:relationship; + base:relationship\#IDRel 22638; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RosTom-00 . + +base:relationship\/22642 a base:relationship; + base:relationship\#IDRel 22642; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MolJim-00 . + +base:relationship\/22646 a base:relationship; + base:relationship\#IDRel 22646; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MolAmy-00 . + +base:relationship\/22650 a base:relationship; + base:relationship\#IDRel 22650; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ScoC\.-00 . + +base:relationship\/22654 a base:relationship; + base:relationship\#IDRel 22654; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SmiCha-00 . + +base:relationship\/22658 a base:relationship; + base:relationship\#IDRel 22658; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BlaCam-00 . + +base:relationship\/22662 a base:relationship; + base:relationship\#IDRel 22662; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MarBer-00 . + +base:relationship\/22666 a base:relationship; + base:relationship\#IDRel 22666; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/PomEri-00 . + +base:relationship\/22670 a base:relationship; + base:relationship\#IDRel 22670; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LanFri-00 . + +base:relationship\/22674 a base:relationship; + base:relationship\#IDRel 22674; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/69704; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RacMan-00 . + +base:relationship\/22678 a base:relationship; + base:relationship\#IDRel 22678; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SobFlo-00 . + +base:relationship\/22682 a base:relationship; + base:relationship\#IDRel 22682; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NugEll-00 . + +base:relationship\/22686 a base:relationship; + base:relationship\#IDRel 22686; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/3900; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/StaLau-00 . + +base:relationship\/22690 a base:relationship; + base:relationship\#IDRel 22690; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BeiJoh-00 . + +base:relationship\/22694 a base:relationship; + base:relationship\#IDRel 22694; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CooGeo-00 . + +base:relationship\/22698 a base:relationship; + base:relationship\#IDRel 22698; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MowAla-00 . + +base:relationship\/22702 a base:relationship; + base:relationship\#IDRel 22702; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CooGar-00 . + +base:relationship\/22706 a base:relationship; + base:relationship\#IDRel 22706; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/GodPau-00 . + +base:relationship\/22710 a base:relationship; + base:relationship\#IDRel 22710; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WanWal-00 . + +base:relationship\/22714 a base:relationship; + base:relationship\#IDRel 22714; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BenRob-00 . + +base:relationship\/22718 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1941 and 1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 22718; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/69708; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MayAla-00 . + +base:relationship\/22722 a base:relationship; + base:relationship\#IDRel 22722; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/AmeSte-00 . + +base:relationship\/22726 a base:relationship; + base:relationship\#IDRel 22726; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HeaEdi-00 . + +base:relationship\/22730 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1941 and 1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 22730; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/69712; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HenPau-00 . + +base:relationship\/22734 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1941 and 1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 22734; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/69712; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/MorMic-00 . + +base:relationship\/22738 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1941 and 1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 22738; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/69712; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HemDav-00 . + +base:relationship\/22742 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1941 and 1942"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1941-01-01"^^xsd:date; + base:relationship\#IDRel 22742; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDOrganisation base:organisation\/69712; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CreLai-00 . + +base:relationship\/22743 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1942 and 1943"; + base:relationship\#DateStart_Max "1942-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 22743; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ForC\.-00 . + +base:relationship\/22746 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1942 and 1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 22746; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/IshChr-00 . + +base:relationship\/22750 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1942 and 1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 22750; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DruJoh-00 . + +base:relationship\/22754 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1942 and 1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 22754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ObeMer-00 . + +base:relationship\/22758 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 22758; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/FiePeg-00 . + +base:relationship\/22762 a base:relationship; + base:relationship\#IDRel 22762; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHar-01 . + +base:relationship\/22766 a base:relationship; + base:relationship\#IDRel 22766; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/StrIgo-00 . + +base:relationship\/22770 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920s"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 22770; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/3930; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/PicPab-00 . + +base:relationship\/22771 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920s"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 22771; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/3930; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/UtrMau-00 . + +base:relationship\/22774 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1944"; + base:relationship\#IDRel 22774; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ChaEdw-00 . + +base:relationship\/22778 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1944"; + base:relationship\#IDRel 22778; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69716; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BedJac-00 . + +base:relationship\/22782 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1944"; + base:relationship\#IDRel 22782; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Margareth divorced from Bennet to married Newmark"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NewHer-00 . + +base:relationship\/22786 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1944"; + base:relationship\#DateStart_Fuzzy "June 1944"; + base:relationship\#IDRel 22786; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/KenHen-00 . + +base:relationship\/22790 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#IDRel 22790; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NovIvo-00 . + +base:relationship\/22794 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1937"; + base:relationship\#IDRel 22794; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WooJam-00 . + +base:relationship\/22798 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22798; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/HarRex-00 . + +base:relationship\/228 a base:relationship; + base:relationship\#IDRel 228; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Gustav Mahler brought her to the Vienna Court Opera."; + base:relationship\#ref-IDPerson_active base:person\/MahGus-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/22802 a base:relationship; + base:relationship\#DateStart_Max "1808-04-07"^^xsd:date; + base:relationship\#DateStart_Min "1808-04-07"^^xsd:date; + base:relationship\#IDRel 22802; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BorArn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/22814 a base:relationship; + base:relationship\#DateEnd_Max "1829-09-05"^^xsd:date; + base:relationship\#DateEnd_Min "1829-09-05"^^xsd:date; + base:relationship\#DateStart_Max "1805-11-04"^^xsd:date; + base:relationship\#DateStart_Min "1805-11-04"^^xsd:date; + base:relationship\#IDRel 22814; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BerFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/22818 a base:relationship; + base:relationship\#DateStart_Max "1829-11-12"^^xsd:date; + base:relationship\#DateStart_Min "1829-11-12"^^xsd:date; + base:relationship\#IDRel 22818; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/DemMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/22822 a base:relationship; + base:relationship\#IDRel 22822; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BukKar-00 . + +base:relationship\/22826 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22826; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/JeaIsa-00 . + +base:relationship\/22828 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22828; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/CulRol-00 . + +base:relationship\/22830 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22830; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/ThaHea-00 . + +base:relationship\/22834 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#IDRel 22834; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DouSho-00 . + +base:relationship\/22838 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22838; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/AstNan-00 . + +base:relationship\/22842 a base:relationship; + base:relationship\#DateStart_Fuzzy "1944"; + base:relationship\#IDRel 22842; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LipBil-00 . + +base:relationship\/22846 a base:relationship; + base:relationship\#IDRel 22846; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/BalMic-01 . + +base:relationship\/22850 a base:relationship; + base:relationship\#DateStart_Fuzzy "February 1947"; + base:relationship\#DateStart_Max "1947-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1947-02-01"^^xsd:date; + base:relationship\#IDRel 22850; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/RilBet-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/22854 a base:relationship; + base:relationship\#DateStart_Fuzzy "Between 1944 and 1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 22854; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69720; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/SmaEdw-00 . + +base:relationship\/22858 a base:relationship; + base:relationship\#DateStart_Fuzzy "Between 1944 and 1945"; + base:relationship\#DateStart_Max "1945-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1944-01-01"^^xsd:date; + base:relationship\#IDRel 22858; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69720; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/OliLau-00 . + +base:relationship\/22859 a base:relationship; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#IDRel 22859; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/71936; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/JarGus-00 . + +base:relationship\/22862 a base:relationship; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#IDRel 22862; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/71936; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/WeiMax-00 . + +base:relationship\/22866 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1906"; + base:relationship\#DateStart_Fuzzy "1904"; + base:relationship\#IDRel 22866; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/SacJos-00 . + +base:relationship\/22870 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1904"; + base:relationship\#DateStart_Fuzzy "1902"; + base:relationship\#IDRel 22870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Cpt-00; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/ReiRac-00 . + +base:relationship\/22874 a base:relationship; + base:relationship\#IDRel 22874; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/FeiSig-714 . + +base:relationship\/22878 a base:relationship; + base:relationship\#IDRel 22878; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/KatDia-00 . + +base:relationship\/22882 a base:relationship; + base:relationship\#IDRel 22882; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/RosYak-00 . + +base:relationship\/22886 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1905"; + base:relationship\#DateStart_Fuzzy "1902"; + base:relationship\#IDRel 22886; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-00; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/WaxMor-1047 . + +base:relationship\/22890 a base:relationship; + base:relationship\#IDRel 22890; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/KatJac-2099 . + +base:relationship\/22894 a base:relationship; + base:relationship\#IDRel 22894; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/WalEst-3203; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/22898 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 22898; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-CotAz-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LocMar-00 . + +base:relationship\/22902 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 22902; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-CotAz-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/DupPau-00 . + +base:relationship\/22906 a base:relationship; + base:relationship\#DateStart_Fuzzy "2nd September 1954"; + base:relationship\#DateStart_Max "1954-09-02"^^xsd:date; + base:relationship\#DateStart_Min "1954-09-02"^^xsd:date; + base:relationship\#IDRel 22906; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/NelBar-00 . + +base:relationship\/22910 a base:relationship; + base:relationship\#DateStart_Fuzzy "2nd September 1954"; + base:relationship\#DateStart_Max "1954-09-02"^^xsd:date; + base:relationship\#DateStart_Min "1954-09-02"^^xsd:date; + base:relationship\#IDRel 22910; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00; + base:relationship\#ref-IDPerson_passive base:person\/LorPet-00 . + +base:relationship\/22914 a base:relationship; + base:relationship\#IDRel 22914; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22918 a base:relationship; + base:relationship\#IDRel 22918; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22922 a base:relationship; + base:relationship\#IDRel 22922; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22926 a base:relationship; + base:relationship\#IDRel 22926; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22930 a base:relationship; + base:relationship\#IDRel 22930; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22934 a base:relationship; + base:relationship\#IDRel 22934; + base:relationship\#ref-IDPerson_active base:person\/BenCha-00 . + +base:relationship\/22938 a base:relationship; + base:relationship\#IDRel 22938; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AbrBin-742; + base:relationship\#ref-IDPerson_passive base:person\/AbrMax-694; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/22943 a base:relationship; + base:relationship\#IDRel 22943; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/69768; + base:relationship\#ref-IDPerson_active base:person\/AbrBin-742; + base:relationship\#ref-IDPerson_passive base:person\/GolNaf-00 . + +base:relationship\/22948 a base:relationship; + base:relationship\#IDRel 22948; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/275; + base:relationship\#ref-IDPerson_active base:person\/AbrBin-742; + base:relationship\#ref-IDPerson_passive base:person\/SchMau-2863 . + +base:relationship\/22953 a base:relationship; + base:relationship\#IDRel 22953; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/275; + base:relationship\#ref-IDPerson_active base:person\/AbrBin-742; + base:relationship\#ref-IDPerson_passive base:person\/AbrMax-694 . + +base:relationship\/22958 a base:relationship; + base:relationship\#IDRel 22958; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "After the dead of Max Abramovich"; + base:relationship\#ref-IDPerson_active base:person\/AbrBin-742; + base:relationship\#ref-IDPerson_passive base:person\/JuvKal-2061; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/22963 a base:relationship; + base:relationship\#IDRel 22963; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BorArn-00 . + +base:relationship\/22968 a base:relationship; + base:relationship\#IDRel 22968; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/BukKar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/22973 a base:relationship; + base:relationship\#DateStart_Fuzzy "1831"; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 22973; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/Z\%C3\%B6lPhi-00 . + +base:relationship\/22978 a base:relationship; + base:relationship\#DateStart_Max "1805-11-04"^^xsd:date; + base:relationship\#DateStart_Min "1805-11-04"^^xsd:date; + base:relationship\#IDRel 22978; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/B\%C3\%B6rIls-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/22983 a base:relationship; + base:relationship\#DateStart_Fuzzy "1842"; + base:relationship\#DateStart_Max "1842-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 22983; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiHei-00 . + +base:relationship\/22988 a base:relationship; + base:relationship\#IDRel 22988; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Lv-00; + base:relationship\#ref-IDOrganisation base:organisation\/4648; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00; + base:relationship\#ref-IDPerson_passive base:person\/CzaAda-00 . + +base:relationship\/22993 a base:relationship; + base:relationship\#IDRel 22993; + base:relationship\#ref-IDPerson_active base:person\/BorHei-00 . + +base:relationship\/22998 a base:relationship; + base:relationship\#IDRel 22998; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206 . + +base:relationship\/23 a base:relationship; + base:relationship\#DateStart_Fuzzy "Between January and 13th of August 1876"; + base:relationship\#DateStart_Max "1876-08-13"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 23; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1876"; + base:relationship\#comment "rehearses all the great tenor roles of his operas with him"; + base:relationship\#ref-IDPerson_active base:person\/JagFer-01; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/23003 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23003; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/MarJos-00 . + +base:relationship\/23008 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23008; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/HisSam-00 . + +base:relationship\/23013 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23013; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/IsaNat-00 . + +base:relationship\/23018 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23018; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/KorMad-00 . + +base:relationship\/23023 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23023; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/GusMax-00 . + +base:relationship\/23028 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23028; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/NatDor-00 . + +base:relationship\/23030 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23030; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/GolBec-00 . + +base:relationship\/23031 a base:relationship; + base:relationship\#DateStart_Fuzzy "17th September 1909"; + base:relationship\#IDRel 23031; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Joburg; + base:relationship\#ref-IDOrganisation base:organisation\/188; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/GolSam-1829 . + +base:relationship\/23034 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#IDRel 23034; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ZA-Cpt-00; + base:relationship\#ref-IDOrganisation base:organisation\/71932; + base:relationship\#ref-IDPerson_active base:person\/WalSau-3206; + base:relationship\#ref-IDPerson_passive base:person\/GolSer-00 . + +base:relationship\/23043 a base:relationship; + base:relationship\#DateEnd_Max "1974-02-06"^^xsd:date; + base:relationship\#DateEnd_Min "1974-02-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1965"; + base:relationship\#DateStart_Max "1965-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1965-01-01"^^xsd:date; + base:relationship\#IDRel 23043; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3135; + base:relationship\#ref-IDPerson_active base:person\/GuaAlf-00; + base:relationship\#ref-IDPerson_passive base:person\/RohJor-00 . + +base:relationship\/23048 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23048; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/VinBet-3187 . + +base:relationship\/23053 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23053; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/SpiJac-768 . + +base:relationship\/23058 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23058; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/WeiRos-3745 . + +base:relationship\/23063 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23063; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/KauHer-2100 . + +base:relationship\/23068 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23068; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/TsuLey-3807 . + +base:relationship\/23073 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23073; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/TsuMin-3112 . + +base:relationship\/23078 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23078; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/GolSop-723 . + +base:relationship\/23080 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23080; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/SchMon-3744 . + +base:relationship\/23085 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23085; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/GolJos-1841 . + +base:relationship\/23090 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23090; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/GolAbr-00 . + +base:relationship\/23093 a base:relationship; + base:relationship\#IDRel 23093; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230 . + +base:relationship\/23098 a base:relationship; + base:relationship\#IDRel 23098; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230 . + +base:relationship\/231 a base:relationship; + base:relationship\#IDRel 231; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Singing teacher "; + base:relationship\#ref-IDPerson_active base:person\/CapVic-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/23103 a base:relationship; + base:relationship\#IDRel 23103; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230 . + +base:relationship\/23108 a base:relationship; + base:relationship\#IDRel 23108; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230 . + +base:relationship\/23113 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23113; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/FriSof-00 . + +base:relationship\/23118 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23118; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/WeiShau-00 . + +base:relationship\/23123 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23123; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/Golar-00 . + +base:relationship\/23128 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23128; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/SchAba-00 . + +base:relationship\/23133 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23133; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/LipKen-762 . + +base:relationship\/23138 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23138; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-00; + base:relationship\#ref-IDOrganisation base:organisation\/60410; + base:relationship\#ref-IDPerson_active base:person\/WeiJos-3230; + base:relationship\#ref-IDPerson_passive base:person\/VinZor-3746 . + +base:relationship\/23143 a base:relationship; + base:relationship\#IDRel 23143; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23148 a base:relationship; + base:relationship\#IDRel 23148; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23153 a base:relationship; + base:relationship\#IDRel 23153; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23158 a base:relationship; + base:relationship\#IDRel 23158; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23163 a base:relationship; + base:relationship\#IDRel 23163; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23168 a base:relationship; + base:relationship\#IDRel 23168; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237 . + +base:relationship\/23173 a base:relationship; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 23173; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/SilJac-2974 . + +base:relationship\/23178 a base:relationship; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 23178; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/PotLid-2690 . + +base:relationship\/23183 a base:relationship; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 23183; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ROU-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/KomIsr-2131 . + +base:relationship\/23188 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 23188; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/AxeMor-1206 . + +base:relationship\/23193 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1910 and 1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 23193; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/SilJac-2974 . + +base:relationship\/23198 a base:relationship; + base:relationship\#DateStart_Fuzzy "1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 23198; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BE-Antw-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/WaxMor-1047 . + +base:relationship\/23201 a base:relationship; + base:relationship\#DateStart_Fuzzy "probably around 1907-1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 23201; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/49610; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/GolSam-1829 . + +base:relationship\/23205 a base:relationship; + base:relationship\#DateStart_Fuzzy "after 1906"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 23205; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-MANCH-00; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/GolJos-1841 . + +base:relationship\/23210 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 23210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-WA-00; + base:relationship\#ref-IDOrganisation base:organisation\/56190; + base:relationship\#ref-IDPerson_active base:person\/WeiSim-3237; + base:relationship\#ref-IDPerson_passive base:person\/ArnMar-1177 . + +base:relationship\/23218 a base:relationship; + base:relationship\#DateStart_Fuzzy "1931-1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1931-01-01"^^xsd:date; + base:relationship\#IDRel 23218; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CA-Toro-00; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/FisMis-00 . + +base:relationship\/23223 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920"; + base:relationship\#DateStart_Max "1920-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 23223; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Brook-00; + base:relationship\#ref-IDOrganisation base:organisation\/57520; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/RolWol-00 . + +base:relationship\/23228 a base:relationship; + base:relationship\#DateStart_Fuzzy "1912"; + base:relationship\#DateStart_Max "1912-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-01-01"^^xsd:date; + base:relationship\#IDRel 23228; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/RumJos-916 . + +base:relationship\/23233 a base:relationship; + base:relationship\#DateStart_Fuzzy "1912"; + base:relationship\#DateStart_Max "1912-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1912-01-01"^^xsd:date; + base:relationship\#IDRel 23233; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/SchAns-2854 . + +base:relationship\/23238 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 23238; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Brook-00; + base:relationship\#ref-IDOrganisation base:organisation\/575; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/KesDav-721 . + +base:relationship\/23243 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 23243; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/70968; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/SanJac-880 . + +base:relationship\/23248 a base:relationship; + base:relationship\#DateEnd_Fuzzy "before 1899"; + base:relationship\#DateEnd_Max "1899-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23248; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/SchAba-00 . + +base:relationship\/23253 a base:relationship; + base:relationship\#DateEnd_Fuzzy "before 1899"; + base:relationship\#DateEnd_Max "1899-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 23253; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/RosMax-878 . + +base:relationship\/23258 a base:relationship; + base:relationship\#IDRel 23258; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/YouBer-3320; + base:relationship\#ref-IDPerson_passive base:person\/YouCla-3321; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23263 a base:relationship; + base:relationship\#IDRel 23263; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23268 a base:relationship; + base:relationship\#IDRel 23268; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23273 a base:relationship; + base:relationship\#IDRel 23273; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23278 a base:relationship; + base:relationship\#IDRel 23278; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23283 a base:relationship; + base:relationship\#IDRel 23283; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23288 a base:relationship; + base:relationship\#IDRel 23288; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358 . + +base:relationship\/23293 a base:relationship; + base:relationship\#IDRel 23293; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Khane Lerner"; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23298 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920"; + base:relationship\#DateStart_Max "1920-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 23298; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358; + base:relationship\#ref-IDPerson_passive base:person\/KesJ-761 . + +base:relationship\/23303 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920"; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1917"; + base:relationship\#DateStart_Max "1917-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 23303; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358; + base:relationship\#ref-IDPerson_passive base:person\/SerHer-2891 . + +base:relationship\/23308 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920"; + base:relationship\#DateEnd_Max "1920-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1917"; + base:relationship\#DateStart_Max "1917-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 23308; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZayDav-3358; + base:relationship\#ref-IDPerson_passive base:person\/AdlJul-1123 . + +base:relationship\/23313 a base:relationship; + base:relationship\#IDRel 23313; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23318 a base:relationship; + base:relationship\#IDRel 23318; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23319 a base:relationship; + base:relationship\#IDRel 23319; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23323 a base:relationship; + base:relationship\#IDRel 23323; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23328 a base:relationship; + base:relationship\#IDRel 23328; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23329 a base:relationship; + base:relationship\#IDRel 23329; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23330 a base:relationship; + base:relationship\#IDRel 23330; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23333 a base:relationship; + base:relationship\#IDRel 23333; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23338 a base:relationship; + base:relationship\#IDRel 23338; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23343 a base:relationship; + base:relationship\#IDRel 23343; + base:relationship\#ref-IDPerson_active base:person\/ZeiMos-3363 . + +base:relationship\/23348 a base:relationship; + base:relationship\#IDRel 23348; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-00; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/SniLeo-3003 . + +base:relationship\/23353 a base:relationship; + base:relationship\#IDRel 23353; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/RapLis-2735 . + +base:relationship\/23358 a base:relationship; + base:relationship\#IDRel 23358; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Lod-00; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/TitMor-3077 . + +base:relationship\/23366 a base:relationship; + base:relationship\#IDRel 23366; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/69660; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/KamAvr-00 . + +base:relationship\/23368 a base:relationship; + base:relationship\#IDRel 23368; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/69660; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/SpiJac-768 . + +base:relationship\/23373 a base:relationship; + base:relationship\#IDRel 23373; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/69660; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/AdlSam-740 . + +base:relationship\/23378 a base:relationship; + base:relationship\#IDRel 23378; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Lod-00; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/ZanYit-3349 . + +base:relationship\/23383 a base:relationship; + base:relationship\#IDRel 23383; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/FisAbr-3634 . + +base:relationship\/23388 a base:relationship; + base:relationship\#IDRel 23388; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Lod-00; + base:relationship\#ref-IDPerson_active base:person\/ZheLey-3381; + base:relationship\#ref-IDPerson_passive base:person\/BerHer-1279 . + +base:relationship\/23393 a base:relationship; + base:relationship\#IDRel 23393; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/ViaPau-00 . + +base:relationship\/23398 a base:relationship; + base:relationship\#IDRel 23398; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/LauHei-00 . + +base:relationship\/23403 a base:relationship; + base:relationship\#IDRel 23403; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/PriCar-00 . + +base:relationship\/23408 a base:relationship; + base:relationship\#IDRel 23408; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WolHan-00 . + +base:relationship\/23413 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 23413; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-Bayr-00; + base:relationship\#ref-IDOrganisation base:organisation\/122; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/LevHer-01 . + +base:relationship\/23418 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1878"; + base:relationship\#DateEnd_Max "1878-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 23418; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/GauJud-00 . + +base:relationship\/23423 a base:relationship; + base:relationship\#DateStart_Fuzzy "13th August 1876"; + base:relationship\#DateStart_Max "1876-08-13"^^xsd:date; + base:relationship\#DateStart_Min "1876-08-13"^^xsd:date; + base:relationship\#IDRel 23423; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-Bayr-00; + base:relationship\#ref-IDOrganisation base:organisation\/122; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/RicHan-00 . + +base:relationship\/23428 a base:relationship; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 23428; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-MUC-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/SchMal-00 . + +base:relationship\/23433 a base:relationship; + base:relationship\#IDRel 23433; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/MeyGia-00 . + +base:relationship\/23438 a base:relationship; + base:relationship\#IDRel 23438; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/B\%C3\%BClHan-00 . + +base:relationship\/23443 a base:relationship; + base:relationship\#IDRel 23443; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/23448 a base:relationship; + base:relationship\#IDRel 23448; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/NieFri-00 . + +base:relationship\/23453 a base:relationship; + base:relationship\#DateStart_Fuzzy "1861"; + base:relationship\#DateStart_Max "1861-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1861-01-01"^^xsd:date; + base:relationship\#IDRel 23453; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/BauCha-00 . + +base:relationship\/23458 a base:relationship; + base:relationship\#DateStart_Fuzzy "1854"; + base:relationship\#DateStart_Max "1854-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1854-01-01"^^xsd:date; + base:relationship\#IDRel 23458; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/HerGeo-00 . + +base:relationship\/23463 a base:relationship; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 23463; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/LauJes-00 . + +base:relationship\/23468 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1859"; + base:relationship\#DateEnd_Max "1859-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1859-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 23468; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/RitJul-00 . + +base:relationship\/23473 a base:relationship; + base:relationship\#IDRel 23473; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/RitKar-00 . + +base:relationship\/23478 a base:relationship; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 23478; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/M\%C3\%BClAle-00 . + +base:relationship\/23483 a base:relationship; + base:relationship\#DateStart_Fuzzy "Between 1842 and 1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1842-01-01"^^xsd:date; + base:relationship\#IDRel 23483; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-Dresd-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/BakMik-00 . + +base:relationship\/23488 a base:relationship; + base:relationship\#DateStart_Fuzzy "24th November 1836"; + base:relationship\#DateStart_Max "1836-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1836-11-24"^^xsd:date; + base:relationship\#IDRel 23488; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/PlaChr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23493 a base:relationship; + base:relationship\#IDRel 23493; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WagAlb-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/23498 a base:relationship; + base:relationship\#DateStart_Fuzzy "1831"; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 23498; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDOrganisation base:organisation\/2695; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WeiThe-00 . + +base:relationship\/23503 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1831"; + base:relationship\#DateEnd_Max "1831-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1831-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1828"; + base:relationship\#DateStart_Max "1828-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1828-01-01"^^xsd:date; + base:relationship\#IDRel 23503; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/M\%C3\%BClChr-00 . + +base:relationship\/23508 a base:relationship; + base:relationship\#IDRel 23508; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/RosJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/23518 a base:relationship; + base:relationship\#IDRel 23518; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WagCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/23523 a base:relationship; + base:relationship\#DateStart_Fuzzy "1852"; + base:relationship\#DateStart_Max "1852-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1852-01-01"^^xsd:date; + base:relationship\#IDRel 23523; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WesMat-00 . + +base:relationship\/23528 a base:relationship; + base:relationship\#DateStart_Fuzzy "1852"; + base:relationship\#DateStart_Max "1852-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1852-01-01"^^xsd:date; + base:relationship\#IDRel 23528; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CH-Zur-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WesOtt-00 . + +base:relationship\/23533 a base:relationship; + base:relationship\#IDRel 23533; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-Dresd-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/SemGot-00 . + +base:relationship\/23538 a base:relationship; + base:relationship\#DateStart_Fuzzy "10th October 1853"; + base:relationship\#DateStart_Max "1853-10-10"^^xsd:date; + base:relationship\#DateStart_Min "1853-10-10"^^xsd:date; + base:relationship\#IDRel 23538; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WagCos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23543 a base:relationship; + base:relationship\#IDRel 23543; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/IiK\%C3\%B6n-00 . + +base:relationship\/23548 a base:relationship; + base:relationship\#IDRel 23548; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/3820; + base:relationship\#ref-IDPerson_active base:person\/BogDaw-00; + base:relationship\#ref-IDPerson_passive base:person\/Edw-00 . + +base:relationship\/23549 a base:relationship; + base:relationship\#IDRel 23549; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/SchArt-00 . + +base:relationship\/23554 a base:relationship; + base:relationship\#IDRel 23554; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/IT-Ven-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/ZicEdm-00 . + +base:relationship\/23559 a base:relationship; + base:relationship\#IDRel 23559; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/LieRud-00 . + +base:relationship\/23564 a base:relationship; + base:relationship\#DateStart_Fuzzy "1862"; + base:relationship\#DateStart_Max "1862-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1862-01-01"^^xsd:date; + base:relationship\#IDRel 23564; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/SchFra-02 . + +base:relationship\/23569 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1842"; + base:relationship\#DateEnd_Max "1842-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1842-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "September 1839"; + base:relationship\#DateStart_Max "1839-09-30"^^xsd:date; + base:relationship\#DateStart_Min "1839-09-01"^^xsd:date; + base:relationship\#IDRel 23569; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDOrganisation base:organisation\/72107; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/DelFra-01 . + +base:relationship\/23574 a base:relationship; + base:relationship\#IDRel 23574; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/DukGra-00 . + +base:relationship\/23599 a base:relationship; + base:relationship\#IDRel 23599; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/236 a base:relationship; + base:relationship\#IDRel 236; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/JoaAma-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/23604 a base:relationship; + base:relationship\#IDRel 23604; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/23609 a base:relationship; + base:relationship\#IDRel 23609; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/23614 a base:relationship; + base:relationship\#IDRel 23614; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/23619 a base:relationship; + base:relationship\#IDRel 23619; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/23624 a base:relationship; + base:relationship\#IDRel 23624; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386 . + +base:relationship\/23629 a base:relationship; + base:relationship\#DateStart_Fuzzy "probably 1893 or 1894"; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 23629; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Lv-00; + base:relationship\#ref-IDOrganisation base:organisation\/70020; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386; + base:relationship\#ref-IDPerson_passive base:person\/PraReg-2695 . + +base:relationship\/23634 a base:relationship; + base:relationship\#IDRel 23634; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386; + base:relationship\#ref-IDPerson_passive base:person\/ZibEla-3385; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/23639 a base:relationship; + base:relationship\#DateStart_Fuzzy "1894"; + base:relationship\#DateStart_Max "1894-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1894-01-01"^^xsd:date; + base:relationship\#IDRel 23639; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UA-Lv-00; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386; + base:relationship\#ref-IDPerson_passive base:person\/ZwiLou-814; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/23644 a base:relationship; + base:relationship\#DateStart_Fuzzy "probably between 1906 and 1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 23644; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ZibFri-3386; + base:relationship\#ref-IDPerson_passive base:person\/GolLey-1852; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/23649 a base:relationship; + base:relationship\#IDRel 23649; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23654 a base:relationship; + base:relationship\#IDRel 23654; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23659 a base:relationship; + base:relationship\#IDRel 23659; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23664 a base:relationship; + base:relationship\#IDRel 23664; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23669 a base:relationship; + base:relationship\#IDRel 23669; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23674 a base:relationship; + base:relationship\#IDRel 23674; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391 . + +base:relationship\/23679 a base:relationship; + base:relationship\#IDRel 23679; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391; + base:relationship\#ref-IDPerson_passive base:person\/ZieMau-3390; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/23684 a base:relationship; + base:relationship\#IDRel 23684; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391; + base:relationship\#ref-IDPerson_passive base:person\/SegMor-2878 . + +base:relationship\/23689 a base:relationship; + base:relationship\#IDRel 23689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391; + base:relationship\#ref-IDPerson_passive base:person\/GolIts-1826 . + +base:relationship\/23694 a base:relationship; + base:relationship\#IDRel 23694; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Samuel Rosenstein"; + base:relationship\#ref-IDPerson_active base:person\/ZieRos-3391; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/23699 a base:relationship; + base:relationship\#IDRel 23699; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23704 a base:relationship; + base:relationship\#IDRel 23704; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23709 a base:relationship; + base:relationship\#IDRel 23709; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23714 a base:relationship; + base:relationship\#IDRel 23714; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23719 a base:relationship; + base:relationship\#IDRel 23719; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23724 a base:relationship; + base:relationship\#IDRel 23724; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23729 a base:relationship; + base:relationship\#IDRel 23729; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23734 a base:relationship; + base:relationship\#IDRel 23734; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23739 a base:relationship; + base:relationship\#DateStart_Fuzzy "1914"; + base:relationship\#DateStart_Max "1914-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1914-01-01"^^xsd:date; + base:relationship\#IDRel 23739; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rosa Rubin"; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393 . + +base:relationship\/23744 a base:relationship; + base:relationship\#DateStart_Fuzzy "1903"; + base:relationship\#DateStart_Max "1903-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1903-01-01"^^xsd:date; + base:relationship\#IDRel 23744; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/Uni-DiJeSt-151; + base:relationship\#ref-IDOrganisation base:organisation\/71060; + base:relationship\#ref-IDPerson_active base:person\/ZigWil-3393; + base:relationship\#ref-IDPerson_passive base:person\/MorAar-3747 . + +base:relationship\/23749 a base:relationship; + base:relationship\#IDRel 23749; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Brook-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/GolAvr-1865 . + +base:relationship\/23754 a base:relationship; + base:relationship\#IDRel 23754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Phila-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/NatCha-745 . + +base:relationship\/23759 a base:relationship; + base:relationship\#IDRel 23759; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/GolAbr-00 . + +base:relationship\/23764 a base:relationship; + base:relationship\#IDRel 23764; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/RosAba-3749 . + +base:relationship\/23769 a base:relationship; + base:relationship\#IDRel 23769; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Markus Gazovski"; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23774 a base:relationship; + base:relationship\#IDRel 23774; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Harry Feinberg"; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23779 a base:relationship; + base:relationship\#IDRel 23779; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-Liv-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/KurMax-3748 . + +base:relationship\/23784 a base:relationship; + base:relationship\#IDRel 23784; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-MANCH-00; + base:relationship\#ref-IDOrganisation base:organisation\/71104; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/JacJac-902 . + +base:relationship\/23789 a base:relationship; + base:relationship\#IDRel 23789; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Esther Vaksman"; + base:relationship\#ref-IDLocation base:location\/EN-MANCH-00; + base:relationship\#ref-IDOrganisation base:organisation\/71104; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23794 a base:relationship; + base:relationship\#DateStart_Fuzzy "1890"; + base:relationship\#IDRel 23794; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/MitAar-2495 . + +base:relationship\/23799 a base:relationship; + base:relationship\#IDRel 23799; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23804 a base:relationship; + base:relationship\#IDRel 23804; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23809 a base:relationship; + base:relationship\#IDRel 23809; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23814 a base:relationship; + base:relationship\#IDRel 23814; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23819 a base:relationship; + base:relationship\#IDRel 23819; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23824 a base:relationship; + base:relationship\#IDRel 23824; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23829 a base:relationship; + base:relationship\#IDRel 23829; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23834 a base:relationship; + base:relationship\#IDRel 23834; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23839 a base:relationship; + base:relationship\#IDRel 23839; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399 . + +base:relationship\/23844 a base:relationship; + base:relationship\#IDRel 23844; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Bost-00; + base:relationship\#ref-IDPerson_active base:person\/ZilKar-3399; + base:relationship\#ref-IDPerson_passive base:person\/SilJac-2974 . + +base:relationship\/23845 a base:relationship; + base:relationship\#IDRel 23845; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23849 a base:relationship; + base:relationship\#IDRel 23849; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23851 a base:relationship; + base:relationship\#IDRel 23851; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23855 a base:relationship; + base:relationship\#IDRel 23855; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23857 a base:relationship; + base:relationship\#IDRel 23857; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23860 a base:relationship; + base:relationship\#IDRel 23860; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23864 a base:relationship; + base:relationship\#IDRel 23864; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23866 a base:relationship; + base:relationship\#IDRel 23866; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDOrganisation base:organisation\/71132; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409; + base:relationship\#ref-IDPerson_passive base:person\/GerAdo-1753 . + +base:relationship\/23867 a base:relationship; + base:relationship\#IDRel 23867; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDOrganisation base:organisation\/71128; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409; + base:relationship\#ref-IDPerson_passive base:person\/ShoBen-2939 . + +base:relationship\/23870 a base:relationship; + base:relationship\#IDRel 23870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "John Thomashefsky"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/568; + base:relationship\#ref-IDPerson_active base:person\/ZinYos-3409 . + +base:relationship\/23875 a base:relationship; + base:relationship\#IDRel 23875; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GolNaf-00 . + +base:relationship\/23876 a base:relationship; + base:relationship\#IDRel 23876; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/ObeSop-2587 . + +base:relationship\/23877 a base:relationship; + base:relationship\#IDRel 23877; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/AltBor-1144 . + +base:relationship\/23879 a base:relationship; + base:relationship\#IDRel 23879; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/TagAar-3046 . + +base:relationship\/23884 a base:relationship; + base:relationship\#IDRel 23884; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Mendele Abramovitsh"; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706 . + +base:relationship\/23889 a base:relationship; + base:relationship\#IDRel 23889; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/KatJac-2099 . + +base:relationship\/23894 a base:relationship; + base:relationship\#DateStart_Fuzzy "1879"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 23894; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/SpiJac-768 . + +base:relationship\/23899 a base:relationship; + base:relationship\#DateStart_Fuzzy "1879"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 23899; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GroIsr-00 . + +base:relationship\/239 a base:relationship; + base:relationship\#IDRel 239; + base:relationship\#ref-IDPerson_active base:person\/KonFid-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/23904 a base:relationship; + base:relationship\#IDRel 23904; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GolRum-00 . + +base:relationship\/23909 a base:relationship; + base:relationship\#IDRel 23909; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UA-Od-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/MilNik-00 . + +base:relationship\/23914 a base:relationship; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 23914; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GorJac-698 . + +base:relationship\/23919 a base:relationship; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 23919; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/KraPhi-KraPhi-967 . + +base:relationship\/23920 a base:relationship; + base:relationship\#DateStart_Fuzzy "1892"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 23920; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/61220; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/MogSig-685 . + +base:relationship\/23924 a base:relationship; + base:relationship\#DateStart_Fuzzy "probably 1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 23924; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/213; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/HeiHei-00 . + +base:relationship\/23929 a base:relationship; + base:relationship\#DateStart_Fuzzy "1886"; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 23929; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/ManJos-732 . + +base:relationship\/23934 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 23934; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69650; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/WacJos-733 . + +base:relationship\/23939 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 23939; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69650; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/BauAbr-728 . + +base:relationship\/23944 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 23944; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69650; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/KarMax-703 . + +base:relationship\/23949 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 23949; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/69650; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GroIsr-00 . + +base:relationship\/23954 a base:relationship; + base:relationship\#DateStart_Fuzzy "probably 1881 or 1882"; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1881-01-01"^^xsd:date; + base:relationship\#IDRel 23954; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/Lat-DiJeSt-140; + base:relationship\#ref-IDOrganisation base:organisation\/69650; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/TsuLey-3807 . + +base:relationship\/23955 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1840"; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#IDRel 23955; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/SE-Stock-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/MenFel-00 . + +base:relationship\/23959 a base:relationship; + base:relationship\#DateEnd_Max "1887-11-02"^^xsd:date; + base:relationship\#DateEnd_Min "1887-11-02"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1857"; + base:relationship\#IDRel 23959; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/CatJen-00 . + +base:relationship\/23964 a base:relationship; + base:relationship\#DateEnd_Max "1887-11-02"^^xsd:date; + base:relationship\#DateEnd_Min "1887-11-02"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1852"; + base:relationship\#IDRel 23964; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/GolOtt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/23969 a base:relationship; + base:relationship\#DateEnd_Fuzzy "between 1850 and 1852"; + base:relationship\#DateStart_Fuzzy "between 1850 and 1852"; + base:relationship\#IDRel 23969; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/BarPhi-00 . + +base:relationship\/23974 a base:relationship; + base:relationship\#DateEnd_Max "1849-08-06"^^xsd:date; + base:relationship\#DateEnd_Min "1849-08-06"^^xsd:date; + base:relationship\#DateStart_Max "1849-08-06"^^xsd:date; + base:relationship\#DateStart_Min "1849-08-06"^^xsd:date; + base:relationship\#IDRel 23974; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BadBad-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/BenJul-00 . + +base:relationship\/23979 a base:relationship; + base:relationship\#IDRel 23979; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Jay Adler"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/23984 a base:relationship; + base:relationship\#IDRel 23984; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/AdlSte-1127; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/23985 a base:relationship; + base:relationship\#IDRel 23985; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Luther Adler"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/23990 a base:relationship; + base:relationship\#IDRel 23990; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Charles Adler"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/23992 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1891"; + base:relationship\#DateEnd_Max "1891-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1891-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1887"; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 23992; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Dinah Shtettin"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23995 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1926"; + base:relationship\#DateEnd_Max "1926-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1926-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 23995; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Sara Adler"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/23999 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1886"; + base:relationship\#DateEnd_Max "1886-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1886-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 23999; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Sonya Adler"; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/24 a base:relationship; + base:relationship\#IDRel 24; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Acting lessons"; + base:relationship\#ref-IDPerson_active base:person\/KaiJos-00; + base:relationship\#ref-IDPerson_passive base:person\/KupCae-00 . + +base:relationship\/24004 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1895 and 1897"; + base:relationship\#DateStart_Max "1897-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 24004; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/331; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GutMil-1949 . + +base:relationship\/24009 a base:relationship; + base:relationship\#IDRel 24009; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/KobLeo-975 . + +base:relationship\/24014 a base:relationship; + base:relationship\#IDRel 24014; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/GorJac-698 . + +base:relationship\/24019 a base:relationship; + base:relationship\#IDRel 24019; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706 . + +base:relationship\/24024 a base:relationship; + base:relationship\#IDRel 24024; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706 . + +base:relationship\/24029 a base:relationship; + base:relationship\#IDRel 24029; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706 . + +base:relationship\/24034 a base:relationship; + base:relationship\#IDRel 24034; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/AdlJul-1122; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24039 a base:relationship; + base:relationship\#IDRel 24039; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/AdlJac-706; + base:relationship\#ref-IDPerson_passive base:person\/AdlCel-1117; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24044 a base:relationship; + base:relationship\#IDRel 24044; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/ThoBes-770 . + +base:relationship\/24049 a base:relationship; + base:relationship\#IDRel 24049; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/AdlSar-1126 . + +base:relationship\/24054 a base:relationship; + base:relationship\#IDRel 24054; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/AdlJac-706 . + +base:relationship\/24059 a base:relationship; + base:relationship\#IDRel 24059; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Nahum Rakow"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714 . + +base:relationship\/24064 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 24064; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/62050; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/KalBer-00 . + +base:relationship\/24069 a base:relationship; + base:relationship\#DateStart_Fuzzy "5th September 1898"; + base:relationship\#DateStart_Max "1898-09-05"^^xsd:date; + base:relationship\#DateStart_Min "1898-09-05"^^xsd:date; + base:relationship\#IDRel 24069; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/331; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/PraReg-2695 . + +base:relationship\/24074 a base:relationship; + base:relationship\#DateStart_Fuzzy "5th September 1898"; + base:relationship\#DateStart_Max "1898-09-05"^^xsd:date; + base:relationship\#DateStart_Min "1898-09-05"^^xsd:date; + base:relationship\#IDRel 24074; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/331; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/KesDav-721 . + +base:relationship\/24079 a base:relationship; + base:relationship\#IDRel 24079; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/FinMor-700 . + +base:relationship\/24084 a base:relationship; + base:relationship\#IDRel 24084; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/MogSig-685 . + +base:relationship\/24089 a base:relationship; + base:relationship\#IDRel 24089; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/Mol-DiJeSt-73; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/GolNaf-00 . + +base:relationship\/24090 a base:relationship; + base:relationship\#IDRel 24090; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/FeiLil-1627; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24094 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1909"; + base:relationship\#DateStart_Max "1909-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1909-06-01"^^xsd:date; + base:relationship\#IDRel 24094; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/563; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/ZanYit-3349 . + +base:relationship\/24099 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1908"; + base:relationship\#DateEnd_Max "1908-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1908-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "between 1907 and 1908"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 24099; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/ZibFri-3386 . + +base:relationship\/24104 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1908"; + base:relationship\#DateEnd_Max "1908-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1908-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "between 1907 and 1908"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 24104; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/ZucReg-3759 . + +base:relationship\/24109 a base:relationship; + base:relationship\#DateStart_Fuzzy "1908"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-01-01"^^xsd:date; + base:relationship\#IDRel 24109; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UA-Lv-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/GimYaa-1768 . + +base:relationship\/24114 a base:relationship; + base:relationship\#DateStart_Fuzzy "1908"; + base:relationship\#DateStart_Max "1908-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1908-01-01"^^xsd:date; + base:relationship\#IDRel 24114; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/MarMax-2402 . + +base:relationship\/24119 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1906 and 1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 24119; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/NatCha-745 . + +base:relationship\/24124 a base:relationship; + base:relationship\#IDRel 24124; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/FeiDin-817; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/24129 a base:relationship; + base:relationship\#IDRel 24129; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/LipKen-762 . + +base:relationship\/24134 a base:relationship; + base:relationship\#IDRel 24134; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Boris Thomashefsky"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714 . + +base:relationship\/24149 a base:relationship; + base:relationship\#IDRel 24149; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "adopted daughter"; + base:relationship\#ref-IDPerson_active base:person\/FeiSig-714; + base:relationship\#ref-IDPerson_passive base:person\/AdlCel-1117; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24154 a base:relationship; + base:relationship\#IDRel 24154; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/AlbMar-00; + base:relationship\#ref-IDPerson_passive base:person\/RosGio-00 . + +base:relationship\/24159 a base:relationship; + base:relationship\#IDRel 24159; + base:relationship\#ref-IDPerson_active base:person\/AlbMar-00 . + +base:relationship\/24164 a base:relationship; + base:relationship\#IDRel 24164; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00 . + +base:relationship\/24169 a base:relationship; + base:relationship\#IDRel 24169; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00 . + +base:relationship\/24174 a base:relationship; + base:relationship\#IDRel 24174; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00 . + +base:relationship\/24179 a base:relationship; + base:relationship\#IDRel 24179; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/PasArt-00 . + +base:relationship\/24184 a base:relationship; + base:relationship\#IDRel 24184; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3335; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/RulTit-00 . + +base:relationship\/24189 a base:relationship; + base:relationship\#IDRel 24189; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/CiaTeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/24194 a base:relationship; + base:relationship\#IDRel 24194; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/PatAde-00 . + +base:relationship\/24199 a base:relationship; + base:relationship\#IDRel 24199; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/CoqCon-01 . + +base:relationship\/242 a base:relationship; + base:relationship\#IDRel 242; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#Timeperiod "1875"; + base:relationship\#comment "First close connection to Johannes Brahms, close friendship, break 1875 when Levi worked together with Richard Wagner and became friend of him."; + base:relationship\#ref-IDPerson_active base:person\/LevHer-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/24204 a base:relationship; + base:relationship\#IDRel 24204; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3335; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEnr-00 . + +base:relationship\/24209 a base:relationship; + base:relationship\#IDRel 24209; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/DusEle-01 . + +base:relationship\/24214 a base:relationship; + base:relationship\#IDRel 24214; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/DesSus-00 . + +base:relationship\/24219 a base:relationship; + base:relationship\#IDRel 24219; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/DiLTI-00 . + +base:relationship\/24224 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1890"; + base:relationship\#DateEnd_Max "1890-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1890-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1888"; + base:relationship\#DateStart_Max "1888-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 24224; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2580; + base:relationship\#ref-IDPerson_active base:person\/CiaCes-00; + base:relationship\#ref-IDPerson_passive base:person\/BerSar-00 . + +base:relationship\/24229 a base:relationship; + base:relationship\#IDRel 24229; + base:relationship\#ref-IDPerson_active base:person\/PhiAdo-00 . + +base:relationship\/24230 a base:relationship; + base:relationship\#IDRel 24230; + base:relationship\#ref-IDPerson_active base:person\/PhiAdo-00 . + +base:relationship\/24234 a base:relationship; + base:relationship\#IDRel 24234; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/SE-Stock-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/OscGus-00 . + +base:relationship\/24239 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1847"; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#IDRel 24239; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/LabFre-00 . + +base:relationship\/24244 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1847"; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#IDRel 24244; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/LabLui-00 . + +base:relationship\/24249 a base:relationship; + base:relationship\#IDRel 24249; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/AbbEmm-00 . + +base:relationship\/24254 a base:relationship; + base:relationship\#DateEnd_Fuzzy "between 1847 and 1848"; + base:relationship\#DateStart_Fuzzy "between 1847 and 1848"; + base:relationship\#IDRel 24254; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/Wic-00 . + +base:relationship\/24259 a base:relationship; + base:relationship\#DateEnd_Max "1848-08-24"^^xsd:date; + base:relationship\#DateEnd_Min "1848-08-24"^^xsd:date; + base:relationship\#DateStart_Max "1847-05-04"^^xsd:date; + base:relationship\#DateStart_Min "1847-05-04"^^xsd:date; + base:relationship\#IDRel 24259; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/BunAlf-00 . + +base:relationship\/24264 a base:relationship; + base:relationship\#DateEnd_Fuzzy "October 1844"; + base:relationship\#DateStart_Fuzzy "October 1844"; + base:relationship\#IDRel 24264; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/JohLou-00 . + +base:relationship\/24269 a base:relationship; + base:relationship\#DateEnd_Fuzzy "April 1873"; + base:relationship\#DateEnd_Max "1873-04-30"^^xsd:date; + base:relationship\#DateEnd_Min "1873-04-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "April 1873"; + base:relationship\#DateStart_Max "1873-04-30"^^xsd:date; + base:relationship\#DateStart_Min "1873-04-01"^^xsd:date; + base:relationship\#IDRel 24269; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/SchCla-00 . + +base:relationship\/24274 a base:relationship; + base:relationship\#DateEnd_Fuzzy "October 1844"; + base:relationship\#DateEnd_Max "1844-10-31"^^xsd:date; + base:relationship\#DateEnd_Min "1844-10-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "October 1844"; + base:relationship\#DateStart_Max "1844-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1844-10-01"^^xsd:date; + base:relationship\#IDRel 24274; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Felix Mendelssohn Bartholdy"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/MenFel-00 . + +base:relationship\/24284 a base:relationship; + base:relationship\#DateEnd_Fuzzy "November 1874"; + base:relationship\#DateStart_Fuzzy "1866"; + base:relationship\#IDRel 24284; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDOrganisation base:organisation\/176; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/BarLaw-00 . + +base:relationship\/24289 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1865"; + base:relationship\#DateStart_Fuzzy "1861"; + base:relationship\#IDRel 24289; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "The two also toured."; + base:relationship\#ref-IDLocation base:location\/USA-Phila-00; + base:relationship\#ref-IDOrganisation base:organisation\/257; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/ForEdw-00 . + +base:relationship\/24291 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1861"; + base:relationship\#DateStart_Fuzzy "1860"; + base:relationship\#IDRel 24291; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Bost-00; + base:relationship\#ref-IDOrganisation base:organisation\/2726; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/DavEdw-00 . + +base:relationship\/24292 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Summer 1860"; + base:relationship\#DateEnd_Max "1860-09-21"^^xsd:date; + base:relationship\#DateEnd_Min "1860-06-22"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1857"; + base:relationship\#DateStart_Min "1857-08-15"^^xsd:date; + base:relationship\#IDRel 24292; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "another manager was William Wheatley"; + base:relationship\#ref-IDLocation base:location\/USA-Phila-00; + base:relationship\#ref-IDOrganisation base:organisation\/284; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/DreJoh-00 . + +base:relationship\/24294 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1884"; + base:relationship\#DateEnd_Max "1884-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1884-01-01"^^xsd:date; + base:relationship\#DateStart_Min "1878-05-22"^^xsd:date; + base:relationship\#IDRel 24294; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-Bost-00; + base:relationship\#ref-IDOrganisation base:organisation\/2801; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/AndMar-00 . + +base:relationship\/24319 a base:relationship; + base:relationship\#IDRel 24319; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/JefJos-00 . + +base:relationship\/24324 a base:relationship; + base:relationship\#IDRel 24324; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/IrvHen-00 . + +base:relationship\/24329 a base:relationship; + base:relationship\#IDRel 24329; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/WinWil-00 . + +base:relationship\/24334 a base:relationship; + base:relationship\#IDRel 24334; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "McCullough also helped many younger actors to develop their careers one such as Mary Anderson"; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/AndMar-00 . + +base:relationship\/24339 a base:relationship; + base:relationship\#DateEnd_Max "1878-01-17"^^xsd:date; + base:relationship\#DateEnd_Min "1878-01-17"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1878"; + base:relationship\#DateStart_Max "1878-01-17"^^xsd:date; + base:relationship\#DateStart_Min "1878-01-17"^^xsd:date; + base:relationship\#IDRel 24339; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "He gave a benefit for John Brougham"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/180; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/BroJoh-00 . + +base:relationship\/24344 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1876"; + base:relationship\#DateEnd_Max "1876-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1876"; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 24344; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-SanFranc-02; + base:relationship\#ref-IDPerson_active base:person\/MccJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/Edw-00 . + +base:relationship\/24347 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Summer 1823"; + base:relationship\#DateEnd_Max "1823-09-22"^^xsd:date; + base:relationship\#DateEnd_Min "1823-06-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 17.02.1821"; + base:relationship\#DateStart_Max "1821-02-17"^^xsd:date; + base:relationship\#IDRel 24347; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GilEdw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/24352 a base:relationship; + base:relationship\#DateEnd_Max "1861-01-17"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 17.02.1821"; + base:relationship\#DateStart_Max "1821-02-17"^^xsd:date; + base:relationship\#IDRel 24352; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GilEli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/24357 a base:relationship; + base:relationship\#DateStart_Fuzzy "1824"; + base:relationship\#DateStart_Max "1824-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1824-01-01"^^xsd:date; + base:relationship\#IDRel 24357; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CraPat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/24362 a base:relationship; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 24362; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CraPat-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/24367 a base:relationship; + base:relationship\#DateStart_Fuzzy "1831"; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 24367; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/RaeCat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/24372 a base:relationship; + base:relationship\#DateEnd_Max "1832-09-14"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1831"; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 24372; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/RaeWil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/24377 a base:relationship; + base:relationship\#DateEnd_Max "1832-09-14"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1831"; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 24377; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "School in Durham"; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GraJ-00 . + +base:relationship\/24382 a base:relationship; + base:relationship\#DateStart_Max "1832-09-14"^^xsd:date; + base:relationship\#IDRel 24382; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/NicJas-00 . + +base:relationship\/24387 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably 14.09.1832"; + base:relationship\#DateStart_Max "1832-09-14"^^xsd:date; + base:relationship\#IDRel 24387; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/NicFan-00 . + +base:relationship\/24392 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1841"; + base:relationship\#DateEnd_Max "1841-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1841-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1837-07-23"^^xsd:date; + base:relationship\#IDRel 24392; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/JamTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/24397 a base:relationship; + base:relationship\#DateEnd_Fuzzy "July 1841"; + base:relationship\#DateEnd_Max "1841-07-31"^^xsd:date; + base:relationship\#DateEnd_Min "1841-07-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1840"; + base:relationship\#DateStart_Max "1840-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1840-01-01"^^xsd:date; + base:relationship\#IDRel 24397; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/ElpJoh-00 . + +base:relationship\/24402 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1841"; + base:relationship\#DateEnd_Max "1841-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1841"; + base:relationship\#DateStart_Min "1841-01-01"^^xsd:date; + base:relationship\#IDRel 24402; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/KelFan-00 . + +base:relationship\/24407 a base:relationship; + base:relationship\#DateStart_Max "1843-04-14"^^xsd:date; + base:relationship\#IDRel 24407; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MalJam-00 . + +base:relationship\/24412 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1843"; + base:relationship\#DateEnd_Max "1843-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1843"; + base:relationship\#DateStart_Min "1843-01-01"^^xsd:date; + base:relationship\#IDRel 24412; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/ReuHei-00 . + +base:relationship\/24417 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1843"; + base:relationship\#DateEnd_Max "1843-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1843"; + base:relationship\#DateStart_Min "1843-01-01"^^xsd:date; + base:relationship\#IDRel 24417; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BulEdu-00 . + +base:relationship\/24422 a base:relationship; + base:relationship\#DateEnd_Fuzzy "October 1843"; + base:relationship\#DateEnd_Max "1843-10-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "October 1843"; + base:relationship\#DateStart_Min "1843-10-01"^^xsd:date; + base:relationship\#IDRel 24422; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/AbrIgn-00 . + +base:relationship\/24427 a base:relationship; + base:relationship\#DateEnd_Fuzzy "August 1845"; + base:relationship\#DateEnd_Max "1845-08-31"^^xsd:date; + base:relationship\#DateEnd_Min "1845-08-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1844"; + base:relationship\#DateStart_Max "1844-02-29"^^xsd:date; + base:relationship\#DateStart_Min "1844-02-01"^^xsd:date; + base:relationship\#IDRel 24427; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/LisFra-00 . + +base:relationship\/24432 a base:relationship; + base:relationship\#DateEnd_Max "1844-03-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1844"; + base:relationship\#DateStart_Max "1844-02-29"^^xsd:date; + base:relationship\#DateStart_Min "1844-02-01"^^xsd:date; + base:relationship\#IDRel 24432; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/DujAle-00 . + +base:relationship\/24437 a base:relationship; + base:relationship\#DateEnd_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Fuzzy "July 1846"; + base:relationship\#DateStart_Max "1846-07-31"^^xsd:date; + base:relationship\#DateStart_Min "1846-07-01"^^xsd:date; + base:relationship\#IDRel 24437; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiFra-00 . + +base:relationship\/24442 a base:relationship; + base:relationship\#DateEnd_Fuzzy "June 1850"; + base:relationship\#DateEnd_Max "1850-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1850-06-01"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-07"^^xsd:date; + base:relationship\#IDRel 24442; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BavLud-00 . + +base:relationship\/24447 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24447; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BavThe-00 . + +base:relationship\/24452 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24452; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/DahCon-00 . + +base:relationship\/24457 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24457; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HagCha-00 . + +base:relationship\/24462 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24462; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/KleLeo-00 . + +base:relationship\/24467 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24467; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/NusFri-00 . + +base:relationship\/24472 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "November 1846"; + base:relationship\#DateStart_Max "1846-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1846-11-01"^^xsd:date; + base:relationship\#IDRel 24472; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/PecHan-00 . + +base:relationship\/24477 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24477; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HoeJos-00 . + +base:relationship\/24482 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24482; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeKar-00 . + +base:relationship\/24487 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24487; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GanCre-00 . + +base:relationship\/24492 a base:relationship; + base:relationship\#IDRel 24492; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/ThiBer-00 . + +base:relationship\/24497 a base:relationship; + base:relationship\#IDRel 24497; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MalHei-00 . + +base:relationship\/245 a base:relationship; + base:relationship\#IDRel 245; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1892-1910"; + base:relationship\#comment "divorced"; + base:relationship\#ref-IDPerson_active base:person\/MotHen-00; + base:relationship\#ref-IDPerson_passive base:person\/MotFel-00 . + +base:relationship\/24502 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#DateStart_Max "1847-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1847-01-01"^^xsd:date; + base:relationship\#IDRel 24502; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/TanHei-00 . + +base:relationship\/24507 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1847-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1847-01-01"^^xsd:date; + base:relationship\#IDRel 24507; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BerFra-01 . + +base:relationship\/24512 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24512; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CurJos-00 . + +base:relationship\/24517 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24517; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CurLud-00 . + +base:relationship\/24522 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24522; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MauGeo-00 . + +base:relationship\/24527 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1847"; + base:relationship\#DateStart_Max "1847-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1847-06-01"^^xsd:date; + base:relationship\#IDRel 24527; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GunKar-00 . + +base:relationship\/24532 a base:relationship; + base:relationship\#DateStart_Fuzzy "June 1847"; + base:relationship\#DateStart_Max "1847-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1847-06-01"^^xsd:date; + base:relationship\#IDRel 24532; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/GunFan-00 . + +base:relationship\/24537 a base:relationship; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#DateStart_Max "1847-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1847-01-01"^^xsd:date; + base:relationship\#IDRel 24537; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/KarEus-00 . + +base:relationship\/24542 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 5.10.1846"; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24542; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MasAug-00 . + +base:relationship\/24547 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "November 1847"; + base:relationship\#DateStart_Max "1847-11-30"^^xsd:date; + base:relationship\#DateStart_Min "1847-11-01"^^xsd:date; + base:relationship\#IDRel 24547; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/PeiEli-00 . + +base:relationship\/24552 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1848"; + base:relationship\#DateStart_Max "1848-02-29"^^xsd:date; + base:relationship\#DateStart_Min "1848-02-01"^^xsd:date; + base:relationship\#IDRel 24552; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiLud-00 . + +base:relationship\/24557 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 5.10.1846"; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24557; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MusOsc-00 . + +base:relationship\/24562 a base:relationship; + base:relationship\#IDRel 24562; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/PeeRob-00 . + +base:relationship\/24567 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 5.10.1846"; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24567; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/DenMar-00 . + +base:relationship\/24572 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 5.10.1846"; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24572; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WegCar-00 . + +base:relationship\/24577 a base:relationship; + base:relationship\#DateEnd_Max "1848-02-11"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 5.10.1846"; + base:relationship\#DateStart_Max "1846-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1846-10-05"^^xsd:date; + base:relationship\#IDRel 24577; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MurJoh-00 . + +base:relationship\/24582 a base:relationship; + base:relationship\#IDRel 24582; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MelGeo-00 . + +base:relationship\/24587 a base:relationship; + base:relationship\#DateEnd_Fuzzy "September 1849"; + base:relationship\#DateEnd_Max "1849-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1849-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 24587; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/PapAug-00 . + +base:relationship\/24592 a base:relationship; + base:relationship\#DateEnd_Fuzzy "September 1849"; + base:relationship\#DateEnd_Max "1849-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1849-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 24592; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/SchJul-00 . + +base:relationship\/24597 a base:relationship; + base:relationship\#DateEnd_Fuzzy "September 1849"; + base:relationship\#DateEnd_Max "1849-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1849-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 24597; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/LevFre-00 . + +base:relationship\/24602 a base:relationship; + base:relationship\#IDRel 24602; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/PonJoh-00 . + +base:relationship\/24607 a base:relationship; + base:relationship\#DateEnd_Fuzzy "September 1849"; + base:relationship\#DateEnd_Max "1849-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1849-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 24607; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHen-02 . + +base:relationship\/24612 a base:relationship; + base:relationship\#DateEnd_Fuzzy "September 1849"; + base:relationship\#DateEnd_Max "1849-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1849-09-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 24612; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WemDav-00 . + +base:relationship\/24617 a base:relationship; + base:relationship\#DateEnd_Max "1856-06-28"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1849"; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 24617; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/TraGeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/24622 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24622; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BelAdo-00 . + +base:relationship\/24627 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24627; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/LabLeo-00 . + +base:relationship\/24632 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24632; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MorSav-00 . + +base:relationship\/24637 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24637; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BeaRog-00 . + +base:relationship\/24642 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24642; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/MerFra-00 . + +base:relationship\/24647 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1851"; + base:relationship\#DateStart_Max "1851-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-08-01"^^xsd:date; + base:relationship\#IDRel 24647; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CorMic-00 . + +base:relationship\/24652 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1852"; + base:relationship\#DateEnd_Max "1852-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1852-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Summer 1851"; + base:relationship\#DateStart_Max "1851-09-22"^^xsd:date; + base:relationship\#DateStart_Min "1851-06-21"^^xsd:date; + base:relationship\#IDRel 24652; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WilEdw-00 . + +base:relationship\/24657 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "November 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-11-01"^^xsd:date; + base:relationship\#IDRel 24657; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BarTho-01 . + +base:relationship\/24662 a base:relationship; + base:relationship\#DateEnd_Fuzzy "December 1851"; + base:relationship\#DateEnd_Max "1851-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1851-12-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "November 1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-11-01"^^xsd:date; + base:relationship\#IDRel 24662; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WasGeo-00 . + +base:relationship\/24667 a base:relationship; + base:relationship\#DateEnd_Max "1852-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1852"; + base:relationship\#DateStart_Min "1852-01-01"^^xsd:date; + base:relationship\#IDRel 24667; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/ScoJos-00 . + +base:relationship\/24672 a base:relationship; + base:relationship\#DateEnd_Max "1852-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1852"; + base:relationship\#DateStart_Min "1852-01-01"^^xsd:date; + base:relationship\#IDRel 24672; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WarCha-00 . + +base:relationship\/24677 a base:relationship; + base:relationship\#DateEnd_Max "1852-03-20"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Winter 1852"; + base:relationship\#DateStart_Min "1852-12-21"^^xsd:date; + base:relationship\#IDRel 24677; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/JonJoh-00 . + +base:relationship\/24682 a base:relationship; + base:relationship\#DateStart_Fuzzy "Winter 1852"; + base:relationship\#DateStart_Max "1852-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1852-12-21"^^xsd:date; + base:relationship\#IDRel 24682; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HenJon-00 . + +base:relationship\/24687 a base:relationship; + base:relationship\#DateEnd_Fuzzy "June 1853"; + base:relationship\#DateEnd_Max "1853-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1853-06-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "May 1853"; + base:relationship\#DateStart_Max "1853-05-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-05-01"^^xsd:date; + base:relationship\#IDRel 24687; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HauMis-00 . + +base:relationship\/24692 a base:relationship; + base:relationship\#DateEnd_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24692; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HulPat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/24697 a base:relationship; + base:relationship\#DateEnd_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24697; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CheMon-00 . + +base:relationship\/24702 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably between 1855 and 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24702; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/EigCha-00 . + +base:relationship\/24707 a base:relationship; + base:relationship\#DateEnd_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1853"; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24707; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BulOle-00 . + +base:relationship\/24712 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1855"; + base:relationship\#DateEnd_Max "1855-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24712; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/SteWil-01 . + +base:relationship\/24717 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1855"; + base:relationship\#DateEnd_Max "1855-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24717; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/WarCha-01 . + +base:relationship\/24722 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1855"; + base:relationship\#DateEnd_Max "1855-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24722; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/RobSue-00 . + +base:relationship\/24727 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1855"; + base:relationship\#DateEnd_Max "1855-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1853"; + base:relationship\#DateStart_Max "1853-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-01"^^xsd:date; + base:relationship\#IDRel 24727; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/CraLot-00 . + +base:relationship\/24732 a base:relationship; + base:relationship\#DateEnd_Max "1856-07-08"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24732; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/FolNoe-00 . + +base:relationship\/24737 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1856-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24737; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/FidJos-00 . + +base:relationship\/24742 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1856-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24742; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/JonBen-00 . + +base:relationship\/24747 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1856-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24747; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/DanGeo-00 . + +base:relationship\/24752 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1856-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24752; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/SimJam-00 . + +base:relationship\/24757 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably 1856"; + base:relationship\#DateEnd_Max "1856-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1856-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 24757; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/JonFre-00 . + +base:relationship\/24762 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Probably May 1857"; + base:relationship\#DateEnd_Max "1857-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1857-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably December 1856"; + base:relationship\#DateStart_Max "1856-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1856-01-01"^^xsd:date; + base:relationship\#IDRel 24762; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/FolMir-00 . + +base:relationship\/24767 a base:relationship; + base:relationship\#DateEnd_Max "1857-12-31"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1857"; + base:relationship\#DateStart_Min "1857-01-01"^^xsd:date; + base:relationship\#IDRel 24767; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BurCha-00 . + +base:relationship\/24772 a base:relationship; + base:relationship\#IDRel 24772; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HarTho-00 . + +base:relationship\/24777 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1857"; + base:relationship\#DateEnd_Max "1857-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1857-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1843"; + base:relationship\#DateStart_Max "1843-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1843-01-01"^^xsd:date; + base:relationship\#IDRel 24777; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/SulLud-00 . + +base:relationship\/24782 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1827"; + base:relationship\#DateEnd_Max "1827-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1827-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "Probably 1826"; + base:relationship\#DateStart_Max "1826-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1826-01-01"^^xsd:date; + base:relationship\#IDRel 24782; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/BucMar-00 . + +base:relationship\/24787 a base:relationship; + base:relationship\#DateEnd_Max "1861-01-17"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1860"; + base:relationship\#DateStart_Max "1860-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1860-01-01"^^xsd:date; + base:relationship\#IDRel 24787; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/MonLol-00; + base:relationship\#ref-IDPerson_passive base:person\/HawFra-00 . + +base:relationship\/248 a base:relationship; + base:relationship\#IDRel 248; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MotHen-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00 . + +base:relationship\/24830 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1845"; + base:relationship\#DateStart_Fuzzy "1845"; + base:relationship\#IDRel 24830; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/G\%C3\%BCnJul-00 . + +base:relationship\/24834 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1847"; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#IDRel 24834; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/EN-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/GloEdw-00 . + +base:relationship\/24839 a base:relationship; + base:relationship\#IDRel 24839; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/WilEli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandmother . + +base:relationship\/24844 a base:relationship; + base:relationship\#DateEnd_Fuzzy "between 1817 and 1821"; + base:relationship\#DateEnd_Max "1821-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1817-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "between 1817 and 1821"; + base:relationship\#DateStart_Max "1821-01-31"^^xsd:date; + base:relationship\#DateStart_Min "1817-01-01"^^xsd:date; + base:relationship\#IDRel 24844; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/KeaEdm-00 . + +base:relationship\/24849 a base:relationship; + base:relationship\#DateEnd_Max "1852-11-30"^^xsd:date; + base:relationship\#DateEnd_Min "1852-11-30"^^xsd:date; + base:relationship\#DateStart_Max "1851-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1851-10-05"^^xsd:date; + base:relationship\#IDRel 24849; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/HolMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/24854 a base:relationship; + base:relationship\#DateEnd_Max "1816-07-07"^^xsd:date; + base:relationship\#DateEnd_Min "1816-07-07"^^xsd:date; + base:relationship\#DateStart_Max "1815-10-05"^^xsd:date; + base:relationship\#DateStart_Min "1815-10-05"^^xsd:date; + base:relationship\#IDRel 24854; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooAme-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24859 a base:relationship; + base:relationship\#DateEnd_Fuzzy "February 1851"; + base:relationship\#DateEnd_Max "1851-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1851-02-01"^^xsd:date; + base:relationship\#DateStart_Max "1815-05-17"^^xsd:date; + base:relationship\#DateStart_Min "1815-05-17"^^xsd:date; + base:relationship\#IDRel 24859; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/DelMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/24864 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1800"; + base:relationship\#DateEnd_Max "1800-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1800-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1796-05-01"^^xsd:date; + base:relationship\#DateStart_Min "1796-05-01"^^xsd:date; + base:relationship\#IDRel 24864; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/24869 a base:relationship; + base:relationship\#DateEnd_Max "1839-12-29"^^xsd:date; + base:relationship\#DateEnd_Min "1839-12-29"^^xsd:date; + base:relationship\#DateStart_Max "1796-05-01"^^xsd:date; + base:relationship\#DateStart_Min "1796-05-01"^^xsd:date; + base:relationship\#IDRel 24869; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooRic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/24870 a base:relationship; + base:relationship\#DateEnd_Max "1893-06-07"^^xsd:date; + base:relationship\#DateEnd_Min "1893-06-07"^^xsd:date; + base:relationship\#DateStart_Max "1883-11-13"^^xsd:date; + base:relationship\#DateStart_Min "1883-11-13"^^xsd:date; + base:relationship\#IDRel 24870; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/Edw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24876 a base:relationship; + base:relationship\#IDRel 24876; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/NorCat-00 . + +base:relationship\/24879 a base:relationship; + base:relationship\#DateEnd_Max "1887-11-02"^^xsd:date; + base:relationship\#DateEnd_Min "1887-11-02"^^xsd:date; + base:relationship\#DateStart_Max "1820-10-06"^^xsd:date; + base:relationship\#DateStart_Min "1820-10-06"^^xsd:date; + base:relationship\#IDRel 24879; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/RadAma-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/24884 a base:relationship; + base:relationship\#DateEnd_Max "1887-11-02"^^xsd:date; + base:relationship\#DateEnd_Min "1887-11-02"^^xsd:date; + base:relationship\#DateStart_Max "1820-10-06"^^xsd:date; + base:relationship\#DateStart_Min "1820-10-06"^^xsd:date; + base:relationship\#IDRel 24884; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/FelAnn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/24889 a base:relationship; + base:relationship\#DateEnd_Max "1887-11-02"^^xsd:date; + base:relationship\#DateEnd_Min "1887-11-02"^^xsd:date; + base:relationship\#DateStart_Max "1820-10-06"^^xsd:date; + base:relationship\#DateStart_Min "1820-10-06"^^xsd:date; + base:relationship\#IDRel 24889; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/LinNic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/24894 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1852"; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#IDRel 24894; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/BelGio-00 . + +base:relationship\/24899 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1836"; + base:relationship\#DateStart_Fuzzy "September 1830"; + base:relationship\#IDRel 24899; + base:relationship\#Relationshiptype base:RelationshipType-trained_together; + base:relationship\#ref-IDLocation base:location\/SE-Stock-00; + base:relationship\#ref-IDOrganisation base:organisation\/196; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/CraCar-00 . + +base:relationship\/24924 a base:relationship; + base:relationship\#IDRel 24924; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00 . + +base:relationship\/24929 a base:relationship; + base:relationship\#DateEnd_Max "1821-09-30"^^xsd:date; + base:relationship\#DateEnd_Min "1821-09-30"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1814"; + base:relationship\#DateStart_Max "1814-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1814-01-01"^^xsd:date; + base:relationship\#IDRel 24929; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "adoptive father"; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/GeyLud-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/24934 a base:relationship; + base:relationship\#DateEnd_Max "1888-05-16"^^xsd:date; + base:relationship\#DateEnd_Min "1888-05-16"^^xsd:date; + base:relationship\#DateStart_Max "1835-11-19"^^xsd:date; + base:relationship\#DateStart_Min "1835-11-19"^^xsd:date; + base:relationship\#IDRel 24934; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaAsi-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24939 a base:relationship; + base:relationship\#DateStart_Max "1819-01-21"^^xsd:date; + base:relationship\#DateStart_Min "1819-01-21"^^xsd:date; + base:relationship\#IDRel 24939; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooRic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24944 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1803"; + base:relationship\#DateEnd_Max "1803-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1803-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1798"; + base:relationship\#DateStart_Max "1798-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1798-01-01"^^xsd:date; + base:relationship\#IDRel 24944; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooAlg-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/24949 a base:relationship; + base:relationship\#IDRel 24949; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/FlyTom-00 . + +base:relationship\/24954 a base:relationship; + base:relationship\#IDRel 24954; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Theatrical manager"; + base:relationship\#ref-IDLocation base:location\/USA-NewOrl-00; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/LudNoa-00 . + +base:relationship\/24959 a base:relationship; + base:relationship\#DateEnd_Max "1851-10-05"^^xsd:date; + base:relationship\#DateEnd_Min "1851-10-05"^^xsd:date; + base:relationship\#DateStart_Max "1821-01-30"^^xsd:date; + base:relationship\#DateStart_Min "1821-01-01"^^xsd:date; + base:relationship\#IDRel 24959; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "She went to the USA with Booth and lived with him as his partner, they married in 1851"; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/HolMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/24964 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1833"; + base:relationship\#DateEnd_Max "1833-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1833-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1827"; + base:relationship\#DateStart_Max "1827-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1827-01-01"^^xsd:date; + base:relationship\#IDRel 24964; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24969 a base:relationship; + base:relationship\#DateEnd_Max "1865-04-26"^^xsd:date; + base:relationship\#DateEnd_Min "1865-04-26"^^xsd:date; + base:relationship\#DateStart_Max "1838-05-10"^^xsd:date; + base:relationship\#DateStart_Min "1838-05-10"^^xsd:date; + base:relationship\#IDRel 24969; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24974 a base:relationship; + base:relationship\#DateEnd_Max "1889-01-15"^^xsd:date; + base:relationship\#DateEnd_Min "1889-01-15"^^xsd:date; + base:relationship\#DateStart_Max "1823-07-05"^^xsd:date; + base:relationship\#DateStart_Min "1823-07-05"^^xsd:date; + base:relationship\#IDRel 24974; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/24979 a base:relationship; + base:relationship\#DateEnd_Max "1836-12-28"^^xsd:date; + base:relationship\#DateEnd_Min "1836-12-28"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1825"; + base:relationship\#DateStart_Max "1825-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1825-01-01"^^xsd:date; + base:relationship\#IDRel 24979; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooHen-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24984 a base:relationship; + base:relationship\#DateEnd_Max "1883-09-16"^^xsd:date; + base:relationship\#DateEnd_Min "1883-09-16"^^xsd:date; + base:relationship\#DateStart_Max "1821-12-22"^^xsd:date; + base:relationship\#DateStart_Min "1821-12-22"^^xsd:date; + base:relationship\#IDRel 24984; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/Jr\.Jun-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24989 a base:relationship; + base:relationship\#DateEnd_Max "1902-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1902-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1840-02-08"^^xsd:date; + base:relationship\#DateStart_Min "1840-02-08"^^xsd:date; + base:relationship\#IDRel 24989; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/Boojun-00; + base:relationship\#ref-IDPerson_passive base:person\/BooJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/24994 a base:relationship; + base:relationship\#IDRel 24994; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/SalLor-00 . + +base:relationship\/24999 a base:relationship; + base:relationship\#IDRel 24999; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/IT-Ven-00; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/ZicEdm-00 . + +base:relationship\/25 a base:relationship; + base:relationship\#IDRel 25; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Closer personal relationship"; + base:relationship\#ref-IDPerson_active base:person\/KaiJos-00; + base:relationship\#ref-IDPerson_passive base:person\/NacFra-00 . + +base:relationship\/25009 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1923"; + base:relationship\#DateEnd_Max "1923-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1923-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1922"; + base:relationship\#DateStart_Max "1922-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1922-01-01"^^xsd:date; + base:relationship\#IDRel 25009; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/DelFra-00 . + +base:relationship\/25014 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 25014; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/AliEl\%C3\%AD-00 . + +base:relationship\/25019 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 25019; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2940; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/MuiEnr-00 . + +base:relationship\/25024 a base:relationship; + base:relationship\#IDRel 25024; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/SanNur-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25029 a base:relationship; + base:relationship\#DateEnd_Max "1954-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1954-06-30"^^xsd:date; + base:relationship\#IDRel 25029; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/Ca\%C3\%B1Fer-00 . + +base:relationship\/25034 a base:relationship; + base:relationship\#DateStart_Max "1916-11-01"^^xsd:date; + base:relationship\#DateStart_Min "1916-11-01"^^xsd:date; + base:relationship\#IDRel 25034; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ES-Catal-00; + base:relationship\#ref-IDPerson_active base:person\/CamJua-00; + base:relationship\#ref-IDPerson_passive base:person\/SanRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/25044 a base:relationship; + base:relationship\#DateStart_Max "1898-02-24"^^xsd:date; + base:relationship\#DateStart_Min "1898-02-24"^^xsd:date; + base:relationship\#IDRel 25044; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/FonAgu-00; + base:relationship\#ref-IDPerson_passive base:person\/ScoAle-00 . + +base:relationship\/25049 a base:relationship; + base:relationship\#DateStart_Max "1898-02-24"^^xsd:date; + base:relationship\#DateStart_Min "1898-02-24"^^xsd:date; + base:relationship\#IDRel 25049; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/FonAgu-00; + base:relationship\#ref-IDPerson_passive base:person\/PodAnt-00 . + +base:relationship\/25054 a base:relationship; + base:relationship\#DateStart_Max "1898-02-24"^^xsd:date; + base:relationship\#DateStart_Min "1898-02-24"^^xsd:date; + base:relationship\#IDRel 25054; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/902; + base:relationship\#ref-IDPerson_active base:person\/FonAgu-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJos-00 . + +base:relationship\/25059 a base:relationship; + base:relationship\#IDRel 25059; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/FonAgu-00; + base:relationship\#ref-IDPerson_passive base:person\/PodArt-00 . + +base:relationship\/25064 a base:relationship; + base:relationship\#IDRel 25064; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Goett-00; + base:relationship\#ref-IDOrganisation base:organisation\/72444; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RoeGus-00 . + +base:relationship\/25069 a base:relationship; + base:relationship\#IDRel 25069; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Goett-00; + base:relationship\#ref-IDOrganisation base:organisation\/72444; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/OttThe-00 . + +base:relationship\/25074 a base:relationship; + base:relationship\#IDRel 25074; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/GER-Goett-00; + base:relationship\#ref-IDOrganisation base:organisation\/72444; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HusEdu-00 . + +base:relationship\/25079 a base:relationship; + base:relationship\#IDRel 25079; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/GER-Leip-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HegJea-00 . + +base:relationship\/25084 a base:relationship; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 25084; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SchDr\.-00 . + +base:relationship\/25089 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 25089; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BarVic-00 . + +base:relationship\/25094 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 25094; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/25099 a base:relationship; + base:relationship\#DateStart_Fuzzy "1933"; + base:relationship\#DateStart_Max "1933-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1933-01-01"^^xsd:date; + base:relationship\#IDRel 25099; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72187; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/KieGus-00 . + +base:relationship\/251 a base:relationship; + base:relationship\#IDRel 251; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/PauRos-00; + base:relationship\#ref-IDPerson_passive base:person\/PauJoh-00 . + +base:relationship\/25104 a base:relationship; + base:relationship\#DateStart_Fuzzy "1927"; + base:relationship\#DateStart_Max "1927-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1927-01-01"^^xsd:date; + base:relationship\#IDRel 25104; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72187; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SchFri-00 . + +base:relationship\/25114 a base:relationship; + base:relationship\#DateStart_Fuzzy "1924"; + base:relationship\#DateStart_Max "1924-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 25114; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MatMar-00 . + +base:relationship\/25119 a base:relationship; + base:relationship\#DateStart_Fuzzy "1924"; + base:relationship\#DateStart_Max "1924-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 25119; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/JerMar-00 . + +base:relationship\/25120 a base:relationship; + base:relationship\#IDRel 25120; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BodEli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25122 a base:relationship; + base:relationship\#IDRel 25122; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiFri-00 . + +base:relationship\/25124 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 25124; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/BusFerr-00 . + +base:relationship\/25129 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 25129; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/TosArt-00 . + +base:relationship\/25134 a base:relationship; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#DateStart_Max "1907-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1907-01-01"^^xsd:date; + base:relationship\#IDRel 25134; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/CZ-Prag-00; + base:relationship\#ref-IDOrganisation base:organisation\/491; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/KleOtt-00 . + +base:relationship\/25139 a base:relationship; + base:relationship\#DateStart_Fuzzy "1922"; + base:relationship\#DateStart_Max "1922-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1922-01-01"^^xsd:date; + base:relationship\#IDRel 25139; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/25144 a base:relationship; + base:relationship\#DateEnd_Fuzzy "24th Dezember 1920"; + base:relationship\#DateEnd_Max "1920-12-24"^^xsd:date; + base:relationship\#DateEnd_Min "1920-12-24"^^xsd:date; + base:relationship\#IDRel 25144; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/CarEnr-00 . + +base:relationship\/25151 a base:relationship; + base:relationship\#IDRel 25151; + base:relationship\#ref-IDPerson_active base:person\/FreEnr-00 . + +base:relationship\/25154 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1904"; + base:relationship\#DateEnd_Max "1904-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1904-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 25154; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4176; + base:relationship\#ref-IDPerson_active base:person\/FreEnr-00; + base:relationship\#ref-IDPerson_passive base:person\/MitBar-00 . + +base:relationship\/25159 a base:relationship; + base:relationship\#IDRel 25159; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25164 a base:relationship; + base:relationship\#IDRel 25164; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25165 a base:relationship; + base:relationship\#IDRel 25165; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25167 a base:relationship; + base:relationship\#IDRel 25167; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25172 a base:relationship; + base:relationship\#IDRel 25172; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25177 a base:relationship; + base:relationship\#IDRel 25177; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25179 a base:relationship; + base:relationship\#IDRel 25179; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25184 a base:relationship; + base:relationship\#IDRel 25184; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00 . + +base:relationship\/25187 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25187; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/VagRam-00 . + +base:relationship\/25189 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25189; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CamFra-00 . + +base:relationship\/25194 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25194; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PinJos-00 . + +base:relationship\/25199 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25199; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/Seg\%C3\%81ng-00 . + +base:relationship\/25204 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25204; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GilFra-00 . + +base:relationship\/25209 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25209; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CebRam-00 . + +base:relationship\/25210 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25210; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Carlos Alonso"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/Alo-00 . + +base:relationship\/25214 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25214; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CabMan-00 . + +base:relationship\/25219 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25219; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ConLea-00 . + +base:relationship\/25224 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25224; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SavAnt-00 . + +base:relationship\/25229 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25229; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/FerSof-00 . + +base:relationship\/25232 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25232; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CorJul-00 . + +base:relationship\/25234 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25234; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BarMan-00 . + +base:relationship\/25239 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25239; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/AlbIre-00 . + +base:relationship\/25244 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25244; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GarPil-00 . + +base:relationship\/25249 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25249; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GueJos-00 . + +base:relationship\/25254 a base:relationship; + base:relationship\#DateStart_Fuzzy "1900"; + base:relationship\#DateStart_Max "1900-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1900-01-01"^^xsd:date; + base:relationship\#IDRel 25254; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3275; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ReyLui-00 . + +base:relationship\/25259 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-01-01"^^xsd:date; + base:relationship\#IDRel 25259; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/D\%C3\%ADaPab-00 . + +base:relationship\/25264 a base:relationship; + base:relationship\#DateStart_Fuzzy "1896"; + base:relationship\#DateStart_Max "1896-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1896-01-01"^^xsd:date; + base:relationship\#IDRel 25264; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/BliSam-00 . + +base:relationship\/25269 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25269; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LlaPil-00 . + +base:relationship\/25274 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25274; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LozEmi-00 . + +base:relationship\/25279 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25279; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LasAbe-00 . + +base:relationship\/25284 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25284; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/OrtFra-00 . + +base:relationship\/25289 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25289; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/OrtDol-00 . + +base:relationship\/25294 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25294; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarCar-00 . + +base:relationship\/25299 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25299; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarAnd-00 . + +base:relationship\/25304 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25304; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/AndAnt-00 . + +base:relationship\/25309 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25309; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MonIgn-00 . + +base:relationship\/25314 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25314; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/G\%C3\%A1mSeb-00 . + +base:relationship\/25319 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25319; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/OcaCar-00 . + +base:relationship\/25324 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25324; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ZalCar-00 . + +base:relationship\/25329 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25329; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WahCar-00 . + +base:relationship\/25334 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25334; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarAde-00 . + +base:relationship\/25339 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25339; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/RobJua-00 . + +base:relationship\/25344 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25344; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ApaMan-00 . + +base:relationship\/25349 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25349; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/EspMat-00 . + +base:relationship\/25354 a base:relationship; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 25354; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Madrid and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/Ju\%C3\%A1Rog-00 . + +base:relationship\/25355 a base:relationship; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 25355; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Madrid and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/754; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/AbrDol-00 . + +base:relationship\/25359 a base:relationship; + base:relationship\#DateStart_Fuzzy "1868"; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 25359; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ES-Mad-00; + base:relationship\#ref-IDOrganisation base:organisation\/72304; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ArjJoa-00 . + +base:relationship\/25364 a base:relationship; + base:relationship\#IDRel 25364; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MarEmi-00 . + +base:relationship\/25369 a base:relationship; + base:relationship\#IDRel 25369; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/VicAnt-00 . + +base:relationship\/25374 a base:relationship; + base:relationship\#IDRel 25374; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalIsa-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/25379 a base:relationship; + base:relationship\#IDRel 25379; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/25384 a base:relationship; + base:relationship\#IDRel 25384; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CasAnd-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/25389 a base:relationship; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 25389; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalPed-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/25394 a base:relationship; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#DateStart_Max "1901-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1901-01-01"^^xsd:date; + base:relationship\#IDRel 25394; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SorEze-00 . + +base:relationship\/25399 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25399; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/EspMat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/254 a base:relationship; + base:relationship\#IDRel 254; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#Timeperiod "1897"; + base:relationship\#comment "Friendship with Gustav Mahler, supported him 1897 to became Hofoperndirektor."; + base:relationship\#ref-IDPerson_active base:person\/PauRos-00; + base:relationship\#ref-IDPerson_passive base:person\/MahGus-00 . + +base:relationship\/25404 a base:relationship; + base:relationship\#DateStart_Fuzzy "1891"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 25404; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4151; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/EchAsu-00 . + +base:relationship\/25409 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1891"; + base:relationship\#DateEnd_Max "1891-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1891-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1888"; + base:relationship\#DateStart_Max "1888-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1888-01-01"^^xsd:date; + base:relationship\#IDRel 25409; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Murcia and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/ES-Murc-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MazAlf-00 . + +base:relationship\/25414 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#DateStart_Max "1898-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1898-01-01"^^xsd:date; + base:relationship\#IDRel 25414; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Buenos Aires y Madrid"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4105; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GueMar-00 . + +base:relationship\/25419 a base:relationship; + base:relationship\#DateStart_Fuzzy "1850"; + base:relationship\#DateStart_Max "1850-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1850-01-01"^^xsd:date; + base:relationship\#IDRel 25419; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4151; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJos-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/25424 a base:relationship; + base:relationship\#DateStart_Fuzzy "1914"; + base:relationship\#DateStart_Max "1914-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1914-01-01"^^xsd:date; + base:relationship\#IDRel 25424; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72324; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SalJos-00 . + +base:relationship\/25429 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1919"; + base:relationship\#DateEnd_Max "1919-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1919-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1918"; + base:relationship\#DateStart_Max "1918-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1918-01-01"^^xsd:date; + base:relationship\#IDRel 25429; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ParFlo-00 . + +base:relationship\/25434 a base:relationship; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 25434; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/2930; + base:relationship\#ref-IDPerson_active base:person\/GalMar-00; + base:relationship\#ref-IDPerson_passive base:person\/RicOrf-00 . + +base:relationship\/25439 a base:relationship; + base:relationship\#DateStart_Fuzzy "1907"; + base:relationship\#IDRel 25439; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CZ-Prag-00; + base:relationship\#ref-IDOrganisation base:organisation\/491; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/NeuYet-00 . + +base:relationship\/25440 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1902"; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#IDRel 25440; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/1022; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/M\%C3\%BClLeo-00 . + +base:relationship\/25444 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#IDRel 25444; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-Mnhm-00; + base:relationship\#ref-IDOrganisation base:organisation\/456; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/HagCar-00 . + +base:relationship\/25449 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#IDRel 25449; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/FalEdw-00 . + +base:relationship\/25454 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#IDRel 25454; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/RieHug-00 . + +base:relationship\/25459 a base:relationship; + base:relationship\#DateStart_Fuzzy "1898"; + base:relationship\#IDRel 25459; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SchArn-00 . + +base:relationship\/25469 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 25469; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/CasGiu-00 . + +base:relationship\/25474 a base:relationship; + base:relationship\#DateStart_Fuzzy "1931"; + base:relationship\#DateStart_Max "1931-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1931-01-01"^^xsd:date; + base:relationship\#IDRel 25474; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MulMar-00 . + +base:relationship\/25479 a base:relationship; + base:relationship\#DateStart_Fuzzy "1931"; + base:relationship\#DateStart_Max "1931-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1931-01-01"^^xsd:date; + base:relationship\#IDRel 25479; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SchFri-01 . + +base:relationship\/25484 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1930"; + base:relationship\#DateEnd_Max "1930-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1930-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 25484; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72334; + base:relationship\#ref-IDPerson_active base:person\/GeaMig-00; + base:relationship\#ref-IDPerson_passive base:person\/BonGer-00 . + +base:relationship\/25489 a base:relationship; + base:relationship\#IDRel 25489; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GeaMig-00; + base:relationship\#ref-IDPerson_passive base:person\/DarFau-00 . + +base:relationship\/25494 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1922"; + base:relationship\#DateStart_Fuzzy "1920"; + base:relationship\#IDRel 25494; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "After 1921 together in New York Philharmony"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/395; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MenWil-00 . + +base:relationship\/25499 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1938"; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#IDRel 25499; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MacCla-00 . + +base:relationship\/255 a base:relationship; + base:relationship\#IDRel 255; + base:relationship\#Timeperiod "1875"; + base:relationship\#comment "First close connection to Johannes Brahms, close friendship, break 1875 when Levi worked together with Richard Wagner and became friend of him"; + base:relationship\#ref-IDPerson_active base:person\/LevHer-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/25504 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#IDRel 25504; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MarGio-00 . + +base:relationship\/25509 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1939"; + base:relationship\#IDRel 25509; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/MelLau-00 . + +base:relationship\/25514 a base:relationship; + base:relationship\#DateStart_Fuzzy "1935"; + base:relationship\#IDRel 25514; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/JohEdw-00 . + +base:relationship\/25519 a base:relationship; + base:relationship\#DateStart_Fuzzy "January 1935"; + base:relationship\#IDRel 25519; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/FlaKir-00 . + +base:relationship\/25524 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1935"; + base:relationship\#DateEnd_Max "1935-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1935-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 25524; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ZieEdw-00 . + +base:relationship\/25529 a base:relationship; + base:relationship\#DateStart_Fuzzy "1934"; + base:relationship\#DateStart_Max "1934-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1934-01-01"^^xsd:date; + base:relationship\#IDRel 25529; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/PanEtt-00 . + +base:relationship\/25534 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 25534; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SerTul-00 . + +base:relationship\/25539 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1938"; + base:relationship\#DateEnd_Max "1938-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1938-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1937"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 25539; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/RieKar-00 . + +base:relationship\/25544 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1938"; + base:relationship\#DateEnd_Max "1938-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1938-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1937"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 25544; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/AbrMau-00 . + +base:relationship\/25549 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1938"; + base:relationship\#DateEnd_Max "1938-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1938-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1937"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 25549; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/157; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/LeiEri-00 . + +base:relationship\/25554 a base:relationship; + base:relationship\#IDRel 25554; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/JunCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/25559 a base:relationship; + base:relationship\#DateStart_Fuzzy "1939"; + base:relationship\#DateStart_Max "1939-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1939-01-01"^^xsd:date; + base:relationship\#IDRel 25559; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/DreMax-00 . + +base:relationship\/25564 a base:relationship; + base:relationship\#DateStart_Fuzzy "5th January 1939"; + base:relationship\#DateStart_Max "1939-01-05"^^xsd:date; + base:relationship\#DateStart_Min "1939-01-05"^^xsd:date; + base:relationship\#IDRel 25564; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/TauHar-00 . + +base:relationship\/25569 a base:relationship; + base:relationship\#IDRel 25569; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00 . + +base:relationship\/25574 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1907"; + base:relationship\#DateEnd_Max "1907-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1907-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 25574; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/438; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMax-00 . + +base:relationship\/25579 a base:relationship; + base:relationship\#IDRel 25579; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00 . + +base:relationship\/25584 a base:relationship; + base:relationship\#IDRel 25584; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiAna-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25589 a base:relationship; + base:relationship\#IDRel 25589; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/25594 a base:relationship; + base:relationship\#IDRel 25594; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiIn\%C3\%A9-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25599 a base:relationship; + base:relationship\#IDRel 25599; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiLil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25604 a base:relationship; + base:relationship\#IDRel 25604; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiEls-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25609 a base:relationship; + base:relationship\#IDRel 25609; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GuiLeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/25614 a base:relationship; + base:relationship\#IDRel 25614; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BruBea-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/25619 a base:relationship; + base:relationship\#DateStart_Max "1955-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1955-12-19"^^xsd:date; + base:relationship\#IDRel 25619; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72229; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/RomFra-00 . + +base:relationship\/25624 a base:relationship; + base:relationship\#DateStart_Max "1955-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1955-12-19"^^xsd:date; + base:relationship\#IDRel 25624; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72229; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/OcaVic-00 . + +base:relationship\/25629 a base:relationship; + base:relationship\#DateStart_Max "1955-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1955-12-19"^^xsd:date; + base:relationship\#IDRel 25629; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72229; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/PalAlf-00 . + +base:relationship\/25634 a base:relationship; + base:relationship\#DateStart_Max "1955-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1955-12-19"^^xsd:date; + base:relationship\#IDRel 25634; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72229; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/HouBer-00 . + +base:relationship\/25639 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25639; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72354; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/IbaCar-00 . + +base:relationship\/25644 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25644; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72354; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/LacNar-00 . + +base:relationship\/25649 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25649; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72354; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiLui-00 . + +base:relationship\/25654 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25654; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72354; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/PonAn\%C3\%AD-00 . + +base:relationship\/25659 a base:relationship; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 25659; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72344; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GluSam-00 . + +base:relationship\/25664 a base:relationship; + base:relationship\#DateStart_Fuzzy "1928"; + base:relationship\#DateStart_Max "1928-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1928-01-01"^^xsd:date; + base:relationship\#IDRel 25664; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72344; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiHor-00 . + +base:relationship\/25669 a base:relationship; + base:relationship\#IDRel 25669; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "Lucca and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/IT-Lucc-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/PreSer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/25674 a base:relationship; + base:relationship\#IDRel 25674; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/IT-Lucc-00; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GiuGiu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/25679 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1942"; + base:relationship\#DateEnd_Max "1942-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1942-01-01"^^xsd:date; + base:relationship\#IDRel 25679; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/4876; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BiaAlf-00 . + +base:relationship\/25684 a base:relationship; + base:relationship\#IDRel 25684; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "SADE"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72344; + base:relationship\#ref-IDPerson_active base:person\/GiuRob-00; + base:relationship\#ref-IDPerson_passive base:person\/Leones-00 . + +base:relationship\/25687 a base:relationship; + base:relationship\#DateEnd_Fuzzy "January 1924"; + base:relationship\#DateEnd_Max "1924-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1924-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "January 1924"; + base:relationship\#DateStart_Max "1924-01-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 25687; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/72177; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/TauCur-00 . + +base:relationship\/25689 a base:relationship; + base:relationship\#DateEnd_Fuzzy "February 1923"; + base:relationship\#DateEnd_Max "1923-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1923-02-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1923"; + base:relationship\#DateStart_Max "1923-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1923-02-01"^^xsd:date; + base:relationship\#IDRel 25689; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/72177; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/UrlJac-00 . + +base:relationship\/25690 a base:relationship; + base:relationship\#DateEnd_Fuzzy "February 1922"; + base:relationship\#DateEnd_Max "1922-02-28"^^xsd:date; + base:relationship\#DateEnd_Min "1922-02-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "February 1922"; + base:relationship\#DateStart_Max "1922-02-28"^^xsd:date; + base:relationship\#DateStart_Min "1922-02-01"^^xsd:date; + base:relationship\#IDRel 25690; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/72177; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/HarOrv-00 . + +base:relationship\/25694 a base:relationship; + base:relationship\#DateEnd_Fuzzy "January 1917"; + base:relationship\#DateEnd_Max "1917-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1917-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "January 1917"; + base:relationship\#DateStart_Max "1917-01-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 25694; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/72177; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/KoeTil-00 . + +base:relationship\/25699 a base:relationship; + base:relationship\#DateEnd_Fuzzy "January 1917"; + base:relationship\#DateEnd_Max "1917-01-31"^^xsd:date; + base:relationship\#DateEnd_Min "1917-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "January 1917"; + base:relationship\#DateStart_Max "1917-01-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 25699; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDOrganisation base:organisation\/72177; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/SemJoh-00 . + +base:relationship\/257 a base:relationship; + base:relationship\#IDRel 257; + base:relationship\#comment "Brothers. They worked together in the 1880s in Paris and went together for tours to London at the end of the 1880s"; + base:relationship\#ref-IDPerson_active base:person\/ResEdo-00; + base:relationship\#ref-IDPerson_passive base:person\/JeaRes-00 . + +base:relationship\/25704 a base:relationship; + base:relationship\#DateStart_Fuzzy "1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 25704; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72319; + base:relationship\#ref-IDPerson_active base:person\/BasJoa-00 . + +base:relationship\/25709 a base:relationship; + base:relationship\#DateStart_Fuzzy "1936"; + base:relationship\#DateStart_Max "1936-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1936-01-01"^^xsd:date; + base:relationship\#IDRel 25709; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72319; + base:relationship\#ref-IDPerson_active base:person\/BasJoa-00 . + +base:relationship\/25714 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25714; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/FerJos-00 . + +base:relationship\/25719 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25719; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/VerFra-00 . + +base:relationship\/25720 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25720; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/MazEnr-00 . + +base:relationship\/25724 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25724; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/FerLeo-00 . + +base:relationship\/25729 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25729; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/El\%C3\%ADDel-00 . + +base:relationship\/25734 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25734; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/CasGui-00 . + +base:relationship\/25739 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25739; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/AylNel-00 . + +base:relationship\/25744 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25744; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/ConAle-00 . + +base:relationship\/25749 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25749; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/AndJul-00 . + +base:relationship\/25754 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25754; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/CarJul-00 . + +base:relationship\/25759 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25759; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/SagRob-00 . + +base:relationship\/25760 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25760; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/ObrPac-00 . + +base:relationship\/25764 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25764; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/ReyCar-00 . + +base:relationship\/25769 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25769; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/DorEm\%C3\%A9-00 . + +base:relationship\/25774 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 25774; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/PadVic-00 . + +base:relationship\/25779 a base:relationship; + base:relationship\#DateStart_Fuzzy "1932"; + base:relationship\#DateStart_Max "1932-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1932-01-01"^^xsd:date; + base:relationship\#IDRel 25779; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3085; + base:relationship\#ref-IDPerson_active base:person\/BaoMig-00; + base:relationship\#ref-IDPerson_passive base:person\/Marici-00 . + +base:relationship\/25784 a base:relationship; + base:relationship\#IDRel 25784; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GalDel-00 . + +base:relationship\/25789 a base:relationship; + base:relationship\#IDRel 25789; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/L\%C3\%B3pLuc-00 . + +base:relationship\/25794 a base:relationship; + base:relationship\#DateStart_Fuzzy "1879"; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 25794; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "Tucumán and Buenos Aires"; + base:relationship\#ref-IDLocation base:location\/ARG-Tucum-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/AlcCor-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/25799 a base:relationship; + base:relationship\#IDRel 25799; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/FR-Toulo-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GatAdo-00 . + +base:relationship\/25804 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1858"; + base:relationship\#DateEnd_Max "1858-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1858-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1848-02-15"^^xsd:date; + base:relationship\#DateStart_Min "1848-02-15"^^xsd:date; + base:relationship\#IDRel 25804; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/FR-Toulo-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PiqCat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/25809 a base:relationship; + base:relationship\#DateStart_Max "1848-02-15"^^xsd:date; + base:relationship\#DateStart_Min "1848-02-15"^^xsd:date; + base:relationship\#IDRel 25809; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/FR-Toulo-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GroPie-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/25814 a base:relationship; + base:relationship\#IDRel 25814; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/ManLuc-00 . + +base:relationship\/25819 a base:relationship; + base:relationship\#IDRel 25819; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/WilEdu-00 . + +base:relationship\/25824 a base:relationship; + base:relationship\#IDRel 25824; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/EstJua-00 . + +base:relationship\/25829 a base:relationship; + base:relationship\#IDRel 25829; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GoyPed-00 . + +base:relationship\/25834 a base:relationship; + base:relationship\#IDRel 25834; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PelCar-00 . + +base:relationship\/25839 a base:relationship; + base:relationship\#IDRel 25839; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PenRoq-00 . + +base:relationship\/25844 a base:relationship; + base:relationship\#IDRel 25844; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3335; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/AreEnr-00 . + +base:relationship\/25849 a base:relationship; + base:relationship\#IDRel 25849; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/3335; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/QuiCam-00 . + +base:relationship\/25854 a base:relationship; + base:relationship\#IDRel 25854; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/DeVJoa-00 . + +base:relationship\/25859 a base:relationship; + base:relationship\#IDRel 25859; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/RocJul-00 . + +base:relationship\/25864 a base:relationship; + base:relationship\#IDRel 25864; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/72434; + base:relationship\#ref-IDPerson_active base:person\/GroPau-00; + base:relationship\#ref-IDPerson_passive base:person\/AveNic-00 . + +base:relationship\/25868 a base:relationship; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 25868; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDOrganisation base:organisation\/3290; + base:relationship\#ref-IDPerson_active base:person\/SanMan-00; + base:relationship\#ref-IDPerson_passive base:person\/GurJos-00 . + +base:relationship\/25873 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1957"; + base:relationship\#DateEnd_Max "1957-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1957-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1948"; + base:relationship\#DateStart_Max "1948-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1948-01-01"^^xsd:date; + base:relationship\#IDRel 25873; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDOrganisation base:organisation\/3290; + base:relationship\#ref-IDPerson_active base:person\/SanMan-00; + base:relationship\#ref-IDPerson_passive base:person\/Y\%C3\%A1\%C3\%B1Rub-00 . + +base:relationship\/25878 a base:relationship; + base:relationship\#IDRel 25878; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDPerson_active base:person\/SanMan-00; + base:relationship\#ref-IDPerson_passive base:person\/BonFlo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/25883 a base:relationship; + base:relationship\#DateStart_Fuzzy "1937"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 25883; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/URY-Montvid-00; + base:relationship\#ref-IDOrganisation base:organisation\/3290; + base:relationship\#ref-IDPerson_active base:person\/SanMan-00; + base:relationship\#ref-IDPerson_passive base:person\/Marrgu-00 . + +base:relationship\/25888 a base:relationship; + base:relationship\#IDRel 25888; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CarTra-00 . + +base:relationship\/25893 a base:relationship; + base:relationship\#IDRel 25893; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RotAle-00 . + +base:relationship\/25898 a base:relationship; + base:relationship\#IDRel 25898; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GotJoh-00 . + +base:relationship\/25903 a base:relationship; + base:relationship\#IDRel 25903; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/HerGui-00 . + +base:relationship\/25908 a base:relationship; + base:relationship\#IDRel 25908; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/KleRud-00 . + +base:relationship\/25913 a base:relationship; + base:relationship\#IDRel 25913; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/LanMax-00 . + +base:relationship\/25918 a base:relationship; + base:relationship\#IDRel 25918; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SalHei-00 . + +base:relationship\/25923 a base:relationship; + base:relationship\#IDRel 25923; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/DecBru-00 . + +base:relationship\/25928 a base:relationship; + base:relationship\#IDRel 25928; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeAlf-00 . + +base:relationship\/25933 a base:relationship; + base:relationship\#IDRel 25933; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/Gr\%C3\%BCIlk-00 . + +base:relationship\/25938 a base:relationship; + base:relationship\#IDRel 25938; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FehGat-00 . + +base:relationship\/25943 a base:relationship; + base:relationship\#IDRel 25943; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/KayFri-00 . + +base:relationship\/25948 a base:relationship; + base:relationship\#DateStart_Fuzzy "Autumn 1909"; + base:relationship\#DateStart_Max "1909-12-21"^^xsd:date; + base:relationship\#DateStart_Min "1909-09-21"^^xsd:date; + base:relationship\#IDRel 25948; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SteHan-00 . + +base:relationship\/25953 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 25953; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/AdaMax-00 . + +base:relationship\/25958 a base:relationship; + base:relationship\#IDRel 25958; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Bühnenverleger"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WolHan-01 . + +base:relationship\/25963 a base:relationship; + base:relationship\#IDRel 25963; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BerNor-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/25968 a base:relationship; + base:relationship\#IDRel 25968; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SchAug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandfather . + +base:relationship\/25973 a base:relationship; + base:relationship\#IDRel 25973; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SchAma-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandmother . + +base:relationship\/25978 a base:relationship; + base:relationship\#IDRel 25978; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "Great grandfather"; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/NoePhi-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/25983 a base:relationship; + base:relationship\#IDRel 25983; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "Great uncle"; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/NoeLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/25987 a base:relationship; + base:relationship\#IDRel 25987; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/25988 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 25988; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/JafCar-00 . + +base:relationship\/25993 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 25993; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/IhlPet-00 . + +base:relationship\/25998 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 25998; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72469; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/KaiGeo-00 . + +base:relationship\/26 a base:relationship; + base:relationship\#IDRel 26; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "(playwright, director, actor)"; + base:relationship\#ref-IDPerson_active base:person\/KalBer-00; + base:relationship\#ref-IDPerson_passive base:person\/GolAbr-00 . + +base:relationship\/260 a base:relationship; + base:relationship\#IDRel 260; + base:relationship\#Timeperiod "brother and sister"; + base:relationship\#ref-IDPerson_active base:person\/ResEdo-00; + base:relationship\#ref-IDPerson_passive base:person\/ResJos-00 . + +base:relationship\/26003 a base:relationship; + base:relationship\#IDRel 26003; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WelLut-00 . + +base:relationship\/26008 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 26008; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GadSve-00 . + +base:relationship\/26013 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26013; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72469; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/LeoRud-00 . + +base:relationship\/26018 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 26018; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RosKar-00 . + +base:relationship\/26023 a base:relationship; + base:relationship\#IDRel 26023; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BerWil-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/26028 a base:relationship; + base:relationship\#IDRel 26028; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BerFra-02; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/26033 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 26033; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SchArt-01 . + +base:relationship\/26038 a base:relationship; + base:relationship\#DateStart_Fuzzy "1921"; + base:relationship\#DateStart_Max "1921-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1921-01-01"^^xsd:date; + base:relationship\#IDRel 26038; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BerEli-00 . + +base:relationship\/26043 a base:relationship; + base:relationship\#DateStart_Fuzzy "1921"; + base:relationship\#DateStart_Max "1921-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1921-01-01"^^xsd:date; + base:relationship\#IDRel 26043; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GraAle-00 . + +base:relationship\/26048 a base:relationship; + base:relationship\#DateStart_Fuzzy "1921"; + base:relationship\#DateStart_Max "1921-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1921-01-01"^^xsd:date; + base:relationship\#IDRel 26048; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/PalMax-00 . + +base:relationship\/26053 a base:relationship; + base:relationship\#DateStart_Fuzzy "1921"; + base:relationship\#DateStart_Max "1921-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1921-01-01"^^xsd:date; + base:relationship\#IDRel 26053; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72449; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FraBru-00 . + +base:relationship\/26058 a base:relationship; + base:relationship\#DateStart_Fuzzy "1914"; + base:relationship\#DateStart_Max "1914-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1914-01-01"^^xsd:date; + base:relationship\#IDRel 26058; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "They worked as Playwriter at the same theatre, but Berstl wrote that they just met sporadically unfortunately"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/EloArt-00 . + +base:relationship\/26063 a base:relationship; + base:relationship\#IDRel 26063; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BraMat-00 . + +base:relationship\/26068 a base:relationship; + base:relationship\#IDRel 26068; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/ZieEri-00 . + +base:relationship\/26073 a base:relationship; + base:relationship\#IDRel 26073; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/MayMar-00 . + +base:relationship\/26078 a base:relationship; + base:relationship\#IDRel 26078; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SteAlb-00 . + +base:relationship\/26083 a base:relationship; + base:relationship\#IDRel 26083; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AdlIsr-1121; + base:relationship\#ref-IDPerson_passive base:person\/PozJ\.\+-3657; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandfather . + +base:relationship\/26093 a base:relationship; + base:relationship\#IDRel 26093; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AxeMin-1205; + base:relationship\#ref-IDPerson_passive base:person\/AxeMor-1206; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/26098 a base:relationship; + base:relationship\#IDRel 26098; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AxeRuk-1207; + base:relationship\#ref-IDPerson_passive base:person\/AxeAvr-1204; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/26103 a base:relationship; + base:relationship\#IDRel 26103; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/AxeRuk-1207; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/26108 a base:relationship; + base:relationship\#IDRel 26108; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/AdlIsr-1121; + base:relationship\#ref-IDPerson_passive base:person\/BroMos-1400 . + +base:relationship\/26113 a base:relationship; + base:relationship\#IDRel 26113; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AdlSte-1127; + base:relationship\#ref-IDPerson_passive base:person\/AdlSar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/26118 a base:relationship; + base:relationship\#IDRel 26118; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSte-1127; + base:relationship\#ref-IDPerson_passive base:person\/EdiRob-3688 . + +base:relationship\/26123 a base:relationship; + base:relationship\#IDRel 26123; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSte-1127; + base:relationship\#ref-IDPerson_passive base:person\/BliDal-3689 . + +base:relationship\/26128 a base:relationship; + base:relationship\#IDRel 26128; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSte-1127; + base:relationship\#ref-IDPerson_passive base:person\/ManLou-3690 . + +base:relationship\/26133 a base:relationship; + base:relationship\#IDRel 26133; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeRos-980; + base:relationship\#ref-IDPerson_passive base:person\/SegMor-2878 . + +base:relationship\/26138 a base:relationship; + base:relationship\#IDRel 26138; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AntRiv-1161; + base:relationship\#ref-IDPerson_passive base:person\/ZeyMax-3658; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/26148 a base:relationship; + base:relationship\#IDRel 26148; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/GolLei-757 . + +base:relationship\/26153 a base:relationship; + base:relationship\#IDRel 26153; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/NakM-3687 . + +base:relationship\/26158 a base:relationship; + base:relationship\#IDRel 26158; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/BenJac-1252 . + +base:relationship\/26163 a base:relationship; + base:relationship\#IDRel 26163; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/FreLaz-1681 . + +base:relationship\/26168 a base:relationship; + base:relationship\#IDRel 26168; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/NerEst-2555 . + +base:relationship\/26193 a base:relationship; + base:relationship\#IDRel 26193; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/BreSho-3697 . + +base:relationship\/26208 a base:relationship; + base:relationship\#IDRel 26208; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/KamAvr-3613 . + +base:relationship\/26213 a base:relationship; + base:relationship\#IDRel 26213; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/SerHer-2891 . + +base:relationship\/26218 a base:relationship; + base:relationship\#IDRel 26218; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/EdeSon-1540 . + +base:relationship\/26228 a base:relationship; + base:relationship\#IDRel 26228; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/LurYos-3724 . + +base:relationship\/26233 a base:relationship; + base:relationship\#IDRel 26233; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/HirPer-2006 . + +base:relationship\/26238 a base:relationship; + base:relationship\#IDRel 26238; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/LipKen-762 . + +base:relationship\/26243 a base:relationship; + base:relationship\#IDRel 26243; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/SchLou-2852 . + +base:relationship\/26248 a base:relationship; + base:relationship\#IDRel 26248; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/ReiEma-3490 . + +base:relationship\/26258 a base:relationship; + base:relationship\#IDRel 26258; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/TagAar-3046 . + +base:relationship\/26263 a base:relationship; + base:relationship\#IDRel 26263; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/BluMax-1344 . + +base:relationship\/26268 a base:relationship; + base:relationship\#IDRel 26268; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/GolMax-3699 . + +base:relationship\/26273 a base:relationship; + base:relationship\#IDRel 26273; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/TauJos-3698 . + +base:relationship\/26283 a base:relationship; + base:relationship\#IDRel 26283; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDOrganisation base:organisation\/69924; + base:relationship\#ref-IDPerson_active base:person\/BelMor-1243; + base:relationship\#ref-IDPerson_passive base:person\/RozTor-3700 . + +base:relationship\/26288 a base:relationship; + base:relationship\#IDRel 26288; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/RotAle-00 . + +base:relationship\/26293 a base:relationship; + base:relationship\#IDRel 26293; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/LanMax-00 . + +base:relationship\/26298 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 26298; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/RosKar-00 . + +base:relationship\/263 a base:relationship; + base:relationship\#IDRel 263; + base:relationship\#Timeperiod "brother and sister"; + base:relationship\#ref-IDPerson_active base:person\/JeaRes-00; + base:relationship\#ref-IDPerson_passive base:person\/ResJos-00 . + +base:relationship\/26302 a base:relationship; + base:relationship\#DateStart_Fuzzy "1920er"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1920-01-01"^^xsd:date; + base:relationship\#IDRel 26302; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KleCes-00 . + +base:relationship\/26303 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 26303; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WalKar-00 . + +base:relationship\/26307 a base:relationship; + base:relationship\#DateStart_Fuzzy "23rd Februar 1922"; + base:relationship\#DateStart_Max "1922-02-23"^^xsd:date; + base:relationship\#DateStart_Min "1922-02-23"^^xsd:date; + base:relationship\#IDRel 26307; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/CorLov-00 . + +base:relationship\/26308 a base:relationship; + base:relationship\#IDRel 26308; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KloEri-00 . + +base:relationship\/26313 a base:relationship; + base:relationship\#DateStart_Fuzzy "1926"; + base:relationship\#DateStart_Max "1926-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1926-01-01"^^xsd:date; + base:relationship\#IDRel 26313; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MoiAle-00 . + +base:relationship\/26318 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26318; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/LooThe-00 . + +base:relationship\/26323 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26323; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/DurTil-00 . + +base:relationship\/26328 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26328; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/ForRud-00 . + +base:relationship\/26333 a base:relationship; + base:relationship\#DateStart_Fuzzy "1922"; + base:relationship\#DateStart_Max "1922-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1922-01-01"^^xsd:date; + base:relationship\#IDRel 26333; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72454; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BerEli-00 . + +base:relationship\/26338 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 26338; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72454; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/Kl\%C3\%B6Eug-00 . + +base:relationship\/26343 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "2015-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 26343; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72454; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/GoeCur-00 . + +base:relationship\/26348 a base:relationship; + base:relationship\#IDRel 26348; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KraArt-00 . + +base:relationship\/26354 a base:relationship; + base:relationship\#DateStart_Fuzzy "1923"; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 26354; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Deutschen Künstlertheaters"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/402; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KorFri-00 . + +base:relationship\/26358 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 26358; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Deutschen Künstlertheaters"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/402; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/AdaMax-00 . + +base:relationship\/26363 a base:relationship; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 26363; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Deutschen Künstlertheaters"; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/402; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BasAlb-00 . + +base:relationship\/26367 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 26367; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BerJul-00 . + +base:relationship\/26370 a base:relationship; + base:relationship\#IDRel 26370; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/ZieEri-00 . + +base:relationship\/26373 a base:relationship; + base:relationship\#IDRel 26373; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/EloArt-00 . + +base:relationship\/26378 a base:relationship; + base:relationship\#IDRel 26378; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/GraAle-00 . + +base:relationship\/26383 a base:relationship; + base:relationship\#DateStart_Fuzzy "1937"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 26383; + base:relationship\#ref-IDLocation base:location\/USA-Holly-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/SchJos-00 . + +base:relationship\/26388 a base:relationship; + base:relationship\#IDRel 26388; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MenLot-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/26393 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 26393; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72459; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/H\%C3\%B6rPau-00 . + +base:relationship\/26398 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 26398; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72459; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/PauMar-00 . + +base:relationship\/26403 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 26403; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72459; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MasFri-00 . + +base:relationship\/26408 a base:relationship; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 26408; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KleRob-00 . + +base:relationship\/26413 a base:relationship; + base:relationship\#IDRel 26413; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BarMar-01 . + +base:relationship\/26418 a base:relationship; + base:relationship\#DateStart_Fuzzy "1913"; + base:relationship\#DateStart_Max "1913-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1913-01-01"^^xsd:date; + base:relationship\#IDRel 26418; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/GadSve-00 . + +base:relationship\/26423 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 26423; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72459; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/KraWer-00 . + +base:relationship\/26428 a base:relationship; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 26428; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72459; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeAlf-00 . + +base:relationship\/26433 a base:relationship; + base:relationship\#IDRel 26433; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/SerDag-00 . + +base:relationship\/26438 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26438; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/BilPau-00 . + +base:relationship\/26443 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26443; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WedPam-00 . + +base:relationship\/26448 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26448; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/StrAgn-00 . + +base:relationship\/26453 a base:relationship; + base:relationship\#DateStart_Fuzzy "1925"; + base:relationship\#DateStart_Max "1925-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1925-01-01"^^xsd:date; + base:relationship\#IDRel 26453; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/PisErw-00 . + +base:relationship\/26458 a base:relationship; + base:relationship\#IDRel 26458; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/384; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WelLut-00 . + +base:relationship\/26463 a base:relationship; + base:relationship\#IDRel 26463; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AdlIsr-1121; + base:relationship\#ref-IDPerson_passive base:person\/AdlJac-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Cousin . + +base:relationship\/26468 a base:relationship; + base:relationship\#IDRel 26468; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/LukShm-00 . + +base:relationship\/26473 a base:relationship; + base:relationship\#IDRel 26473; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/EinLiz-00 . + +base:relationship\/26478 a base:relationship; + base:relationship\#IDRel 26478; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/SchMos-00 . + +base:relationship\/26483 a base:relationship; + base:relationship\#IDRel 26483; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/AleSho-00 . + +base:relationship\/26488 a base:relationship; + base:relationship\#IDRel 26488; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/NerEst-00 . + +base:relationship\/26493 a base:relationship; + base:relationship\#IDRel 26493; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/GolSam-01 . + +base:relationship\/26498 a base:relationship; + base:relationship\#IDRel 26498; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/ZylWol-00 . + +base:relationship\/26503 a base:relationship; + base:relationship\#IDRel 26503; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/ShoAba-00 . + +base:relationship\/26508 a base:relationship; + base:relationship\#IDRel 26508; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/FriRos-00 . + +base:relationship\/26510 a base:relationship; + base:relationship\#IDRel 26510; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/BerYek-1272 . + +base:relationship\/26514 a base:relationship; + base:relationship\#IDRel 26514; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/BreAne-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/26517 a base:relationship; + base:relationship\#IDRel 26517; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AxeAvr-1204; + base:relationship\#ref-IDPerson_passive base:person\/BreSho-00 . + +base:relationship\/26518 a base:relationship; + base:relationship\#IDRel 26518; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AntRiv-1161; + base:relationship\#ref-IDPerson_passive base:person\/FisAbr-3634 . + +base:relationship\/26523 a base:relationship; + base:relationship\#IDRel 26523; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#comment "Partner"; + base:relationship\#ref-IDPerson_active base:person\/AntRiv-1161; + base:relationship\#ref-IDPerson_passive base:person\/BerLaz-00 . + +base:relationship\/26528 a base:relationship; + base:relationship\#IDRel 26528; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/FshSta-00 . + +base:relationship\/26533 a base:relationship; + base:relationship\#IDRel 26533; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/LibJac-00 . + +base:relationship\/26538 a base:relationship; + base:relationship\#IDRel 26538; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/TeiAbr-3061 . + +base:relationship\/26543 a base:relationship; + base:relationship\#IDRel 26543; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/ArnMar-1177; + base:relationship\#ref-IDPerson_passive base:person\/KamEst-3610 . + +base:relationship\/26548 a base:relationship; + base:relationship\#IDRel 26548; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/BerBer-00 . + +base:relationship\/26553 a base:relationship; + base:relationship\#IDRel 26553; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/TanAvr-729 . + +base:relationship\/26557 a base:relationship; + base:relationship\#IDRel 26557; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/GraIsr-00 . + +base:relationship\/26558 a base:relationship; + base:relationship\#IDRel 26558; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BecBer-1238; + base:relationship\#ref-IDPerson_passive base:person\/GraAni-00 . + +base:relationship\/26573 a base:relationship; + base:relationship\#IDRel 26573; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/BelMor-1243; + base:relationship\#ref-IDPerson_passive base:person\/DegGli-00 . + +base:relationship\/26578 a base:relationship; + base:relationship\#IDRel 26578; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#ref-IDPerson_active base:person\/AdlSam-740; + base:relationship\#ref-IDPerson_passive base:person\/TeiAbr-3061 . + +base:relationship\/26585 a base:relationship; + base:relationship\#IDRel 26585; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00 . + +base:relationship\/26590 a base:relationship; + base:relationship\#IDRel 26590; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00 . + +base:relationship\/26595 a base:relationship; + base:relationship\#IDRel 26595; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/SchArn-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Cousin . + +base:relationship\/266 a base:relationship; + base:relationship\#IDRel 266; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDPerson_active base:person\/JeaRes-00; + base:relationship\#ref-IDPerson_passive base:person\/CahCha-00 . + +base:relationship\/26600 a base:relationship; + base:relationship\#DateStart_Fuzzy "1909"; + base:relationship\#DateStart_Max "1909-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 26600; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/K\%C3\%A1lEmm-00 . + +base:relationship\/26605 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26605; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/LehFra-00 . + +base:relationship\/26610 a base:relationship; + base:relationship\#DateStart_Fuzzy "1917"; + base:relationship\#DateStart_Max "1917-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1917-01-01"^^xsd:date; + base:relationship\#IDRel 26610; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GroRud-00 . + +base:relationship\/26615 a base:relationship; + base:relationship\#DateStart_Fuzzy "between 1909 and 1914"; + base:relationship\#DateStart_Max "1914-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1909-01-01"^^xsd:date; + base:relationship\#IDRel 26615; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GolMal-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/26620 a base:relationship; + base:relationship\#IDRel 26620; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/FeuHan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/26625 a base:relationship; + base:relationship\#IDRel 26625; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BodCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/26630 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26630; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/GruFri-00 . + +base:relationship\/26635 a base:relationship; + base:relationship\#IDRel 26635; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26640 a base:relationship; + base:relationship\#IDRel 26640; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26645 a base:relationship; + base:relationship\#IDRel 26645; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26650 a base:relationship; + base:relationship\#IDRel 26650; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26655 a base:relationship; + base:relationship\#IDRel 26655; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26660 a base:relationship; + base:relationship\#IDRel 26660; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26665 a base:relationship; + base:relationship\#IDRel 26665; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26670 a base:relationship; + base:relationship\#IDRel 26670; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02 . + +base:relationship\/26675 a base:relationship; + base:relationship\#IDRel 26675; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/DonGae-00 . + +base:relationship\/26680 a base:relationship; + base:relationship\#IDRel 26680; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BraMar-02; + base:relationship\#ref-IDPerson_passive base:person\/BraPao-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/26685 a base:relationship; + base:relationship\#IDRel 26685; + base:relationship\#ref-IDPerson_active base:person\/LinWil-00 . + +base:relationship\/26690 a base:relationship; + base:relationship\#IDRel 26690; + base:relationship\#ref-IDPerson_active base:person\/LinWil-00 . + +base:relationship\/26695 a base:relationship; + base:relationship\#IDRel 26695; + base:relationship\#ref-IDPerson_active base:person\/LinWil-00 . + +base:relationship\/26700 a base:relationship; + base:relationship\#IDRel 26700; + base:relationship\#ref-IDPerson_active base:person\/LinWil-00 . + +base:relationship\/26705 a base:relationship; + base:relationship\#IDRel 26705; + base:relationship\#ref-IDPerson_active base:person\/LinWil-00 . + +base:relationship\/26710 a base:relationship; + base:relationship\#IDRel 26710; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26715 a base:relationship; + base:relationship\#IDRel 26715; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26720 a base:relationship; + base:relationship\#IDRel 26720; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26725 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26725; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/LieAlb-00 . + +base:relationship\/26730 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26730; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/WenFri-00 . + +base:relationship\/26735 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26735; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/FraLin-00 . + +base:relationship\/26740 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26740; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/CarHug-00 . + +base:relationship\/26745 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 26745; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72187; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/RotHan-00 . + +base:relationship\/26750 a base:relationship; + base:relationship\#DateStart_Fuzzy "1930"; + base:relationship\#DateStart_Max "1930-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1930-01-01"^^xsd:date; + base:relationship\#IDRel 26750; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72187; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/B\%C3\%B6tMax-00 . + +base:relationship\/26755 a base:relationship; + base:relationship\#IDRel 26755; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/KleRob-00 . + +base:relationship\/26760 a base:relationship; + base:relationship\#IDRel 26760; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/EbeCar-00; + base:relationship\#ref-IDPerson_passive base:person\/HinPau-00 . + +base:relationship\/26765 a base:relationship; + base:relationship\#IDRel 26765; + base:relationship\#Relationshiptype base:RelationshipType-student; + base:relationship\#comment "Reinhardt’s Student"; + base:relationship\#ref-IDPerson_active base:person\/EbeCar-00; + base:relationship\#ref-IDPerson_passive base:person\/ReiMax-00 . + +base:relationship\/26770 a base:relationship; + base:relationship\#IDRel 26770; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26775 a base:relationship; + base:relationship\#IDRel 26775; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26780 a base:relationship; + base:relationship\#IDRel 26780; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26785 a base:relationship; + base:relationship\#IDRel 26785; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26790 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26790; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/LomHer-00 . + +base:relationship\/26795 a base:relationship; + base:relationship\#IDRel 26795; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/AntAnd-00; + base:relationship\#ref-IDPerson_passive base:person\/SanJam-00 . + +base:relationship\/26800 a base:relationship; + base:relationship\#IDRel 26800; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WedFra-00 . + +base:relationship\/26805 a base:relationship; + base:relationship\#IDRel 26805; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WedTil-00 . + +base:relationship\/26810 a base:relationship; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#IDRel 26810; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Bresl-00; + base:relationship\#ref-IDOrganisation base:organisation\/72493; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WalCar-00 . + +base:relationship\/26815 a base:relationship; + base:relationship\#IDRel 26815; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/RobEug-00 . + +base:relationship\/26820 a base:relationship; + base:relationship\#IDRel 26820; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/ForRud-00 . + +base:relationship\/26825 a base:relationship; + base:relationship\#DateStart_Fuzzy "1905"; + base:relationship\#DateStart_Max "1905-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1905-01-01"^^xsd:date; + base:relationship\#IDRel 26825; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PL-Bresl-00; + base:relationship\#ref-IDOrganisation base:organisation\/72493; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/SteAlb-00 . + +base:relationship\/26830 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1924"; + base:relationship\#DateEnd_Max "1924-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1924-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1914"; + base:relationship\#DateStart_Max "1914-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1914-01-01"^^xsd:date; + base:relationship\#IDRel 26830; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/LooThe-00 . + +base:relationship\/26835 a base:relationship; + base:relationship\#IDRel 26835; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/Kl\%C3\%B6Eug-00 . + +base:relationship\/26840 a base:relationship; + base:relationship\#IDRel 26840; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/JanEmi-00 . + +base:relationship\/26845 a base:relationship; + base:relationship\#IDRel 26845; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/Gr\%C3\%BCIlk-00 . + +base:relationship\/26850 a base:relationship; + base:relationship\#IDRel 26850; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26855 a base:relationship; + base:relationship\#IDRel 26855; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26860 a base:relationship; + base:relationship\#IDRel 26860; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00 . + +base:relationship\/26865 a base:relationship; + base:relationship\#IDRel 26865; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/BerNor-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/26870 a base:relationship; + base:relationship\#DateStart_Fuzzy "1943"; + base:relationship\#DateStart_Max "1943-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1943-01-01"^^xsd:date; + base:relationship\#IDRel 26870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/406; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/GorMar-01 . + +base:relationship\/26875 a base:relationship; + base:relationship\#IDRel 26875; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BerJul-00; + base:relationship\#ref-IDPerson_passive base:person\/SteCar-01 . + +base:relationship\/26880 a base:relationship; + base:relationship\#IDRel 26880; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/M\%C3\%BClTra-00 . + +base:relationship\/26885 a base:relationship; + base:relationship\#IDRel 26885; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MorPau-00 . + +base:relationship\/26890 a base:relationship; + base:relationship\#IDRel 26890; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MenEle-00 . + +base:relationship\/26895 a base:relationship; + base:relationship\#IDRel 26895; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/539; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/LosLin-00 . + +base:relationship\/269 a base:relationship; + base:relationship\#IDRel 269; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1884-1886"; + base:relationship\#ref-IDLocation base:location\/GER-MUC-00; + base:relationship\#ref-IDPerson_active base:person\/StaAgn-00; + base:relationship\#ref-IDPerson_passive base:person\/WagJoh-00 . + +base:relationship\/26900 a base:relationship; + base:relationship\#IDRel 26900; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/HirGeo-00 . + +base:relationship\/26905 a base:relationship; + base:relationship\#IDRel 26905; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/HaaK\%C3\%A4t-00 . + +base:relationship\/26910 a base:relationship; + base:relationship\#IDRel 26910; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/GebOtt-00 . + +base:relationship\/26915 a base:relationship; + base:relationship\#IDRel 26915; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/WalHar-00 . + +base:relationship\/26920 a base:relationship; + base:relationship\#IDRel 26920; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/FriEgo-00 . + +base:relationship\/26925 a base:relationship; + base:relationship\#IDRel 26925; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/DorK\%C3\%A4t-00 . + +base:relationship\/26930 a base:relationship; + base:relationship\#IDRel 26930; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00 . + +base:relationship\/26935 a base:relationship; + base:relationship\#IDRel 26935; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00 . + +base:relationship\/26940 a base:relationship; + base:relationship\#IDRel 26940; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00 . + +base:relationship\/26945 a base:relationship; + base:relationship\#IDRel 26945; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiHub-00 . + +base:relationship\/26950 a base:relationship; + base:relationship\#IDRel 26950; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/72439; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/MarMax-01 . + +base:relationship\/26955 a base:relationship; + base:relationship\#IDRel 26955; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/GER-BER-00; + base:relationship\#ref-IDOrganisation base:organisation\/375; + base:relationship\#ref-IDPerson_active base:person\/BarVic-00; + base:relationship\#ref-IDPerson_passive base:person\/ZicMar-00 . + +base:relationship\/26960 a base:relationship; + base:relationship\#IDRel 26960; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00 . + +base:relationship\/26965 a base:relationship; + base:relationship\#IDRel 26965; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00 . + +base:relationship\/26970 a base:relationship; + base:relationship\#IDRel 26970; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BodRen-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/26975 a base:relationship; + base:relationship\#IDRel 26975; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BodHan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/26980 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably between 1906 and 1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26980; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/KolWal-00 . + +base:relationship\/26985 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably between 1906 and 1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26985; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/StrOsc-00 . + +base:relationship\/26990 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably between 1906 and 1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26990; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/EysEdm-00 . + +base:relationship\/26995 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably between 1906 and 1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 26995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/StoRob-00 . + +base:relationship\/27 a base:relationship; + base:relationship\#IDRel 27; + base:relationship\#comment "sister"; + base:relationship\#ref-IDPerson_active base:person\/KreEli-00; + base:relationship\#ref-IDPerson_passive base:person\/KreMar-00 . + +base:relationship\/270 a base:relationship; + base:relationship\#IDRel 270; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagRic-00; + base:relationship\#ref-IDPerson_passive base:person\/WagJoh-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/27000 a base:relationship; + base:relationship\#DateStart_Fuzzy "Probably between 1906 and 1910"; + base:relationship\#DateStart_Max "1910-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 27000; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/ZieCar-00 . + +base:relationship\/27005 a base:relationship; + base:relationship\#DateStart_Fuzzy "1906"; + base:relationship\#DateStart_Max "1906-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1906-01-01"^^xsd:date; + base:relationship\#IDRel 27005; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/KarWil-00 . + +base:relationship\/27010 a base:relationship; + base:relationship\#IDRel 27010; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BodIre-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/27015 a base:relationship; + base:relationship\#IDRel 27015; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/StiMax-00 . + +base:relationship\/27020 a base:relationship; + base:relationship\#IDRel 27020; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/LanGus-00 . + +base:relationship\/27025 a base:relationship; + base:relationship\#IDRel 27025; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/TolNeo-00 . + +base:relationship\/27030 a base:relationship; + base:relationship\#IDRel 27030; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDPerson_active base:person\/BodRob-00; + base:relationship\#ref-IDPerson_passive base:person\/KroPet-00 . + +base:relationship\/27035 a base:relationship; + base:relationship\#IDRel 27035; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/WarPau-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/27040 a base:relationship; + base:relationship\#IDRel 27040; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/WarJen-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/27045 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1966"; + base:relationship\#DateEnd_Max "1966-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1966-01-01"^^xsd:date; + base:relationship\#IDRel 27045; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/BenJac-1252; + base:relationship\#ref-IDPerson_passive base:person\/EstSla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/27050 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899-11-18"; + base:relationship\#DateStart_Max "1899-11-18"^^xsd:date; + base:relationship\#DateStart_Min "1899-11-18"^^xsd:date; + base:relationship\#IDRel 27050; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/kamest-00; + base:relationship\#ref-IDPerson_passive base:person\/KamIda-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/27060 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1980-05-21"; + base:relationship\#DateEnd_Max "1980-05-21"^^xsd:date; + base:relationship\#DateEnd_Min "1980-05-21"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1919"; + base:relationship\#DateStart_Max "1919-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1919-01-01"^^xsd:date; + base:relationship\#IDRel 27060; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/kamida-00; + base:relationship\#ref-IDPerson_passive base:person\/KamRut-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/27065 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1925"; + base:relationship\#DateEnd_Max "1925-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1925-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1919"; + base:relationship\#DateStart_Max "1919-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1919-01-01"^^xsd:date; + base:relationship\#IDRel 27065; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#ref-IDPerson_active base:person\/kamest-00; + base:relationship\#ref-IDPerson_passive base:person\/KamRut-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/273 a base:relationship; + base:relationship\#IDRel 273; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WagJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/ViaPau-00 . + +base:relationship\/276 a base:relationship; + base:relationship\#IDRel 276; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "nemesis with Wilhelmine Schröder-Devrient"; + base:relationship\#ref-IDPerson_active base:person\/WagJoh-00; + base:relationship\#ref-IDPerson_passive base:person\/SchWil-00 . + +base:relationship\/278 a base:relationship; + base:relationship\#IDRel 278; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDOrganisation base:organisation\/71; + base:relationship\#ref-IDPerson_active base:person\/CahCha-00; + base:relationship\#ref-IDPerson_passive base:person\/WalGus-00 . + +base:relationship\/28 a base:relationship; + base:relationship\#IDRel 28; + base:relationship\#comment "sister"; + base:relationship\#ref-IDPerson_active base:person\/KreMar-00; + base:relationship\#ref-IDPerson_passive base:person\/KreEli-00 . + +base:relationship\/281 a base:relationship; + base:relationship\#IDRel 281; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WalGus-00; + base:relationship\#ref-IDPerson_passive base:person\/WalMin-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/284 a base:relationship; + base:relationship\#IDRel 284; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/MarMat-00; + base:relationship\#ref-IDPerson_passive base:person\/WalMin-00 . + +base:relationship\/287 a base:relationship; + base:relationship\#IDRel 287; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WalRao-00; + base:relationship\#ref-IDPerson_passive base:person\/WalMin-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/29 a base:relationship; + base:relationship\#IDRel 29; + base:relationship\#Timeperiod ""; + base:relationship\#comment "Daughter"; + base:relationship\#ref-IDPerson_active base:person\/KupCae-00; + base:relationship\#ref-IDPerson_passive base:person\/HeiCae-00 . + +base:relationship\/290 a base:relationship; + base:relationship\#IDRel 290; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WalRao-00; + base:relationship\#ref-IDPerson_passive base:person\/WalGus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/291 a base:relationship; + base:relationship\#IDRel 291; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment "Student friendship"; + base:relationship\#ref-IDPerson_active base:person\/BodArt-00; + base:relationship\#ref-IDPerson_passive base:person\/ZemAle-00 . + +base:relationship\/294 a base:relationship; + base:relationship\#IDRel 294; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HaeNat-00; + base:relationship\#ref-IDPerson_passive base:person\/TicJos-00 . + +base:relationship\/297 a base:relationship; + base:relationship\#IDRel 297; + base:relationship\#comment "Tichatschek sang in Bayreuth in his Wagners operas together with Wilhelmine Schröder-devrient"; + base:relationship\#ref-IDPerson_active base:person\/TicJos-00; + base:relationship\#ref-IDPerson_passive base:person\/SchWil-00 . + +base:relationship\/3 a base:relationship; + base:relationship\#IDRel 3; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/AT-VIE-00; + base:relationship\#ref-IDPerson_active base:person\/AbeIre-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00 . + +base:relationship\/30 a base:relationship; + base:relationship\#IDRel 30; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment "Caesar is acting teacher of Joseph Kainz"; + base:relationship\#ref-IDPerson_active base:person\/KaiJos-00; + base:relationship\#ref-IDPerson_passive base:person\/KupCae-00 . + +base:relationship\/300 a base:relationship; + base:relationship\#IDRel 300; + base:relationship\#comment "He met Richard Wagner at Oper Dresden. They worked together very well."; + base:relationship\#ref-IDLocation base:location\/GER-Dresd-00; + base:relationship\#ref-IDOrganisation base:organisation\/494; + base:relationship\#ref-IDPerson_active base:person\/TicJos-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/309 a base:relationship; + base:relationship\#IDRel 309; + base:relationship\#Timeperiod "Alexander Herrmann is Leon's uncle."; + base:relationship\#ref-IDPerson_active base:person\/HerAle-00; + base:relationship\#ref-IDPerson_passive base:person\/HerLeo-00 . + +base:relationship\/31 a base:relationship; + base:relationship\#IDRel 31; + base:relationship\#comment "Sister of Marie Lehmann, On stage together with Marie(first Rheintochter) at Bayreuther Festspiele 1876 "; + base:relationship\#ref-IDPerson_active base:person\/LehLill-00; + base:relationship\#ref-IDPerson_passive base:person\/LehMar-00 . + +base:relationship\/315 a base:relationship; + base:relationship\#IDRel 315; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/CorBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HerLeo-00 . + +base:relationship\/318 a base:relationship; + base:relationship\#IDRel 318; + base:relationship\#Timeperiod "Blanche Corelli is the daugther of Rosa Csilleg"; + base:relationship\#ref-IDPerson_active base:person\/CsiRos-00; + base:relationship\#ref-IDPerson_passive base:person\/CorBla-00 . + +base:relationship\/32 a base:relationship; + base:relationship\#IDRel 32; + base:relationship\#comment """Sister of Lilli Lehmann +On stage together with Lilli Lehmann (second Rheintochter) at Bayreuther Festspiele 1876 """; + base:relationship\#ref-IDPerson_active base:person\/LehMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/321 a base:relationship; + base:relationship\#IDRel 321; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#Timeperiod "1893"; + base:relationship\#ref-IDPerson_active base:person\/KamEst-00; + base:relationship\#ref-IDPerson_passive base:person\/KamAvr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/324 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899-11-18"; + base:relationship\#DateStart_Max "1899-11-18"^^xsd:date; + base:relationship\#DateStart_Min "1899-11-18"^^xsd:date; + base:relationship\#IDRel 324; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#comment "Ida is the daughter of Esther Kaminska."; + base:relationship\#ref-IDPerson_active base:person\/KamIda-00; + base:relationship\#ref-IDPerson_passive base:person\/KamEst-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/327 a base:relationship; + base:relationship\#DateStart_Fuzzy "1899-11-18"; + base:relationship\#DateStart_Max "1899-11-18"^^xsd:date; + base:relationship\#DateStart_Min "1899-11-18"^^xsd:date; + base:relationship\#IDRel 327; + base:relationship\#Relationshiptype base:RelationshipType-family; + base:relationship\#Timeperiod "Ida is the daughter of Avrom Kaminski."; + base:relationship\#ref-IDPerson_active base:person\/KamIda-00; + base:relationship\#ref-IDPerson_passive base:person\/KamAvr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/33 a base:relationship; + base:relationship\#DateEnd_Fuzzy "Mai 1842"; + base:relationship\#DateEnd_Max "1842-05-31"^^xsd:date; + base:relationship\#DateEnd_Min "1842-05-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "August 1841"; + base:relationship\#DateStart_Max "1841-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1841-08-01"^^xsd:date; + base:relationship\#IDRel 33; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#Timeperiod "1841"; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01 . + +base:relationship\/330 a base:relationship; + base:relationship\#IDRel 330; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1918-1928"; + base:relationship\#ref-IDPerson_active base:person\/TurZyg-00; + base:relationship\#ref-IDPerson_passive base:person\/KamIda-00 . + +base:relationship\/333 a base:relationship; + base:relationship\#IDRel 333; + base:relationship\#Timeperiod "Jonas Turkow is Ida Kaminski's brother."; + base:relationship\#ref-IDPerson_active base:person\/TurJon-00; + base:relationship\#ref-IDPerson_passive base:person\/TurZyg-00 . + +base:relationship\/336 a base:relationship; + base:relationship\#IDRel 336; + base:relationship\#Timeperiod "1918-1928"; + base:relationship\#ref-IDPerson_active base:person\/TurJon-00; + base:relationship\#ref-IDPerson_passive base:person\/KamIda-00 . + +base:relationship\/339 a base:relationship; + base:relationship\#IDRel 339; + base:relationship\#comment "Brothers"; + base:relationship\#ref-IDPerson_active base:person\/TurMar-00; + base:relationship\#ref-IDPerson_passive base:person\/TurJon-00 . + +base:relationship\/34 a base:relationship; + base:relationship\#IDRel 34; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1894"; + base:relationship\#comment "Oscar Hammerstein, her patron when she went to the U.S., in 1894"; + base:relationship\#ref-IDPerson_active base:person\/LofCis-00; + base:relationship\#ref-IDPerson_passive base:person\/HamOsc-00 . + +base:relationship\/342 a base:relationship; + base:relationship\#IDRel 342; + base:relationship\#comment "Brothers"; + base:relationship\#ref-IDPerson_active base:person\/TurMar-00; + base:relationship\#ref-IDPerson_passive base:person\/TurZyg-00 . + +base:relationship\/345 a base:relationship; + base:relationship\#IDRel 345; + base:relationship\#comment "Brothers"; + base:relationship\#ref-IDPerson_active base:person\/TurMar-00; + base:relationship\#ref-IDPerson_passive base:person\/TurYit-00 . + +base:relationship\/348 a base:relationship; + base:relationship\#IDRel 348; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1888"; + base:relationship\#comment "marriage, they separated after their return to Europe, but got not divorced"; + base:relationship\#ref-IDPerson_active base:person\/KalPau-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/35 a base:relationship; + base:relationship\#IDRel 35; + base:relationship\#comment "Mother of Marie and Lilli Lehmann (opera singer)"; + base:relationship\#ref-IDPerson_active base:person\/LoeMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LehLill-00 . + +base:relationship\/351 a base:relationship; + base:relationship\#IDRel 351; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "asked him for his own singing career"; + base:relationship\#ref-IDPerson_active base:person\/KalPau-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/354 a base:relationship; + base:relationship\#IDRel 354; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "asked him for his own singing career"; + base:relationship\#ref-IDPerson_active base:person\/KalPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PatAde-00 . + +base:relationship\/357 a base:relationship; + base:relationship\#IDRel 357; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Bernhard Pollini arranged the contact between Paul Kalisch and Giovanni Battista Lamperti "; + base:relationship\#ref-IDPerson_active base:person\/KalPau-00; + base:relationship\#ref-IDPerson_passive base:person\/PolBer-00 . + +base:relationship\/36 a base:relationship; + base:relationship\#IDRel 36; + base:relationship\#comment "Mother of Marie and Lilli Lehmann (opera singer)"; + base:relationship\#ref-IDPerson_active base:person\/LoeMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LehMar-00 . + +base:relationship\/360 a base:relationship; + base:relationship\#IDRel 360; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Teresa is the aunt and teacher of Teresina Brambilla."; + base:relationship\#ref-IDPerson_active base:person\/BraTer-00; + base:relationship\#ref-IDPerson_passive base:person\/BraTer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/362 a base:relationship; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 362; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Rio de Janeiro, Belém, Manaus"; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/BalHel-00; + base:relationship\#ref-IDPerson_passive base:person\/LucMan-00 . + +base:relationship\/365 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 365; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/LucRaf-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/368 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 368; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/37 a base:relationship; + base:relationship\#IDRel 37; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Youth friend of Richard Wagner, worked together with him in Magdeburg, where he was a conductor (also on guest appearances in Königsberg and Dresden), 1863 she plays harp under conduction of Richard Wagner in Leipzig"; + base:relationship\#ref-IDLocation base:location\/GER-Magdb-00; + base:relationship\#ref-IDPerson_active base:person\/LoeMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/371 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "-"; + base:relationship\#IDRel 371; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/RafAug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/374 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1882"; + base:relationship\#DateEnd_Max "1882-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1863"; + base:relationship\#DateStart_Max "1863-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1863-01-01"^^xsd:date; + base:relationship\#IDRel 374; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/OliVic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/377 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1882"; + base:relationship\#DateEnd_Max "1882-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1882-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1865"; + base:relationship\#DateStart_Max "1865-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1865-01-01"^^xsd:date; + base:relationship\#IDRel 377; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "and Belém"; + base:relationship\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:relationship\#ref-IDOrganisation base:organisation\/632; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/OliVic-00 . + +base:relationship\/38 a base:relationship; + base:relationship\#IDRel 38; + base:relationship\#ref-IDPerson_active base:person\/MamEmm-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeIre-00 . + +base:relationship\/380 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1860"; + base:relationship\#DateEnd_Max "1860-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1860-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-01-01"^^xsd:date; + base:relationship\#IDRel 380; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-Recif-00; + base:relationship\#ref-IDOrganisation base:organisation\/677; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/OliGer-00 . + +base:relationship\/383 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1887"; + base:relationship\#DateEnd_Max "1887-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1887-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1885"; + base:relationship\#DateStart_Max "1885-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1885-01-01"^^xsd:date; + base:relationship\#IDRel 383; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "She worked as director in Associação Lírica Dramática"; + base:relationship\#ref-IDLocation base:location\/BR-Recif-00; + base:relationship\#ref-IDOrganisation base:organisation\/687; + base:relationship\#ref-IDPerson_active base:person\/LucMan-00; + base:relationship\#ref-IDPerson_passive base:person\/AdeEmi-00 . + +base:relationship\/386 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1889"; + base:relationship\#DateEnd_Max "1889-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1889-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 386; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroKet-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/389 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1900"; + base:relationship\#DateEnd_Max "1900-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1900-01-01"^^xsd:date; + base:relationship\#DateStart_Min "1890-03-12"^^xsd:date; + base:relationship\#IDRel 389; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/EnrHar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/39 a base:relationship; + base:relationship\#IDRel 39; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1876"; + base:relationship\#comment "Assistant of Hans Richter at the Bayreuther Festspiele"; + base:relationship\#ref-IDPerson_active base:person\/MotFel-00; + base:relationship\#ref-IDPerson_passive base:person\/RicHar-00 . + +base:relationship\/392 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1940"; + base:relationship\#DateEnd_Max "1940-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1940-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1893"; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 392; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PlaRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/395 a base:relationship; + base:relationship\#IDRel 395; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-Bright-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHen-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/398 a base:relationship; + base:relationship\#IDRel 398; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-Bright-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroHen-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/4 a base:relationship; + base:relationship\#IDRel 4; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "singing"; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDOrganisation base:organisation\/527; + base:relationship\#ref-IDPerson_active base:person\/LinJen-00; + base:relationship\#ref-IDPerson_passive base:person\/AlbMar-00 . + +base:relationship\/40 a base:relationship; + base:relationship\#IDRel 40; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment """Closer personal relationship with König Ludwig II, together with Josef Kainz and Emil Rhode +"""; + base:relationship\#ref-IDPerson_active base:person\/NacFra-00; + base:relationship\#ref-IDPerson_passive base:person\/KaiJos-00 . + +base:relationship\/401 a base:relationship; + base:relationship\#IDRel 401; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-Bright-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroEdw-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/404 a base:relationship; + base:relationship\#IDRel 404; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroDol-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/407 a base:relationship; + base:relationship\#DateStart_Fuzzy "1882"; + base:relationship\#DateStart_Max "1892-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1892-01-01"^^xsd:date; + base:relationship\#IDRel 407; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ZA-Durb-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroJes-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/41 a base:relationship; + base:relationship\#IDRel 41; + base:relationship\#comment "Maurice Strakosch (musician and impresario), her brother-in-law and singing teacher at a young age"; + base:relationship\#ref-IDPerson_active base:person\/PatAde-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/410 a base:relationship; + base:relationship\#IDRel 410; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/BroFra-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/413 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1937"; + base:relationship\#DateEnd_Max "1937-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1937-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1887"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 413; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJos-00 . + +base:relationship\/42 a base:relationship; + base:relationship\#IDRel 42; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "John Drew, Mrs. Ann Hartley Gilbert, and James Lewis, together they were outstanding stars of the Daly company, called \"Big Four\""; + base:relationship\#ref-IDPerson_active base:person\/RehAda-00; + base:relationship\#ref-IDPerson_passive base:person\/GilAnn-00 . + +base:relationship\/43 a base:relationship; + base:relationship\#IDRel 43; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Laura Keene was playing together in New York"; + base:relationship\#ref-IDLocation base:location\/USA-NY-00; + base:relationship\#ref-IDPerson_active base:person\/ReiCat-00; + base:relationship\#ref-IDPerson_passive base:person\/KeeLau-00 . + +base:relationship\/434 a base:relationship; + base:relationship\#IDRel 434; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PodAnt-00 . + +base:relationship\/437 a base:relationship; + base:relationship\#DateEnd_Max "1914-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1914-01-01"^^xsd:date; + base:relationship\#IDRel 437; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/RafPab-00 . + +base:relationship\/44 a base:relationship; + base:relationship\#IDRel 44; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/RicHan-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/440 a base:relationship; + base:relationship\#IDRel 440; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PelCar-00 . + +base:relationship\/443 a base:relationship; + base:relationship\#IDRel 443; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/MitBar-00 . + +base:relationship\/446 a base:relationship; + base:relationship\#IDRel 446; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/SaeRoq-00 . + +base:relationship\/449 a base:relationship; + base:relationship\#IDRel 449; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/RocJul-00 . + +base:relationship\/45 a base:relationship; + base:relationship\#IDRel 45; + base:relationship\#comment "Mentor of Felix Mottl"; + base:relationship\#ref-IDPerson_active base:person\/RicHan-00; + base:relationship\#ref-IDPerson_passive base:person\/MotFel-00 . + +base:relationship\/452 a base:relationship; + base:relationship\#IDRel 452; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/SarDom-00 . + +base:relationship\/455 a base:relationship; + base:relationship\#IDRel 455; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/AleLea-00 . + +base:relationship\/458 a base:relationship; + base:relationship\#IDRel 458; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/AlvMar-00 . + +base:relationship\/46 a base:relationship; + base:relationship\#IDRel 46; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment """Paul Taglioni created for her leading roles in ballets such as Fiorita (1848) and La prima ballerina (1849), Coralia and la Reine des Elfrides +"""; + base:relationship\#ref-IDPerson_active base:person\/RosCa-00; + base:relationship\#ref-IDPerson_passive base:person\/TagPau-00 . + +base:relationship\/461 a base:relationship; + base:relationship\#IDRel 461; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/DarRub-00 . + +base:relationship\/464 a base:relationship; + base:relationship\#IDRel 464; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/PayRob-00 . + +base:relationship\/467 a base:relationship; + base:relationship\#DateEnd_Max "1910-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 467; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/ManRos-00 . + +base:relationship\/47 a base:relationship; + base:relationship\#IDRel 47; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Last years in Paris rivalries with Amalia Ferraris, she canceld her contract and followed an invitation to St.Petersburg 1859"; + base:relationship\#ref-IDPerson_active base:person\/RosCa-00; + base:relationship\#ref-IDPerson_passive base:person\/FerAma-00 . + +base:relationship\/470 a base:relationship; + base:relationship\#DateEnd_Max "1910-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1910-01-01"^^xsd:date; + base:relationship\#IDRel 470; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/BroFra-00; + base:relationship\#ref-IDPerson_passive base:person\/FouJea-00 . + +base:relationship\/473 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1876"; + base:relationship\#DateEnd_Max "1876-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1876-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1851"; + base:relationship\#DateStart_Max "1851-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1851-01-01"^^xsd:date; + base:relationship\#IDRel 473; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/601; + base:relationship\#ref-IDPerson_active base:person\/DouEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/CaeJoa-00 . + +base:relationship\/476 a base:relationship; + base:relationship\#IDRel 476; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/601; + base:relationship\#ref-IDPerson_active base:person\/DouEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/CarJoa-00 . + +base:relationship\/479 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 479; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/626; + base:relationship\#ref-IDPerson_active base:person\/DouEmi-00; + base:relationship\#ref-IDPerson_passive base:person\/GomJoa-00 . + +base:relationship\/485 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1912"; + base:relationship\#DateEnd_Max "1912-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1912-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1911"; + base:relationship\#DateStart_Max "1911-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1911-01-01"^^xsd:date; + base:relationship\#IDRel 485; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/SegPas-00 . + +base:relationship\/488 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1916"; + base:relationship\#DateEnd_Max "1916-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1916-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1915"; + base:relationship\#DateStart_Max "1915-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1915-01-01"^^xsd:date; + base:relationship\#IDRel 488; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalLui-00 . + +base:relationship\/49 a base:relationship; + base:relationship\#IDRel 49; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod ""; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/SchMal-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01 . + +base:relationship\/491 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1920s"; + base:relationship\#DateEnd_Max "1929-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1920-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1919"; + base:relationship\#DateStart_Max "1919-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1919-01-01"^^xsd:date; + base:relationship\#IDRel 491; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/AntMac-00 . + +base:relationship\/494 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1929"; + base:relationship\#DateStart_Max "1929-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1929-01-01"^^xsd:date; + base:relationship\#IDRel 494; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDOrganisation base:organisation\/657; + base:relationship\#ref-IDPerson_active base:person\/LeaCar-00; + base:relationship\#ref-IDPerson_passive base:person\/CliJos-00 . + +base:relationship\/497 a base:relationship; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 497; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/762; + base:relationship\#ref-IDPerson_active base:person\/BauRos-00; + base:relationship\#ref-IDPerson_passive base:person\/ArnJos-00 . + +base:relationship\/5 a base:relationship; + base:relationship\#IDRel 5; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/BlaEls-00; + base:relationship\#ref-IDPerson_passive base:person\/BraMar-01 . + +base:relationship\/50 a base:relationship; + base:relationship\#IDRel 50; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Juli 1862 she and her husband stayed with Richard Wagner in Biebrich for two weeks. There they studied together the rolls for Tristan, together with Hans von Bülow on the piano."; + base:relationship\#ref-IDPerson_active base:person\/SchMal-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/500 a base:relationship; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 500; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/761; + base:relationship\#ref-IDPerson_active base:person\/BauRos-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJac-00 . + +base:relationship\/506 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1936"; + base:relationship\#DateEnd_Max "1936-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1936-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1923-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1923-01-01"^^xsd:date; + base:relationship\#IDRel 506; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDOrganisation base:organisation\/763; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLui-00 . + +base:relationship\/509 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1892"; + base:relationship\#DateEnd_Max "1892-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 509; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/764; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SanIsm-00 . + +base:relationship\/51 a base:relationship; + base:relationship\#IDRel 51; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "She composed songs which she dedicated to Jenny Lind."; + base:relationship\#ref-IDPerson_active base:person\/SchMal-00; + base:relationship\#ref-IDPerson_passive base:person\/LinJen-00 . + +base:relationship\/512 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1899"; + base:relationship\#DateEnd_Max "1899-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1899-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 512; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDOrganisation base:organisation\/765; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/BraEdu-00 . + +base:relationship\/515 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1925"; + base:relationship\#DateEnd_Max "1925-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1925-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1924-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1924-01-01"^^xsd:date; + base:relationship\#IDRel 515; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/GraJoa-00 . + +base:relationship\/518 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Max "1937-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1937-01-01"^^xsd:date; + base:relationship\#IDRel 518; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/PT-Liss-00; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/NevMar-00 . + +base:relationship\/52 a base:relationship; + base:relationship\#IDRel 52; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "Friendship with Richard Wagner (he was inspiried by her interpretation of Leonore)"; + base:relationship\#ref-IDPerson_active base:person\/SchWil-00; + base:relationship\#ref-IDPerson_passive base:person\/WagRic-00 . + +base:relationship\/521 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 521; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/PinAnt-00; + base:relationship\#ref-IDPerson_passive base:person\/SimLuc-00 . + +base:relationship\/524 a base:relationship; + base:relationship\#DateEnd_Max "1913-05-06"^^xsd:date; + base:relationship\#DateEnd_Min "1913-05-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1867"; + base:relationship\#DateStart_Max "1867-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1867-01-01"^^xsd:date; + base:relationship\#IDRel 524; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Teatro Alcázar, Teatro Politeama Argentino, Teatro Politeama Humberto Primo"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/TasLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/527 a base:relationship; + base:relationship\#DateStart_Fuzzy "1870"; + base:relationship\#DateStart_Max "1870-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1870-01-01"^^xsd:date; + base:relationship\#IDRel 527; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafAnt-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/53 a base:relationship; + base:relationship\#IDRel 53; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/GER-HH-00; + base:relationship\#ref-IDPerson_active base:person\/SchFra-00; + base:relationship\#ref-IDPerson_passive base:person\/MahGus-00 . + +base:relationship\/530 a base:relationship; + base:relationship\#DateStart_Max "1872-06-06"^^xsd:date; + base:relationship\#DateStart_Min "1872-06-06"^^xsd:date; + base:relationship\#IDRel 530; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafJua-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/533 a base:relationship; + base:relationship\#DateStart_Max "1874-02-04"^^xsd:date; + base:relationship\#DateStart_Min "1874-02-04"^^xsd:date; + base:relationship\#IDRel 533; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Teatro Politeama Argentino and diverse tours"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafAgu-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/536 a base:relationship; + base:relationship\#DateStart_Max "1879-07-04"^^xsd:date; + base:relationship\#DateStart_Min "1879-07-04"^^xsd:date; + base:relationship\#IDRel 536; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafLui-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/539 a base:relationship; + base:relationship\#DateStart_Max "1880-12-19"^^xsd:date; + base:relationship\#DateStart_Min "1880-12-19"^^xsd:date; + base:relationship\#IDRel 539; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafRos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/54 a base:relationship; + base:relationship\#IDRel 54; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/StrAle-00; + base:relationship\#ref-IDPerson_passive base:person\/StrFer-00 . + +base:relationship\/542 a base:relationship; + base:relationship\#DateStart_Max "1882-02-06"^^xsd:date; + base:relationship\#DateStart_Min "1882-02-06"^^xsd:date; + base:relationship\#IDRel 542; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafMag-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/545 a base:relationship; + base:relationship\#DateStart_Fuzzy "1883"; + base:relationship\#DateStart_Max "1883-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1883-01-01"^^xsd:date; + base:relationship\#IDRel 545; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/548 a base:relationship; + base:relationship\#DateStart_Max "1884-09-17"^^xsd:date; + base:relationship\#DateStart_Min "1884-09-17"^^xsd:date; + base:relationship\#IDRel 548; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/RafAng-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/55 a base:relationship; + base:relationship\#IDRel 55; + base:relationship\#comment "cousin."; + base:relationship\#ref-IDPerson_active base:person\/StrAle-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/551 a base:relationship; + base:relationship\#IDRel 551; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/MitBar-00 . + +base:relationship\/554 a base:relationship; + base:relationship\#IDRel 554; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/AveNic-00 . + +base:relationship\/557 a base:relationship; + base:relationship\#IDRel 557; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Teatro Colón and Teatro Politeama"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/768; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/PezCay-00 . + +base:relationship\/56 a base:relationship; + base:relationship\#IDRel 56; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/StrAle-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMax-00 . + +base:relationship\/560 a base:relationship; + base:relationship\#DateEnd_Max "1913-05-06"^^xsd:date; + base:relationship\#DateEnd_Min "1913-05-06"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1877"; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 560; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Politeama Argentino, Brothers Lo Carlo Circus"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/746; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/PodJos-00 . + +base:relationship\/563 a base:relationship; + base:relationship\#IDRel 563; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/FloRob-00 . + +base:relationship\/566 a base:relationship; + base:relationship\#IDRel 566; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDOrganisation base:organisation\/747; + base:relationship\#ref-IDPerson_active base:person\/RafPab-00; + base:relationship\#ref-IDPerson_passive base:person\/FerJos-00 . + +base:relationship\/569 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1855"; + base:relationship\#DateEnd_Max "1855-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1855-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1847"; + base:relationship\#DateStart_Max "1847-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1847-01-01"^^xsd:date; + base:relationship\#IDRel 569; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VelMar-00; + base:relationship\#ref-IDPerson_passive base:person\/CaeJoa-00 . + +base:relationship\/57 a base:relationship; + base:relationship\#IDRel 57; + base:relationship\#Timeperiod """brother +"""; + base:relationship\#ref-IDPerson_active base:person\/StrFer-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMax-00 . + +base:relationship\/572 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1853"; + base:relationship\#DateEnd_Max "1853-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1853-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1848"; + base:relationship\#DateStart_Max "1848-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1848-01-01"^^xsd:date; + base:relationship\#IDRel 572; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VelMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SilFlo-00 . + +base:relationship\/575 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1855"; + base:relationship\#DateStart_Max "1855-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1855-01-01"^^xsd:date; + base:relationship\#IDRel 575; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDOrganisation base:organisation\/626; + base:relationship\#ref-IDPerson_active base:person\/VelMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GomJoa-00 . + +base:relationship\/578 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1860"; + base:relationship\#DateStart_Max "1860-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1860-01-01"^^xsd:date; + base:relationship\#IDRel 578; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/VelMar-00; + base:relationship\#ref-IDPerson_passive base:person\/SouJoa-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/58 a base:relationship; + base:relationship\#IDRel 58; + base:relationship\#Timeperiod "brother"; + base:relationship\#ref-IDPerson_active base:person\/StrFer-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/581 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 581; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/SamMor-00 . + +base:relationship\/584 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1901"; + base:relationship\#DateStart_Max "1901-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1901-01-01"^^xsd:date; + base:relationship\#IDRel 584; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/PolCin-01 . + +base:relationship\/587 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1899"; + base:relationship\#DateStart_Max "1899-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 587; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/BasSou-00 . + +base:relationship\/59 a base:relationship; + base:relationship\#IDRel 59; + base:relationship\#Timeperiod "cousin"; + base:relationship\#ref-IDPerson_active base:person\/StrFer-00; + base:relationship\#ref-IDPerson_passive base:person\/StrAle-00 . + +base:relationship\/590 a base:relationship; + base:relationship\#DateEnd_Fuzzy "-"; + base:relationship\#DateStart_Fuzzy "1889"; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 590; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/SilGul-00 . + +base:relationship\/593 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1885"; + base:relationship\#DateEnd_Max "1885-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1885-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1884"; + base:relationship\#DateStart_Max "1884-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1884-01-01"^^xsd:date; + base:relationship\#IDRel 593; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-SaoPau-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/Bra-03 . + +base:relationship\/596 a base:relationship; + base:relationship\#DateEnd_Fuzzy "1888"; + base:relationship\#DateEnd_Max "1888-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1888-01-01"^^xsd:date; + base:relationship\#DateStart_Fuzzy "1880"; + base:relationship\#DateStart_Max "1880-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1880-01-01"^^xsd:date; + base:relationship\#IDRel 596; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/BR-RdJ-00; + base:relationship\#ref-IDPerson_active base:person\/VilRos-00; + base:relationship\#ref-IDPerson_passive base:person\/HelJac-00 . + +base:relationship\/597 a base:relationship; + base:relationship\#IDRel 597; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LitRob-00; + base:relationship\#ref-IDPerson_passive base:person\/LitWil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/6 a base:relationship; + base:relationship\#IDRel 6; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1869-1870"; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/GER-BadBad-00; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/BraMar-01 . + +base:relationship\/60 a base:relationship; + base:relationship\#IDRel 60; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "nephew"; + base:relationship\#ref-IDPerson_active base:person\/StrFer-00; + base:relationship\#ref-IDPerson_passive base:person\/StrLud-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Nephew . + +base:relationship\/600 a base:relationship; + base:relationship\#IDRel 600; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LitRob-00; + base:relationship\#ref-IDPerson_passive base:person\/LitArc-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/603 a base:relationship; + base:relationship\#IDRel 603; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LitRob-00; + base:relationship\#ref-IDPerson_passive base:person\/BewAli-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/606 a base:relationship; + base:relationship\#IDRel 606; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/LitRob-00; + base:relationship\#ref-IDPerson_passive base:person\/EasRon-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/61 a base:relationship; + base:relationship\#IDRel 61; + base:relationship\#Timeperiod "1884"; + base:relationship\#comment "wife"; + base:relationship\#ref-IDPerson_active base:person\/StrIrm-00; + base:relationship\#ref-IDPerson_passive base:person\/StrLud-00 . + +base:relationship\/612 a base:relationship; + base:relationship\#IDRel 612; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/VelMel-00; + base:relationship\#ref-IDPerson_passive base:person\/VelMil-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/615 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 615; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/MHer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/618 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 618; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/GlaCar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/62 a base:relationship; + base:relationship\#IDRel 62; + base:relationship\#Timeperiod "1852"; + base:relationship\#comment "wife, Adelina Patti: sister in law"; + base:relationship\#ref-IDPerson_active base:person\/StrMau-00; + base:relationship\#ref-IDPerson_passive base:person\/PatAde-00 . + +base:relationship\/621 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 621; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/DLeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/624 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Max "1876-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1876-01-01"^^xsd:date; + base:relationship\#IDRel 624; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/The-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/627 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 627; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/WilGot-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/63 a base:relationship; + base:relationship\#IDRel 63; + base:relationship\#comment "brother"; + base:relationship\#ref-IDPerson_active base:person\/StrMau-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMax-00 . + +base:relationship\/630 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 630; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/JNat-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/633 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#IDRel 633; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/JMei-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/636 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 636; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/WSol-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/639 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#IDRel 639; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/WeiWih-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/64 a base:relationship; + base:relationship\#IDRel 64; + base:relationship\#comment "brother"; + base:relationship\#ref-IDPerson_active base:person\/StrMau-00; + base:relationship\#ref-IDPerson_passive base:person\/StrFer-00 . + +base:relationship\/642 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 642; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/SteCec-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/645 a base:relationship; + base:relationship\#DateEnd_Min "1926-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1874-03-24"^^xsd:date; + base:relationship\#IDRel 645; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/HouHar-00; + base:relationship\#ref-IDPerson_passive base:person\/WeiMay-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/648 a base:relationship; + base:relationship\#IDRel 648; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/FenGeo-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/65 a base:relationship; + base:relationship\#IDRel 65; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/StrMau-00; + base:relationship\#ref-IDPerson_passive base:person\/StrAle-00 . + +base:relationship\/651 a base:relationship; + base:relationship\#IDRel 651; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/RetJan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/654 a base:relationship; + base:relationship\#IDRel 654; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/Hod-00 . + +base:relationship\/657 a base:relationship; + base:relationship\#IDRel 657; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/MraHol-00 . + +base:relationship\/66 a base:relationship; + base:relationship\#IDRel 66; + base:relationship\#Timeperiod ""; + base:relationship\#comment "nephew"; + base:relationship\#ref-IDPerson_active base:person\/StrMau-00; + base:relationship\#ref-IDPerson_passive base:person\/StrLud-00 . + +base:relationship\/660 a base:relationship; + base:relationship\#IDRel 660; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/ScoBtr-00 . + +base:relationship\/663 a base:relationship; + base:relationship\#IDRel 663; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/LanG-00 . + +base:relationship\/666 a base:relationship; + base:relationship\#IDRel 666; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/HodBra-00 . + +base:relationship\/669 a base:relationship; + base:relationship\#IDRel 669; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/WilV-00 . + +base:relationship\/67 a base:relationship; + base:relationship\#IDRel 67; + base:relationship\#comment "brother"; + base:relationship\#ref-IDPerson_active base:person\/StrMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrMau-00 . + +base:relationship\/672 a base:relationship; + base:relationship\#IDRel 672; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/GraFM-00 . + +base:relationship\/675 a base:relationship; + base:relationship\#IDRel 675; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/CN-SH-00; + base:relationship\#ref-IDPerson_active base:person\/FenGeo-00; + base:relationship\#ref-IDPerson_passive base:person\/NewW-00 . + +base:relationship\/678 a base:relationship; + base:relationship\#DateStart_Max "1830-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1830-01-01"^^xsd:date; + base:relationship\#IDRel 678; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#ref-IDLocation base:location\/FR-PARIS-00; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/TulJea-00 . + +base:relationship\/68 a base:relationship; + base:relationship\#IDRel 68; + base:relationship\#comment "brother"; + base:relationship\#ref-IDPerson_active base:person\/StrMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrFer-00 . + +base:relationship\/681 a base:relationship; + base:relationship\#IDRel 681; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/AdaAdo-00 . + +base:relationship\/684 a base:relationship; + base:relationship\#IDRel 684; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/DepErn-00 . + +base:relationship\/687 a base:relationship; + base:relationship\#IDRel 687; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/CarGae-00 . + +base:relationship\/69 a base:relationship; + base:relationship\#IDRel 69; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/StrMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrAle-00 . + +base:relationship\/690 a base:relationship; + base:relationship\#IDRel 690; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/LedAlp-00 . + +base:relationship\/693 a base:relationship; + base:relationship\#IDRel 693; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/LouisN-00 . + +base:relationship\/696 a base:relationship; + base:relationship\#IDRel 696; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/MasF-00 . + +base:relationship\/699 a base:relationship; + base:relationship\#IDRel 699; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/RooThi-00 . + +base:relationship\/7 a base:relationship; + base:relationship\#IDRel 7; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/EibRiz-00; + base:relationship\#ref-IDPerson_passive base:person\/BraMar-01 . + +base:relationship\/70 a base:relationship; + base:relationship\#IDRel 70; + base:relationship\#comment "nephew"; + base:relationship\#ref-IDPerson_active base:person\/StrMax-00; + base:relationship\#ref-IDPerson_passive base:person\/StrLud-00 . + +base:relationship\/702 a base:relationship; + base:relationship\#IDRel 702; + base:relationship\#Relationshiptype base:RelationshipType-other; + base:relationship\#ref-IDPerson_active base:person\/RemJea-00; + base:relationship\#ref-IDPerson_passive base:person\/VerGiu-00 . + +base:relationship\/71 a base:relationship; + base:relationship\#IDRel 71; + base:relationship\#comment "Aunt of Marie Taglioni (the younger) "; + base:relationship\#ref-IDPerson_active base:person\/TagMar-00; + base:relationship\#ref-IDPerson_passive base:person\/TagMar-01 . + +base:relationship\/72 a base:relationship; + base:relationship\#IDRel 72; + base:relationship\#comment """Sister of Paul Taglioni +"""; + base:relationship\#ref-IDPerson_active base:person\/TagMar-00; + base:relationship\#ref-IDPerson_passive base:person\/TagPau-00 . + +base:relationship\/73 a base:relationship; + base:relationship\#IDRel 73; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/GER-BadBad-00; + base:relationship\#ref-IDPerson_active base:person\/TagMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ViaPau-00 . + +base:relationship\/738 a base:relationship; + base:relationship\#DateEnd_Min "1923-08-12"^^xsd:date; + base:relationship\#DateStart_Max "1881-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1881-01-01"^^xsd:date; + base:relationship\#IDRel 738; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugMer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Wife . + +base:relationship\/74 a base:relationship; + base:relationship\#IDRel 74; + base:relationship\#comment "Niece"; + base:relationship\#ref-IDPerson_active base:person\/TagMar-01; + base:relationship\#ref-IDPerson_passive base:person\/TagMar-00 . + +base:relationship\/741 a base:relationship; + base:relationship\#DateEnd_Max "1902-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1902-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1882-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1882-01-01"^^xsd:date; + base:relationship\#IDRel 741; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires/ Mendoza"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugMer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/744 a base:relationship; + base:relationship\#DateEnd_Max "1960-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1960-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1886-12-30"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 744; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Buenos Aires/ Mendoza"; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugJus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/747 a base:relationship; + base:relationship\#DateStart_Max "1886-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1886-01-01"^^xsd:date; + base:relationship\#IDRel 747; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugMan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/75 a base:relationship; + base:relationship\#IDRel 75; + base:relationship\#comment """Daughter +"""; + base:relationship\#ref-IDPerson_active base:person\/TagMar-01; + base:relationship\#ref-IDPerson_passive base:person\/TagPau-00 . + +base:relationship\/750 a base:relationship; + base:relationship\#DateStart_Max "1890-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1890-01-01"^^xsd:date; + base:relationship\#IDRel 750; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-MdPl-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugAug-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/753 a base:relationship; + base:relationship\#DateStart_Max "1890-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1895-01-01"^^xsd:date; + base:relationship\#IDRel 753; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-Mendo-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugCam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/756 a base:relationship; + base:relationship\#DateStart_Max "1902-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1902-01-01"^^xsd:date; + base:relationship\#IDRel 756; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Guaymallén, Mendoza"; + base:relationship\#ref-IDLocation base:location\/ARG-Guay-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/759 a base:relationship; + base:relationship\#IDRel 759; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/LugRic-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/76 a base:relationship; + base:relationship\#IDRel 76; + base:relationship\#comment "Cousin"; + base:relationship\#ref-IDPerson_active base:person\/TagMar-01; + base:relationship\#ref-IDPerson_passive base:person\/GalCar-00 . + +base:relationship\/762 a base:relationship; + base:relationship\#IDRel 762; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/JimEnr-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/765 a base:relationship; + base:relationship\#IDRel 765; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#ref-IDLocation base:location\/ARG-BA-00; + base:relationship\#ref-IDPerson_active base:person\/SanJus-00; + base:relationship\#ref-IDPerson_passive base:person\/PenRoq-00 . + +base:relationship\/768 a base:relationship; + base:relationship\#DateEnd_Max "1852-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1852-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1840-10-31"^^xsd:date; + base:relationship\#DateStart_Min "1840-10-01"^^xsd:date; + base:relationship\#IDRel 768; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/77 a base:relationship; + base:relationship\#IDRel 77; + base:relationship\#comment "Cousin"; + base:relationship\#ref-IDPerson_active base:person\/TagMar-01; + base:relationship\#ref-IDPerson_passive base:person\/GalCae-00 . + +base:relationship\/771 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1877-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1819-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1819-01-01"^^xsd:date; + base:relationship\#IDRel 771; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynGeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/774 a base:relationship; + base:relationship\#DateStart_Max "1819-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1819-01-01"^^xsd:date; + base:relationship\#IDRel 774; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynJam-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Uncle . + +base:relationship\/777 a base:relationship; + base:relationship\#DateStart_Max "1819-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1819-01-01"^^xsd:date; + base:relationship\#IDRel 777; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/FrySus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/78 a base:relationship; + base:relationship\#IDRel 78; + base:relationship\#comment "Cousin"; + base:relationship\#ref-IDPerson_active base:person\/TagMar-01; + base:relationship\#ref-IDPerson_passive base:person\/GalGeo-00 . + +base:relationship\/780 a base:relationship; + base:relationship\#DateEnd_Min "1853-01-07"^^xsd:date; + base:relationship\#DateStart_Min "1853-01-07"^^xsd:date; + base:relationship\#IDRel 780; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ParWil-00 . + +base:relationship\/783 a base:relationship; + base:relationship\#DateEnd_Max "1872-06-30"^^xsd:date; + base:relationship\#DateEnd_Min "1869-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1872-06-30"^^xsd:date; + base:relationship\#DateStart_Min "1869-05-01"^^xsd:date; + base:relationship\#IDRel 783; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LinWil-00 . + +base:relationship\/786 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-08-18"^^xsd:date; + base:relationship\#DateStart_Min "1868-07-20"^^xsd:date; + base:relationship\#IDRel 786; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00 . + +base:relationship\/789 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Max "1829-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1828-01-01"^^xsd:date; + base:relationship\#IDRel 789; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/79 a base:relationship; + base:relationship\#IDRel 79; + base:relationship\#comment """Brother +"""; + base:relationship\#ref-IDPerson_active base:person\/TagPau-00; + base:relationship\#ref-IDPerson_passive base:person\/TagMar-01 . + +base:relationship\/792 a base:relationship; + base:relationship\#DateEnd_Max "1886-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1886-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1821-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1821-01-01"^^xsd:date; + base:relationship\#IDRel 792; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/795 a base:relationship; + base:relationship\#DateEnd_Max "1886-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 795; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynSus-00 . + +base:relationship\/798 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 798; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/8 a base:relationship; + base:relationship\#DateStart_Fuzzy "1868/1895"; + base:relationship\#DateStart_Max "1895-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 8; + base:relationship\#Relationshiptype base:RelationshipType-teacher; + base:relationship\#comment ""; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/BroPhi-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01 . + +base:relationship\/80 a base:relationship; + base:relationship\#IDRel 80; + base:relationship\#comment "Father"; + base:relationship\#ref-IDPerson_active base:person\/TagPau-00; + base:relationship\#ref-IDPerson_passive base:person\/TagMar-00 . + +base:relationship\/801 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 801; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00 . + +base:relationship\/804 a base:relationship; + base:relationship\#IDRel 804; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJoe-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/807 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-04-01"^^xsd:date; + base:relationship\#IDRel 807; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment """London, +U.S.A. +"""; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/KelAlf-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/81 a base:relationship; + base:relationship\#IDRel 81; + base:relationship\#comment "Uncle"; + base:relationship\#ref-IDPerson_active base:person\/TagPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GalCar-00 . + +base:relationship\/810 a base:relationship; + base:relationship\#DateEnd_Max "1869-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-04-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-04-01"^^xsd:date; + base:relationship\#IDRel 810; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/KelAlf-00 . + +base:relationship\/813 a base:relationship; + base:relationship\#DateEnd_Max "1871-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 813; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/ConHar-00 . + +base:relationship\/816 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 816; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/819 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 819; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiBla-00 . + +base:relationship\/82 a base:relationship; + base:relationship\#IDRel 82; + base:relationship\#comment "Uncle"; + base:relationship\#ref-IDPerson_active base:person\/TagPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GalCae-00 . + +base:relationship\/822 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Min "1868-07-11"^^xsd:date; + base:relationship\#IDRel 822; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Other . + +base:relationship\/825 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1831-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1831-01-01"^^xsd:date; + base:relationship\#IDRel 825; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/UK-LDN-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/PynLou-00 . + +base:relationship\/828 a base:relationship; + base:relationship\#DateEnd_Max "1872-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1872-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1869-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1869-04-01"^^xsd:date; + base:relationship\#IDRel 828; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDLocation base:location\/USA-00; + base:relationship\#ref-IDPerson_active base:person\/PynMar-00; + base:relationship\#ref-IDPerson_passive base:person\/LinWil-00 . + +base:relationship\/83 a base:relationship; + base:relationship\#IDRel 83; + base:relationship\#comment "Uncle"; + base:relationship\#ref-IDPerson_active base:person\/TagPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GalGeo-00 . + +base:relationship\/84 a base:relationship; + base:relationship\#IDRel 84; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment """ +"""; + base:relationship\#ref-IDPerson_active base:person\/TomMar-00; + base:relationship\#ref-IDPerson_passive base:person\/WilAur-00 . + +base:relationship\/85 a base:relationship; + base:relationship\#IDRel 85; + base:relationship\#comment "In concerts in London and Bruessel she works successfull together with Felix Mottl"; + base:relationship\#ref-IDPerson_active base:person\/TomMar-00; + base:relationship\#ref-IDPerson_passive base:person\/MotFel-00 . + +base:relationship\/86 a base:relationship; + base:relationship\#IDRel 86; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/87 a base:relationship; + base:relationship\#IDRel 87; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMan-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/88 a base:relationship; + base:relationship\#IDRel 88; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/ViaPau-00; + base:relationship\#ref-IDPerson_passive base:person\/MalMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/8930 a base:relationship; + base:relationship\#DateEnd_Max "1892-03-31"^^xsd:date; + base:relationship\#DateEnd_Min "1892-03-01"^^xsd:date; + base:relationship\#DateStart_Max "1844-03-12"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 8930; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PynMar-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Mother . + +base:relationship\/8940 a base:relationship; + base:relationship\#DateStart_Max "1844-03-12"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 8940; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJos-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Father . + +base:relationship\/8950 a base:relationship; + base:relationship\#DateEnd_Max "1897-10-12"^^xsd:date; + base:relationship\#DateEnd_Min "1897-10-10"^^xsd:date; + base:relationship\#DateStart_Max "1868-07-11"^^xsd:date; + base:relationship\#DateStart_Min "1868-07-11"^^xsd:date; + base:relationship\#IDRel 8950; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/8960 a base:relationship; + base:relationship\#DateEnd_Max "1904-03-20"^^xsd:date; + base:relationship\#DateEnd_Min "1904-03-20"^^xsd:date; + base:relationship\#DateStart_Max "1844-03-12"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 8960; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, Paris"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PynLou-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/8970 a base:relationship; + base:relationship\#DateEnd_Max "1886-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1886-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1844-03-12"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 8970; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PynSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Aunt . + +base:relationship\/8980 a base:relationship; + base:relationship\#DateEnd_Max "1918-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1918-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 8980; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London, Paris, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Sister . + +base:relationship\/8995 a base:relationship; + base:relationship\#DateEnd_Max "1864-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1849-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1864-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 8995; + base:relationship\#comment "London, Paris"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00 . + +base:relationship\/9 a base:relationship; + base:relationship\#IDRel 9; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#Timeperiod "1907"; + base:relationship\#comment "to perform premiere of Thais "; + base:relationship\#ref-IDOrganisation base:organisation\/70; + base:relationship\#ref-IDPerson_active base:person\/HamOsc-00; + base:relationship\#ref-IDPerson_passive base:person\/GarMar-00 . + +base:relationship\/90 a base:relationship; + base:relationship\#IDRel 90; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment """wife +"""; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Husband . + +base:relationship\/9000 a base:relationship; + base:relationship\#DateEnd_Max "1871-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-05-01"^^xsd:date; + base:relationship\#DateStart_Max "1849-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1849-01-01"^^xsd:date; + base:relationship\#IDRel 9000; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London, U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GalSus-00 . + +base:relationship\/9010 a base:relationship; + base:relationship\#IDRel 9010; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GalJoe-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Brother . + +base:relationship\/9025 a base:relationship; + base:relationship\#DateEnd_Max "1936-11-26"^^xsd:date; + base:relationship\#DateEnd_Min "1936-11-25"^^xsd:date; + base:relationship\#DateStart_Max "1890-11-09"^^xsd:date; + base:relationship\#DateStart_Min "1890-11-09"^^xsd:date; + base:relationship\#IDRel 9025; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "U.S.A."; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiPeg-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/9030 a base:relationship; + base:relationship\#DateStart_Max "1876-12-20"^^xsd:date; + base:relationship\#DateStart_Min "1876-09-23"^^xsd:date; + base:relationship\#IDRel 9030; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/9035 a base:relationship; + base:relationship\#DateStart_Max "1876-12-20"^^xsd:date; + base:relationship\#DateStart_Min "1876-09-23"^^xsd:date; + base:relationship\#IDRel 9035; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiTho-01; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/9040 a base:relationship; + base:relationship\#IDRel 9040; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/KelBla-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Niece . + +base:relationship\/9050 a base:relationship; + base:relationship\#DateEnd_Max "1877-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1877-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1844-03-12"^^xsd:date; + base:relationship\#DateStart_Min "1844-03-12"^^xsd:date; + base:relationship\#IDRel 9050; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PynGeo-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandfather . + +base:relationship\/9060 a base:relationship; + base:relationship\#IDRel 9060; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FrySus-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Grandmother . + +base:relationship\/9070 a base:relationship; + base:relationship\#DateStart_Max "1879-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1879-01-01"^^xsd:date; + base:relationship\#IDRel 9070; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDOrganisation base:organisation\/1305; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/PalA-00 . + +base:relationship\/9080 a base:relationship; + base:relationship\#IDRel 9080; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DavAct-00 . + +base:relationship\/9095 a base:relationship; + base:relationship\#IDRel 9095; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BooAgn-00 . + +base:relationship\/91 a base:relationship; + base:relationship\#IDRel 91; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment ""; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/JagFer-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Son . + +base:relationship\/9105 a base:relationship; + base:relationship\#IDRel 9105; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MilAgn-00 . + +base:relationship\/9110 a base:relationship; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 9110; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DalAla-00 . + +base:relationship\/9125 a base:relationship; + base:relationship\#IDRel 9125; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DumAle-00 . + +base:relationship\/9140 a base:relationship; + base:relationship\#IDRel 9140; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/NazAll-00 . + +base:relationship\/9155 a base:relationship; + base:relationship\#IDRel 9155; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/RusAnn-00 . + +base:relationship\/9165 a base:relationship; + base:relationship\#DateEnd_Max "1899-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1899-01-01"^^xsd:date; + base:relationship\#IDRel 9165; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DalAug-00 . + +base:relationship\/9170 a base:relationship; + base:relationship\#IDRel 9170; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CamBea-00 . + +base:relationship\/9185 a base:relationship; + base:relationship\#IDRel 9185; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HowBro-00 . + +base:relationship\/9195 a base:relationship; + base:relationship\#IDRel 9195; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilCec-00 . + +base:relationship\/92 a base:relationship; + base:relationship\#IDRel 92; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "Mother"; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/JagEls-00; + base:relationship\#relationshiptype_precise base:RelationshipTypePrecise-Daughter . + +base:relationship\/9205 a base:relationship; + base:relationship\#IDRel 9205; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FroCha-00 . + +base:relationship\/9215 a base:relationship; + base:relationship\#DateStart_Max "1891-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1891-01-01"^^xsd:date; + base:relationship\#IDRel 9215; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HoyCha-00 . + +base:relationship\/9220 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9220; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WalCha-00 . + +base:relationship\/9230 a base:relationship; + base:relationship\#IDRel 9230; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BloCla-00 . + +base:relationship\/9240 a base:relationship; + base:relationship\#IDRel 9240; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LacCle-00 . + +base:relationship\/9250 a base:relationship; + base:relationship\#IDRel 9250; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FitCly-00 . + +base:relationship\/9260 a base:relationship; + base:relationship\#IDRel 9260; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BisDav-00 . + +base:relationship\/9270 a base:relationship; + base:relationship\#IDRel 9270; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Boston"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HolDr-00 . + +base:relationship\/9280 a base:relationship; + base:relationship\#IDRel 9280; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/UniEdw-00 . + +base:relationship\/9290 a base:relationship; + base:relationship\#DateStart_Max "1889-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1889-01-01"^^xsd:date; + base:relationship\#IDRel 9290; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ShaEff-00 . + +base:relationship\/93 a base:relationship; + base:relationship\#IDRel 93; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/AbeIre-00 . + +base:relationship\/9300 a base:relationship; + base:relationship\#IDRel 9300; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BelEle-00 . + +base:relationship\/9310 a base:relationship; + base:relationship\#IDRel 9310; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DusEle-00 . + +base:relationship\/9320 a base:relationship; + base:relationship\#IDRel 9320; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MarEli-00 . + +base:relationship\/9330 a base:relationship; + base:relationship\#IDRel 9330; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TerEll-00 . + +base:relationship\/9340 a base:relationship; + base:relationship\#DateStart_Max "1893-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1893-01-01"^^xsd:date; + base:relationship\#IDRel 9340; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarEth-00 . + +base:relationship\/9350 a base:relationship; + base:relationship\#DateStart_Max "1872-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1871-12-21"^^xsd:date; + base:relationship\#IDRel 9350; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDOrganisation base:organisation\/1310; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MorFan-00 . + +base:relationship\/9360 a base:relationship; + base:relationship\#DateStart_Max "1872-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1871-12-21"^^xsd:date; + base:relationship\#IDRel 9360; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TemFay-00 . + +base:relationship\/9370 a base:relationship; + base:relationship\#IDRel 9370; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ChuFre-00 . + +base:relationship\/9380 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9380; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilFri-00 . + +base:relationship\/9385 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9385; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilFri-00 . + +base:relationship\/9390 a base:relationship; + base:relationship\#IDRel 9390; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GraGen-00 . + +base:relationship\/94 a base:relationship; + base:relationship\#IDRel 94; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#ref-IDPerson_active base:person\/WilAur-00; + base:relationship\#ref-IDPerson_passive base:person\/TomMar-00 . + +base:relationship\/9400 a base:relationship; + base:relationship\#IDRel 9400; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CayGeo-00 . + +base:relationship\/9410 a base:relationship; + base:relationship\#IDRel 9410; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/StaGuy-00 . + +base:relationship\/9420 a base:relationship; + base:relationship\#IDRel 9420; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LauHar-00 . + +base:relationship\/9430 a base:relationship; + base:relationship\#IDRel 9430; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ModHel-00 . + +base:relationship\/9445 a base:relationship; + base:relationship\#IDRel 9445; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/IrvHen-00 . + +base:relationship\/9450 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9450; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MilHen-00 . + +base:relationship\/9465 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9465; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/KelHer-00 . + +base:relationship\/9470 a base:relationship; + base:relationship\#IDRel 9470; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/SpoHil-00 . + +base:relationship\/9480 a base:relationship; + base:relationship\#IDRel 9480; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York, Philadelphia"; + base:relationship\#ref-IDOrganisation base:organisation\/1257; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LinWil-00 . + +base:relationship\/9490 a base:relationship; + base:relationship\#IDRel 9490; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BecJ-00 . + +base:relationship\/95 a base:relationship; + base:relationship\#IDRel 95; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/GriCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GriGiu-00 . + +base:relationship\/9500 a base:relationship; + base:relationship\#IDRel 9500; + base:relationship\#Relationshiptype base:RelationshipType-friendship; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HerJam-00 . + +base:relationship\/9520 a base:relationship; + base:relationship\#IDRel 9520; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarJam-00 . + +base:relationship\/9530 a base:relationship; + base:relationship\#IDRel 9530; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/HumJes-00 . + +base:relationship\/9540 a base:relationship; + base:relationship\#IDRel 9540; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaJoh-00 . + +base:relationship\/9550 a base:relationship; + base:relationship\#IDRel 9550; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DreJoh-00 . + +base:relationship\/9560 a base:relationship; + base:relationship\#IDRel 9560; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/Joh-00 . + +base:relationship\/9570 a base:relationship; + base:relationship\#IDRel 9570; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CorJoh-00 . + +base:relationship\/9580 a base:relationship; + base:relationship\#IDRel 9580; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MasJoh-00 . + +base:relationship\/9590 a base:relationship; + base:relationship\#IDRel 9590; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "NULL"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ParJoh-00 . + +base:relationship\/96 a base:relationship; + base:relationship\#IDRel 96; + base:relationship\#comment "cousin"; + base:relationship\#ref-IDPerson_active base:person\/GriCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GriGiu-01 . + +base:relationship\/9600 a base:relationship; + base:relationship\#DateStart_Max "1872-03-20"^^xsd:date; + base:relationship\#DateStart_Min "1871-12-21"^^xsd:date; + base:relationship\#IDRel 9600; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/TemJoh-00 . + +base:relationship\/9610 a base:relationship; + base:relationship\#IDRel 9610; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilJoh-00 . + +base:relationship\/9620 a base:relationship; + base:relationship\#IDRel 9620; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/JosHof-00 . + +base:relationship\/9635 a base:relationship; + base:relationship\#DateStart_Max "1877-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1877-01-01"^^xsd:date; + base:relationship\#IDRel 9635; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ClaKat-00 . + +base:relationship\/9640 a base:relationship; + base:relationship\#IDRel 9640; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WalLes-00 . + +base:relationship\/9650 a base:relationship; + base:relationship\#IDRel 9650; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CraLot-00 . + +base:relationship\/9665 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9665; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DilLou-00 . + +base:relationship\/9670 a base:relationship; + base:relationship\#IDRel 9670; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ThoLyd-00 . + +base:relationship\/9680 a base:relationship; + base:relationship\#IDRel 9680; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MitMag-00 . + +base:relationship\/9690 a base:relationship; + base:relationship\#IDRel 9690; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/AngMar-00 . + +base:relationship\/97 a base:relationship; + base:relationship\#IDRel 97; + base:relationship\#comment "sister"; + base:relationship\#ref-IDPerson_active base:person\/GriCar-00; + base:relationship\#ref-IDPerson_passive base:person\/GriErn-00 . + +base:relationship\/9700 a base:relationship; + base:relationship\#IDRel 9700; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DorMar-00 . + +base:relationship\/9710 a base:relationship; + base:relationship\#IDRel 9710; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ManMar-00 . + +base:relationship\/9725 a base:relationship; + base:relationship\#IDRel 9725; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MinMar-00 . + +base:relationship\/9730 a base:relationship; + base:relationship\#IDRel 9730; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarMau-00 . + +base:relationship\/9740 a base:relationship; + base:relationship\#IDRel 9740; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/EllMax-00 . + +base:relationship\/9750 a base:relationship; + base:relationship\#IDRel 9750; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/RobMay-00 . + +base:relationship\/9765 a base:relationship; + base:relationship\#IDRel 9765; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/NeiMic-00 . + +base:relationship\/9770 a base:relationship; + base:relationship\#IDRel 9770; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CalMme-00 . + +base:relationship\/9780 a base:relationship; + base:relationship\#IDRel 9780; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/RudMme-00 . + +base:relationship\/98 a base:relationship; + base:relationship\#IDRel 98; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "advised Grisi to study opera singing"; + base:relationship\#ref-IDPerson_active base:person\/GriCar-00; + base:relationship\#ref-IDPerson_passive base:person\/MalMar-00 . + +base:relationship\/9800 a base:relationship; + base:relationship\#DateEnd_Max "1868-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1868-08-18"^^xsd:date; + base:relationship\#DateStart_Max "1868-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-08-18"^^xsd:date; + base:relationship\#IDRel 9800; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WooGeo-00 . + +base:relationship\/9810 a base:relationship; + base:relationship\#IDRel 9810; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WilOsc-00 . + +base:relationship\/9820 a base:relationship; + base:relationship\#IDRel 9820; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BarPT-00 . + +base:relationship\/9830 a base:relationship; + base:relationship\#IDRel 9830; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiRic-00 . + +base:relationship\/9845 a base:relationship; + base:relationship\#IDRel 9845; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ManRic-00 . + +base:relationship\/9850 a base:relationship; + base:relationship\#IDRel 9850; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CogRos-00 . + +base:relationship\/9865 a base:relationship; + base:relationship\#IDRel 9865; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ColSam-00 . + +base:relationship\/9870 a base:relationship; + base:relationship\#IDRel 9870; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/BerSar-00 . + +base:relationship\/9880 a base:relationship; + base:relationship\#IDRel 9880; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LanSir-00 . + +base:relationship\/9885 a base:relationship; + base:relationship\#IDRel 9885; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/LanSir-00 . + +base:relationship\/9895 a base:relationship; + base:relationship\#IDRel 9895; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GanSop-00 . + +base:relationship\/99 a base:relationship; + base:relationship\#IDRel 99; + base:relationship\#Relationshiptype base:RelationshipType-; + base:relationship\#comment "In London Giulia Grisi sang together with Maria Malibran (good relationship)."; + base:relationship\#ref-IDPerson_active base:person\/GriGiu-01; + base:relationship\#ref-IDPerson_passive base:person\/MalMar-00 . + +base:relationship\/9900 a base:relationship; + base:relationship\#IDRel 9900; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/WhiSta-00 . + +base:relationship\/9910 a base:relationship; + base:relationship\#IDRel 9910; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ReeTho-00 . + +base:relationship\/9925 a base:relationship; + base:relationship\#IDRel 9925; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ReeMrs-00 . + +base:relationship\/9930 a base:relationship; + base:relationship\#DateEnd_Max "1871-12-31"^^xsd:date; + base:relationship\#DateEnd_Min "1869-01-01"^^xsd:date; + base:relationship\#DateStart_Max "1868-08-31"^^xsd:date; + base:relationship\#DateStart_Min "1868-01-01"^^xsd:date; + base:relationship\#IDRel 9930; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "London,"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/ConW-00 . + +base:relationship\/9940 a base:relationship; + base:relationship\#DateStart_Max "1887-12-31"^^xsd:date; + base:relationship\#DateStart_Min "1887-01-01"^^xsd:date; + base:relationship\#IDRel 9940; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/MoyWLL-00 . + +base:relationship\/9950 a base:relationship; + base:relationship\#IDRel 9950; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/DavWil-00 . + +base:relationship\/9965 a base:relationship; + base:relationship\#IDRel 9965; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "New York"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/FurWil-00 . + +base:relationship\/9970 a base:relationship; + base:relationship\#IDRel 9970; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "-"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/GilWil-00 . + +base:relationship\/9980 a base:relationship; + base:relationship\#IDRel 9980; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#comment "Albany"; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/CraWil-00 . + +base:relationship\/9995 a base:relationship; + base:relationship\#IDRel 9995; + base:relationship\#Relationshiptype base:RelationshipType-work; + base:relationship\#ref-IDPerson_active base:person\/WhiBla-00; + base:relationship\#ref-IDPerson_passive base:person\/RicWil-00 . + +base:religions\/196 a base:religions; + base:religions\#IDReligion 196; + base:religions\#comment "Was born to a Jewish family"; + base:religions\#ref-IDPerson base:person\/BecMar-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/199 a base:religions; + base:religions\#IDReligion 199; + base:religions\#comment "Jewish, her mother was an Orthodox Jew"; + base:religions\#ref-IDPerson base:person\/GerBer-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/205 a base:religions; + base:religions\#IDReligion 205; + base:religions\#comment "Jewish, showing attraction to Anglican Christianity (attended the Episcopal Church in New Hartford), in addition, all three of her children were baptized"; + base:religions\#ref-IDPerson base:person\/GluAlm-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/208 a base:religions; + base:religions\#IDReligion 208; + base:religions\#comment "Yew"; + base:religions\#ref-IDPerson base:person\/GolAbr-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/211 a base:religions; + base:religions\#DateStart_Fuzzy "1883"; + base:religions\#IDReligion 211; + base:religions\#comment "Bar Kochba (1883) steht im Zeichen des beginnenden Zionismus"; + base:religions\#ref-IDPerson base:person\/GolAbr-00; + base:religions\#religion base:Religion-Other . + +base:religions\/217 a base:religions; + base:religions\#IDReligion 217; + base:religions\#comment "May have converted from Judaism to Roman Catholicism as she married Carrera."; + base:religions\#ref-IDPerson base:person\/HelAnn-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/218 a base:religions; + base:religions\#IDReligion 218; + base:religions\#ref-IDPerson base:person\/HelAnn-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/220 a base:religions; + base:religions\#IDReligion 220; + base:religions\#comment """Jewish; Fifteen hundred people attended her funeral, considered a disappointing turnout, considering her status in the Jewish community. She had come to be seen as \"a relic of the theatrical past, with a manner too romantic and grand even for the Yiddish stage\" +"""; + base:religions\#ref-IDPerson base:person\/KalBer-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/223 a base:religions; + base:religions\#IDReligion 223; + base:religions\#comment "baptised evangelical Christian (as a baby), comes from a Jewish family (negative thematised in the wedding to Paul von Thurn und Taxis)"; + base:religions\#ref-IDPerson base:person\/KreEli-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/224 a base:religions; + base:religions\#IDReligion 224; + base:religions\#ref-IDPerson base:person\/KreEli-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/226 a base:religions; + base:religions\#IDReligion 226; + base:religions\#comment "Family with jewish roots"; + base:religions\#ref-IDPerson base:person\/KroSel-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/229 a base:religions; + base:religions\#IDReligion 229; + base:religions\#comment "Israelitisch"; + base:religions\#ref-IDPerson base:person\/LewAug-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/232 a base:religions; + base:religions\#DateStart_Fuzzy "1812"; + base:religions\#IDReligion 232; + base:religions\#comment "evangelical"; + base:religions\#date_start "1812-01-01"^^xsd:date; + base:religions\#ref-IDPerson base:person\/LewAug-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/235 a base:religions; + base:religions\#DateStart_Fuzzy "1852"; + base:religions\#IDReligion 235; + base:religions\#comment "catholic"; + base:religions\#date_start "1852-01-01"^^xsd:date; + base:religions\#ref-IDPerson base:person\/LewAug-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/238 a base:religions; + base:religions\#IDReligion 238; + base:religions\#comment "Ultramontanismus"; + base:religions\#ref-IDPerson base:person\/LewAug-00; + base:religions\#religion base:Religion-Other . + +base:religions\/244 a base:religions; + base:religions\#IDReligion 244; + base:religions\#comment """converted to Catholicism and was baptized +“My Judaism, as things are now in the world, prevents me from entering any court theater. - Not Vienna, not Berlin, not Dresden, not Munich is open to me. The same wind blows everywhere. \"(Letter to Friedrich Löhr 1804)"""; + base:religions\#date_start "1897-02-23"^^xsd:date; + base:religions\#ref-IDPerson base:person\/MahGus-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/245 a base:religions; + base:religions\#IDReligion 245; + base:religions\#ref-IDPerson base:person\/MahGus-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/247 a base:religions; + base:religions\#IDReligion 247; + base:religions\#comment "Nazimova was born into a jewish family but raised a Catholic. Later she declared, her only faith was in her art."; + base:religions\#ref-IDPerson base:person\/NazAll-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/248 a base:religions; + base:religions\#IDReligion 248; + base:religions\#ref-IDPerson base:person\/NazAll-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/250 a base:religions; + base:religions\#IDReligion 250; + base:religions\#comment "He came from fervent jewish family"; + base:religions\#ref-IDPerson base:person\/PolBer-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/253 a base:religions; + base:religions\#IDReligion 253; + base:religions\#comment "baptised in St Michael's Roman Catholic Church"; + base:religions\#date_start "1857-06-12"^^xsd:date; + base:religions\#ref-IDPerson base:person\/RehAda-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/259 a base:religions; + base:religions\#IDReligion 259; + base:religions\#comment "Baptized catholic but her maternal grandmother, Leah Kohn, was of Hungarian Jewish descent. Affirmed her Jewish ancestry proudly, fervently opposing the Hitler regime"; + base:religions\#ref-IDPerson base:person\/SchErn-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/260 a base:religions; + base:religions\#IDReligion 260; + base:religions\#ref-IDPerson base:person\/SchErn-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/262 a base:religions; + base:religions\#IDReligion 262; + base:religions\#comment "Jewish"; + base:religions\#ref-IDPerson base:person\/StrAle-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/265 a base:religions; + base:religions\#IDReligion 265; + base:religions\#comment "was destined to become a preacher"; + base:religions\#ref-IDPerson base:person\/StrAle-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/268 a base:religions; + base:religions\#IDReligion 268; + base:religions\#comment "Her parents were Russian Jews"; + base:religions\#ref-IDPerson base:person\/TucSop-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/272 a base:religions; + base:religions\#IDReligion 272; + base:religions\#comment "Jewish"; + base:religions\#ref-IDPerson base:person\/HamOsc-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/338 a base:religions; + base:religions\#IDReligion 338; + base:religions\#comment "jewish"; + base:religions\#ref-IDPerson base:person\/KorFri-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/347 a base:religions; + base:religions\#IDReligion 347; + base:religions\#comment "Ashkenazi Jewish"; + base:religions\#ref-IDPerson base:person\/LubErn-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/355 a base:religions; + base:religions\#DateEnd_Max "1873-12-31"^^xsd:date; + base:religions\#DateEnd_Min "1873-01-01"^^xsd:date; + base:religions\#DateStart_Fuzzy "1871"; + base:religions\#DateStart_Max "1873"; + base:religions\#IDReligion 355; + base:religions\#comment "He converted to the Catholic faith at the age of 54 as part of the assimilation of wider Jewish circles after the \"Interconfessional Laws\" of 1868 in Austria allowed a change of religion. He had all his children baptised Protestants in the places where they were born and where he had a stage engagement in each case."; + base:religions\#date_start "1871-01-01"^^xsd:date; + base:religions\#ref-IDPerson base:person\/KreHei-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/356 a base:religions; + base:religions\#IDReligion 356; + base:religions\#ref-IDPerson base:person\/KreHei-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/358 a base:religions; + base:religions\#IDReligion 358; + base:religions\#comment "jewish"; + base:religions\#ref-IDPerson base:person\/BoiCur-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/387 a base:religions; + base:religions\#IDReligion 387; + base:religions\#comment "Jewish"; + base:religions\#ref-IDPerson base:person\/GruFri-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/416 a base:religions; + base:religions\#IDReligion 416; + base:religions\#comment "Born in a Jewish family he was no active jude, but did not baptize"; + base:religions\#ref-IDPerson base:person\/LevHer-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/423 a base:religions; + base:religions\#DateStart_Fuzzy "1899"; + base:religions\#IDReligion 423; + base:religions\#comment "In 1899 he resigned from the Israelite religious community because the climate for Jews in Vienna was deteriorating."; + base:religions\#date_start "1899-01-01"^^xsd:date; + base:religions\#ref-IDPerson base:person\/ZemAle-00; + base:religions\#religion base:Religion-Jewish . + +base:religions\/429 a base:religions; + base:religions\#DateStart_Fuzzy "1906"; + base:religions\#IDReligion 429; + base:religions\#comment "converting to Protestantism."; + base:religions\#date_start "1906-01-01"^^xsd:date; + base:religions\#ref-IDPerson base:person\/ZemAle-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/431 a base:religions; + base:religions\#IDReligion 431; + base:religions\#ref-IDPerson base:person\/KelAlf-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/445 a base:religions; + base:religions\#IDReligion 445; + base:religions\#denomination "Protestant"; + base:religions\#ref-IDPerson base:person\/StrFri-00; + base:religions\#religion base:Religion-Christian . + +base:religions\/446 a base:religions; + base:religions\#IDReligion 446; + base:religions\#ref-IDPerson base:person\/HerAde-00; + base:religions\#religion base:Religion-Christian . + +base:work\/1 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/CZ-Karlsb-00; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/10 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/100 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 100; + base:work\#comment "Guestengagements until his retirement 1897, especially in Bukarest, sang there together with Gemma Bellincioni"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/1000 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Salonhumorist, Actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1000; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CH-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/1003 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Salonhumorist, Actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1003; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10039 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1908"; + base:work\#DateEnd_Max "1908-09-30"^^xsd:date; + base:work\#DateEnd_Min "1908-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1908"; + base:work\#DateStart_Max "1908-09-30"^^xsd:date; + base:work\#DateStart_Min "1908-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10039; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/435; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/10044 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10044; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/10049 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10049; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/10054 a base:work; + base:work\#DateStart_Max "1861-11-28"^^xsd:date; + base:work\#DateStart_Min "1861-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10054; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/10059 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10059; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/1006 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Salonhumorist, Actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1006; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/HU-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10064 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10064; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3305; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/10069 a base:work; + base:work\#DateStart_Max "1878-06-15"^^xsd:date; + base:work\#DateStart_Min "1878-06-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10069; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDOrganisation2 base:organisation\/3015; + base:work\#ref-IDPerson base:person\/CarRit-00 . + +base:work\/10074 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-12-31"^^xsd:date; + base:work\#DateStart_Max "1898-03-10"^^xsd:date; + base:work\#DateStart_Min "1898-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10074; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/2605; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10079 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10079; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/4035; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10084 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10084; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10089 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10089; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/2181; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/1009 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1009; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/402; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10094 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10094; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10099 a base:work; + base:work\#DateStart_Max "1903-01-17"^^xsd:date; + base:work\#DateStart_Min "1903-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10099; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/2575; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/101 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 101; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/10104 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10104; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/2715; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10109 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Max "1911-05-25"^^xsd:date; + base:work\#DateStart_Min "1911-05-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10109; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10114 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10114; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10119 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10119; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/2605; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/1012 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1012; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/401; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10124 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#DateStart_Max "1916-01-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10124; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2776; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10129 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10129; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10134 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10134; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10139 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10139; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10144 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10144; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10149 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10149; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10154 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10154; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/768; + base:work\#ref-IDPerson base:person\/BarMar-00 . + +base:work\/10159 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10159; + base:work\#Profession base:Profession-Journalist; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10164 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10164; + base:work\#Profession base:Profession-Journalist; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3175; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10169 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10169; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2625; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10174 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10174; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10179 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10179; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/1018 a base:work; + base:work\#DateEnd_Fuzzy "1934"; + base:work\#DateEnd_Max "1934-12-31"^^xsd:date; + base:work\#DateEnd_Min "1934-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1018; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10184 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10184; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4792; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10189 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10189; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10194 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10194; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDPerson base:person\/CasJul-00 . + +base:work\/10198 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10198; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Agent; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDOrganisation2 base:organisation\/4065; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10199 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10199; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/102 a base:work; + base:work\#Employment "singer, singing teacher, writer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 102; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDOrganisation base:organisation\/100; + base:work\#ref-IDPerson base:person\/StrIrm-00 . + +base:work\/10200 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10200; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10204 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10204; + base:work\#Profession base:Profession-Agent; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDOrganisation2 base:organisation\/4060; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10209 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10209; + base:work\#Profession base:Profession-Agent; + base:work\#ref-IDLocation base:location\/URY-00; + base:work\#ref-IDOrganisation2 base:organisation\/4812; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/1021 a base:work; + base:work\#DateEnd_Fuzzy "1934"; + base:work\#DateEnd_Max "1934-12-31"^^xsd:date; + base:work\#DateEnd_Min "1934-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#Employment "Job in an operette"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1021; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10214 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10214; + base:work\#Profession base:Profession-Agent; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation2 base:organisation\/4812; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10219 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10219; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2965; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10224 a base:work; + base:work\#DateEnd_Fuzzy "1932"; + base:work\#DateEnd_Max "1932-12-31"^^xsd:date; + base:work\#DateEnd_Min "1932-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10224; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10229 a base:work; + base:work\#DateEnd_Fuzzy "1956"; + base:work\#DateEnd_Max "1956-12-31"^^xsd:date; + base:work\#DateEnd_Min "1956-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10229; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/747; + base:work\#ref-IDPerson base:person\/ConSan-00 . + +base:work\/10239 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10239; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/1024 a base:work; + base:work\#DateStart_Fuzzy "Autumn 1934"; + base:work\#Employment "Kabarett"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1024; + base:work\#ref-IDLocation base:location\/CH-Zur-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10240 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10240; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/10245 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10245; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/137; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/10254 a base:work; + base:work\#DateEnd_Fuzzy "1884 May-1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884 May-1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10254; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/10259 a base:work; + base:work\#DateEnd_Fuzzy "between 1890 and 1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Early 1890s"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10259; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/314; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/10269 a base:work; + base:work\#DateEnd_Fuzzy "between 1876 and 1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1876 and 1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10269; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/1027 a base:work; + base:work\#DateStart_Fuzzy "1935"; + base:work\#DateStart_Max "1935-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1027; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/2722; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/10274 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10274; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/10279 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10279; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Altenb-00; + base:work\#ref-IDOrganisation base:organisation\/184; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10284 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10284; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/3086; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10289 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10289; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/351; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10294 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10294; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/3091; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10299 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10299; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDOrganisation base:organisation\/3096; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/103 a base:work; + base:work\#Employment "singer, singing teacher, writer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 103; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/103; + base:work\#ref-IDPerson base:person\/StrIrm-00 . + +base:work\/10304 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-01-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10304; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/109; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10309 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10309; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/3101; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10314 a base:work; + base:work\#DateEnd_Fuzzy "1896-1897"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10314; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Regensburg"; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10319 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10319; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/3105; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10324 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10324; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10329 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10329; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/455; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10334 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10334; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/400; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10339 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10339; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/3110; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10344 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10344; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10349 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10349; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/3115; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10354 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10354; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/BruLud-00 . + +base:work\/10359 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10359; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10364 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10364; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10369 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10369; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10374 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10374; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/290; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10379 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10379; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10384 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10384; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ddorf-00; + base:work\#ref-IDOrganisation base:organisation\/230; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10389 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10389; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10394 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10394; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10399 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10399; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/104 a base:work; + base:work\#Employment "singer, singing teacher, writer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 104; + base:work\#ref-IDLocation base:location\/AT-Linz-00; + base:work\#ref-IDOrganisation base:organisation\/102; + base:work\#ref-IDPerson base:person\/StrIrm-00 . + +base:work\/10404 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10404; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10409 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10409; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10414 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10414; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10419 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10419; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/1042 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1042; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BoiIls-00 . + +base:work\/10424 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10424; + base:work\#ref-IDLocation base:location\/CH-Bas-00; + base:work\#ref-IDOrganisation base:organisation\/298; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10429 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10429; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10434 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10434; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10439 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10439; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Staatstheater Wiesbaden"; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDOrganisation base:organisation\/3120; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10444 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10444; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10449 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10449; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/1045 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1045; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BoiIls-00 . + +base:work\/10454 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10454; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10459 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10459; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10464 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10464; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDOrganisation base:organisation\/182; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10469 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10469; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Met-00; + base:work\#ref-IDOrganisation base:organisation\/428; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10474 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10474; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/FR-Met-00; + base:work\#ref-IDOrganisation base:organisation\/428; + base:work\#ref-IDPerson base:person\/BruOtt-00 . + +base:work\/10479 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10479; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/1048 a base:work; + base:work\#DateEnd_Fuzzy "1945"; + base:work\#DateEnd_Max "1945-12-31"^^xsd:date; + base:work\#DateEnd_Min "1945-01-01"^^xsd:date; + base:work\#Employment "Kabarettist"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1048; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/403; + base:work\#ref-IDPerson base:person\/BoiIls-00 . + +base:work\/10483 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10483; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/463; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/10484 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10484; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/10499 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10499; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/105 a base:work; + base:work\#Employment "singer, singing teacher, writer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 105; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/101; + base:work\#ref-IDPerson base:person\/StrIrm-00 . + +base:work\/10504 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10504; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10509 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10509; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/1051 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Broadcaster"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1051; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/RobKur-00 . + +base:work\/10514 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10514; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10519 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10519; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10524 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10524; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10529 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10529; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10534 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10534; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/HU-Pest-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10539 a base:work; + base:work\#DateEnd_Fuzzy "1840/1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840/1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10539; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IE-Dubl-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10544 a base:work; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10544; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10549 a base:work; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10549; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/1055 a base:work; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1055; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/3900; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/10554 a base:work; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10554; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10559 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1848"; + base:work\#DateStart_Max "1848-12-31"^^xsd:date; + base:work\#DateStart_Min "1848-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10559; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10564 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10564; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10569 a base:work; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10569; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/1936; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10574 a base:work; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10574; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BadBad-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10579 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10579; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10583 a base:work; + base:work\#DateStart_Fuzzy "1838"; + base:work\#DateStart_Max "1838-12-31"^^xsd:date; + base:work\#DateStart_Min "1838-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10583; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/10589 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10589; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/637; + base:work\#ref-IDPerson base:person\/JesOlg-00 . + +base:work\/10594 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10594; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/3390; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10599 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10599; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/106 a base:work; + base:work\#Employment "singer, singing teacher, writer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 106; + base:work\#comment "she was on tour through Europe in Straßburg, Danzig, Hamburg, Berlin (Kroll-Oper)"; + base:work\#ref-IDPerson base:person\/StrIrm-00 . + +base:work\/10604 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10604; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/756; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10609 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10609; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/950; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10614 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10614; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2965; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10619 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10619; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10624 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10624; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/768; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10629 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10629; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3610; + base:work\#ref-IDPerson base:person\/DarFau-00 . + +base:work\/10634 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10634; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDOrganisation2 base:organisation\/4828; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10639 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10639; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4828; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10644 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10644; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation2 base:organisation\/4828; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10649 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10649; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3550; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10654 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10654; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3600; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10658 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10658; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Other; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3325; + base:work\#ref-IDOrganisation2 base:organisation\/4832; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/1066 a base:work; + base:work\#DateEnd_Fuzzy "1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1943"; + base:work\#DateStart_Max "1943-12-31"^^xsd:date; + base:work\#DateStart_Min "1943-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1066; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Translator; + base:work\#comment "for which he wrote around 60 radio plays, some under the pseudonym Gordon Mitchell"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/406; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/10661 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10661; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4836; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10666 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10666; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4840; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10669 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10669; + base:work\#ref-IDLocation base:location\/IT-Tur-00; + base:work\#ref-IDOrganisation base:organisation\/3230; + base:work\#ref-IDOrganisation2 base:organisation\/3530; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10674 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10674; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/3225; + base:work\#ref-IDOrganisation2 base:organisation\/3530; + base:work\#ref-IDPerson base:person\/DenVic-00 . + +base:work\/10679 a base:work; + base:work\#DateEnd_Max "1931-07-09"^^xsd:date; + base:work\#DateEnd_Min "1931-07-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10679; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/4892; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10684 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10684; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10689 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10689; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation2 base:organisation\/3470; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/1069 a base:work; + base:work\#DateEnd_Fuzzy "1964"; + base:work\#DateEnd_Max "1964-12-31"^^xsd:date; + base:work\#DateEnd_Min "1964-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1951"; + base:work\#DateStart_Max "1951-12-31"^^xsd:date; + base:work\#DateStart_Min "1951-01-01"^^xsd:date; + base:work\#Employment "Writer"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 1069; + base:work\#Profession base:Profession-Author; + base:work\#comment "worked as independent author"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/10694 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation2 base:organisation\/3475; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10699 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Max "1928-12-19"^^xsd:date; + base:work\#DateStart_Min "1928-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10699; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/3385; + base:work\#ref-IDOrganisation2 base:organisation\/4824; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/107 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 107; + base:work\#Profession base:Profession-Director; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/104; + base:work\#ref-IDPerson base:person\/StrFer-00 . + +base:work\/10704 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10704; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/3310; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10709 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Max "1928-09-29"^^xsd:date; + base:work\#DateStart_Min "1928-09-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10709; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/3295; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10714 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10714; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10719 a base:work; + base:work\#DateEnd_Fuzzy "1934"; + base:work\#DateEnd_Max "1934-12-31"^^xsd:date; + base:work\#DateEnd_Min "1934-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1934"; + base:work\#DateStart_Max "1934-12-31"^^xsd:date; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10719; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10724 a base:work; + base:work\#DateEnd_Fuzzy "1938"; + base:work\#DateEnd_Max "1938-12-31"^^xsd:date; + base:work\#DateEnd_Min "1938-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1938"; + base:work\#DateStart_Max "1938-12-31"^^xsd:date; + base:work\#DateStart_Min "1938-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10724; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10729 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1939"; + base:work\#DateStart_Max "1939-12-31"^^xsd:date; + base:work\#DateStart_Min "1939-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10729; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3375; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10734 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1940"; + base:work\#DateStart_Max "1940-12-31"^^xsd:date; + base:work\#DateStart_Min "1940-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10734; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4816; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10739 a base:work; + base:work\#DateEnd_Fuzzy "1941"; + base:work\#DateEnd_Max "1941-12-31"^^xsd:date; + base:work\#DateEnd_Min "1941-01-01"^^xsd:date; + base:work\#DateStart_Max "1941-05-30"^^xsd:date; + base:work\#DateStart_Min "1941-05-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10739; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDOrganisation2 base:organisation\/4820; + base:work\#ref-IDPerson base:person\/DegEus-00 . + +base:work\/10744 a base:work; + base:work\#DateEnd_Fuzzy "1943"; + base:work\#DateEnd_Max "1943-12-31"^^xsd:date; + base:work\#DateEnd_Min "1943-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1934"; + base:work\#DateStart_Max "1934-12-31"^^xsd:date; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10744; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/DelNic-00 . + +base:work\/10749 a base:work; + base:work\#DateEnd_Fuzzy "1958"; + base:work\#DateEnd_Max "1958-12-31"^^xsd:date; + base:work\#DateEnd_Min "1958-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1940"; + base:work\#DateStart_Max "1940-12-31"^^xsd:date; + base:work\#DateStart_Min "1940-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10749; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDOrganisation2 base:organisation\/3085; + base:work\#ref-IDPerson base:person\/DelNic-00 . + +base:work\/10754 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10754; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3535; + base:work\#ref-IDPerson base:person\/DelNic-00 . + +base:work\/10759 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10759; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4095; + base:work\#ref-IDPerson base:person\/DelNic-00 . + +base:work\/10764 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10764; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3535; + base:work\#ref-IDPerson base:person\/DelNic-00 . + +base:work\/10766 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10766; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3185; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10769 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10769; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3330; + base:work\#ref-IDOrganisation2 base:organisation\/4844; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10774 a base:work; + base:work\#DateEnd_Fuzzy "1978"; + base:work\#DateEnd_Max "1978-12-31"^^xsd:date; + base:work\#DateEnd_Min "1978-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10774; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3085; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10779 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4796; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10784 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10784; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2945; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10789 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10789; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3320; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/1079 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1079; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/407; + base:work\#ref-IDPerson base:person\/ChaCha-00 . + +base:work\/10793 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10793; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2970; + base:work\#ref-IDOrganisation2 base:organisation\/4860; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10794 a base:work; + base:work\#DateEnd_Fuzzy "1960"; + base:work\#DateEnd_Max "1960-12-31"^^xsd:date; + base:work\#DateEnd_Min "1960-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1960"; + base:work\#DateStart_Max "1960-12-31"^^xsd:date; + base:work\#DateStart_Min "1960-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3355; + base:work\#ref-IDOrganisation2 base:organisation\/3535; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/10799 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10799; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/DeaPie-00 . + +base:work\/108 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 108; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "In the 1880s he was impresario in Europe together with his brother Maurice and his nephew Robert (Maurice´s son)."; + base:work\#ref-IDPerson base:person\/StrFer-00 . + +base:work\/10804 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10804; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2940; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10809 a base:work; + base:work\#DateEnd_Fuzzy "1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1937-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10809; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2940; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10814 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10814; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/671; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10819 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10819; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/1082 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1082; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/407; + base:work\#ref-IDPerson base:person\/ChaCha-00 . + +base:work\/10824 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10824; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10829 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10829; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10834 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10834; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10839 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10839; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/2925; + base:work\#ref-IDOrganisation2 base:organisation\/4848; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10844 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10844; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10849 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10849; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/3360; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/1085 a base:work; + base:work\#DateEnd_Fuzzy "Ocotber 1914"; + base:work\#DateEnd_Max "1914-10-31"^^xsd:date; + base:work\#DateEnd_Min "1914-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1085; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/409; + base:work\#ref-IDPerson base:person\/ChaCha-00 . + +base:work\/10854 a base:work; + base:work\#DateEnd_Fuzzy "1941-12-31"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10854; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3195; + base:work\#ref-IDPerson base:person\/DelFra-00 . + +base:work\/10859 a base:work; + base:work\#DateStart_Fuzzy "1897-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10859; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/3200; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10864 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10864; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10869 a base:work; + base:work\#DateEnd_Fuzzy "1904-12-31"; + base:work\#DateStart_Fuzzy "1904-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10869; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3165; + base:work\#ref-IDOrganisation2 base:organisation\/4852; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10874 a base:work; + base:work\#DateStart_Fuzzy "1904-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10874; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10879 a base:work; + base:work\#DateEnd_Fuzzy "1905-12-31"; + base:work\#DateStart_Max "1905-06-03"^^xsd:date; + base:work\#DateStart_Min "1905-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10879; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/4792; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/1088 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1088; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/410; + base:work\#ref-IDPerson base:person\/ChaCha-00 . + +base:work\/10884 a base:work; + base:work\#DateEnd_Fuzzy "1906-12-31"; + base:work\#DateStart_Fuzzy "1906-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10884; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDOrganisation2 base:organisation\/4796; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10889 a base:work; + base:work\#DateStart_Fuzzy "1910-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10889; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3145; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10894 a base:work; + base:work\#DateStart_Fuzzy "1913-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10894; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3145; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10899 a base:work; + base:work\#DateEnd_Fuzzy "1913-12-31"; + base:work\#DateStart_Max "1913-03-01"^^xsd:date; + base:work\#DateStart_Min "1913-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10899; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2945; + base:work\#ref-IDOrganisation2 base:organisation\/4796; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/109 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 109; + base:work\#comment "organized a concert tour in Rome."; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDPerson base:person\/StrFer-00 . + +base:work\/10904 a base:work; + base:work\#DateEnd_Fuzzy "1922-12-31"; + base:work\#DateStart_Fuzzy "1914-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10904; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10909 a base:work; + base:work\#DateStart_Max "1913-10-29"^^xsd:date; + base:work\#DateStart_Min "1913-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10909; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2580; + base:work\#ref-IDOrganisation2 base:organisation\/3460; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/1091 a base:work; + base:work\#DateEnd_Fuzzy "1952"; + base:work\#DateEnd_Max "1952-12-31"^^xsd:date; + base:work\#DateEnd_Min "1952-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1091; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Composer; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/411; + base:work\#ref-IDPerson base:person\/ChaCha-00 . + +base:work\/10914 a base:work; + base:work\#DateStart_Max "1913-11-07"^^xsd:date; + base:work\#DateStart_Min "1913-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10914; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1470; + base:work\#ref-IDOrganisation2 base:organisation\/3460; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10919 a base:work; + base:work\#DateStart_Max "1914-03-20"^^xsd:date; + base:work\#DateStart_Min "1914-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10919; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3255; + base:work\#ref-IDOrganisation2 base:organisation\/3465; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10924 a base:work; + base:work\#DateStart_Max "1914-11-27"^^xsd:date; + base:work\#DateStart_Min "1914-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10924; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3205; + base:work\#ref-IDOrganisation2 base:organisation\/3505; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10929 a base:work; + base:work\#DateStart_Max "1915-01-15"^^xsd:date; + base:work\#DateStart_Min "1915-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10929; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1470; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10933 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10933; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10934 a base:work; + base:work\#DateStart_Max "1916-02-10"^^xsd:date; + base:work\#DateStart_Min "1916-02-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10934; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3255; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10939 a base:work; + base:work\#DateStart_Max "1916-07-28"^^xsd:date; + base:work\#DateStart_Min "1916-07-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10939; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10944 a base:work; + base:work\#DateStart_Max "1916-10-07"^^xsd:date; + base:work\#DateStart_Min "1916-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10944; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3315; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10949 a base:work; + base:work\#DateStart_Max "1916-11-17"^^xsd:date; + base:work\#DateStart_Min "1916-11-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10949; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/1095 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1095; + base:work\#Profession base:Profession-Singer; + base:work\#comment "North-America Tour"; + base:work\#ref-IDOrganisation base:organisation\/412; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/10954 a base:work; + base:work\#DateStart_Max "1916-11-27"^^xsd:date; + base:work\#DateStart_Min "1916-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10954; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10959 a base:work; + base:work\#DateStart_Max "1917-01-12"^^xsd:date; + base:work\#DateStart_Min "1917-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 10959; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3260; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10964 a base:work; + base:work\#DateStart_Max "1917-01-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 10964; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDOrganisation2 base:organisation\/3515; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10969 a base:work; + base:work\#DateStart_Fuzzy "1917-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10969; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3145; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10974 a base:work; + base:work\#DateEnd_Fuzzy "1920-12-31"; + base:work\#DateStart_Fuzzy "1920-01-01"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 10974; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2580; + base:work\#ref-IDOrganisation2 base:organisation\/4780; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10979 a base:work; + base:work\#DateEnd_Fuzzy "1933-12-31"; + base:work\#DateStart_Fuzzy "1923-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10979; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/1098 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1098; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/414; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/10984 a base:work; + base:work\#DateStart_Max "1933-04-20"^^xsd:date; + base:work\#DateStart_Min "1933-04-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10984; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3275; + base:work\#ref-IDOrganisation2 base:organisation\/3435; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10989 a base:work; + base:work\#DateEnd_Fuzzy "1934-12-31"; + base:work\#DateStart_Fuzzy "1934-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10989; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3145; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10994 a base:work; + base:work\#DateStart_Max "1936-03-28"^^xsd:date; + base:work\#DateStart_Min "1936-03-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10994; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3285; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/10999 a base:work; + base:work\#DateStart_Fuzzy "1938-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 10999; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3340; + base:work\#ref-IDOrganisation2 base:organisation\/4856; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/11 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Deutsches Theater Prag"; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/110 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 110; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/StrMax-00 . + +base:work\/11004 a base:work; + base:work\#DateStart_Max "1914-06-12"^^xsd:date; + base:work\#DateStart_Min "1914-06-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11004; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1470; + base:work\#ref-IDOrganisation2 base:organisation\/3510; + base:work\#ref-IDPerson base:person\/NovAlb-00 . + +base:work\/11009 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11009; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3625; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1101 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1101; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/416; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11014 a base:work; + base:work\#DateEnd_Fuzzy "1st March 1935"; + base:work\#DateEnd_Max "1935-03-01"^^xsd:date; + base:work\#DateEnd_Min "1935-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "4th December 1929"; + base:work\#DateStart_Max "1929-12-04"^^xsd:date; + base:work\#DateStart_Min "1929-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11014; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3640; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11019 a base:work; + base:work\#DateEnd_Fuzzy "1st November 1931"; + base:work\#DateEnd_Max "1931-11-01"^^xsd:date; + base:work\#DateEnd_Min "1931-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "30th September 1931"; + base:work\#DateStart_Max "1931-09-30"^^xsd:date; + base:work\#DateStart_Min "1931-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11019; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3650; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11024 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "21st August 1932"; + base:work\#DateStart_Max "1932-08-21"^^xsd:date; + base:work\#DateStart_Min "1932-08-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11024; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Cine Atlântico"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11029 a base:work; + base:work\#DateEnd_Fuzzy "18th October 1932"; + base:work\#DateEnd_Max "1932-10-18"^^xsd:date; + base:work\#DateEnd_Min "1932-10-18"^^xsd:date; + base:work\#DateStart_Fuzzy "17th October 1932"; + base:work\#DateStart_Max "1932-10-17"^^xsd:date; + base:work\#DateStart_Min "1932-10-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11029; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDOrganisation base:organisation\/3660; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11034 a base:work; + base:work\#DateStart_Fuzzy "20th - 29th October 1932"; + base:work\#DateStart_Max "1932-10-29"^^xsd:date; + base:work\#DateStart_Min "1932-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11034; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Alagoinhas"; + base:work\#ref-IDLocation base:location\/BR-Alago-00; + base:work\#ref-IDOrganisation base:organisation\/3665; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11039 a base:work; + base:work\#DateEnd_Fuzzy "December 1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1933"; + base:work\#DateStart_Max "1933-08-31"^^xsd:date; + base:work\#DateStart_Min "1933-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11039; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Radio Mayrink Veiga"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3795; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1104 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1104; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/413; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11044 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "26th October 1934"; + base:work\#DateStart_Max "1934-10-26"^^xsd:date; + base:work\#DateStart_Min "1934-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11044; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3650; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11049 a base:work; + base:work\#DateStart_Fuzzy "May 1935"; + base:work\#DateStart_Max "1935-05-23"^^xsd:date; + base:work\#DateStart_Min "1935-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11049; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "acted in the film \"Estudantes\" directed by Wallace Downey"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11053 a base:work; + base:work\#DateEnd_Fuzzy "between June and July 1935"; + base:work\#DateEnd_Max "1935-07-31"^^xsd:date; + base:work\#DateEnd_Min "1935-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "23rd May 1935"; + base:work\#DateStart_Max "1935-05-23"^^xsd:date; + base:work\#DateStart_Min "1935-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11053; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Radio Belgrano"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3745; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11059 a base:work; + base:work\#DateStart_Fuzzy "End of August 1935"; + base:work\#DateStart_Max "1935-08-31"^^xsd:date; + base:work\#DateStart_Min "1935-08-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11059; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11064 a base:work; + base:work\#DateEnd_Fuzzy "15th January 1936"; + base:work\#DateEnd_Max "1936-01-15"^^xsd:date; + base:work\#DateEnd_Min "1936-01-15"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1935"; + base:work\#DateStart_Max "1935-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11064; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "acted in the film \"Alô, alô, Carnaval\" directed by Wallace Downey"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11069 a base:work; + base:work\#DateEnd_Fuzzy "August 1936"; + base:work\#DateEnd_Max "1936-08-31"^^xsd:date; + base:work\#DateEnd_Min "1936-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "July 1936"; + base:work\#DateStart_Max "1936-07-31"^^xsd:date; + base:work\#DateStart_Min "1936-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11069; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3745; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1107 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1107; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11074 a base:work; + base:work\#DateEnd_Fuzzy "3rd May 1939"; + base:work\#DateEnd_Max "1939-05-03"^^xsd:date; + base:work\#DateEnd_Min "1939-05-03"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11074; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3790; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11079 a base:work; + base:work\#DateEnd_Fuzzy "July 1937"; + base:work\#DateEnd_Max "1937-07-31"^^xsd:date; + base:work\#DateEnd_Min "1937-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1937"; + base:work\#DateStart_Max "1937-06-30"^^xsd:date; + base:work\#DateStart_Min "1937-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11079; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3705; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11084 a base:work; + base:work\#DateStart_Fuzzy "November 1937"; + base:work\#DateStart_Max "1937-11-30"^^xsd:date; + base:work\#DateStart_Min "1937-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11084; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3795; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11089 a base:work; + base:work\#DateStart_Fuzzy "December 1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11089; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3720; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11094 a base:work; + base:work\#DateEnd_Fuzzy "February 1938"; + base:work\#DateEnd_Max "1938-02-28"^^xsd:date; + base:work\#DateEnd_Min "1938-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1938"; + base:work\#DateStart_Max "1938-02-28"^^xsd:date; + base:work\#DateStart_Min "1938-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11094; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3730; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11099 a base:work; + base:work\#DateStart_Fuzzy "March 1938"; + base:work\#DateStart_Max "1938-03-31"^^xsd:date; + base:work\#DateStart_Min "1938-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11099; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-CampGoyta-00; + base:work\#ref-IDOrganisation base:organisation\/3740; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/111 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 111; + base:work\#Profession base:Profession-Manager; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/105; + base:work\#ref-IDPerson base:person\/StrEdg-00 . + +base:work\/1110 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1110; + base:work\#Profession base:Profession-Singer; + base:work\#comment "North-America Tour. After the first world war he played in films especiallly in silent movies."; + base:work\#ref-IDOrganisation base:organisation\/415; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11104 a base:work; + base:work\#DateStart_Fuzzy "End of 1938"; + base:work\#DateStart_Max "1938-12-31"^^xsd:date; + base:work\#DateStart_Min "1938-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11104; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "acted in the film \"Banana da terra\" directed by Wallace Downey"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11108 a base:work; + base:work\#DateStart_Fuzzy "January 1939"; + base:work\#DateStart_Max "1939-01-31"^^xsd:date; + base:work\#DateStart_Min "1939-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11108; + base:work\#Profession base:Profession-Singer; + base:work\#comment "São Paulo, Santos,  Campinas, Franca, Ribeirão Preto, Poços de Caldas"; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11109 a base:work; + base:work\#DateEnd_Fuzzy "11th June 1939"; + base:work\#DateEnd_Max "1939-06-11"^^xsd:date; + base:work\#DateEnd_Min "1939-06-11"^^xsd:date; + base:work\#DateStart_Fuzzy "29th May 1939"; + base:work\#DateStart_Max "1939-05-29"^^xsd:date; + base:work\#DateStart_Min "1939-05-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11109; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2350; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11114 a base:work; + base:work\#DateEnd_Fuzzy "January 1940"; + base:work\#DateEnd_Max "1940-01-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "13rd September 1939"; + base:work\#DateStart_Max "1939-09-13"^^xsd:date; + base:work\#DateStart_Min "1939-09-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11114; + base:work\#Profession base:Profession-Singer; + base:work\#comment "12 Weeks Contract"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3760; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11119 a base:work; + base:work\#DateStart_Fuzzy "15th January 1940"; + base:work\#DateStart_Max "1940-01-15"^^xsd:date; + base:work\#DateStart_Min "1940-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11119; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3845; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1112 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1112; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/BG-Sof-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11124 a base:work; + base:work\#DateStart_Fuzzy "End of February 1940"; + base:work\#DateStart_Max "1940-02-29"^^xsd:date; + base:work\#DateStart_Min "1940-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11124; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour with expectacle „Streets of Paris“ in Philadelphia, Toronto, Pittsburgh, Saint Louis"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11129 a base:work; + base:work\#DateEnd_Fuzzy "Between 1st and 16th May 1940"; + base:work\#DateEnd_Max "1940-05-16"^^xsd:date; + base:work\#DateEnd_Min "1940-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1940"; + base:work\#DateStart_Max "1940-04-30"^^xsd:date; + base:work\#DateStart_Min "1940-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11129; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour with expectacle „Streets of Paris“"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11134 a base:work; + base:work\#DateStart_Fuzzy "16th May 1940"; + base:work\#DateStart_Max "1940-05-16"^^xsd:date; + base:work\#DateStart_Min "1940-05-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11134; + base:work\#Profession base:Profession-Singer; + base:work\#comment "3 weeks contrct"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3770; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11139 a base:work; + base:work\#DateEnd_Fuzzy "24th September 1940"; + base:work\#DateEnd_Max "1940-09-24"^^xsd:date; + base:work\#DateEnd_Min "1940-09-24"^^xsd:date; + base:work\#DateStart_Fuzzy "15th July 1940"; + base:work\#DateStart_Max "1940-07-15"^^xsd:date; + base:work\#DateStart_Min "1940-07-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11139; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3790; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11144 a base:work; + base:work\#DateEnd_Fuzzy "27th September 1940"; + base:work\#DateEnd_Max "1940-09-27"^^xsd:date; + base:work\#DateEnd_Min "1940-09-27"^^xsd:date; + base:work\#DateStart_Fuzzy "26th September 1940"; + base:work\#DateStart_Max "1940-09-26"^^xsd:date; + base:work\#DateStart_Min "1940-09-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11144; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3685; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11149 a base:work; + base:work\#DateEnd_Fuzzy "Between 20th and 31th October 1940"; + base:work\#DateEnd_Max "1940-10-31"^^xsd:date; + base:work\#DateEnd_Min "1940-10-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 17th and 25th October 1940"; + base:work\#DateStart_Max "1940-10-25"^^xsd:date; + base:work\#DateStart_Min "1940-10-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11149; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3810; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1115 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1115; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11154 a base:work; + base:work\#DateEnd_Fuzzy "5th January 1941"; + base:work\#DateEnd_Max "1941-01-05"^^xsd:date; + base:work\#DateEnd_Min "1941-01-05"^^xsd:date; + base:work\#DateStart_Fuzzy "5th January 1941"; + base:work\#DateStart_Max "1941-01-05"^^xsd:date; + base:work\#DateStart_Min "1941-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11154; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3765; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11159 a base:work; + base:work\#DateEnd_Fuzzy "May 1942"; + base:work\#DateEnd_Max "1942-05-31"^^xsd:date; + base:work\#DateEnd_Min "1942-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "9th October 1941"; + base:work\#DateStart_Max "1941-10-09"^^xsd:date; + base:work\#DateStart_Min "1941-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11159; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3815; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11164 a base:work; + base:work\#DateStart_Fuzzy "Second half of November 1941"; + base:work\#DateStart_Max "1941-11-30"^^xsd:date; + base:work\#DateStart_Min "1941-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11164; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2355; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11169 a base:work; + base:work\#DateEnd_Fuzzy "January 1946"; + base:work\#DateEnd_Max "1946-01-31"^^xsd:date; + base:work\#DateEnd_Min "1946-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1942"; + base:work\#DateStart_Max "1942-05-30"^^xsd:date; + base:work\#DateStart_Min "1942-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11169; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3845; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11174 a base:work; + base:work\#DateEnd_Fuzzy "Between 10th and 19th April 1946"; + base:work\#DateEnd_Max "1946-04-19"^^xsd:date; + base:work\#DateEnd_Min "1946-04-10"^^xsd:date; + base:work\#DateStart_Fuzzy "ing of February 1946"; + base:work\#DateStart_Max "1946-02-10"^^xsd:date; + base:work\#DateStart_Min "1946-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11174; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3840; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11179 a base:work; + base:work\#DateEnd_Fuzzy "June 1947"; + base:work\#DateEnd_Max "1947-06-30"^^xsd:date; + base:work\#DateEnd_Min "1947-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1947"; + base:work\#DateStart_Max "1947-04-30"^^xsd:date; + base:work\#DateStart_Min "1947-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11179; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3855; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1118 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1118; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/112 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 112; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Singer; + base:work\#comment "He played lover roles there, was a character actor and sang in the choir. At times he even danced ballet, repeatedly partnering the famous dancer Katharina Lanner (daughter of Joseph Lanner)."; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/1121 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1121; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/1124 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1124; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11264 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11264; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11269 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "January 1929"; + base:work\#DateStart_Max "1929-01-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11269; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3635; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1127 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1127; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11274 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "13rd September 1930"; + base:work\#DateStart_Max "1930-09-13"^^xsd:date; + base:work\#DateStart_Min "1930-09-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11274; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Musical Revue \"Vai dar o que falar\""; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3645; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11279 a base:work; + base:work\#DateEnd_Fuzzy "15th August 1932"; + base:work\#DateEnd_Max "1932-08-15"^^xsd:date; + base:work\#DateEnd_Min "1932-08-15"^^xsd:date; + base:work\#DateStart_Fuzzy "8th August 1932"; + base:work\#DateStart_Max "1932-08-08"^^xsd:date; + base:work\#DateStart_Min "1932-08-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11279; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3680; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11284 a base:work; + base:work\#DateEnd_Fuzzy "16th October 1932"; + base:work\#DateEnd_Max "1932-10-16"^^xsd:date; + base:work\#DateEnd_Min "1932-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "26th September 1932"; + base:work\#DateStart_Max "1932-09-26"^^xsd:date; + base:work\#DateStart_Min "1932-09-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11284; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDOrganisation base:organisation\/3655; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11289 a base:work; + base:work\#DateStart_Fuzzy "20th October 1932"; + base:work\#DateStart_Max "1932-10-20"^^xsd:date; + base:work\#DateStart_Min "1932-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11289; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Cachoeiro and São Félix"; + base:work\#ref-IDLocation base:location\/BR-Bahia-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11293 a base:work; + base:work\#DateEnd_Fuzzy "5th November 1932"; + base:work\#DateEnd_Max "1932-11-05"^^xsd:date; + base:work\#DateEnd_Min "1932-11-05"^^xsd:date; + base:work\#DateStart_Fuzzy "29th October 1932"; + base:work\#DateStart_Max "1932-10-29"^^xsd:date; + base:work\#DateStart_Min "1932-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11293; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/622; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11294 a base:work; + base:work\#DateEnd_Fuzzy "January 1933"; + base:work\#DateEnd_Max "1933-01-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 11294; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "shot the film „Voz do Carnaval“"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11299 a base:work; + base:work\#DateEnd_Fuzzy "4th December 1933"; + base:work\#DateEnd_Max "1933-12-04"^^xsd:date; + base:work\#DateEnd_Min "1933-12-04"^^xsd:date; + base:work\#DateStart_Fuzzy "30th October 1933"; + base:work\#DateStart_Max "1933-10-30"^^xsd:date; + base:work\#DateStart_Min "1933-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11299; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Radio Excelsior"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3675; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/113 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 113; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/HU-Pest-00; + base:work\#ref-IDOrganisation base:organisation\/107; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/1130 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1130; + base:work\#comment "tours through Europe (Sofia, Bukarest), but also Germany (Dresden, Köln, Leipzig, München and Weimar"; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11304 a base:work; + base:work\#DateEnd_Fuzzy "4th May 1939"; + base:work\#DateEnd_Max "1939-05-04"^^xsd:date; + base:work\#DateEnd_Min "1939-05-04"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1935"; + base:work\#DateStart_Max "1935-03-31"^^xsd:date; + base:work\#DateStart_Min "1935-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11304; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Odeon Records"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3685; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11309 a base:work; + base:work\#DateStart_Fuzzy "End of July 1935"; + base:work\#DateStart_Max "1935-07-31"^^xsd:date; + base:work\#DateStart_Min "1935-07-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11309; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDOrganisation base:organisation\/3690; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1131 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1131; + base:work\#comment "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + base:work\#ref-IDLocation base:location\/JPN-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11314 a base:work; + base:work\#DateStart_Fuzzy "End of August 1935"; + base:work\#DateStart_Max "1935-08-31"^^xsd:date; + base:work\#DateStart_Min "1935-08-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11314; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11319 a base:work; + base:work\#DateStart_Fuzzy "20th October 1935"; + base:work\#DateStart_Max "1935-10-20"^^xsd:date; + base:work\#DateStart_Min "1935-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11319; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She stayed for 46 days contract"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3745; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11324 a base:work; + base:work\#DateStart_Fuzzy "January 1936"; + base:work\#DateStart_Max "1936-01-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11324; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3695; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11329 a base:work; + base:work\#DateEnd_Fuzzy "November 1937"; + base:work\#DateEnd_Max "1937-11-30"^^xsd:date; + base:work\#DateEnd_Min "1937-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11329; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3700; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11334 a base:work; + base:work\#DateEnd_Fuzzy "July 1937"; + base:work\#DateEnd_Max "1937-07-31"^^xsd:date; + base:work\#DateEnd_Min "1937-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1937"; + base:work\#DateStart_Max "1937-06-30"^^xsd:date; + base:work\#DateStart_Min "1937-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11334; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3715; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11339 a base:work; + base:work\#DateStart_Fuzzy "July 1937"; + base:work\#DateStart_Max "1937-07-31"^^xsd:date; + base:work\#DateStart_Min "1937-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11339; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/3710; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1134 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1134; + base:work\#comment "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + base:work\#ref-IDLocation base:location\/KR-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11344 a base:work; + base:work\#DateEnd_Fuzzy "November 1937"; + base:work\#DateEnd_Max "1937-10-31"^^xsd:date; + base:work\#DateEnd_Min "1937-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1937"; + base:work\#DateStart_Max "1937-10-31"^^xsd:date; + base:work\#DateStart_Min "1937-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11344; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3715; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11349 a base:work; + base:work\#DateEnd_Fuzzy "February 1938"; + base:work\#DateEnd_Max "1938-02-28"^^xsd:date; + base:work\#DateEnd_Min "1938-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1938"; + base:work\#DateStart_Max "1938-02-28"^^xsd:date; + base:work\#DateStart_Min "1938-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11349; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3725; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11354 a base:work; + base:work\#DateEnd_Fuzzy "February 1938"; + base:work\#DateEnd_Max "1938-02-28"^^xsd:date; + base:work\#DateEnd_Min "1938-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1938"; + base:work\#DateStart_Max "1938-02-28"^^xsd:date; + base:work\#DateStart_Min "1938-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11354; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Cassinos  tour in São Paulo State : Franca, Ribeirão Preto, Campinas, Santos, Poços de Caldas"; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/67; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11359 a base:work; + base:work\#DateStart_Fuzzy "Meadle of April 1938"; + base:work\#DateStart_Max "1938-04-22"^^xsd:date; + base:work\#DateStart_Min "1938-04-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11359; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3745; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11364 a base:work; + base:work\#DateEnd_Fuzzy "Between mid January and Mid February 1940"; + base:work\#DateEnd_Max "1940-02-16"^^xsd:date; + base:work\#DateEnd_Min "1940-01-15"^^xsd:date; + base:work\#DateStart_Fuzzy "17th May 1939"; + base:work\#DateStart_Max "1939-05-17"^^xsd:date; + base:work\#DateStart_Min "1939-05-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11364; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Premiere in 1939-06-19"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3750; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11369 a base:work; + base:work\#DateEnd_Fuzzy "September 1939"; + base:work\#DateEnd_Max "1939-09-30"^^xsd:date; + base:work\#DateEnd_Min "1939-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "29th June 1939"; + base:work\#DateStart_Max "1939-06-29"^^xsd:date; + base:work\#DateStart_Min "1939-06-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11369; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Programm „The Fleischmann Hour“. Premiere 1939-07-03"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3755; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/1137 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1137; + base:work\#comment "From 1913 no fest Commitment, but journeys to Japan, Korea, China for studying."; + base:work\#ref-IDLocation base:location\/CN-00; + base:work\#ref-IDPerson base:person\/EgeFra-00 . + +base:work\/11374 a base:work; + base:work\#DateStart_Fuzzy "26th December 1939"; + base:work\#DateStart_Max "1939-12-26"^^xsd:date; + base:work\#DateStart_Min "1939-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 11374; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3765; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11379 a base:work; + base:work\#DateStart_Fuzzy "19th January 1940"; + base:work\#DateStart_Max "1940-01-19"^^xsd:date; + base:work\#DateStart_Min "1940-01-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11379; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3770; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11384 a base:work; + base:work\#DateStart_Fuzzy "between 1st and 5th March 1940"; + base:work\#DateStart_Max "1940-03-05"^^xsd:date; + base:work\#DateStart_Min "1940-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11384; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11389 a base:work; + base:work\#DateEnd_Fuzzy "Between 1st and 16th May 1940"; + base:work\#DateEnd_Max "1940-05-16"^^xsd:date; + base:work\#DateEnd_Min "1940-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1940"; + base:work\#DateStart_Max "1940-04-30"^^xsd:date; + base:work\#DateStart_Min "1940-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11389; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3775; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11394 a base:work; + base:work\#DateStart_Fuzzy "Second half of May 1940"; + base:work\#DateStart_Max "1940-05-31"^^xsd:date; + base:work\#DateStart_Min "1940-05-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11394; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3785; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11399 a base:work; + base:work\#DateEnd_Fuzzy "1st October 1940"; + base:work\#DateEnd_Max "1940-10-01"^^xsd:date; + base:work\#DateEnd_Min "1940-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "22nd August 1940"; + base:work\#DateStart_Max "1940-08-22"^^xsd:date; + base:work\#DateStart_Min "1940-08-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11399; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/3795; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/114 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 114; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11404 a base:work; + base:work\#DateEnd_Fuzzy "28th September 1940"; + base:work\#DateEnd_Max "1940-09-28"^^xsd:date; + base:work\#DateEnd_Min "1940-09-28"^^xsd:date; + base:work\#DateStart_Fuzzy "28th September 1940"; + base:work\#DateStart_Max "1940-09-28"^^xsd:date; + base:work\#DateStart_Min "1940-09-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11404; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-Niter-00; + base:work\#ref-IDOrganisation base:organisation\/3805; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11409 a base:work; + base:work\#DateEnd_Fuzzy "25th August 1941"; + base:work\#DateEnd_Max "1941-08-25"^^xsd:date; + base:work\#DateEnd_Min "1941-08-25"^^xsd:date; + base:work\#DateStart_Fuzzy "15th November 1940"; + base:work\#DateStart_Max "1940-11-15"^^xsd:date; + base:work\#DateStart_Min "1940-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11409; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Accted in film “That night in Rio”"; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3845; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11414 a base:work; + base:work\#DateStart_Fuzzy "7th October 1941"; + base:work\#DateStart_Max "1941-10-07"^^xsd:date; + base:work\#DateStart_Min "1941-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11414; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Shubert Musical Revue “Sons of fun”. Premiere in 1941-12-01"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3820; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11419 a base:work; + base:work\#DateEnd_Fuzzy "December 1941"; + base:work\#DateEnd_Max "1941-12-31"^^xsd:date; + base:work\#DateEnd_Min "1941-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and October 1941"; + base:work\#DateStart_Max "1941-10-31"^^xsd:date; + base:work\#DateStart_Min "1941-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11419; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3760; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11424 a base:work; + base:work\#DateEnd_Fuzzy "February 1942"; + base:work\#DateEnd_Max "1942-02-28"^^xsd:date; + base:work\#DateEnd_Min "1942-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1942"; + base:work\#DateStart_Max "1942-01-31"^^xsd:date; + base:work\#DateStart_Min "1942-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11424; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Two weeks season"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3840; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11429 a base:work; + base:work\#DateEnd_Fuzzy "Between 10th and 19th May 1945"; + base:work\#DateEnd_Max "1945-05-19"^^xsd:date; + base:work\#DateEnd_Min "1945-05-10"^^xsd:date; + base:work\#DateStart_Fuzzy "Beginning of February 1945"; + base:work\#DateStart_Max "1945-02-10"^^xsd:date; + base:work\#DateStart_Min "1945-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11429; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3840; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11434 a base:work; + base:work\#DateStart_Fuzzy "1st January 1946"; + base:work\#DateStart_Max "1946-01-01"^^xsd:date; + base:work\#DateStart_Min "1946-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 11434; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3850; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11494 a base:work; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-12-31"^^xsd:date; + base:work\#DateStart_Min "1873-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11494; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/371; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/11499 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11499; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/442; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/115 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 115; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/109; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11504 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11504; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/11509 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11509; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ferr-00; + base:work\#ref-IDOrganisation base:organisation\/4005; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/11514 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11514; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/ResFre-00 . + +base:work\/11519 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11519; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/ResFre-00 . + +base:work\/11524 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11524; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDOrganisation base:organisation\/84; + base:work\#ref-IDPerson base:person\/rescar-00 . + +base:work\/11529 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11529; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/rescar-00 . + +base:work\/11534 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11534; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/rescar-00 . + +base:work\/11539 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11539; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/391; + base:work\#ref-IDPerson base:person\/rescar-00 . + +base:work\/11544 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11544; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/resjoh-00 . + +base:work\/11549 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11549; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Wzbrg-00; + base:work\#ref-IDOrganisation base:organisation\/992; + base:work\#ref-IDPerson base:person\/resjoh-00 . + +base:work\/11554 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11554; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/resjoh-00 . + +base:work\/11559 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-01"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11559; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BrauSch-00; + base:work\#ref-IDOrganisation base:organisation\/433; + base:work\#ref-IDPerson base:person\/resjoh-00 . + +base:work\/11564 a base:work; + base:work\#DateEnd_Fuzzy "1873"; + base:work\#DateEnd_Max "1873-12-31"^^xsd:date; + base:work\#DateEnd_Min "1873-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11564; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/4010; + base:work\#ref-IDPerson base:person\/resjoh-00 . + +base:work\/11574 a base:work; + base:work\#DateEnd_Fuzzy "between May and September 1947"; + base:work\#DateEnd_Max "1947-09-30"^^xsd:date; + base:work\#DateEnd_Min "1947-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between May and August 1947"; + base:work\#DateStart_Max "1947-08-31"^^xsd:date; + base:work\#DateStart_Min "1947-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11574; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3860; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11579 a base:work; + base:work\#DateStart_Fuzzy "September 1947"; + base:work\#DateStart_Max "1947-09-30"^^xsd:date; + base:work\#DateStart_Min "1947-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11579; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3890; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11584 a base:work; + base:work\#DateEnd_Fuzzy "Three weeks season"; + base:work\#DateEnd_Max "1948-02-29"^^xsd:date; + base:work\#DateEnd_Min "1948-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1948"; + base:work\#DateStart_Max "1948-02-29"^^xsd:date; + base:work\#DateStart_Min "1948-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11584; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11589 a base:work; + base:work\#DateEnd_Fuzzy "first half of April 1948"; + base:work\#DateEnd_Max "1948-04-16"^^xsd:date; + base:work\#DateEnd_Min "1948-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and April 1948"; + base:work\#DateStart_Max "1948-04-16"^^xsd:date; + base:work\#DateStart_Min "1948-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11589; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3900; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11594 a base:work; + base:work\#DateEnd_Fuzzy "Six weeks season"; + base:work\#DateEnd_Max "1948-06-07"^^xsd:date; + base:work\#DateEnd_Min "1948-06-07"^^xsd:date; + base:work\#DateStart_Fuzzy "second half of April 1948"; + base:work\#DateStart_Max "1948-04-26"^^xsd:date; + base:work\#DateStart_Min "1948-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11594; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1725; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11599 a base:work; + base:work\#DateStart_Fuzzy "27th September 1948"; + base:work\#DateStart_Max "1948-09-27"^^xsd:date; + base:work\#DateStart_Min "1948-09-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11599; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3870; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/116 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 116; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11604 a base:work; + base:work\#DateEnd_Fuzzy "December 1948"; + base:work\#DateEnd_Max "1948-12-31"^^xsd:date; + base:work\#DateEnd_Min "1948-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1948"; + base:work\#DateStart_Max "1948-12-31"^^xsd:date; + base:work\#DateStart_Min "1948-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11604; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3875; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11609 a base:work; + base:work\#DateEnd_Fuzzy "January 1949"; + base:work\#DateEnd_Max "1949-01-31"^^xsd:date; + base:work\#DateEnd_Min "1949-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1948"; + base:work\#DateStart_Max "1948-12-31"^^xsd:date; + base:work\#DateStart_Min "1948-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11609; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/3880; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11614 a base:work; + base:work\#DateEnd_Fuzzy "January 1949"; + base:work\#DateEnd_Max "1949-01-31"^^xsd:date; + base:work\#DateEnd_Min "1949-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1949"; + base:work\#DateStart_Max "1949-01-31"^^xsd:date; + base:work\#DateStart_Min "1949-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11614; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/3885; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11619 a base:work; + base:work\#DateEnd_Fuzzy "February 1949"; + base:work\#DateEnd_Max "1949-02-28"^^xsd:date; + base:work\#DateEnd_Min "1949-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1949"; + base:work\#DateStart_Max "1949-02-28"^^xsd:date; + base:work\#DateStart_Min "1949-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11619; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3890; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11624 a base:work; + base:work\#DateEnd_Fuzzy "February 1949"; + base:work\#DateEnd_Max "1949-02-28"^^xsd:date; + base:work\#DateEnd_Min "1949-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1949"; + base:work\#DateStart_Max "1949-02-28"^^xsd:date; + base:work\#DateStart_Min "1949-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11624; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3895; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11629 a base:work; + base:work\#DateEnd_Fuzzy "November 1949"; + base:work\#DateEnd_Max "1949-11-30"^^xsd:date; + base:work\#DateEnd_Min "1949-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1949"; + base:work\#DateStart_Max "1949-08-31"^^xsd:date; + base:work\#DateStart_Min "1949-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 11629; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3900; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11634 a base:work; + base:work\#DateEnd_Fuzzy "January 1950"; + base:work\#DateEnd_Max "1950-01-31"^^xsd:date; + base:work\#DateEnd_Min "1950-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1950"; + base:work\#DateStart_Max "1950-01-31"^^xsd:date; + base:work\#DateStart_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11634; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Miami"; + base:work\#ref-IDOrganisation base:organisation\/3905; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11639 a base:work; + base:work\#DateEnd_Fuzzy "March 1950"; + base:work\#DateEnd_Max "1950-03-31"^^xsd:date; + base:work\#DateEnd_Min "1950-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1950"; + base:work\#DateStart_Max "1950-03-31"^^xsd:date; + base:work\#DateStart_Min "1950-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11639; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3910; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11644 a base:work; + base:work\#DateStart_Fuzzy "1950"; + base:work\#DateStart_Max "1950-12-31"^^xsd:date; + base:work\#DateStart_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11644; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "also in Detroid and other cities"; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11649 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11649; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3915; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11654 a base:work; + base:work\#DateStart_Fuzzy "August 1955"; + base:work\#DateStart_Max "1955-08-31"^^xsd:date; + base:work\#DateStart_Min "1955-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11654; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/4000; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11659 a base:work; + base:work\#DateEnd_Fuzzy "25th March 1951"; + base:work\#DateEnd_Max "1951-03-25"^^xsd:date; + base:work\#DateEnd_Min "1951-03-25"^^xsd:date; + base:work\#DateStart_Fuzzy "25th March 1951"; + base:work\#DateStart_Max "1951-03-25"^^xsd:date; + base:work\#DateStart_Min "1951-03-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11659; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3920; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11664 a base:work; + base:work\#DateEnd_Fuzzy "April 1951"; + base:work\#DateEnd_Max "1951-04-30"^^xsd:date; + base:work\#DateEnd_Min "1951-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1951"; + base:work\#DateStart_Max "1951-03-31"^^xsd:date; + base:work\#DateStart_Min "1951-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11664; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/3885; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11669 a base:work; + base:work\#DateEnd_Fuzzy "between March and April 1951"; + base:work\#DateEnd_Max "1951-04-30"^^xsd:date; + base:work\#DateEnd_Min "1951-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and April 1951"; + base:work\#DateStart_Max "1951-04-30"^^xsd:date; + base:work\#DateStart_Min "1951-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11669; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/3895; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11674 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11674; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11679 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11679; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11683 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11683; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11684 a base:work; + base:work\#DateEnd_Fuzzy "3rd October 1951"; + base:work\#DateEnd_Max "1951-10-03"^^xsd:date; + base:work\#DateEnd_Min "1951-10-03"^^xsd:date; + base:work\#DateStart_Fuzzy "22nd August 1951"; + base:work\#DateStart_Max "1951-08-22"^^xsd:date; + base:work\#DateStart_Min "1951-08-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11684; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Tour in 43 Cities of USA"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/3945; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11689 a base:work; + base:work\#DateEnd_Fuzzy "December 1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1951"; + base:work\#DateStart_Max "1951-11-30"^^xsd:date; + base:work\#DateStart_Min "1951-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11689; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3855; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11694 a base:work; + base:work\#DateEnd_Fuzzy "December 1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1951"; + base:work\#DateStart_Max "1951-11-30"^^xsd:date; + base:work\#DateStart_Min "1951-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11694; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3950; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11699 a base:work; + base:work\#DateEnd_Fuzzy "December 1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1951"; + base:work\#DateStart_Max "1951-11-30"^^xsd:date; + base:work\#DateStart_Min "1951-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11699; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3955; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/117 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 117; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "he was appointed professor at the Academy of Music in Munich, where he was also responsible for the artistic training of young talents at the Court Theatre."; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11704 a base:work; + base:work\#DateEnd_Fuzzy "January 1952"; + base:work\#DateStart_Fuzzy "January 1952"; + base:work\#DateStart_Max "1952-01-31"^^xsd:date; + base:work\#DateStart_Min "1952-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11704; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/3890; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11709 a base:work; + base:work\#DateEnd_Fuzzy "January 1952"; + base:work\#DateEnd_Max "1952-01-31"^^xsd:date; + base:work\#DateEnd_Min "1952-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1952"; + base:work\#DateStart_Max "1952-01-31"^^xsd:date; + base:work\#DateStart_Min "1952-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11709; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3955; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11714 a base:work; + base:work\#DateEnd_Fuzzy "January 1952"; + base:work\#DateEnd_Max "1952-01-31"^^xsd:date; + base:work\#DateEnd_Min "1952-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1952"; + base:work\#DateStart_Max "1952-01-31"^^xsd:date; + base:work\#DateStart_Min "1952-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11714; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3960; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11719 a base:work; + base:work\#DateEnd_Fuzzy "March 1952"; + base:work\#DateEnd_Max "1952-03-31"^^xsd:date; + base:work\#DateEnd_Min "1952-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1952"; + base:work\#DateStart_Max "1952-03-31"^^xsd:date; + base:work\#DateStart_Min "1952-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11719; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3965; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11724 a base:work; + base:work\#DateEnd_Fuzzy "May 1952"; + base:work\#DateEnd_Max "1952-05-31"^^xsd:date; + base:work\#DateEnd_Min "1952-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1952"; + base:work\#DateStart_Max "1952-05-31"^^xsd:date; + base:work\#DateStart_Min "1952-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11724; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3970; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11729 a base:work; + base:work\#DateEnd_Fuzzy "July 1952"; + base:work\#DateEnd_Max "1952-07-31"^^xsd:date; + base:work\#DateEnd_Min "1952-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1952"; + base:work\#DateStart_Max "1952-06-30"^^xsd:date; + base:work\#DateStart_Min "1952-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 11729; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/3975; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11734 a base:work; + base:work\#DateStart_Fuzzy "December 1952"; + base:work\#DateStart_Max "1952-12-31"^^xsd:date; + base:work\#DateStart_Min "1952-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11734; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11739 a base:work; + base:work\#DateEnd_Fuzzy "June 1953"; + base:work\#DateEnd_Max "1953-06-30"^^xsd:date; + base:work\#DateEnd_Min "1953-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "20th March 1953"; + base:work\#DateStart_Max "1953-03-20"^^xsd:date; + base:work\#DateStart_Min "1953-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11739; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Tour in Europe ( Italy, Sweden and Finland)"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDOrganisation base:organisation\/3975; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11744 a base:work; + base:work\#DateEnd_Fuzzy "September 1953"; + base:work\#DateEnd_Max "1953-09-30"^^xsd:date; + base:work\#DateEnd_Min "1953-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1953"; + base:work\#DateStart_Max "1953-09-30"^^xsd:date; + base:work\#DateStart_Min "1953-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11744; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/3960; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11749 a base:work; + base:work\#DateEnd_Fuzzy "October 1953"; + base:work\#DateEnd_Max "1953-10-31"^^xsd:date; + base:work\#DateEnd_Min "1953-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1953"; + base:work\#DateStart_Max "1953-10-31"^^xsd:date; + base:work\#DateStart_Min "1953-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11749; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/3855; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11754 a base:work; + base:work\#DateEnd_Fuzzy "October 1953"; + base:work\#DateEnd_Max "1953-10-31"^^xsd:date; + base:work\#DateEnd_Min "1953-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1953"; + base:work\#DateStart_Max "1953-10-31"^^xsd:date; + base:work\#DateStart_Min "1953-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11754; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/3980; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11759 a base:work; + base:work\#DateEnd_Fuzzy "March 1954"; + base:work\#DateEnd_Max "1954-03-31"^^xsd:date; + base:work\#DateEnd_Min "1954-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1954"; + base:work\#DateStart_Max "1954-03-31"^^xsd:date; + base:work\#DateStart_Min "1954-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11759; + base:work\#ref-IDOrganisation base:organisation\/3985; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11764 a base:work; + base:work\#DateEnd_Fuzzy "March 1954"; + base:work\#DateEnd_Max "1954-03-31"^^xsd:date; + base:work\#DateEnd_Min "1954-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1954"; + base:work\#DateStart_Max "1954-03-31"^^xsd:date; + base:work\#DateStart_Min "1954-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11764; + base:work\#ref-IDOrganisation base:organisation\/3960; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11769 a base:work; + base:work\#DateEnd_Fuzzy "5th May 1955"; + base:work\#DateEnd_Max "1955-05-05"^^xsd:date; + base:work\#DateEnd_Min "1955-05-05"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1955"; + base:work\#DateStart_Max "1955-04-30"^^xsd:date; + base:work\#DateStart_Min "1955-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11769; + base:work\#ref-IDOrganisation base:organisation\/3990; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11774 a base:work; + base:work\#DateEnd_Fuzzy "29th July 1955"; + base:work\#DateEnd_Max "1955-07-29"^^xsd:date; + base:work\#DateEnd_Min "1955-07-29"^^xsd:date; + base:work\#DateStart_Fuzzy "13th July 1955"; + base:work\#DateStart_Max "1955-07-13"^^xsd:date; + base:work\#DateStart_Min "1955-07-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11774; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDOrganisation base:organisation\/3995; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11779 a base:work; + base:work\#DateEnd_Fuzzy "February 1951"; + base:work\#DateEnd_Max "1951-02-28"^^xsd:date; + base:work\#DateEnd_Min "1951-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "11th January 1951"; + base:work\#DateStart_Max "1951-01-11"^^xsd:date; + base:work\#DateStart_Min "1951-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11779; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Honolulu, Maui,, Kauai, Hilo (Havaí)"; + base:work\#ref-IDPerson base:person\/MirCar-00 . + +base:work\/11784 a base:work; + base:work\#DateEnd_Fuzzy "between 1859 and May 1862"; + base:work\#DateEnd_Max "1862-05-31"^^xsd:date; + base:work\#DateEnd_Min "1859-02-17"^^xsd:date; + base:work\#DateStart_Fuzzy "17th February 1859"; + base:work\#DateStart_Max "1859-02-17"^^xsd:date; + base:work\#DateStart_Min "1859-02-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11784; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1931; + base:work\#ref-IDPerson base:person\/ArnJos-00 . + +base:work\/11788 a base:work; + base:work\#DateEnd_Fuzzy "April 1866"; + base:work\#DateEnd_Max "1866-04-30"^^xsd:date; + base:work\#DateEnd_Min "1866-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "31th May 1862"; + base:work\#DateStart_Max "1862-05-31"^^xsd:date; + base:work\#DateStart_Min "1862-05-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11788; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1931; + base:work\#ref-IDPerson base:person\/ArnJos-00 . + +base:work\/11793 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11793; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1936; + base:work\#ref-IDPerson base:person\/ArnJos-00 . + +base:work\/11794 a base:work; + base:work\#DateStart_Fuzzy "June 1870"; + base:work\#DateStart_Max "1870-06-30"^^xsd:date; + base:work\#DateStart_Min "1870-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11794; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDOrganisation2 base:organisation\/679; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/11799 a base:work; + base:work\#DateStart_Fuzzy "11th June 1868"; + base:work\#DateStart_Max "1868-06-11"^^xsd:date; + base:work\#DateStart_Min "1868-06-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11799; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDOrganisation base:organisation\/676; + base:work\#ref-IDOrganisation2 base:organisation\/674; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/118 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 118; + base:work\#Profession base:Profession-Agent; + base:work\#comment "His job was to find young talents and teach them in correct speech"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11809 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11809; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BellV-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11814 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11814; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3615; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11819 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11819; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3485; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11824 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11824; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3545; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11829 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11829; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3555; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11834 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11834; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2565; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11839 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11839; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3430; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11844 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11844; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/3570; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11849 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 11849; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/635; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11854 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11854; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3440; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11859 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11859; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3590; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11864 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11864; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11869 a base:work; + base:work\#DateEnd_Fuzzy "1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11869; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11874 a base:work; + base:work\#DateEnd_Fuzzy "1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11874; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11879 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11879; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11884 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1940"; + base:work\#DateStart_Max "1940-12-31"^^xsd:date; + base:work\#DateStart_Min "1940-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11884; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11889 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11889; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11894 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11894; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11899 a base:work; + base:work\#DateEnd_Fuzzy "1932"; + base:work\#DateEnd_Max "1932-12-31"^^xsd:date; + base:work\#DateEnd_Min "1932-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11899; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/119 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 119; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/111; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/11904 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 11904; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AloEnz-00 . + +base:work\/11909 a base:work; + base:work\#DateEnd_Fuzzy "probably between 1865 and 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "probably between 1865 and 1870"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11909; + base:work\#ref-IDLocation base:location\/FR-Ly-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/11914 a base:work; + base:work\#DateEnd_Fuzzy "probably between 1865 and 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "probably between 1865 and 1870"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11914; + base:work\#ref-IDLocation base:location\/FR-Bord-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/11919 a base:work; + base:work\#DateEnd_Fuzzy "probably between 1865 and 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "probably between 1865 and 1870"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11919; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/779; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/11923 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "27th July 1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-07-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11923; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/URY-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/11924 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "27th July 1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-07-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11924; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/11929 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11929; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/929; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/11934 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11934; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/11939 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883 (probably)"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11939; + base:work\#ref-IDLocation base:location\/PT-Coimb-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11944 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883 (probably)"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11944; + base:work\#ref-IDLocation base:location\/PT-Viz-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11949 a base:work; + base:work\#DateEnd_Fuzzy "May 1883"; + base:work\#DateEnd_Max "1883-05-31"^^xsd:date; + base:work\#DateEnd_Min "1883-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1883 (one Month stay)"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11949; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11954 a base:work; + base:work\#DateEnd_Fuzzy "June 1883"; + base:work\#DateEnd_Max "1883-06-30"^^xsd:date; + base:work\#DateEnd_Min "1883-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1883 (one Month stay)"; + base:work\#DateStart_Max "1883-05-31"^^xsd:date; + base:work\#DateStart_Min "1883-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11954; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11959 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883 (probably)"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11959; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11964 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883 (probably)"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11964; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11969 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883 (probably)"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11969; + base:work\#ref-IDLocation base:location\/PT-Braga-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11974 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Summer 1883"; + base:work\#DateStart_Max "1883-09-30"^^xsd:date; + base:work\#DateStart_Min "1883-06-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11974; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11979 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1883"; + base:work\#DateEnd_Max "1883-09-30"^^xsd:date; + base:work\#DateEnd_Min "1883-06-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11979; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11984 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11984; + base:work\#ref-IDLocation base:location\/FR-Mars-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11989 a base:work; + base:work\#DateEnd_Fuzzy "Finish the tour around September 1885"; + base:work\#DateEnd_Max "1885-10-01"^^xsd:date; + base:work\#DateEnd_Min "1885-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1885 (13 Months tour)"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11989; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1199 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1199; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/11994 a base:work; + base:work\#DateEnd_Fuzzy "Finish the tour around September 1885"; + base:work\#DateEnd_Max "1885-10-01"^^xsd:date; + base:work\#DateEnd_Min "1885-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1885 (13 Months tour)"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11994; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/11999 a base:work; + base:work\#DateEnd_Fuzzy "Finish the tour around September 1885"; + base:work\#DateEnd_Max "1885-10-01"^^xsd:date; + base:work\#DateEnd_Min "1885-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1885 (13 Months tour)"; + base:work\#DateStart_Max "1885-10-01"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 11999; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/120 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#Employment "teacher"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 120; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/112; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/12004 a base:work; + base:work\#DateEnd_Fuzzy "beginning of 1886"; + base:work\#DateEnd_Max "1886-03-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "beginning of 1886"; + base:work\#DateStart_Max "1886-03-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12004; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12009 a base:work; + base:work\#DateEnd_Fuzzy "beginning of 1886"; + base:work\#DateEnd_Max "1886-03-31"^^xsd:date; + base:work\#DateEnd_Min "1886-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "beginning of 1886"; + base:work\#DateStart_Max "1886-03-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12009; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/2525; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12014 a base:work; + base:work\#DateEnd_Fuzzy "April 1886"; + base:work\#DateEnd_Max "1886-04-30"^^xsd:date; + base:work\#DateEnd_Min "1886-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1886"; + base:work\#DateStart_Max "1886-03-31"^^xsd:date; + base:work\#DateStart_Min "1886-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12014; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12019 a base:work; + base:work\#DateEnd_Fuzzy "May 1886"; + base:work\#DateEnd_Max "1886-05-31"^^xsd:date; + base:work\#DateEnd_Min "1886-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1886"; + base:work\#DateStart_Max "1886-04-30"^^xsd:date; + base:work\#DateStart_Min "1886-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12019; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1202 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1202; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12024 a base:work; + base:work\#DateEnd_Fuzzy "between January and February 1886"; + base:work\#DateEnd_Max "1886-02-28"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1885"; + base:work\#DateStart_Max "1885-10-31"^^xsd:date; + base:work\#DateStart_Min "1885-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12024; + base:work\#comment "Traveling around Italy for 3 Months"; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12029 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "October 1885"; + base:work\#DateStart_Max "1885-10-31"^^xsd:date; + base:work\#DateStart_Min "1885-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12029; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12034 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1884 (13 Months tour)"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12034; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12039 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12039; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3580; + base:work\#ref-IDOrganisation2 base:organisation\/4876; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12044 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12044; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4800; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12049 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-06-30"^^xsd:date; + base:work\#DateEnd_Min "1913-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-06-30"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12049; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4796; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/1205 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1205; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12054 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-03-27"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-03-27"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12054; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4796; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12059 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12059; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3565; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12064 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12064; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3350; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12069 a base:work; + base:work\#DateEnd_Fuzzy "1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1937-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12069; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3350; + base:work\#ref-IDOrganisation2 base:organisation\/3565; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12074 a base:work; + base:work\#DateEnd_Fuzzy "1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1938"; + base:work\#DateStart_Max "1938-12-31"^^xsd:date; + base:work\#DateStart_Min "1938-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12074; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3085; + base:work\#ref-IDOrganisation2 base:organisation\/3085; + base:work\#ref-IDPerson base:person\/HerLui-00 . + +base:work\/12079 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "May 1886"; + base:work\#DateStart_Max "1886-05-31"^^xsd:date; + base:work\#DateStart_Min "1886-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12079; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1208 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1208; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/180; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12084 a base:work; + base:work\#DateEnd_Fuzzy "October 1886"; + base:work\#DateEnd_Max "1886-10-31"^^xsd:date; + base:work\#DateEnd_Min "1886-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1886"; + base:work\#DateStart_Max "1886-05-31"^^xsd:date; + base:work\#DateStart_Min "1886-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12084; + base:work\#comment "After this tour, between 1886-1890 she and her husband settled in Lisbon and sought to rest and not engage in theatrical activity"; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12089 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12089; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12094 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12094; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12099 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12099; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Impresario; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/121 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 121; + base:work\#comment "very successful public academy in front of the Parisian public (in the salle Herz)"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/StrAle-00 . + +base:work\/12104 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12104; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Impresario; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-Manaus-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12109 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12109; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/592; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1211 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1211; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12114 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12114; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12119 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12119; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/638; + base:work\#ref-IDOrganisation2 base:organisation\/4100; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12124 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12124; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/726; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12128 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12128; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/586; + base:work\#ref-IDOrganisation2 base:organisation\/869; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12133 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-09-30"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12133; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Alga-00; + base:work\#ref-IDOrganisation base:organisation\/4120; + base:work\#ref-IDOrganisation2 base:organisation\/4115; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12138 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12138; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDOrganisation2 base:organisation\/869; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1214 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1214; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12140 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12140; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12143 a base:work; + base:work\#DateEnd_Fuzzy "27th October 1920"; + base:work\#DateEnd_Max "1920-10-27"^^xsd:date; + base:work\#DateEnd_Min "1920-10-27"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12143; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/4125; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12148 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1915"; + base:work\#DateStart_Max "1916-03-21"^^xsd:date; + base:work\#DateStart_Min "1915-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12148; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/896; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12153 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12153; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12154 a base:work; + base:work\#DateEnd_Fuzzy "September 1910"; + base:work\#DateEnd_Max "1910-09-30"^^xsd:date; + base:work\#DateEnd_Min "1910-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1910"; + base:work\#DateStart_Max "1910-04-30"^^xsd:date; + base:work\#DateStart_Min "1910-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12154; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12159 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12159; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Curt-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12164 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12164; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/12169 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12169; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Last prasentation of Lucinda Simões as na Actress"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/1217 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1217; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12189 a base:work; + base:work\#DateEnd_Fuzzy "8th December 1882"; + base:work\#DateEnd_Max "1882-12-08"^^xsd:date; + base:work\#DateEnd_Min "1882-12-08"^^xsd:date; + base:work\#DateStart_Fuzzy "8th December 1882"; + base:work\#DateStart_Max "1882-12-08"^^xsd:date; + base:work\#DateStart_Min "1882-12-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12189; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12194 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12194; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4345; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12199 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "15th November 1896"; + base:work\#DateStart_Max "1896-11-15"^^xsd:date; + base:work\#DateStart_Min "1896-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12199; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDOrganisation base:organisation\/4420; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/122 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 122; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/SomAgn-00 . + +base:work\/1220 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1220; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12204 a base:work; + base:work\#DateEnd_Fuzzy "Between September and November1891"; + base:work\#DateEnd_Max "1891-11-30"^^xsd:date; + base:work\#DateEnd_Min "1891-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November1891"; + base:work\#DateStart_Max "1891-11-30"^^xsd:date; + base:work\#DateStart_Min "1891-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12204; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Bord-00; + base:work\#ref-IDOrganisation base:organisation\/4400; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12209 a base:work; + base:work\#DateEnd_Fuzzy "Between September and November1891"; + base:work\#DateEnd_Max "1891-11-30"^^xsd:date; + base:work\#DateEnd_Min "1891-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November1891"; + base:work\#DateStart_Max "1891-11-30"^^xsd:date; + base:work\#DateStart_Min "1891-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12209; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/MC-MtCarlo-00; + base:work\#ref-IDOrganisation base:organisation\/4400; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12214 a base:work; + base:work\#DateEnd_Fuzzy "Between September and November 1891"; + base:work\#DateEnd_Max "1891-11-30"^^xsd:date; + base:work\#DateEnd_Min "1891-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November 1891"; + base:work\#DateStart_Max "1891-11-30"^^xsd:date; + base:work\#DateStart_Min "1891-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12214; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Mars-00; + base:work\#ref-IDOrganisation base:organisation\/4400; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12219 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12219; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12224 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12224; + base:work\#ref-IDLocation base:location\/GER-Aach-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12229 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12229; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IN-Mumb-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1223 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1223; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12234 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12234; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IN-Chenn-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/12239 a base:work; + base:work\#DateEnd_Fuzzy "1910-12-31"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12239; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4181; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12244 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12244; + base:work\#Profession base:Profession-Other; + base:work\#comment "Cartoonist"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3175; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12249 a base:work; + base:work\#DateEnd_Fuzzy "1897-12-31"; + base:work\#DateStart_Fuzzy "1897-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12249; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4186; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12254 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12254; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3175; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12259 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12259; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4191; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/1226 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1226; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MauVic-00 . + +base:work\/12264 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12264; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/636; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12269 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12269; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/642; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12274 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12274; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4196; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12279 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12279; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4176; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12284 a base:work; + base:work\#DateEnd_Fuzzy "1915-12-31"; + base:work\#DateStart_Fuzzy "1915-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12284; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/4206; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12289 a base:work; + base:work\#DateStart_Min "1866-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12289; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Cast-00; + base:work\#ref-IDOrganisation base:organisation\/4141; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12294 a base:work; + base:work\#DateEnd_Fuzzy "1882-09-12"; + base:work\#DateStart_Fuzzy "1881-09-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12294; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Cast-00; + base:work\#ref-IDOrganisation base:organisation\/2925; + base:work\#ref-IDOrganisation2 base:organisation\/4221; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12298 a base:work; + base:work\#DateEnd_Fuzzy "1885-12-31"; + base:work\#DateStart_Fuzzy "1885-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12298; + base:work\#Profession base:Profession-StageDesigner; + base:work\#ref-IDLocation base:location\/ES-Tener-00; + base:work\#ref-IDOrganisation2 base:organisation\/4221; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12299 a base:work; + base:work\#DateStart_Min "1886-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12299; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Cast-00; + base:work\#ref-IDOrganisation base:organisation\/4141; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/123 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 123; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/SomAgn-00 . + +base:work\/12304 a base:work; + base:work\#DateEnd_Fuzzy "1889-07-31"; + base:work\#DateStart_Fuzzy "1888-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12304; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ES-Tener-00; + base:work\#ref-IDOrganisation base:organisation\/4146; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12309 a base:work; + base:work\#DateStart_Fuzzy "1889-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12309; + base:work\#Profession base:Profession-StageDesigner; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4151; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12314 a base:work; + base:work\#DateStart_Fuzzy "1890-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12314; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4156; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12319 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12319; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4161; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/12324 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12324; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4231; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12329 a base:work; + base:work\#DateEnd_Max "1913-07-19"^^xsd:date; + base:work\#DateEnd_Min "1913-07-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12329; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "Brewer"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3160; + base:work\#ref-IDOrganisation2 base:organisation\/3160; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12333 a base:work; + base:work\#DateEnd_Max "1913-07-19"^^xsd:date; + base:work\#DateEnd_Min "1913-07-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12333; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2965; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12336 a base:work; + base:work\#DateEnd_Max "1913-07-19"^^xsd:date; + base:work\#DateEnd_Min "1913-07-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12336; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3170; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12339 a base:work; + base:work\#DateEnd_Max "1913-07-19"^^xsd:date; + base:work\#DateEnd_Min "1913-07-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12339; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3210; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12344 a base:work; + base:work\#DateEnd_Max "1913-07-19"^^xsd:date; + base:work\#DateEnd_Min "1913-07-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12344; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "Brewer"; + base:work\#ref-IDLocation base:location\/ARG-Llav-00; + base:work\#ref-IDOrganisation base:organisation\/3160; + base:work\#ref-IDPerson base:person\/BieEmi-00 . + +base:work\/12349 a base:work; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12349; + base:work\#Profession base:Profession-Journalist; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3250; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12354 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12354; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2945; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12359 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12359; + base:work\#Profession base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3270; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/1236 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1236; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12364 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12364; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3275; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12369 a base:work; + base:work\#DateEnd_Fuzzy "1955"; + base:work\#DateEnd_Max "1955-12-31"^^xsd:date; + base:work\#DateEnd_Min "1955-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1940"; + base:work\#DateStart_Max "1940-12-31"^^xsd:date; + base:work\#DateStart_Min "1940-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12369; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2960; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12374 a base:work; + base:work\#DateEnd_Fuzzy "1975"; + base:work\#DateEnd_Max "1975-12-31"^^xsd:date; + base:work\#DateEnd_Min "1975-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1956"; + base:work\#DateStart_Max "1956-12-31"^^xsd:date; + base:work\#DateStart_Min "1956-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12374; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12379 a base:work; + base:work\#DateEnd_Fuzzy "1975"; + base:work\#DateEnd_Max "1975-12-31"^^xsd:date; + base:work\#DateEnd_Min "1975-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1956"; + base:work\#DateStart_Max "1956-12-31"^^xsd:date; + base:work\#DateStart_Min "1956-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12379; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12380 a base:work; + base:work\#DateEnd_Fuzzy "1955"; + base:work\#DateEnd_Max "1955-12-31"^^xsd:date; + base:work\#DateEnd_Min "1955-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12380; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12384 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12384; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation2 base:organisation\/3620; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12389 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12389; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3395; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/1239 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1239; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12399 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12399; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3190; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/124 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 124; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/538; + base:work\#ref-IDPerson base:person\/SomAgn-00 . + +base:work\/12404 a base:work; + base:work\#DateEnd_Fuzzy "1955"; + base:work\#DateEnd_Max "1955-12-31"^^xsd:date; + base:work\#DateEnd_Min "1955-01-01"^^xsd:date; + base:work\#DateStart_Max "1941-11-22"^^xsd:date; + base:work\#DateStart_Min "1941-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12404; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3140; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12409 a base:work; + base:work\#DateEnd_Fuzzy "1951"; + base:work\#DateEnd_Min "1951-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1950"; + base:work\#DateStart_Max "1950-12-31"^^xsd:date; + base:work\#DateStart_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12409; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "First Municipal Prize to Cinema Production (1947) and First Prize from the Arts and Cinema Sciences Association"; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDOrganisation base:organisation\/3215; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12411 a base:work; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12411; + base:work\#Profession base:Profession-Composer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AmaLui-00 . + +base:work\/12414 a base:work; + base:work\#DateEnd_Max "1877-06-22"^^xsd:date; + base:work\#DateEnd_Min "1877-06-22"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1877"; + base:work\#DateStart_Max "1877-06-22"^^xsd:date; + base:work\#DateStart_Min "1877-06-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDOrganisation base:organisation\/100; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12419 a base:work; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12419; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4171; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/1242 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1242; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/209; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12424 a base:work; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12424; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4176; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12429 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12429; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4760; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12434 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12434; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4868; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12439 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12439; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3220; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12444 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12444; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4888; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12449 a base:work; + base:work\#DateEnd_Fuzzy "1941"; + base:work\#DateEnd_Max "1941-12-31"^^xsd:date; + base:work\#DateEnd_Min "1941-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1941"; + base:work\#DateStart_Max "1941-12-31"^^xsd:date; + base:work\#DateStart_Min "1941-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12449; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/1245 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-24"^^xsd:date; + base:work\#DateStart_Min "1898-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1245; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12454 a base:work; + base:work\#DateEnd_Fuzzy "1945"; + base:work\#DateEnd_Max "1945-12-31"^^xsd:date; + base:work\#DateEnd_Min "1945-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1945"; + base:work\#DateStart_Max "1945-12-31"^^xsd:date; + base:work\#DateStart_Min "1945-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12454; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12459 a base:work; + base:work\#DateEnd_Fuzzy "1945"; + base:work\#DateEnd_Max "1945-12-31"^^xsd:date; + base:work\#DateEnd_Min "1945-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1945"; + base:work\#DateStart_Max "1945-12-31"^^xsd:date; + base:work\#DateStart_Min "1945-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12459; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12464 a base:work; + base:work\#DateEnd_Fuzzy "1945"; + base:work\#DateEnd_Max "1945-12-31"^^xsd:date; + base:work\#DateEnd_Min "1945-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1945"; + base:work\#DateStart_Max "1945-12-31"^^xsd:date; + base:work\#DateStart_Min "1945-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12464; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3085; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12469 a base:work; + base:work\#DateEnd_Fuzzy "1947"; + base:work\#DateEnd_Max "1947-12-31"^^xsd:date; + base:work\#DateEnd_Min "1947-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1947"; + base:work\#DateStart_Max "1947-12-31"^^xsd:date; + base:work\#DateStart_Min "1947-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12469; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12474 a base:work; + base:work\#DateEnd_Fuzzy "1954"; + base:work\#DateEnd_Max "1954-12-31"^^xsd:date; + base:work\#DateEnd_Min "1954-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1954"; + base:work\#DateStart_Max "1954-12-31"^^xsd:date; + base:work\#DateStart_Min "1954-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12474; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12479 a base:work; + base:work\#DateEnd_Fuzzy "1959"; + base:work\#DateEnd_Max "1959-12-31"^^xsd:date; + base:work\#DateEnd_Min "1959-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1959"; + base:work\#DateStart_Max "1959-12-31"^^xsd:date; + base:work\#DateStart_Min "1959-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12479; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/1248 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-05-31"^^xsd:date; + base:work\#DateStart_Min "1899-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1248; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12484 a base:work; + base:work\#DateEnd_Fuzzy "1970"; + base:work\#DateEnd_Max "1970-12-31"^^xsd:date; + base:work\#DateEnd_Min "1970-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1960"; + base:work\#DateStart_Max "1960-12-31"^^xsd:date; + base:work\#DateStart_Min "1960-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12484; + base:work\#comment "Guest, and later permanent"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3410; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12489 a base:work; + base:work\#DateEnd_Fuzzy "1967"; + base:work\#DateEnd_Max "1967-12-31"^^xsd:date; + base:work\#DateEnd_Min "1967-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1958"; + base:work\#DateStart_Max "1958-12-31"^^xsd:date; + base:work\#DateStart_Min "1958-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12489; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2530; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12494 a base:work; + base:work\#DateEnd_Fuzzy "1966"; + base:work\#DateEnd_Max "1966-12-31"^^xsd:date; + base:work\#DateEnd_Min "1966-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1959"; + base:work\#DateStart_Max "1959-12-31"^^xsd:date; + base:work\#DateStart_Min "1959-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12494; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3380; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12499 a base:work; + base:work\#DateStart_Fuzzy "1965"; + base:work\#DateStart_Max "1965-12-31"^^xsd:date; + base:work\#DateStart_Min "1965-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12499; + base:work\#Profession base:Profession-Other; + base:work\#comment "Municipality Prize for El verdadero Byron (1954), and Municipality Prize Ricardo Rojas for his essay Ricardo Rojas (1967)."; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3135; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/125 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 125; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/SomAgn-00 . + +base:work\/12504 a base:work; + base:work\#DateEnd_Max "1974-02-06"^^xsd:date; + base:work\#DateEnd_Min "1974-02-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1968"; + base:work\#DateStart_Max "1968-12-31"^^xsd:date; + base:work\#DateStart_Min "1968-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12504; + base:work\#Profession base:Profession-Other; + base:work\#comment "Secretary"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3135; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12509 a base:work; + base:work\#DateEnd_Fuzzy "1970"; + base:work\#DateEnd_Max "1970-12-31"^^xsd:date; + base:work\#DateEnd_Min "1970-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1970"; + base:work\#DateStart_Max "1970-12-31"^^xsd:date; + base:work\#DateStart_Min "1970-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12509; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/1251 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-06-30"^^xsd:date; + base:work\#DateStart_Min "1899-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1251; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Summer 1899"; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12514 a base:work; + base:work\#DateEnd_Fuzzy "1971"; + base:work\#DateEnd_Max "1971-12-31"^^xsd:date; + base:work\#DateEnd_Min "1971-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1971"; + base:work\#DateStart_Max "1971-12-31"^^xsd:date; + base:work\#DateStart_Min "1971-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12514; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12519 a base:work; + base:work\#DateEnd_Fuzzy "1973"; + base:work\#DateEnd_Max "1973-12-31"^^xsd:date; + base:work\#DateEnd_Min "1973-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1973"; + base:work\#DateStart_Max "1973-12-31"^^xsd:date; + base:work\#DateStart_Min "1973-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12519; + base:work\#Profession base:Profession-Other; + base:work\#comment "Writer/ Author"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GuaAlf-00 . + +base:work\/12524 a base:work; + base:work\#DateEnd_Max "1886-06-30"^^xsd:date; + base:work\#DateEnd_Min "1886-06-30"^^xsd:date; + base:work\#DateStart_Max "1879-09-11"^^xsd:date; + base:work\#DateStart_Min "1879-09-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12524; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12529 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-06-30"^^xsd:date; + base:work\#DateEnd_Min "1880-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1881-06-30"^^xsd:date; + base:work\#DateStart_Min "1880-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12529; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12534 a base:work; + base:work\#DateEnd_Max "1903-06-30"^^xsd:date; + base:work\#DateEnd_Min "1903-06-30"^^xsd:date; + base:work\#DateStart_Max "1893-07-01"^^xsd:date; + base:work\#DateStart_Min "1893-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12534; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12539 a base:work; + base:work\#DateEnd_Max "1908-02-11"^^xsd:date; + base:work\#DateEnd_Min "1908-02-11"^^xsd:date; + base:work\#DateStart_Max "1903-07-01"^^xsd:date; + base:work\#DateStart_Min "1903-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12539; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/1254 a base:work; + base:work\#DateEnd_Max "1917-04-13"^^xsd:date; + base:work\#DateEnd_Min "1917-04-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1254; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She was German and for this reason she was hostile and had to quit her job at the Metropolitan Opera"; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12544 a base:work; + base:work\#DateEnd_Max "1873-03-31"^^xsd:date; + base:work\#DateEnd_Min "1873-03-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12544; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12549 a base:work; + base:work\#DateEnd_Max "1874-09-30"^^xsd:date; + base:work\#DateEnd_Min "1874-09-30"^^xsd:date; + base:work\#DateStart_Max "1873-04-01"^^xsd:date; + base:work\#DateStart_Min "1873-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12549; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/986; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12554 a base:work; + base:work\#DateEnd_Max "1876-06-30"^^xsd:date; + base:work\#DateEnd_Min "1876-06-30"^^xsd:date; + base:work\#DateStart_Max "1874-10-01"^^xsd:date; + base:work\#DateStart_Min "1874-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12554; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12559 a base:work; + base:work\#DateEnd_Max "1877-07-05"^^xsd:date; + base:work\#DateEnd_Min "1877-07-05"^^xsd:date; + base:work\#DateStart_Max "1876-07-01"^^xsd:date; + base:work\#DateStart_Min "1876-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12559; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/109; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12564 a base:work; + base:work\#DateEnd_Max "1878-06-30"^^xsd:date; + base:work\#DateEnd_Min "1878-06-30"^^xsd:date; + base:work\#DateStart_Max "1877-09-01"^^xsd:date; + base:work\#DateStart_Min "1877-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12564; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12569 a base:work; + base:work\#DateEnd_Max "1879-06-30"^^xsd:date; + base:work\#DateEnd_Min "1879-06-30"^^xsd:date; + base:work\#DateStart_Max "1878-09-05"^^xsd:date; + base:work\#DateStart_Min "1878-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12569; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/372; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/1257 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1257; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/434; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12574 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-06-30"^^xsd:date; + base:work\#DateEnd_Min "1880-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1881-06-30"^^xsd:date; + base:work\#DateStart_Min "1880-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12574; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/ConHei-00 . + +base:work\/12575 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "11th November 1849"; + base:work\#DateStart_Max "1849-11-11"^^xsd:date; + base:work\#DateStart_Min "1849-11-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12575; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/4236; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12579 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "December 1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12579; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/4241; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12583 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "24th January 1850"; + base:work\#DateStart_Max "1850-01-24"^^xsd:date; + base:work\#DateStart_Min "1850-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12583; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/4246; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12584 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "8th March 1850"; + base:work\#DateStart_Max "1850-03-08"^^xsd:date; + base:work\#DateStart_Min "1850-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12584; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/4246; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12589 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "29th May 1850"; + base:work\#DateStart_Max "1850-05-29"^^xsd:date; + base:work\#DateStart_Min "1850-05-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12589; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/896; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12594 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 29th and 31st May 185"; + base:work\#DateStart_Max "1850-05-29"^^xsd:date; + base:work\#DateStart_Min "1850-05-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12594; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/607; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12599 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 29th May 1850 and 21st Fabruary 1851"; + base:work\#DateStart_Max "1851-02-21"^^xsd:date; + base:work\#DateStart_Min "1850-05-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12599; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1260 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1260; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/421; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12604 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "21st Fabruary 1851"; + base:work\#DateStart_Max "1851-02-27"^^xsd:date; + base:work\#DateStart_Min "1851-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12604; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/4246; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12609 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "27th May 1851"; + base:work\#DateStart_Max "1851-05-27"^^xsd:date; + base:work\#DateStart_Min "1851-05-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12609; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/607; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12614 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "10th March 1853"; + base:work\#DateStart_Max "1853-03-10"^^xsd:date; + base:work\#DateStart_Min "1853-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12614; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4251; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12619 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12619; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12624 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12624; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12625 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12625; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4772; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12629 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12629; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4776; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/1263 a base:work; + base:work\#DateEnd_Fuzzy "1932"; + base:work\#DateEnd_Max "1932-12-31"^^xsd:date; + base:work\#DateEnd_Min "1932-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1263; + base:work\#Profession base:Profession-Singer; + base:work\#comment "her own Opera Company"; + base:work\#ref-IDOrganisation base:organisation\/423; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12631 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12631; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4780; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12633 a base:work; + base:work\#DateEnd_Fuzzy "1945"; + base:work\#DateEnd_Max "1945-12-31"^^xsd:date; + base:work\#DateEnd_Min "1945-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12633; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12634 a base:work; + base:work\#DateEnd_Max "1958-05-23"^^xsd:date; + base:work\#DateEnd_Min "1958-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1945"; + base:work\#DateStart_Max "1945-12-31"^^xsd:date; + base:work\#DateStart_Min "1945-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12634; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12639 a base:work; + base:work\#DateEnd_Max "1958-05-23"^^xsd:date; + base:work\#DateEnd_Min "1958-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12639; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3610; + base:work\#ref-IDPerson base:person\/AmoEdu-00 . + +base:work\/12644 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "20th March 1853"; + base:work\#DateStart_Max "1853-03-20"^^xsd:date; + base:work\#DateStart_Min "1853-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12644; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Salon Henri Herz"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4256; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12649 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 20th March 1853 and 7th February 1854"; + base:work\#DateStart_Max "1854-02-07"^^xsd:date; + base:work\#DateStart_Min "1853-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12649; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12654 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 20th March 1853 and 7th February 1854"; + base:work\#DateStart_Max "1854-02-07"^^xsd:date; + base:work\#DateStart_Min "1853-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12654; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12659 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 20th March 1853 and 7th February 1854"; + base:work\#DateStart_Max "1854-02-07"^^xsd:date; + base:work\#DateStart_Min "1853-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12659; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1266 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1266; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Stettin, Mainz in the years between hear debut in Berlin and Bremen"; + base:work\#ref-IDLocation base:location\/PL-SZ-00; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12664 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "7th February 1854"; + base:work\#DateStart_Max "1854-02-07"^^xsd:date; + base:work\#DateStart_Min "1854-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12664; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Music Hall Dublin"; + base:work\#ref-IDLocation base:location\/IE-Dubl-00; + base:work\#ref-IDOrganisation base:organisation\/4261; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12669 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12669; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Leeds"; + base:work\#ref-IDLocation base:location\/UK-Leeds-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12674 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1854 and 1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12674; + base:work\#comment "Vauxpall Salon"; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4266; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12679 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "January 1855"; + base:work\#DateStart_Max "1855-01-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12679; + base:work\#comment "Krolls Theater"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12684 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12684; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12689 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12689; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1143; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1269 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1269; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Stettin, Mainz in the years between hear debut in Berlin and Bremen"; + base:work\#ref-IDLocation base:location\/GER-Mainz-00; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12694 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12694; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/562; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12699 a base:work; + base:work\#DateEnd_Fuzzy "31st December 1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1st November 1855"; + base:work\#DateStart_Max "1855-11-01"^^xsd:date; + base:work\#DateStart_Min "1855-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12699; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12704 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12704; + base:work\#comment "Metz, Strasbug, Darmstadt, Ems, Koblenz, Manhheim, Frankfurt"; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12709 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12709; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12714 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "September 1856"; + base:work\#DateStart_Max "1856-09-30"^^xsd:date; + base:work\#DateStart_Min "1856-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12714; + base:work\#ref-IDLocation base:location\/GER-BadBad-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12719 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between September 1856 and January 1857"; + base:work\#DateStart_Max "1856-09-30"^^xsd:date; + base:work\#DateStart_Min "1856-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12719; + base:work\#comment "Wiesbaden, Bremen, Weimar, Berlin, Hamburg"; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1272 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1272; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1894 toured through Netherlands. There Walter Damrosch engaged her for his opera company and a tour through USA"; + base:work\#ref-IDLocation base:location\/NL-00; + base:work\#ref-IDPerson base:person\/JohGad-00 . + +base:work\/12724 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between September 1856 and January 1857"; + base:work\#DateStart_Max "1857-01-31"^^xsd:date; + base:work\#DateStart_Min "1856-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12724; + base:work\#comment "Posem, Breslau, Warsaw, Cracow, Vienna, Leipzig, London"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12729 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12729; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12734 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12734; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12739 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12739; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/12754 a base:work; + base:work\#DateEnd_Fuzzy "1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1871-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12754; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1004; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/12759 a base:work; + base:work\#DateEnd_Fuzzy "between 1864 and 1865"; + base:work\#DateStart_Fuzzy "between 1864 and 1865"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12759; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12764 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateStart_Fuzzy "1865"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12764; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/561; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12769 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1866"; + base:work\#DateStart_Fuzzy "between 1865 and 1866"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12769; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12774 a base:work; + base:work\#DateEnd_Max "1869-09-26"^^xsd:date; + base:work\#DateEnd_Min "1869-09-26"^^xsd:date; + base:work\#DateStart_Max "1868-08-31"^^xsd:date; + base:work\#DateStart_Min "1868-08-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12774; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1251; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12779 a base:work; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1868-09-01"^^xsd:date; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1257; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12784 a base:work; + base:work\#DateEnd_Fuzzy "April 1869"; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1869-04-01"^^xsd:date; + base:work\#DateStart_Max "1869-04-30"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12784; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/736; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12789 a base:work; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12789; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12794 a base:work; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Max "1869-06-30"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12799 a base:work; + base:work\#DateEnd_Max "1872-05-04"^^xsd:date; + base:work\#DateEnd_Min "1872-05-04"^^xsd:date; + base:work\#DateStart_Max "1872-03-18"^^xsd:date; + base:work\#DateStart_Min "1872-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12799; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/GalSus-00 . + +base:work\/12804 a base:work; + base:work\#DateEnd_Fuzzy "between October 1888 and April 1890"; + base:work\#DateEnd_Max "1890-04-30"^^xsd:date; + base:work\#DateEnd_Min "1888-10-06"^^xsd:date; + base:work\#DateStart_Max "1888-10-06"^^xsd:date; + base:work\#DateStart_Min "1888-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12804; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12809 a base:work; + base:work\#DateEnd_Fuzzy "between October 1888 and April 1890"; + base:work\#DateEnd_Max "1890-04-30"^^xsd:date; + base:work\#DateEnd_Min "1888-10-06"^^xsd:date; + base:work\#DateStart_Fuzzy "between October 1888 and April 1890"; + base:work\#DateStart_Max "1890-04-30"^^xsd:date; + base:work\#DateStart_Min "1888-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12809; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment "B"; + base:work\#ref-IDLocation base:location\/AU-Brisb-00; + base:work\#ref-IDOrganisation base:organisation\/4620; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12814 a base:work; + base:work\#DateEnd_Fuzzy "between October 1888 and April 1890"; + base:work\#DateEnd_Max "1890-04-30"^^xsd:date; + base:work\#DateEnd_Min "1888-10-06"^^xsd:date; + base:work\#DateStart_Fuzzy "between October 1888 and April 1890"; + base:work\#DateStart_Max "1890-04-30"^^xsd:date; + base:work\#DateStart_Min "1888-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12814; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment "Newcastle (Australia)"; + base:work\#ref-IDLocation base:location\/AU-NewCast-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12819 a base:work; + base:work\#DateEnd_Fuzzy "May 1890"; + base:work\#DateEnd_Max "1890-05-31"^^xsd:date; + base:work\#DateEnd_Min "1890-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1890"; + base:work\#DateStart_Max "1890-05-31"^^xsd:date; + base:work\#DateStart_Min "1890-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12819; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12824 a base:work; + base:work\#DateEnd_Fuzzy "between May 1890 and March 1891"; + base:work\#DateEnd_Max "1891-04-01"^^xsd:date; + base:work\#DateEnd_Min "1890-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1890"; + base:work\#DateStart_Max "1890-05-31"^^xsd:date; + base:work\#DateStart_Min "1890-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12824; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment "Ballarat"; + base:work\#ref-IDLocation base:location\/AUS-Adel-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12829 a base:work; + base:work\#DateEnd_Fuzzy "between November 1890 and March 1891"; + base:work\#DateEnd_Max "1891-04-01"^^xsd:date; + base:work\#DateEnd_Min "1890-10-29"^^xsd:date; + base:work\#DateStart_Fuzzy "between November 1890 and December 1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12829; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment "India"; + base:work\#ref-IDLocation base:location\/IN-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12834 a base:work; + base:work\#DateEnd_Fuzzy "May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1891-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1891"; + base:work\#DateStart_Max "1891-04-30"^^xsd:date; + base:work\#DateStart_Min "1891-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12834; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Calc-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12839 a base:work; + base:work\#DateEnd_Fuzzy "May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1891-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1891"; + base:work\#DateStart_Max "1891-04-30"^^xsd:date; + base:work\#DateStart_Min "1891-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12839; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12854 a base:work; + base:work\#DateEnd_Fuzzy "May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1891-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1891"; + base:work\#DateStart_Max "1891-04-30"^^xsd:date; + base:work\#DateStart_Min "1891-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12854; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12859 a base:work; + base:work\#DateEnd_Fuzzy "May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1891-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1891"; + base:work\#DateStart_Max "1891-04-30"^^xsd:date; + base:work\#DateStart_Min "1891-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12859; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/JP-Naga-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12864 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 12864; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/12884 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 12884; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12889 a base:work; + base:work\#DateEnd_Fuzzy "between 1915 and 1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12889; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12894 a base:work; + base:work\#DateEnd_Fuzzy "between 1915 and 1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12894; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12899 a base:work; + base:work\#DateEnd_Fuzzy "between 1915 and 1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12899; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/HU-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12904 a base:work; + base:work\#DateEnd_Fuzzy "between 1915 and 1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12904; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/NOR-Nores-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12909 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12909; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4525; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12914 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12914; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12919 a base:work; + base:work\#DateEnd_Fuzzy "between 1921 and 1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12919; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12924 a base:work; + base:work\#DateEnd_Fuzzy "between 1921 and 1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1921 and 1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12924; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12929 a base:work; + base:work\#DateEnd_Fuzzy "between 1921 and 1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1921 and 1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12929; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12934 a base:work; + base:work\#DateEnd_Fuzzy "between 1921 and 1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1921 and 1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12934; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12939 a base:work; + base:work\#DateEnd_Fuzzy "between 1921 and 1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1921 and 1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12939; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12944 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12944; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/EastAsia; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12949 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-10-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-10-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12949; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12954 a base:work; + base:work\#DateEnd_Fuzzy "October 1925"; + base:work\#DateEnd_Max "1925-10-31"^^xsd:date; + base:work\#DateEnd_Min "1925-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1925"; + base:work\#DateStart_Max "1925-10-31"^^xsd:date; + base:work\#DateStart_Min "1925-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12954; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/12959 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12959; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/4440; + base:work\#ref-IDOrganisation2 base:organisation\/144; + base:work\#ref-IDPerson base:person\/LevMis-00 . + +base:work\/1296 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1296; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/183; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/12969 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateStart_Fuzzy "1856"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12969; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/12974 a base:work; + base:work\#DateEnd_Max "1856-06-07"^^xsd:date; + base:work\#DateEnd_Min "1856-06-07"^^xsd:date; + base:work\#DateStart_Max "1856-06-07"^^xsd:date; + base:work\#DateStart_Min "1856-06-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12974; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/12984 a base:work; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12984; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/147; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/12989 a base:work; + base:work\#DateStart_Max "1866-01-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12989; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Vick-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/1299 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1299; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/12994 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateStart_Fuzzy "1868"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 12994; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/232; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/12999 a base:work; + base:work\#DateEnd_Max "1873-03-10"^^xsd:date; + base:work\#DateEnd_Min "1873-03-10"^^xsd:date; + base:work\#DateStart_Max "1873-03-10"^^xsd:date; + base:work\#DateStart_Min "1873-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 12999; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/66160; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13 a base:work; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13; + base:work\#Profession base:Profession-Singer; + base:work\#comment """Opera singer, St. Petersburg +Singer, 1845 she gave concerts in Germany with Hermann Berens (piano), later in Hungary +Opera singer, Carnival 1847, Rom +Opera singer, 1847, Royal Opera House, London +Opera singer, Octobre 1847, Theatre-Italien, Paris +"""; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/13004 a base:work; + base:work\#DateEnd_Max "1875-10-04"^^xsd:date; + base:work\#DateEnd_Min "1874-10-04"^^xsd:date; + base:work\#DateStart_Max "1875-10-04"^^xsd:date; + base:work\#DateStart_Min "1875-10-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13004; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/66160; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13009 a base:work; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-03-01"^^xsd:date; + base:work\#DateStart_Max "1876-03-31"^^xsd:date; + base:work\#DateStart_Min "1876-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13009; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13014 a base:work; + base:work\#DateEnd_Max "1876-03-31"^^xsd:date; + base:work\#DateEnd_Min "1876-03-01"^^xsd:date; + base:work\#DateStart_Max "1876-03-31"^^xsd:date; + base:work\#DateStart_Min "1876-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13014; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13019 a base:work; + base:work\#DateEnd_Max "1878-08-31"^^xsd:date; + base:work\#DateEnd_Min "1878-08-01"^^xsd:date; + base:work\#DateStart_Max "1878-08-31"^^xsd:date; + base:work\#DateStart_Min "1878-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13019; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/1302 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1302; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/13024 a base:work; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-12-01"^^xsd:date; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13024; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/1116; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13029 a base:work; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13029; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13034 a base:work; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13034; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Macky-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13039 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13039; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Rockh-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13044 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 13044; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Maryb-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13049 a base:work; + base:work\#DateStart_Max "1890-11-30"^^xsd:date; + base:work\#DateStart_Min "1890-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13049; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/1305 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1305; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/13054 a base:work; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13054; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13059 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateStart_Fuzzy "1850"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13059; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/13064 a base:work; + base:work\#DateEnd_Fuzzy "1855  summer season"; + base:work\#DateEnd_Max "1855-09-22"^^xsd:date; + base:work\#DateEnd_Min "1855-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855  summer season"; + base:work\#DateStart_Max "1855-09-22"^^xsd:date; + base:work\#DateStart_Min "1855-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13064; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13069 a base:work; + base:work\#DateEnd_Fuzzy "between 1855 and 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1855 winter"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-09-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13069; + base:work\#Profession base:Profession-Actor; + base:work\#comment "youngest leading women in the U.S. at that time"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/149; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13074 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13074; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation2 base:organisation\/148; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13079 a base:work; + base:work\#DateEnd_Fuzzy "1857 summer"; + base:work\#DateEnd_Max "1857-09-22"^^xsd:date; + base:work\#DateEnd_Min "1857-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1857 summer"; + base:work\#DateStart_Max "1857-09-22"^^xsd:date; + base:work\#DateStart_Min "1857-06-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13079; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/1308 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1308; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDOrganisation base:organisation\/424; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/13084 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 autumn and 1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 autumn and 1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-09-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13084; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13089 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13089; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/499; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13094 a base:work; + base:work\#DateEnd_Fuzzy "1860 later"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1860 later"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13094; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13099 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13099; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13104 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1868"; + base:work\#DateEnd_Max "1868-05-22"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1861 and 1868"; + base:work\#DateStart_Max "1868-05-22"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13104; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/1311 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1311; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/13114 a base:work; + base:work\#DateEnd_Fuzzy "between 1850 and May 1855"; + base:work\#DateEnd_Max "1850-05-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1850 and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13114; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13119 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1863-05-23"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13119; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1375; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13124 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13124; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13129 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13129; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13134 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13134; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-Weym-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13139 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-05-23"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13139; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EN-Exet-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/1314 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1314; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/WeeMar-00 . + +base:work\/13144 a base:work; + base:work\#DateEnd_Fuzzy "1890s"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878-1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13144; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/13154 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13154; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13159 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13159; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/2211; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13164 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13164; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13169 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13169; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13174 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13174; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13179 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1st January 1858 and 21st October 1858"; + base:work\#DateStart_Max "1858-10-21"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13179; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13184 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1st January 1858 and 21st October 1858"; + base:work\#DateStart_Max "1858-10-21"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13184; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/607; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13189 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1st January 1858 and 21st October 1858"; + base:work\#DateStart_Max "1858-10-21"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13189; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13194 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "21st October 1858"; + base:work\#DateStart_Max "1858-10-21"^^xsd:date; + base:work\#DateStart_Min "1858-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13194; + base:work\#comment "Palace Garden"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4271; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13199 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1st November  1858 and 31st December 1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13199; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13204 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1st November  1858 and 31st December 186"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13204; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13209 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13209; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13214 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1861 and 1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13214; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/672; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13219 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13219; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13224 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13224; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13229 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13229; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13234 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13234; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13239 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1862 and September 1863"; + base:work\#DateStart_Max "1863-09-30"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13239; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13244 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "30th September 1863"; + base:work\#DateStart_Max "1863-09-30"^^xsd:date; + base:work\#DateStart_Min "1863-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13244; + base:work\#ref-IDLocation base:location\/BR-CampGoyta-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13249 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "December 1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13249; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13254 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between December 1863 and December 1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13254; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13259 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "December 1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13259; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13264 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between December 1864 and April 1865"; + base:work\#DateStart_Max "1865-04-30"^^xsd:date; + base:work\#DateStart_Min "1864-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13264; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13269 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between April 1865 and August 1865"; + base:work\#DateStart_Max "1865-08-31"^^xsd:date; + base:work\#DateStart_Min "1865-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13269; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/2925; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13274 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "September 1865"; + base:work\#DateStart_Max "1865-09-30"^^xsd:date; + base:work\#DateStart_Min "1865-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13274; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/1143; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13279 a base:work; + base:work\#DateEnd_Fuzzy "May 1866"; + base:work\#DateEnd_Max "1866-05-31"^^xsd:date; + base:work\#DateEnd_Min "1866-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13279; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13284 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between May and June 1866"; + base:work\#DateStart_Max "1866-06-30"^^xsd:date; + base:work\#DateStart_Min "1866-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 13284; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13289 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "October 1866"; + base:work\#DateStart_Max "1866-10-31"^^xsd:date; + base:work\#DateStart_Min "1866-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13289; + base:work\#comment "3 concerts"; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13294 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between October and December 1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13294; + base:work\#comment "2 concerts in Campinas (SP)"; + base:work\#ref-IDLocation base:location\/BR-Camp-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13299 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between October and December 1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13299; + base:work\#comment "1 concert in Santos (SP)"; + base:work\#ref-IDLocation base:location\/BR-Santos-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13304 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13304; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4291; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13309 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Early 1880s"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13309; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4296; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13314 a base:work; + base:work\#DateEnd_Fuzzy "March 1867"; + base:work\#DateEnd_Max "1867-03-31"^^xsd:date; + base:work\#DateEnd_Min "1867-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13314; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13319 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13319; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13324 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13324; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/585; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13329 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between January and May 1868"; + base:work\#DateStart_Max "1868-05-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13329; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDOrganisation2 base:organisation\/4276; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13334 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between January and May 1868"; + base:work\#DateStart_Max "1868-05-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13334; + base:work\#ref-IDLocation base:location\/PT-Coimb-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13339 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between January and May 1868"; + base:work\#DateStart_Max "1868-05-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13339; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/585; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13344 a base:work; + base:work\#DateEnd_Fuzzy "End of 1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 13344; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4281; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13349 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "September 1878"; + base:work\#DateStart_Max "1878-09-30"^^xsd:date; + base:work\#DateStart_Min "1878-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13349; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4286; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13354 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "February 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13354; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4281; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13359 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13359; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "Business Trip"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13364 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13364; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Musician; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4301; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13369 a base:work; + base:work\#DateEnd_Fuzzy "5th December 1902"; + base:work\#DateEnd_Max "1902-12-05"^^xsd:date; + base:work\#DateEnd_Min "1902-12-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13369; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Musician; + base:work\#comment "Honorary board member"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4306; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13374 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "February 1889"; + base:work\#DateStart_Max "1889-02-28"^^xsd:date; + base:work\#DateStart_Min "1889-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13374; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/896; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13379 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13379; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1338 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1338; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13384 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 1889 and 1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13384; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13389 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13389; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13394 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13394; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4311; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13399 a base:work; + base:work\#DateEnd_Fuzzy "between 1893 and 1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1893 and 1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13399; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Musician; + base:work\#comment "Four Concerts per year"; + base:work\#ref-IDLocation base:location\/BR-Petro-00; + base:work\#ref-IDOrganisation base:organisation\/4316; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13404 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13404; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment "Concert in favour of his brother Alfredo"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13409 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13409; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Impresario; + base:work\#comment "travelling to sign contracts for future concert"; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1341 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1341; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Worked in Hoftheater"; + base:work\#ref-IDLocation base:location\/GER-Schwer-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13414 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13414; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13419 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "between 20th and 24th November 1901"; + base:work\#DateStart_Max "1901-11-24"^^xsd:date; + base:work\#DateStart_Min "1901-11-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13419; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Club dos Diários"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4321; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13424 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "31st July 1902"; + base:work\#DateStart_Max "1902-07-31"^^xsd:date; + base:work\#DateStart_Min "1902-07-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13424; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Club dos Diários (Casino Fluminense)"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4326; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13429 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "15th October 1902"; + base:work\#DateStart_Max "1902-10-15"^^xsd:date; + base:work\#DateStart_Min "1902-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13429; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Cassino Fluminense"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4331; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/1343 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1343; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13434 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "23rd October 1906"; + base:work\#DateStart_Max "1906-10-23"^^xsd:date; + base:work\#DateStart_Min "1906-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13434; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13439 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "26th August 1907"; + base:work\#DateStart_Max "1907-08-26"^^xsd:date; + base:work\#DateStart_Min "1907-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13439; + base:work\#Profession base:Profession-Musician; + base:work\#comment "(Instituto Nacional de Música) concert celebrating the 50th anniversary of his first concert in Rio de Janeiro"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4306; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13444 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "25th August 1908"; + base:work\#DateStart_Max "1908-08-25"^^xsd:date; + base:work\#DateStart_Min "1908-08-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13444; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Instituto Nacional de Música"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4306; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13449 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "9th October 1909"; + base:work\#DateStart_Max "1909-10-09"^^xsd:date; + base:work\#DateStart_Min "1909-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13449; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Instituto Nacional de Música"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4306; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13454 a base:work; + base:work\#DateEnd_Fuzzy "31st December 1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13454; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "Company Sampaio Araujo & Comp."; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/4336; + base:work\#ref-IDPerson base:person\/NapArt-00 . + +base:work\/13459 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "End of 1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13459; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/713; + base:work\#ref-IDPerson base:person\/RemJea-00 . + +base:work\/1346 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1346; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13464 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Early 1867"; + base:work\#DateStart_Max "1867-03-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13464; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/RemJea-00 . + +base:work\/13469 a base:work; + base:work\#DateEnd_Max "1878-11-28"^^xsd:date; + base:work\#DateEnd_Min "1878-11-28"^^xsd:date; + base:work\#DateStart_Max "1878-11-27"^^xsd:date; + base:work\#DateStart_Min "1878-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13469; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13474 a base:work; + base:work\#DateEnd_Max "1878-11-30"^^xsd:date; + base:work\#DateEnd_Min "1878-11-30"^^xsd:date; + base:work\#DateStart_Max "1878-11-29"^^xsd:date; + base:work\#DateStart_Min "1878-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13474; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/4692; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13479 a base:work; + base:work\#DateEnd_Max "1878-12-07"^^xsd:date; + base:work\#DateEnd_Min "1878-12-07"^^xsd:date; + base:work\#DateStart_Max "1878-12-02"^^xsd:date; + base:work\#DateStart_Min "1878-12-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13479; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13484 a base:work; + base:work\#DateEnd_Max "1878-12-11"^^xsd:date; + base:work\#DateEnd_Min "1878-12-11"^^xsd:date; + base:work\#DateStart_Max "1878-12-09"^^xsd:date; + base:work\#DateStart_Min "1878-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13484; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13489 a base:work; + base:work\#DateEnd_Max "1878-12-14"^^xsd:date; + base:work\#DateEnd_Min "1878-12-14"^^xsd:date; + base:work\#DateStart_Max "1878-12-12"^^xsd:date; + base:work\#DateStart_Min "1878-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13489; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/1140; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1349 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1349; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13494 a base:work; + base:work\#DateEnd_Max "1878-12-17"^^xsd:date; + base:work\#DateEnd_Min "1878-12-17"^^xsd:date; + base:work\#DateStart_Max "1878-12-16"^^xsd:date; + base:work\#DateStart_Min "1878-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13494; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13499 a base:work; + base:work\#DateEnd_Max "1878-12-19"^^xsd:date; + base:work\#DateEnd_Min "1878-12-19"^^xsd:date; + base:work\#DateStart_Max "1878-12-19"^^xsd:date; + base:work\#DateStart_Min "1878-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13499; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Anarb-00; + base:work\#ref-IDOrganisation base:organisation\/4904; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/135 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 135; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/13504 a base:work; + base:work\#DateEnd_Max "1878-12-28"^^xsd:date; + base:work\#DateEnd_Min "1878-12-28"^^xsd:date; + base:work\#DateStart_Max "1878-12-23"^^xsd:date; + base:work\#DateStart_Min "1878-12-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13504; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13509 a base:work; + base:work\#DateEnd_Max "1879-01-04"^^xsd:date; + base:work\#DateEnd_Min "1879-01-04"^^xsd:date; + base:work\#DateStart_Max "1878-12-30"^^xsd:date; + base:work\#DateStart_Min "1878-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13509; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4948; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13514 a base:work; + base:work\#DateEnd_Max "1879-01-11"^^xsd:date; + base:work\#DateEnd_Min "1879-01-11"^^xsd:date; + base:work\#DateStart_Max "1879-01-06"^^xsd:date; + base:work\#DateStart_Min "1879-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13514; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/4660; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13519 a base:work; + base:work\#DateEnd_Max "1879-01-18"^^xsd:date; + base:work\#DateEnd_Min "1879-01-18"^^xsd:date; + base:work\#DateStart_Max "1879-01-13"^^xsd:date; + base:work\#DateStart_Min "1879-01-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13519; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1352 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1352; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/425; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13524 a base:work; + base:work\#DateEnd_Max "1879-01-20"^^xsd:date; + base:work\#DateEnd_Min "1879-01-20"^^xsd:date; + base:work\#DateStart_Max "1879-01-20"^^xsd:date; + base:work\#DateStart_Min "1879-01-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13524; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/4952; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13529 a base:work; + base:work\#DateEnd_Max "1879-01-21"^^xsd:date; + base:work\#DateEnd_Min "1879-01-21"^^xsd:date; + base:work\#DateStart_Max "1879-01-21"^^xsd:date; + base:work\#DateStart_Min "1879-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13529; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/4956; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13534 a base:work; + base:work\#DateEnd_Max "1879-01-25"^^xsd:date; + base:work\#DateEnd_Min "1879-01-25"^^xsd:date; + base:work\#DateStart_Max "1879-01-22"^^xsd:date; + base:work\#DateStart_Min "1879-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13534; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UAS-Charls-00; + base:work\#ref-IDOrganisation base:organisation\/4908; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13539 a base:work; + base:work\#DateEnd_Max "1879-01-28"^^xsd:date; + base:work\#DateEnd_Min "1879-01-28"^^xsd:date; + base:work\#DateStart_Max "1879-01-27"^^xsd:date; + base:work\#DateStart_Min "1879-01-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13539; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13544 a base:work; + base:work\#DateEnd_Max "1879-03-04"^^xsd:date; + base:work\#DateEnd_Min "1879-03-04"^^xsd:date; + base:work\#DateStart_Max "1879-03-04"^^xsd:date; + base:work\#DateStart_Min "1879-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13544; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LafayI-00; + base:work\#ref-IDOrganisation base:organisation\/4980; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13549 a base:work; + base:work\#DateEnd_Max "1879-03-05"^^xsd:date; + base:work\#DateEnd_Min "1879-03-05"^^xsd:date; + base:work\#DateStart_Max "1879-03-05"^^xsd:date; + base:work\#DateStart_Min "1879-03-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13549; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/5064; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1355 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1355; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13554 a base:work; + base:work\#DateEnd_Max "1879-03-08"^^xsd:date; + base:work\#DateEnd_Min "1879-03-08"^^xsd:date; + base:work\#DateStart_Max "1879-03-06"^^xsd:date; + base:work\#DateStart_Min "1879-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13554; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SpringO-00; + base:work\#ref-IDOrganisation base:organisation\/4984; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13559 a base:work; + base:work\#DateEnd_Max "1879-03-15"^^xsd:date; + base:work\#DateEnd_Min "1879-03-15"^^xsd:date; + base:work\#DateStart_Max "1879-03-10"^^xsd:date; + base:work\#DateStart_Min "1879-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13559; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4988; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13569 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13569; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/4648; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13574 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-07-31"^^xsd:date; + base:work\#DateEnd_Min "1876-06-01"^^xsd:date; + base:work\#DateStart_Max "1868-10-04"^^xsd:date; + base:work\#DateStart_Min "1868-10-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13574; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/175; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13579 a base:work; + base:work\#DateEnd_Max "1877-09-02"^^xsd:date; + base:work\#DateEnd_Min "1877-09-02"^^xsd:date; + base:work\#DateStart_Max "1877-08-20"^^xsd:date; + base:work\#DateStart_Min "1877-08-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13579; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/176; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1358 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1358; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13584 a base:work; + base:work\#DateEnd_Max "1877-11-08"^^xsd:date; + base:work\#DateEnd_Min "1877-11-08"^^xsd:date; + base:work\#DateStart_Max "1877-11-05"^^xsd:date; + base:work\#DateStart_Min "1877-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13584; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13589 a base:work; + base:work\#DateEnd_Max "1877-12-01"^^xsd:date; + base:work\#DateEnd_Min "1877-12-01"^^xsd:date; + base:work\#DateStart_Max "1877-11-26"^^xsd:date; + base:work\#DateStart_Min "1877-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13589; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/176; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13594 a base:work; + base:work\#DateEnd_Max "1878-01-26"^^xsd:date; + base:work\#DateEnd_Min "1878-01-26"^^xsd:date; + base:work\#DateStart_Max "1877-12-22"^^xsd:date; + base:work\#DateStart_Min "1877-12-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13594; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13599 a base:work; + base:work\#DateEnd_Max "1878-02-02"^^xsd:date; + base:work\#DateEnd_Min "1878-02-02"^^xsd:date; + base:work\#DateStart_Max "1878-01-28"^^xsd:date; + base:work\#DateStart_Min "1878-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13599; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/136 a base:work; + base:work\#Employment "Engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 136; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/13604 a base:work; + base:work\#DateEnd_Max "1878-02-09"^^xsd:date; + base:work\#DateEnd_Min "1878-02-09"^^xsd:date; + base:work\#DateStart_Max "1878-02-04"^^xsd:date; + base:work\#DateStart_Min "1878-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13604; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13609 a base:work; + base:work\#DateEnd_Max "1878-02-16"^^xsd:date; + base:work\#DateEnd_Min "1878-02-16"^^xsd:date; + base:work\#DateStart_Max "1878-02-11"^^xsd:date; + base:work\#DateStart_Min "1878-02-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13609; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/4660; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1361 a base:work; + base:work\#DateEnd_Fuzzy "1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1361; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/276; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13614 a base:work; + base:work\#DateEnd_Max "1878-03-09"^^xsd:date; + base:work\#DateEnd_Min "1878-03-09"^^xsd:date; + base:work\#DateStart_Max "1878-02-25"^^xsd:date; + base:work\#DateStart_Min "1878-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13614; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/150; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13619 a base:work; + base:work\#DateEnd_Max "1878-03-16"^^xsd:date; + base:work\#DateEnd_Min "1878-03-16"^^xsd:date; + base:work\#DateStart_Max "1878-03-11"^^xsd:date; + base:work\#DateStart_Min "1878-03-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13619; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13624 a base:work; + base:work\#DateEnd_Max "1878-03-23"^^xsd:date; + base:work\#DateEnd_Min "1878-03-23"^^xsd:date; + base:work\#DateStart_Max "1878-03-18"^^xsd:date; + base:work\#DateStart_Min "1878-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13624; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4668; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13634 a base:work; + base:work\#DateEnd_Max "1878-04-06"^^xsd:date; + base:work\#DateEnd_Min "1878-04-06"^^xsd:date; + base:work\#DateStart_Max "1878-04-01"^^xsd:date; + base:work\#DateStart_Min "1878-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13634; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4672; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13639 a base:work; + base:work\#DateEnd_Max "1878-04-13"^^xsd:date; + base:work\#DateEnd_Min "1878-04-13"^^xsd:date; + base:work\#DateStart_Max "1878-04-08"^^xsd:date; + base:work\#DateStart_Min "1878-04-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13639; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/151; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1364 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1364; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13644 a base:work; + base:work\#DateEnd_Max "1878-05-02"^^xsd:date; + base:work\#DateEnd_Min "1878-05-02"^^xsd:date; + base:work\#DateStart_Max "1878-04-15"^^xsd:date; + base:work\#DateStart_Min "1878-04-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13644; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/148; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13649 a base:work; + base:work\#DateEnd_Max "1878-05-02"^^xsd:date; + base:work\#DateEnd_Min "1878-05-02"^^xsd:date; + base:work\#DateStart_Max "1878-04-22"^^xsd:date; + base:work\#DateStart_Min "1878-04-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13649; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/4676; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13654 a base:work; + base:work\#DateEnd_Max "1878-05-09"^^xsd:date; + base:work\#DateEnd_Min "1878-05-09"^^xsd:date; + base:work\#DateStart_Max "1878-05-06"^^xsd:date; + base:work\#DateStart_Min "1878-05-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13654; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13659 a base:work; + base:work\#DateEnd_Max "1878-05-11"^^xsd:date; + base:work\#DateEnd_Min "1878-05-11"^^xsd:date; + base:work\#DateStart_Max "1878-05-09"^^xsd:date; + base:work\#DateStart_Min "1878-05-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13659; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13664 a base:work; + base:work\#DateEnd_Max "1878-05-18"^^xsd:date; + base:work\#DateEnd_Min "1878-05-18"^^xsd:date; + base:work\#DateStart_Max "1878-05-12"^^xsd:date; + base:work\#DateStart_Min "1878-05-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13664; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13669 a base:work; + base:work\#DateEnd_Max "1878-05-19"^^xsd:date; + base:work\#DateEnd_Min "1878-05-19"^^xsd:date; + base:work\#DateStart_Max "1878-05-19"^^xsd:date; + base:work\#DateStart_Min "1878-05-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13669; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1367 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1367; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13674 a base:work; + base:work\#DateEnd_Max "1878-05-22"^^xsd:date; + base:work\#DateEnd_Min "1878-05-22"^^xsd:date; + base:work\#DateStart_Max "1878-05-20"^^xsd:date; + base:work\#DateStart_Min "1878-05-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13674; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13679 a base:work; + base:work\#DateEnd_Max "1878-05-23"^^xsd:date; + base:work\#DateEnd_Min "1878-05-23"^^xsd:date; + base:work\#DateStart_Max "1878-05-23"^^xsd:date; + base:work\#DateStart_Min "1878-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13679; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13684 a base:work; + base:work\#DateEnd_Max "1878-05-25"^^xsd:date; + base:work\#DateEnd_Min "1878-05-25"^^xsd:date; + base:work\#DateStart_Max "1878-05-24"^^xsd:date; + base:work\#DateStart_Min "1878-05-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13684; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13689 a base:work; + base:work\#DateEnd_Max "1878-06-01"^^xsd:date; + base:work\#DateEnd_Min "1878-06-01"^^xsd:date; + base:work\#DateStart_Max "1878-05-30"^^xsd:date; + base:work\#DateStart_Min "1878-05-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13689; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13694 a base:work; + base:work\#DateEnd_Max "1878-09-28"^^xsd:date; + base:work\#DateEnd_Min "1878-09-28"^^xsd:date; + base:work\#DateStart_Max "1878-09-16"^^xsd:date; + base:work\#DateStart_Min "1878-09-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13699 a base:work; + base:work\#DateEnd_Max "1878-11-09"^^xsd:date; + base:work\#DateEnd_Min "1878-11-09"^^xsd:date; + base:work\#DateStart_Max "1878-09-30"^^xsd:date; + base:work\#DateStart_Min "1878-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13699; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/137 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 137; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/1370 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1370; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/MC-MtCarlo-00; + base:work\#ref-IDOrganisation base:organisation\/462; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13704 a base:work; + base:work\#DateEnd_Max "1878-11-16"^^xsd:date; + base:work\#DateEnd_Min "1878-11-16"^^xsd:date; + base:work\#DateStart_Max "1878-11-11"^^xsd:date; + base:work\#DateStart_Min "1878-11-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13704; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13709 a base:work; + base:work\#DateEnd_Max "1878-11-23"^^xsd:date; + base:work\#DateEnd_Min "1878-11-23"^^xsd:date; + base:work\#DateStart_Max "1878-11-18"^^xsd:date; + base:work\#DateStart_Min "1878-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13709; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13714 a base:work; + base:work\#DateEnd_Max "1878-11-26"^^xsd:date; + base:work\#DateEnd_Min "1878-11-26"^^xsd:date; + base:work\#DateStart_Max "1878-11-25"^^xsd:date; + base:work\#DateStart_Min "1878-11-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13714; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/4708; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13719 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "4th March 1889"; + base:work\#DateStart_Max "1889-03-04"^^xsd:date; + base:work\#DateStart_Min "1889-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13719; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/322; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13724 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "14th May 1890"; + base:work\#DateStart_Max "1890-05-14"^^xsd:date; + base:work\#DateStart_Min "1890-05-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13724; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/2151; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13729 a base:work; + base:work\#DateEnd_Fuzzy "between 1874 and 1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1874 and 1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13729; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She was 10 years old, just before move to Brussels"; + base:work\#ref-IDLocation base:location\/BE-Lieg-00; + base:work\#ref-IDOrganisation base:organisation\/4340; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1373 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1373; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13734 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Fall 1881"; + base:work\#DateStart_Max "1881-11-24"^^xsd:date; + base:work\#DateStart_Min "1881-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13734; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13739 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Winter 1882"; + base:work\#DateStart_Max "1883-03-24"^^xsd:date; + base:work\#DateStart_Min "1882-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 13739; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4355; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13744 a base:work; + base:work\#DateEnd_Fuzzy "between 1884 and 1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "8th December 1882"; + base:work\#DateStart_Max "1882-12-08"^^xsd:date; + base:work\#DateStart_Min "1882-12-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 13744; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/1257; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13749 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "23rd April 1884"; + base:work\#DateStart_Max "1884-04-23"^^xsd:date; + base:work\#DateStart_Min "1884-04-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13749; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4360; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13754 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "4th April 1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13754; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4365; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13759 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "31st December 1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13759; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1376 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1376; + base:work\#Profession base:Profession-Singer; + base:work\#comment "worked in Theatre de la Monnaie"; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13764 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1st May 1886"; + base:work\#DateStart_Max "1886-05-01"^^xsd:date; + base:work\#DateStart_Min "1886-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13764; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13769 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13769; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CN-Hank-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13774 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "11th December 1886"; + base:work\#DateStart_Max "1886-12-11"^^xsd:date; + base:work\#DateStart_Min "1886-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13774; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13779 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "8th November 1887"; + base:work\#DateStart_Max "1887-11-08"^^xsd:date; + base:work\#DateStart_Min "1887-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13779; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13784 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "11th February 1888"; + base:work\#DateStart_Max "1888-02-11"^^xsd:date; + base:work\#DateStart_Min "1888-02-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13784; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4365; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13789 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "15th March 1888"; + base:work\#DateStart_Max "1888-03-15"^^xsd:date; + base:work\#DateStart_Min "1888-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13789; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4365; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1379 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1379; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/13794 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "2nd April 1888"; + base:work\#DateStart_Max "1888-04-02"^^xsd:date; + base:work\#DateStart_Min "1888-04-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13794; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13799 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "18th January 1889"; + base:work\#DateStart_Max "1889-01-18"^^xsd:date; + base:work\#DateStart_Min "1889-01-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13799; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/138 a base:work; + base:work\#Employment """Tour +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 138; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/13804 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "4th March 1889"; + base:work\#DateStart_Max "1889-03-04"^^xsd:date; + base:work\#DateStart_Min "1889-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13804; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/322; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13809 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "24th October 1889"; + base:work\#DateStart_Max "1889-10-24"^^xsd:date; + base:work\#DateStart_Min "1889-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13809; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4370; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13814 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "14th May 1890"; + base:work\#DateStart_Max "1890-05-14"^^xsd:date; + base:work\#DateStart_Min "1890-05-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13814; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/2151; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13819 a base:work; + base:work\#DateEnd_Max "1879-03-22"^^xsd:date; + base:work\#DateEnd_Min "1879-03-22"^^xsd:date; + base:work\#DateStart_Max "1879-03-17"^^xsd:date; + base:work\#DateStart_Min "1879-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13819; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1382 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1382; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/LisHan-00 . + +base:work\/13839 a base:work; + base:work\#DateEnd_Max "1879-01-30"^^xsd:date; + base:work\#DateEnd_Min "1879-01-30"^^xsd:date; + base:work\#DateStart_Max "1879-01-29"^^xsd:date; + base:work\#DateStart_Min "1879-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13839; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Aug-00; + base:work\#ref-IDOrganisation base:organisation\/4716; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13843 a base:work; + base:work\#DateEnd_Max "1879-02-01"^^xsd:date; + base:work\#DateEnd_Min "1879-02-01"^^xsd:date; + base:work\#DateStart_Max "1879-01-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13843; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/4720; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13844 a base:work; + base:work\#DateEnd_Max "1879-02-08"^^xsd:date; + base:work\#DateEnd_Min "1879-02-08"^^xsd:date; + base:work\#DateStart_Max "1879-02-03"^^xsd:date; + base:work\#DateStart_Min "1879-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13844; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/4964; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13848 a base:work; + base:work\#DateEnd_Max "1879-02-15"^^xsd:date; + base:work\#DateEnd_Min "1879-02-15"^^xsd:date; + base:work\#DateStart_Max "1879-02-10"^^xsd:date; + base:work\#DateStart_Min "1879-02-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13848; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/4968; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1385 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1385; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/391; + base:work\#ref-IDPerson base:person\/LisHan-00 . + +base:work\/13853 a base:work; + base:work\#DateEnd_Max "1879-03-01"^^xsd:date; + base:work\#DateEnd_Min "1879-03-01"^^xsd:date; + base:work\#DateStart_Max "1879-02-17"^^xsd:date; + base:work\#DateStart_Min "1879-02-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13853; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4972; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13858 a base:work; + base:work\#DateEnd_Max "1879-03-03"^^xsd:date; + base:work\#DateEnd_Min "1879-03-03"^^xsd:date; + base:work\#DateStart_Max "1879-03-03"^^xsd:date; + base:work\#DateStart_Min "1879-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13858; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/4976; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/13859 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "31st December 1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13859; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4375; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13864 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "5th January 1887"; + base:work\#DateStart_Max "1887-01-05"^^xsd:date; + base:work\#DateStart_Min "1887-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13864; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4380; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13869 a base:work; + base:work\#DateEnd_Fuzzy "May 1890"; + base:work\#DateEnd_Max "1890-05-31"^^xsd:date; + base:work\#DateEnd_Min "1890-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1890"; + base:work\#DateStart_Max "1890-01-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13869; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4385; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13874 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "October 1890"; + base:work\#DateStart_Max "1890-10-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13874; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDOrganisation base:organisation\/4390; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13879 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13879; + base:work\#Profession base:Profession-Singer; + base:work\#comment """Hague Thatre Royal de la Haye"""; + base:work\#ref-IDLocation base:location\/NL-DHaag-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1388 a base:work; + base:work\#DateEnd_Fuzzy "1954"; + base:work\#DateEnd_Max "1954-12-31"^^xsd:date; + base:work\#DateEnd_Min "1954-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1388; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDOrganisation base:organisation\/426; + base:work\#ref-IDPerson base:person\/LisHan-00 . + +base:work\/13884 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "10th March 1891"; + base:work\#DateStart_Max "1891-03-10"^^xsd:date; + base:work\#DateStart_Min "1891-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13884; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4395; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13894 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "August 1891"; + base:work\#DateStart_Max "1891-08-31"^^xsd:date; + base:work\#DateStart_Min "1891-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13894; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-Spa-00; + base:work\#ref-IDOrganisation base:organisation\/4400; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13899 a base:work; + base:work\#DateEnd_Fuzzy "Between September and November1891"; + base:work\#DateEnd_Max "1891-11-30"^^xsd:date; + base:work\#DateEnd_Min "1891-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November1891"; + base:work\#DateStart_Max "1891-11-30"^^xsd:date; + base:work\#DateStart_Min "1891-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13899; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Nant-00; + base:work\#ref-IDOrganisation base:organisation\/4400; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/139 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 139; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/13904 a base:work; + base:work\#DateEnd_Fuzzy "Between 1892 and 1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1892 and 1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13904; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/MiddleEast; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13909 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Fall 1893"; + base:work\#DateStart_Max "1893-12-24"^^xsd:date; + base:work\#DateStart_Min "1893-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13909; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation base:organisation\/4405; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1391 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1391; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Pils-00; + base:work\#ref-IDOrganisation base:organisation\/427; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/13914 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "10th October 1893"; + base:work\#DateStart_Max "1893-10-10"^^xsd:date; + base:work\#DateStart_Min "1893-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13914; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4385; + base:work\#ref-IDOrganisation2 base:organisation\/3015; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13919 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13919; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EasternEurope; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13924 a base:work; + base:work\#DateEnd_Fuzzy "November 1895"; + base:work\#DateEnd_Max "1895-11-30"^^xsd:date; + base:work\#DateEnd_Min "1895-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1895"; + base:work\#DateStart_Max "1895-03-31"^^xsd:date; + base:work\#DateStart_Min "1895-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13924; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4410; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13929 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13929; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13934 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13934; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13939 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13939; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1394 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1394; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Met-00; + base:work\#ref-IDOrganisation base:organisation\/428; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/13944 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13944; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13949 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13949; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13954 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13954; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13959 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13959; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13964 a base:work; + base:work\#DateEnd_Fuzzy "Between 1895 and 1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1895 and 1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13964; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Aach-00; + base:work\#ref-IDOrganisation base:organisation\/4415; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13969 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "January 1898"; + base:work\#DateStart_Max "1898-01-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13969; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/4425; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1397 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1397; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/196; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/13974 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 13974; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13979 a base:work; + base:work\#DateEnd_Fuzzy "Spring 1902"; + base:work\#DateEnd_Max "1902-06-24"^^xsd:date; + base:work\#DateEnd_Min "1902-03-24"^^xsd:date; + base:work\#DateStart_Fuzzy "12th April 1901"; + base:work\#DateStart_Max "1901-04-12"^^xsd:date; + base:work\#DateStart_Min "1901-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13979; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/EG-Cairo-00; + base:work\#ref-IDOrganisation base:organisation\/4430; + base:work\#ref-IDOrganisation2 base:organisation\/3015; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13984 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13984; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/VN-HAN-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13989 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13989; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/VN-HCMC-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13994 a base:work; + base:work\#DateEnd_Fuzzy "End of 1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-10-21"^^xsd:date; + base:work\#DateStart_Fuzzy "21st October 1897"; + base:work\#DateStart_Max "1897-10-21"^^xsd:date; + base:work\#DateStart_Min "1897-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 13994; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CSTR-SanJuan-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/13999 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 13999; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/VN-Haiph-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14 a base:work; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-12-31"^^xsd:date; + base:work\#DateStart_Min "1845-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14; + base:work\#Profession base:Profession-Singer; + base:work\#comment "work together with Impresario Bartolomeo Merelli"; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/140 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 140; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/1400 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1400; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/290; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14004 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14004; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14005 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14005; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IDN-Jaka-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14009 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14009; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/MM-Yang-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14014 a base:work; + base:work\#DateEnd_Fuzzy "Between 1903 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14014; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IN-Del-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14019 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14019; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Bal-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14024 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "22nd June 1906"; + base:work\#DateStart_Max "1906-06-22"^^xsd:date; + base:work\#DateStart_Min "1906-06-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14024; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Pert-00; + base:work\#ref-IDOrganisation base:organisation\/4440; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14029 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14029; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Adel-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1403 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1403; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/400; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14034 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14034; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Alb-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14039 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "18th August 1906"; + base:work\#DateStart_Max "1906-08-18"^^xsd:date; + base:work\#DateStart_Min "1906-08-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14039; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/1375; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14043 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "29th September 1906"; + base:work\#DateStart_Max "1906-09-29"^^xsd:date; + base:work\#DateStart_Min "1906-09-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14043; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDOrganisation base:organisation\/4450; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14044 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "25th December 1907"; + base:work\#DateStart_Max "1907-12-25"^^xsd:date; + base:work\#DateStart_Min "1907-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14044; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14049 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14049; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Bendi-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14053 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14053; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-Dune-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14054 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14054; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14059 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14059; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1406 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1406; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDOrganisation base:organisation\/76; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14064 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14064; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-Auck-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14069 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14069; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-Nels-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1407 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1407; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-MNHTN-00; + base:work\#ref-IDOrganisation base:organisation\/268; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14074 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14074; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-Nap-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14079 a base:work; + base:work\#DateEnd_Fuzzy "Between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14079; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Hob-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14084 a base:work; + base:work\#DateEnd_Fuzzy "between 1906 and  May 1908"; + base:work\#DateEnd_Max "1908-05-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1906 and  May 1908"; + base:work\#DateStart_Max "1908-05-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14084; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-Launc-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14089 a base:work; + base:work\#DateEnd_Fuzzy "between May and October 1908"; + base:work\#DateEnd_Max "1908-10-31"^^xsd:date; + base:work\#DateEnd_Min "1908-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between May and October 1908"; + base:work\#DateStart_Max "1908-10-31"^^xsd:date; + base:work\#DateStart_Min "1908-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14089; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FJ-Suv-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14094 a base:work; + base:work\#DateEnd_Fuzzy "between May and October 1908"; + base:work\#DateEnd_Max "1908-10-31"^^xsd:date; + base:work\#DateEnd_Min "1908-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between May and October 1908"; + base:work\#DateStart_Max "1908-10-31"^^xsd:date; + base:work\#DateStart_Min "1908-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14094; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Honul-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14099 a base:work; + base:work\#DateEnd_Fuzzy "1st November 1908"; + base:work\#DateEnd_Max "1908-11-01"^^xsd:date; + base:work\#DateEnd_Min "1908-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "25th October 1908"; + base:work\#DateStart_Max "1908-10-25"^^xsd:date; + base:work\#DateStart_Min "1908-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14099; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/4460; + base:work\#ref-IDOrganisation2 base:organisation\/4465; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/141 a base:work; + base:work\#Employment "part"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 141; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/543; + base:work\#ref-IDPerson base:person\/SeeMar-00 . + +base:work\/1410 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1410; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14104 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "4th November 1908"; + base:work\#DateStart_Max "1908-11-04"^^xsd:date; + base:work\#DateStart_Min "1908-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14104; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/4455; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14109 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "19th November 1908"; + base:work\#DateStart_Max "1908-11-19"^^xsd:date; + base:work\#DateStart_Min "1908-11-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14109; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/4470; + base:work\#ref-IDOrganisation2 base:organisation\/4465; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14114 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "19th January 1909"; + base:work\#DateStart_Max "1909-01-19"^^xsd:date; + base:work\#DateStart_Min "1909-01-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14114; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Test record"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4475; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14119 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "3rd February 1909"; + base:work\#DateStart_Max "1909-02-03"^^xsd:date; + base:work\#DateStart_Min "1909-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14119; + base:work\#Profession base:Profession-Singer; + base:work\#comment "(makes four cylinders)"; + base:work\#ref-IDLocation base:location\/USA-WOra-00; + base:work\#ref-IDOrganisation base:organisation\/4480; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14124 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "9th February 1909"; + base:work\#DateStart_Max "1909-02-09"^^xsd:date; + base:work\#DateStart_Min "1909-02-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14124; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/4485; + base:work\#ref-IDOrganisation2 base:organisation\/4490; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14129 a base:work; + base:work\#DateEnd_Fuzzy "19th March 1909"; + base:work\#DateEnd_Max "1909-03-19"^^xsd:date; + base:work\#DateEnd_Min "1909-03-19"^^xsd:date; + base:work\#DateStart_Fuzzy "18th March 1909"; + base:work\#DateStart_Max "1909-03-18"^^xsd:date; + base:work\#DateStart_Min "1909-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14129; + base:work\#comment "(makes eight Red Seal records)"; + base:work\#ref-IDLocation base:location\/USA-Camd-00; + base:work\#ref-IDOrganisation base:organisation\/4495; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1413 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1413; + base:work\#Profession base:Profession-Singer; + base:work\#comment "together with Lilli Lehmann"; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/421; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14134 a base:work; + base:work\#DateEnd_Fuzzy "April 1909"; + base:work\#DateEnd_Max "1909-04-30"^^xsd:date; + base:work\#DateEnd_Min "1909-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1909"; + base:work\#DateStart_Max "1909-04-30"^^xsd:date; + base:work\#DateStart_Min "1909-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14134; + base:work\#ref-IDLocation base:location\/BE-Lieg-00; + base:work\#ref-IDOrganisation base:organisation\/4500; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14139 a base:work; + base:work\#DateEnd_Fuzzy "4th June 1909"; + base:work\#DateEnd_Max "1909-06-04"^^xsd:date; + base:work\#DateEnd_Min "1909-06-04"^^xsd:date; + base:work\#DateStart_Fuzzy "24th May 1909"; + base:work\#DateStart_Max "1909-05-24"^^xsd:date; + base:work\#DateStart_Min "1909-05-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14139; + base:work\#comment "(unconfirmed)"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/4505; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14144 a base:work; + base:work\#DateEnd_Fuzzy "5th December 1909"; + base:work\#DateEnd_Max "1909-12-05"^^xsd:date; + base:work\#DateEnd_Min "1909-12-05"^^xsd:date; + base:work\#DateStart_Fuzzy "24th October 1909"; + base:work\#DateStart_Max "1909-10-24"^^xsd:date; + base:work\#DateStart_Min "1909-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14144; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4510; + base:work\#ref-IDOrganisation2 base:organisation\/4515; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14149 a base:work; + base:work\#DateEnd_Fuzzy "30th December 1909"; + base:work\#DateEnd_Max "1909-12-30"^^xsd:date; + base:work\#DateEnd_Min "1909-12-30"^^xsd:date; + base:work\#DateStart_Fuzzy "27th December 1909"; + base:work\#DateStart_Max "1909-12-27"^^xsd:date; + base:work\#DateStart_Min "1909-12-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14149; + base:work\#ref-IDLocation base:location\/USA-WOra-00; + base:work\#ref-IDOrganisation base:organisation\/4480; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14154 a base:work; + base:work\#DateEnd_Fuzzy "10th May 1911"; + base:work\#DateEnd_Max "1911-05-10"^^xsd:date; + base:work\#DateEnd_Min "1911-05-10"^^xsd:date; + base:work\#DateStart_Fuzzy "10th May 1911"; + base:work\#DateStart_Max "1911-05-10"^^xsd:date; + base:work\#DateStart_Min "1911-05-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14154; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4450; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14159 a base:work; + base:work\#DateEnd_Fuzzy "July 1912"; + base:work\#DateEnd_Max "1912-07-31"^^xsd:date; + base:work\#DateEnd_Min "1912-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "July 1912"; + base:work\#DateStart_Max "1912-07-31"^^xsd:date; + base:work\#DateStart_Min "1912-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14159; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4520; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1416 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1416; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14164 a base:work; + base:work\#DateEnd_Fuzzy "4th November 1912"; + base:work\#DateEnd_Max "1912-11-04"^^xsd:date; + base:work\#DateEnd_Min "1912-11-04"^^xsd:date; + base:work\#DateStart_Fuzzy "4th November 1912"; + base:work\#DateStart_Max "1912-11-04"^^xsd:date; + base:work\#DateStart_Min "1912-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14164; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4525; + base:work\#ref-IDOrganisation2 base:organisation\/4530; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14169 a base:work; + base:work\#DateEnd_Fuzzy "25th January 1913"; + base:work\#DateEnd_Max "1913-01-25"^^xsd:date; + base:work\#DateEnd_Min "1913-01-25"^^xsd:date; + base:work\#DateStart_Fuzzy "25th January 1913"; + base:work\#DateStart_Max "1913-01-25"^^xsd:date; + base:work\#DateStart_Min "1913-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14169; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4525; + base:work\#ref-IDOrganisation2 base:organisation\/4530; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14174 a base:work; + base:work\#DateEnd_Fuzzy "8th May 1913"; + base:work\#DateEnd_Max "1913-05-08"^^xsd:date; + base:work\#DateEnd_Min "1913-05-08"^^xsd:date; + base:work\#DateStart_Fuzzy "8th May 1913"; + base:work\#DateStart_Max "1913-05-08"^^xsd:date; + base:work\#DateStart_Min "1913-05-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14174; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4535; + base:work\#ref-IDOrganisation2 base:organisation\/4540; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14179 a base:work; + base:work\#DateEnd_Fuzzy "18th November 1913"; + base:work\#DateEnd_Max "1913-11-18"^^xsd:date; + base:work\#DateEnd_Min "1913-11-18"^^xsd:date; + base:work\#DateStart_Fuzzy "18th November 1913"; + base:work\#DateStart_Max "1913-11-18"^^xsd:date; + base:work\#DateStart_Min "1913-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14179; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1430; + base:work\#ref-IDOrganisation2 base:organisation\/4545; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14184 a base:work; + base:work\#DateEnd_Fuzzy "14th December 1913"; + base:work\#DateEnd_Max "1913-12-14"^^xsd:date; + base:work\#DateEnd_Min "1913-12-14"^^xsd:date; + base:work\#DateStart_Fuzzy "14th December 1913"; + base:work\#DateStart_Max "1913-12-14"^^xsd:date; + base:work\#DateStart_Min "1913-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14184; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4550; + base:work\#ref-IDOrganisation2 base:organisation\/4555; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14189 a base:work; + base:work\#DateEnd_Fuzzy "7th March 1915"; + base:work\#DateEnd_Max "1915-03-07"^^xsd:date; + base:work\#DateEnd_Min "1915-03-07"^^xsd:date; + base:work\#DateStart_Fuzzy "7th March 1915"; + base:work\#DateStart_Max "1915-03-07"^^xsd:date; + base:work\#DateStart_Min "1915-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14189; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4560; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1419 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1419; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/BraHer-00 . + +base:work\/14194 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "26th April 1915"; + base:work\#DateStart_Max "1915-04-26"^^xsd:date; + base:work\#DateStart_Min "1915-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14194; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4565; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14199 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "15th November 1915"; + base:work\#DateStart_Max "1915-11-15"^^xsd:date; + base:work\#DateStart_Min "1915-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14199; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/315; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/142 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 142; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/119; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14204 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "26th March 1916"; + base:work\#DateStart_Max "1916-03-26"^^xsd:date; + base:work\#DateStart_Min "1916-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14204; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4575; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14209 a base:work; + base:work\#DateStart_Fuzzy "28th July 1918"; + base:work\#DateStart_Max "1918-07-28"^^xsd:date; + base:work\#DateStart_Min "1918-07-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 14209; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4580; + base:work\#ref-IDOrganisation2 base:organisation\/4585; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14214 a base:work; + base:work\#DateEnd_Fuzzy "Between 1933 and 1938"; + base:work\#DateEnd_Max "1938-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1933 and 1938"; + base:work\#DateStart_Max "1938-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 14214; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/4580; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14219 a base:work; + base:work\#DateEnd_Fuzzy "Between April and June 1935"; + base:work\#DateEnd_Max "1938-12-31"^^xsd:date; + base:work\#DateEnd_Min "1935-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between April and June 1935"; + base:work\#DateStart_Max "1935-06-30"^^xsd:date; + base:work\#DateStart_Min "1935-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 14219; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Stars in a weekly series of fifteen-minute radio broadcasts"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/4590; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1422 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1422; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/429; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14224 a base:work; + base:work\#DateEnd_Fuzzy "Between 1935 and 1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1935-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1935 and 1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 14224; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/4595; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/14226 a base:work; + base:work\#DateEnd_Max "1883-01-27"^^xsd:date; + base:work\#DateEnd_Min "1883-01-27"^^xsd:date; + base:work\#DateStart_Max "1883-01-22"^^xsd:date; + base:work\#DateStart_Min "1883-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14226; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4992; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14230 a base:work; + base:work\#DateEnd_Max "1883-02-17"^^xsd:date; + base:work\#DateEnd_Min "1883-02-17"^^xsd:date; + base:work\#DateStart_Max "1883-02-05"^^xsd:date; + base:work\#DateStart_Min "1883-02-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14230; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/260; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14234 a base:work; + base:work\#DateEnd_Max "1883-02-24"^^xsd:date; + base:work\#DateEnd_Min "1883-02-24"^^xsd:date; + base:work\#DateStart_Max "1883-02-22"^^xsd:date; + base:work\#DateStart_Min "1883-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14234; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/4996; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14238 a base:work; + base:work\#DateEnd_Max "1883-03-03"^^xsd:date; + base:work\#DateEnd_Min "1883-03-03"^^xsd:date; + base:work\#DateStart_Max "1883-03-01"^^xsd:date; + base:work\#DateStart_Min "1883-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14238; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/5004; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14242 a base:work; + base:work\#DateEnd_Max "1883-03-10"^^xsd:date; + base:work\#DateEnd_Min "1883-03-10"^^xsd:date; + base:work\#DateStart_Max "1883-03-05"^^xsd:date; + base:work\#DateStart_Min "1883-03-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14242; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4948; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14246 a base:work; + base:work\#DateEnd_Max "1883-03-15"^^xsd:date; + base:work\#DateEnd_Min "1883-03-15"^^xsd:date; + base:work\#DateStart_Max "1883-03-15"^^xsd:date; + base:work\#DateStart_Min "1883-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14246; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1425 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1425; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Sondh-00; + base:work\#ref-IDOrganisation base:organisation\/430; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14250 a base:work; + base:work\#DateEnd_Max "1883-03-21"^^xsd:date; + base:work\#DateEnd_Min "1883-03-21"^^xsd:date; + base:work\#DateStart_Max "1883-03-20"^^xsd:date; + base:work\#DateStart_Min "1883-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14250; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14258 a base:work; + base:work\#DateEnd_Max "1883-03-27"^^xsd:date; + base:work\#DateEnd_Min "1883-03-27"^^xsd:date; + base:work\#DateStart_Max "1883-03-26"^^xsd:date; + base:work\#DateStart_Min "1883-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14258; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/5020; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14262 a base:work; + base:work\#DateEnd_Max "1883-04-04"^^xsd:date; + base:work\#DateEnd_Min "1883-04-04"^^xsd:date; + base:work\#DateStart_Max "1883-04-04"^^xsd:date; + base:work\#DateStart_Min "1883-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14262; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-AubNY-00; + base:work\#ref-IDOrganisation base:organisation\/5028; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14266 a base:work; + base:work\#DateEnd_Max "1883-04-21"^^xsd:date; + base:work\#DateEnd_Min "1883-04-21"^^xsd:date; + base:work\#DateStart_Max "1883-04-09"^^xsd:date; + base:work\#DateStart_Min "1883-04-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14266; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/133; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14270 a base:work; + base:work\#DateEnd_Max "1883-04-28"^^xsd:date; + base:work\#DateEnd_Min "1883-04-28"^^xsd:date; + base:work\#DateStart_Max "1883-04-28"^^xsd:date; + base:work\#DateStart_Min "1883-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Manch-00; + base:work\#ref-IDOrganisation base:organisation\/5032; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14274 a base:work; + base:work\#DateEnd_Max "1883-06-02"^^xsd:date; + base:work\#DateEnd_Min "1883-06-02"^^xsd:date; + base:work\#DateStart_Max "1883-05-07"^^xsd:date; + base:work\#DateStart_Min "1883-05-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14274; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14278 a base:work; + base:work\#DateEnd_Max "1883-06-05"^^xsd:date; + base:work\#DateEnd_Min "1883-06-05"^^xsd:date; + base:work\#DateStart_Max "1883-06-05"^^xsd:date; + base:work\#DateStart_Min "1883-06-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14278; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/4940; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14282 a base:work; + base:work\#DateEnd_Max "1883-06-16"^^xsd:date; + base:work\#DateEnd_Min "1883-06-16"^^xsd:date; + base:work\#DateStart_Max "1883-06-11"^^xsd:date; + base:work\#DateStart_Min "1883-06-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14282; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/5044; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14286 a base:work; + base:work\#DateEnd_Max "1883-09-15"^^xsd:date; + base:work\#DateEnd_Min "1883-09-15"^^xsd:date; + base:work\#DateStart_Max "1883-09-02"^^xsd:date; + base:work\#DateStart_Min "1883-09-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14286; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14290 a base:work; + base:work\#DateEnd_Max "1883-09-18"^^xsd:date; + base:work\#DateEnd_Min "1883-09-18"^^xsd:date; + base:work\#DateStart_Max "1883-09-18"^^xsd:date; + base:work\#DateStart_Min "1883-09-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14290; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Musk-00; + base:work\#ref-IDOrganisation base:organisation\/5056; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14294 a base:work; + base:work\#DateEnd_Max "1883-09-20"^^xsd:date; + base:work\#DateEnd_Min "1883-09-20"^^xsd:date; + base:work\#DateStart_Max "1883-09-20"^^xsd:date; + base:work\#DateStart_Min "1883-09-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14294; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Jackso-00; + base:work\#ref-IDOrganisation base:organisation\/4732; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14298 a base:work; + base:work\#DateEnd_Max "1883-09-22"^^xsd:date; + base:work\#DateEnd_Min "1883-09-22"^^xsd:date; + base:work\#DateStart_Max "1883-09-22"^^xsd:date; + base:work\#DateStart_Min "1883-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14298; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/143 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 143; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDOrganisation base:organisation\/120; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14302 a base:work; + base:work\#DateEnd_Max "1883-09-25"^^xsd:date; + base:work\#DateEnd_Min "1883-09-25"^^xsd:date; + base:work\#DateStart_Max "1883-09-25"^^xsd:date; + base:work\#DateStart_Min "1883-09-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14302; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/5064; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14306 a base:work; + base:work\#DateEnd_Max "1883-09-27"^^xsd:date; + base:work\#DateEnd_Min "1883-09-27"^^xsd:date; + base:work\#DateStart_Max "1883-09-27"^^xsd:date; + base:work\#DateStart_Min "1883-09-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14306; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDOrganisation base:organisation\/5184; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14310 a base:work; + base:work\#DateEnd_Max "1883-09-29"^^xsd:date; + base:work\#DateEnd_Min "1883-09-29"^^xsd:date; + base:work\#DateStart_Max "1883-09-29"^^xsd:date; + base:work\#DateStart_Min "1883-09-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDOrganisation base:organisation\/5012; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14314 a base:work; + base:work\#DateEnd_Max "1883-10-09"^^xsd:date; + base:work\#DateEnd_Min "1883-10-09"^^xsd:date; + base:work\#DateStart_Max "1883-10-09"^^xsd:date; + base:work\#DateStart_Min "1883-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14314; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/5068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14318 a base:work; + base:work\#DateEnd_Max "1883-10-11"^^xsd:date; + base:work\#DateEnd_Min "1883-10-11"^^xsd:date; + base:work\#DateStart_Max "1883-10-11"^^xsd:date; + base:work\#DateStart_Min "1883-10-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14318; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14322 a base:work; + base:work\#DateEnd_Max "1883-10-13"^^xsd:date; + base:work\#DateEnd_Min "1883-10-13"^^xsd:date; + base:work\#DateStart_Max "1883-10-13"^^xsd:date; + base:work\#DateStart_Min "1883-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14322; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14326 a base:work; + base:work\#DateEnd_Max "1883-10-20"^^xsd:date; + base:work\#DateEnd_Min "1883-10-20"^^xsd:date; + base:work\#DateStart_Max "1883-10-19"^^xsd:date; + base:work\#DateStart_Min "1883-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14326; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/5004; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1433 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1433; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Hall-00; + base:work\#ref-IDOrganisation base:organisation\/431; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14330 a base:work; + base:work\#DateEnd_Max "1889-07-16"^^xsd:date; + base:work\#DateEnd_Min "1889-07-16"^^xsd:date; + base:work\#DateStart_Max "1889-07-15"^^xsd:date; + base:work\#DateStart_Min "1889-07-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14330; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Asp-00; + base:work\#ref-IDOrganisation base:organisation\/5060; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14334 a base:work; + base:work\#DateEnd_Max "1889-07-27"^^xsd:date; + base:work\#DateEnd_Min "1889-07-27"^^xsd:date; + base:work\#DateStart_Max "1889-07-25"^^xsd:date; + base:work\#DateStart_Min "1889-07-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14334; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14338 a base:work; + base:work\#DateEnd_Max "1879-04-05"^^xsd:date; + base:work\#DateEnd_Min "1879-04-05"^^xsd:date; + base:work\#DateStart_Max "1879-03-24"^^xsd:date; + base:work\#DateStart_Min "1879-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14338; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/4676; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14342 a base:work; + base:work\#DateEnd_Max "1879-04-09"^^xsd:date; + base:work\#DateEnd_Min "1879-04-09"^^xsd:date; + base:work\#DateStart_Max "1879-04-09"^^xsd:date; + base:work\#DateStart_Min "1879-04-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14342; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Jackso-00; + base:work\#ref-IDOrganisation base:organisation\/4732; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14346 a base:work; + base:work\#DateEnd_Max "1879-04-11"^^xsd:date; + base:work\#DateEnd_Min "1879-04-11"^^xsd:date; + base:work\#DateStart_Max "1879-04-11"^^xsd:date; + base:work\#DateStart_Min "1879-04-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14346; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDOrganisation base:organisation\/4740; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14350 a base:work; + base:work\#DateEnd_Max "1879-04-15"^^xsd:date; + base:work\#DateEnd_Min "1879-04-15"^^xsd:date; + base:work\#DateStart_Max "1879-04-14"^^xsd:date; + base:work\#DateStart_Min "1879-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14350; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14354 a base:work; + base:work\#DateEnd_Max "1879-04-17"^^xsd:date; + base:work\#DateEnd_Min "1879-04-17"^^xsd:date; + base:work\#DateStart_Max "1879-04-17"^^xsd:date; + base:work\#DateStart_Min "1879-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14354; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14358 a base:work; + base:work\#DateEnd_Max "1879-04-19"^^xsd:date; + base:work\#DateEnd_Min "1879-04-19"^^xsd:date; + base:work\#DateStart_Max "1879-04-19"^^xsd:date; + base:work\#DateStart_Min "1879-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14358; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1436 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1436; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CH-Bas-00; + base:work\#ref-IDOrganisation base:organisation\/432; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14362 a base:work; + base:work\#DateEnd_Max "1879-05-10"^^xsd:date; + base:work\#DateEnd_Min "1879-05-10"^^xsd:date; + base:work\#DateStart_Max "1879-04-28"^^xsd:date; + base:work\#DateStart_Min "1879-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14362; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/153; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14366 a base:work; + base:work\#DateEnd_Max "1879-05-14"^^xsd:date; + base:work\#DateEnd_Min "1879-05-14"^^xsd:date; + base:work\#DateStart_Max "1879-05-14"^^xsd:date; + base:work\#DateStart_Min "1879-05-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14366; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/5156; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14382 a base:work; + base:work\#DateEnd_Max "1879-05-17"^^xsd:date; + base:work\#DateEnd_Min "1879-05-17"^^xsd:date; + base:work\#DateStart_Max "1879-05-16"^^xsd:date; + base:work\#DateStart_Min "1879-05-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14382; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14386 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-03-31"^^xsd:date; + base:work\#DateEnd_Min "1880-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-10-31"^^xsd:date; + base:work\#DateStart_Min "1879-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14386; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1439 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1439; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BrauSch-00; + base:work\#ref-IDOrganisation base:organisation\/433; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14390 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-05-31"^^xsd:date; + base:work\#DateEnd_Min "1880-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-05-31"^^xsd:date; + base:work\#DateStart_Min "1880-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14390; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/1068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14394 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-03-31"^^xsd:date; + base:work\#DateEnd_Min "1882-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-01-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14394; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14398 a base:work; + base:work\#DateEnd_Max "1882-10-21"^^xsd:date; + base:work\#DateEnd_Min "1882-10-21"^^xsd:date; + base:work\#DateStart_Max "1882-10-02"^^xsd:date; + base:work\#DateStart_Min "1882-10-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14398; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2096; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/144 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 144; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14402 a base:work; + base:work\#DateEnd_Max "1882-10-25"^^xsd:date; + base:work\#DateEnd_Min "1882-10-25"^^xsd:date; + base:work\#DateStart_Max "1882-10-23"^^xsd:date; + base:work\#DateStart_Min "1882-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14402; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14406 a base:work; + base:work\#DateEnd_Max "1882-10-26"^^xsd:date; + base:work\#DateEnd_Min "1882-10-26"^^xsd:date; + base:work\#DateStart_Max "1882-10-26"^^xsd:date; + base:work\#DateStart_Min "1882-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14406; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NLdn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14410 a base:work; + base:work\#DateEnd_Max "1882-10-28"^^xsd:date; + base:work\#DateEnd_Min "1882-10-28"^^xsd:date; + base:work\#DateStart_Max "1882-10-28"^^xsd:date; + base:work\#DateStart_Min "1882-10-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14410; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14414 a base:work; + base:work\#DateEnd_Max "1882-11-04"^^xsd:date; + base:work\#DateEnd_Min "1882-11-04"^^xsd:date; + base:work\#DateStart_Max "1882-10-30"^^xsd:date; + base:work\#DateStart_Min "1882-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14418 a base:work; + base:work\#DateEnd_Max "1882-11-08"^^xsd:date; + base:work\#DateEnd_Min "1882-11-08"^^xsd:date; + base:work\#DateStart_Max "1882-11-06"^^xsd:date; + base:work\#DateStart_Min "1882-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14418; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/4708; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1442 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1442; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/434; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14422 a base:work; + base:work\#DateEnd_Max "1882-11-11"^^xsd:date; + base:work\#DateEnd_Min "1882-11-11"^^xsd:date; + base:work\#DateStart_Max "1882-11-09"^^xsd:date; + base:work\#DateStart_Min "1882-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14422; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14426 a base:work; + base:work\#DateEnd_Max "1882-11-25"^^xsd:date; + base:work\#DateEnd_Min "1882-11-25"^^xsd:date; + base:work\#DateStart_Max "1882-11-13"^^xsd:date; + base:work\#DateStart_Min "1882-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14426; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5164; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14430 a base:work; + base:work\#DateEnd_Max "1882-11-27"^^xsd:date; + base:work\#DateEnd_Min "1882-11-27"^^xsd:date; + base:work\#DateStart_Max "1882-11-27"^^xsd:date; + base:work\#DateStart_Min "1882-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14434 a base:work; + base:work\#DateEnd_Max "1882-11-28"^^xsd:date; + base:work\#DateEnd_Min "1882-11-28"^^xsd:date; + base:work\#DateStart_Max "1882-11-28"^^xsd:date; + base:work\#DateStart_Min "1882-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14434; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDOrganisation base:organisation\/5172; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14438 a base:work; + base:work\#DateEnd_Max "1882-11-29"^^xsd:date; + base:work\#DateEnd_Min "1882-11-29"^^xsd:date; + base:work\#DateStart_Max "1882-11-29"^^xsd:date; + base:work\#DateStart_Min "1882-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14438; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Willms-00; + base:work\#ref-IDOrganisation base:organisation\/4912; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14442 a base:work; + base:work\#DateEnd_Max "1882-11-30"^^xsd:date; + base:work\#DateEnd_Min "1882-11-30"^^xsd:date; + base:work\#DateStart_Max "1882-11-30"^^xsd:date; + base:work\#DateStart_Min "1882-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14442; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/5068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14446 a base:work; + base:work\#DateEnd_Max "1882-12-01"^^xsd:date; + base:work\#DateEnd_Min "1882-12-01"^^xsd:date; + base:work\#DateStart_Max "1882-12-01"^^xsd:date; + base:work\#DateStart_Min "1882-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14446; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDOrganisation base:organisation\/4916; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1445 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1445; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14458 a base:work; + base:work\#DateEnd_Max "1882-12-02"^^xsd:date; + base:work\#DateEnd_Min "1882-12-02"^^xsd:date; + base:work\#DateStart_Max "1882-12-02"^^xsd:date; + base:work\#DateStart_Min "1882-12-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14458; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Lanc-00; + base:work\#ref-IDOrganisation base:organisation\/4920; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14462 a base:work; + base:work\#DateEnd_Max "1882-12-09"^^xsd:date; + base:work\#DateEnd_Min "1882-12-09"^^xsd:date; + base:work\#DateStart_Max "1882-12-04"^^xsd:date; + base:work\#DateStart_Min "1882-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14462; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14466 a base:work; + base:work\#DateEnd_Max "1883-01-06"^^xsd:date; + base:work\#DateEnd_Min "1883-01-06"^^xsd:date; + base:work\#DateStart_Max "1882-12-11"^^xsd:date; + base:work\#DateStart_Min "1882-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14466; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14470 a base:work; + base:work\#DateEnd_Max "1883-01-13"^^xsd:date; + base:work\#DateEnd_Min "1883-01-13"^^xsd:date; + base:work\#DateStart_Max "1883-01-08"^^xsd:date; + base:work\#DateStart_Min "1883-01-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14470; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14478 a base:work; + base:work\#DateEnd_Max "1883-01-20"^^xsd:date; + base:work\#DateEnd_Min "1883-01-20"^^xsd:date; + base:work\#DateStart_Max "1883-01-15"^^xsd:date; + base:work\#DateStart_Min "1883-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14478; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4988; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1448 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1448; + base:work\#comment "from 1905 until 1914 she lived in Berlin and had guest engagements all around."; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14482 a base:work; + base:work\#DateEnd_Max "1883-02-03"^^xsd:date; + base:work\#DateEnd_Min "1883-02-03"^^xsd:date; + base:work\#DateStart_Max "1883-01-29"^^xsd:date; + base:work\#DateStart_Min "1883-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14482; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14486 a base:work; + base:work\#DateEnd_Max "1883-02-21"^^xsd:date; + base:work\#DateEnd_Min "1883-02-21"^^xsd:date; + base:work\#DateStart_Max "1883-02-19"^^xsd:date; + base:work\#DateStart_Min "1883-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14486; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/4680; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14490 a base:work; + base:work\#DateEnd_Max "1883-02-27"^^xsd:date; + base:work\#DateEnd_Min "1883-02-27"^^xsd:date; + base:work\#DateStart_Max "1883-02-27"^^xsd:date; + base:work\#DateStart_Min "1883-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14490; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDOrganisation base:organisation\/5000; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14494 a base:work; + base:work\#DateEnd_Max "1883-02-26"^^xsd:date; + base:work\#DateEnd_Min "1883-02-26"^^xsd:date; + base:work\#DateStart_Max "1883-02-26"^^xsd:date; + base:work\#DateStart_Min "1883-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14494; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/4976; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14498 a base:work; + base:work\#DateEnd_Max "1883-03-12"^^xsd:date; + base:work\#DateEnd_Min "1883-03-12"^^xsd:date; + base:work\#DateStart_Max "1883-03-12"^^xsd:date; + base:work\#DateStart_Min "1883-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14498; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDOrganisation base:organisation\/5012; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/145 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 145; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14502 a base:work; + base:work\#DateEnd_Max "1883-03-14"^^xsd:date; + base:work\#DateEnd_Min "1883-03-14"^^xsd:date; + base:work\#DateStart_Max "1883-03-14"^^xsd:date; + base:work\#DateStart_Min "1883-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14502; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Akr-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14506 a base:work; + base:work\#DateEnd_Max "1883-03-22"^^xsd:date; + base:work\#DateEnd_Min "1883-03-22"^^xsd:date; + base:work\#DateStart_Max "1883-03-22"^^xsd:date; + base:work\#DateStart_Min "1883-03-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14506; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Ham-00; + base:work\#ref-IDOrganisation base:organisation\/4924; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1451 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1910"; + base:work\#DateEnd_Max "1910-09-30"^^xsd:date; + base:work\#DateEnd_Min "1910-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1910"; + base:work\#DateStart_Max "1910-09-30"^^xsd:date; + base:work\#DateStart_Min "1910-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1451; + base:work\#Profession base:Profession-Singer; + base:work\#comment "in summer 1908 and 1910 she sung at the Münchner Wagner-Festspiele"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/435; + base:work\#ref-IDPerson base:person\/BreEli-00 . + +base:work\/14510 a base:work; + base:work\#DateEnd_Max "1883-03-27"^^xsd:date; + base:work\#DateEnd_Min "1883-03-27"^^xsd:date; + base:work\#DateStart_Max "1883-03-26"^^xsd:date; + base:work\#DateStart_Min "1883-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14514 a base:work; + base:work\#DateEnd_Max "1883-03-31"^^xsd:date; + base:work\#DateEnd_Min "1883-03-31"^^xsd:date; + base:work\#DateStart_Max "1883-03-31"^^xsd:date; + base:work\#DateStart_Min "1883-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14514; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Erie-00; + base:work\#ref-IDOrganisation base:organisation\/5024; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14518 a base:work; + base:work\#DateEnd_Max "1883-04-06"^^xsd:date; + base:work\#DateEnd_Min "1883-04-06"^^xsd:date; + base:work\#DateStart_Max "1883-04-05"^^xsd:date; + base:work\#DateStart_Min "1883-04-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14518; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/5020; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14522 a base:work; + base:work\#DateEnd_Max "1883-04-27"^^xsd:date; + base:work\#DateEnd_Min "1883-04-27"^^xsd:date; + base:work\#DateStart_Max "1883-04-23"^^xsd:date; + base:work\#DateStart_Min "1883-04-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14522; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14526 a base:work; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-30"^^xsd:date; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14526; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14530 a base:work; + base:work\#DateEnd_Max "1886-06-04"^^xsd:date; + base:work\#DateEnd_Min "1883-06-04"^^xsd:date; + base:work\#DateStart_Max "1883-06-04"^^xsd:date; + base:work\#DateStart_Min "1883-06-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14530; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDOrganisation base:organisation\/1095; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14534 a base:work; + base:work\#DateEnd_Max "1883-06-09"^^xsd:date; + base:work\#DateEnd_Min "1883-06-09"^^xsd:date; + base:work\#DateStart_Max "1883-06-08"^^xsd:date; + base:work\#DateStart_Min "1883-06-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14534; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDOrganisation base:organisation\/5036; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14538 a base:work; + base:work\#DateEnd_Max "1883-09-01"^^xsd:date; + base:work\#DateEnd_Min "1883-09-01"^^xsd:date; + base:work\#DateStart_Max "1883-08-30"^^xsd:date; + base:work\#DateStart_Min "1883-08-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14538; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/5040; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1454 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1454; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/436; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14542 a base:work; + base:work\#DateEnd_Max "1883-09-17"^^xsd:date; + base:work\#DateEnd_Min "1883-09-17"^^xsd:date; + base:work\#DateStart_Max "1883-09-17"^^xsd:date; + base:work\#DateStart_Min "1883-09-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14542; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDOrganisation base:organisation\/5180; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14546 a base:work; + base:work\#DateEnd_Max "1883-09-19"^^xsd:date; + base:work\#DateEnd_Min "1883-09-19"^^xsd:date; + base:work\#DateStart_Max "1883-09-19"^^xsd:date; + base:work\#DateStart_Min "1883-09-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14546; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14550 a base:work; + base:work\#DateEnd_Max "1883-09-21"^^xsd:date; + base:work\#DateEnd_Min "1883-09-21"^^xsd:date; + base:work\#DateStart_Max "1883-09-21"^^xsd:date; + base:work\#DateStart_Min "1883-09-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14550; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDOrganisation base:organisation\/4740; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14554 a base:work; + base:work\#DateEnd_Max "1883-09-24"^^xsd:date; + base:work\#DateEnd_Min "1883-09-24"^^xsd:date; + base:work\#DateStart_Max "1883-09-24"^^xsd:date; + base:work\#DateStart_Min "1883-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14554; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDOrganisation base:organisation\/5060; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14558 a base:work; + base:work\#DateEnd_Max "1883-09-26"^^xsd:date; + base:work\#DateEnd_Min "1883-09-26"^^xsd:date; + base:work\#DateStart_Max "1883-09-26"^^xsd:date; + base:work\#DateStart_Min "1883-09-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14558; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Lima-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14562 a base:work; + base:work\#DateEnd_Max "1883-09-28"^^xsd:date; + base:work\#DateEnd_Min "1883-09-28"^^xsd:date; + base:work\#DateStart_Max "1883-09-28"^^xsd:date; + base:work\#DateStart_Min "1883-09-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14562; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Zanes-00; + base:work\#ref-IDOrganisation base:organisation\/5188; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14566 a base:work; + base:work\#DateEnd_Max "1883-10-06"^^xsd:date; + base:work\#DateEnd_Min "1883-10-06"^^xsd:date; + base:work\#DateStart_Max "1883-10-01"^^xsd:date; + base:work\#DateStart_Min "1883-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14566; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5164; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1457 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1457; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/436; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14570 a base:work; + base:work\#DateEnd_Max "1883-10-10"^^xsd:date; + base:work\#DateEnd_Min "1883-10-10"^^xsd:date; + base:work\#DateStart_Max "1883-10-10"^^xsd:date; + base:work\#DateStart_Min "1883-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14570; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/5072; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14574 a base:work; + base:work\#DateEnd_Max "1883-10-12"^^xsd:date; + base:work\#DateEnd_Min "1883-10-12"^^xsd:date; + base:work\#DateStart_Max "1883-10-12"^^xsd:date; + base:work\#DateStart_Min "1883-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14574; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Osw-00; + base:work\#ref-IDOrganisation base:organisation\/5076; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14578 a base:work; + base:work\#DateEnd_Max "1883-10-17"^^xsd:date; + base:work\#DateEnd_Min "1883-10-17"^^xsd:date; + base:work\#DateStart_Max "1883-10-16"^^xsd:date; + base:work\#DateStart_Min "1883-10-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14578; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/5080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14582 a base:work; + base:work\#DateEnd_Max "1883-10-24"^^xsd:date; + base:work\#DateEnd_Min "1883-10-24"^^xsd:date; + base:work\#DateStart_Max "1883-10-22"^^xsd:date; + base:work\#DateStart_Min "1883-10-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14582; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14586 a base:work; + base:work\#DateEnd_Max "1889-07-18"^^xsd:date; + base:work\#DateEnd_Min "1889-07-18"^^xsd:date; + base:work\#DateStart_Max "1889-07-17"^^xsd:date; + base:work\#DateStart_Min "1889-07-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14586; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Leadv-00; + base:work\#ref-IDOrganisation base:organisation\/5697; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14590 a base:work; + base:work\#DateEnd_Max "1889-10-05"^^xsd:date; + base:work\#DateEnd_Min "1889-10-05"^^xsd:date; + base:work\#DateStart_Max "1889-09-30"^^xsd:date; + base:work\#DateStart_Min "1889-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14590; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4948; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14594 a base:work; + base:work\#DateEnd_Max "1879-04-07"^^xsd:date; + base:work\#DateEnd_Min "1879-04-07"^^xsd:date; + base:work\#DateStart_Max "1879-04-07"^^xsd:date; + base:work\#DateStart_Min "1879-04-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14594; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDOrganisation base:organisation\/4728; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14598 a base:work; + base:work\#DateEnd_Max "1879-04-10"^^xsd:date; + base:work\#DateEnd_Min "1879-04-10"^^xsd:date; + base:work\#DateStart_Max "1879-04-10"^^xsd:date; + base:work\#DateStart_Min "1879-04-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14598; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/146 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 146; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mainz-00; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/1460 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1460; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/437; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14602 a base:work; + base:work\#DateEnd_Max "1879-04-12"^^xsd:date; + base:work\#DateEnd_Min "1879-04-12"^^xsd:date; + base:work\#DateStart_Max "1879-04-12"^^xsd:date; + base:work\#DateStart_Min "1879-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14602; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14606 a base:work; + base:work\#DateEnd_Max "1879-04-16"^^xsd:date; + base:work\#DateEnd_Min "1879-04-16"^^xsd:date; + base:work\#DateStart_Max "1879-04-16"^^xsd:date; + base:work\#DateStart_Min "1879-04-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14606; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/4692; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14610 a base:work; + base:work\#DateEnd_Max "1879-04-18"^^xsd:date; + base:work\#DateEnd_Min "1879-04-18"^^xsd:date; + base:work\#DateStart_Max "1879-04-18"^^xsd:date; + base:work\#DateStart_Min "1879-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14610; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14614 a base:work; + base:work\#DateEnd_Max "1879-04-26"^^xsd:date; + base:work\#DateEnd_Min "1879-04-26"^^xsd:date; + base:work\#DateStart_Max "1879-04-21"^^xsd:date; + base:work\#DateStart_Min "1879-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14614; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2096; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14618 a base:work; + base:work\#DateEnd_Max "1879-05-13"^^xsd:date; + base:work\#DateEnd_Min "1879-05-13"^^xsd:date; + base:work\#DateStart_Max "1879-05-12"^^xsd:date; + base:work\#DateStart_Min "1879-05-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14618; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14622 a base:work; + base:work\#DateEnd_Max "1879-05-15"^^xsd:date; + base:work\#DateEnd_Min "1879-05-15"^^xsd:date; + base:work\#DateStart_Max "1879-05-15"^^xsd:date; + base:work\#DateStart_Min "1879-05-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14622; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5256; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14625 a base:work; + base:work\#DateEnd_Max "1883-10-26"^^xsd:date; + base:work\#DateEnd_Min "1883-10-26"^^xsd:date; + base:work\#DateStart_Max "1883-10-26"^^xsd:date; + base:work\#DateStart_Min "1883-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14625; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5088; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14629 a base:work; + base:work\#DateEnd_Max "1883-10-27"^^xsd:date; + base:work\#DateEnd_Min "1883-10-27"^^xsd:date; + base:work\#DateStart_Max "1883-10-27"^^xsd:date; + base:work\#DateStart_Min "1883-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14629; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4668; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1463 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1463; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/436; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14630 a base:work; + base:work\#DateEnd_Max "1883-10-29"^^xsd:date; + base:work\#DateEnd_Min "1883-10-29"^^xsd:date; + base:work\#DateStart_Max "1883-10-29"^^xsd:date; + base:work\#DateStart_Min "1883-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14630; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14634 a base:work; + base:work\#DateEnd_Max "1883-10-30"^^xsd:date; + base:work\#DateEnd_Min "1883-10-30"^^xsd:date; + base:work\#DateStart_Max "1883-10-30"^^xsd:date; + base:work\#DateStart_Min "1883-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14634; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SpringO-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14638 a base:work; + base:work\#DateEnd_Max "1883-10-31"^^xsd:date; + base:work\#DateEnd_Min "1883-10-31"^^xsd:date; + base:work\#DateStart_Max "1883-10-31"^^xsd:date; + base:work\#DateStart_Min "1883-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14638; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDOrganisation base:organisation\/5000; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1464 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1464; + base:work\#ref-IDOrganisation base:organisation\/438; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14642 a base:work; + base:work\#DateEnd_Max "1883-11-03"^^xsd:date; + base:work\#DateEnd_Min "1883-11-03"^^xsd:date; + base:work\#DateStart_Max "1883-11-01"^^xsd:date; + base:work\#DateStart_Min "1883-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14642; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/5096; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14646 a base:work; + base:work\#DateEnd_Max "1883-11-07"^^xsd:date; + base:work\#DateEnd_Min "1883-11-07"^^xsd:date; + base:work\#DateStart_Max "1883-11-05"^^xsd:date; + base:work\#DateStart_Min "1883-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14646; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/4680; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14650 a base:work; + base:work\#DateEnd_Max "1883-11-08"^^xsd:date; + base:work\#DateEnd_Min "1883-11-08"^^xsd:date; + base:work\#DateStart_Max "1883-11-08"^^xsd:date; + base:work\#DateStart_Min "1883-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14650; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-OshkW-00; + base:work\#ref-IDOrganisation base:organisation\/5100; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14654 a base:work; + base:work\#DateEnd_Max "1883-11-09"^^xsd:date; + base:work\#DateEnd_Min "1883-11-09"^^xsd:date; + base:work\#DateStart_Max "1883-11-09"^^xsd:date; + base:work\#DateStart_Min "1883-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14654; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Rockf-00; + base:work\#ref-IDOrganisation base:organisation\/5104; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14658 a base:work; + base:work\#DateEnd_Max "1883-11-10"^^xsd:date; + base:work\#DateEnd_Min "1883-11-10"^^xsd:date; + base:work\#DateStart_Max "1883-11-10"^^xsd:date; + base:work\#DateStart_Min "1883-11-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14658; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14662 a base:work; + base:work\#DateEnd_Max "1883-11-14"^^xsd:date; + base:work\#DateEnd_Min "1883-11-14"^^xsd:date; + base:work\#DateStart_Max "1883-11-12"^^xsd:date; + base:work\#DateStart_Min "1883-11-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14662; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14666 a base:work; + base:work\#DateEnd_Max "1883-11-17"^^xsd:date; + base:work\#DateEnd_Min "1883-11-17"^^xsd:date; + base:work\#DateStart_Max "1883-11-15"^^xsd:date; + base:work\#DateStart_Min "1883-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14666; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/5112; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1467 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1467; + base:work\#ref-IDLocation base:location\/GER-Goerl-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14670 a base:work; + base:work\#DateEnd_Max "1883-11-24"^^xsd:date; + base:work\#DateEnd_Min "1883-11-24"^^xsd:date; + base:work\#DateStart_Max "1883-11-19"^^xsd:date; + base:work\#DateStart_Min "1883-11-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14670; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4988; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14674 a base:work; + base:work\#DateEnd_Max "1883-12-01"^^xsd:date; + base:work\#DateEnd_Min "1883-12-01"^^xsd:date; + base:work\#DateStart_Max "1883-11-26"^^xsd:date; + base:work\#DateStart_Min "1883-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14674; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/5192; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14678 a base:work; + base:work\#DateEnd_Max "1883-12-08"^^xsd:date; + base:work\#DateEnd_Min "1883-12-08"^^xsd:date; + base:work\#DateStart_Max "1883-12-03"^^xsd:date; + base:work\#DateStart_Min "1883-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14678; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4992; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14682 a base:work; + base:work\#DateEnd_Max "1883-12-10"^^xsd:date; + base:work\#DateEnd_Min "1883-12-10"^^xsd:date; + base:work\#DateStart_Max "1883-12-10"^^xsd:date; + base:work\#DateStart_Min "1883-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14682; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/4976; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14686 a base:work; + base:work\#DateEnd_Max "1883-12-11"^^xsd:date; + base:work\#DateEnd_Min "1883-12-11"^^xsd:date; + base:work\#DateStart_Max "1883-12-11"^^xsd:date; + base:work\#DateStart_Min "1883-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14686; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14690 a base:work; + base:work\#DateEnd_Max "1883-12-12"^^xsd:date; + base:work\#DateEnd_Min "1883-12-12"^^xsd:date; + base:work\#DateStart_Max "1883-12-12"^^xsd:date; + base:work\#DateStart_Min "1883-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14690; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14694 a base:work; + base:work\#DateEnd_Max "1883-12-13"^^xsd:date; + base:work\#DateEnd_Min "1883-12-13"^^xsd:date; + base:work\#DateStart_Max "1883-12-13"^^xsd:date; + base:work\#DateStart_Min "1883-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/5196; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14698 a base:work; + base:work\#DateEnd_Max "1883-12-14"^^xsd:date; + base:work\#DateEnd_Min "1883-12-14"^^xsd:date; + base:work\#DateStart_Max "1883-12-14"^^xsd:date; + base:work\#DateStart_Min "1883-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14698; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDOrganisation base:organisation\/5200; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/147 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 147; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/1470 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1470; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14702 a base:work; + base:work\#DateEnd_Max "1883-12-15"^^xsd:date; + base:work\#DateEnd_Min "1883-12-15"^^xsd:date; + base:work\#DateStart_Max "1883-12-15"^^xsd:date; + base:work\#DateStart_Min "1883-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14702; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Evansv-00; + base:work\#ref-IDOrganisation base:organisation\/5204; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14706 a base:work; + base:work\#DateEnd_Max "1883-12-23"^^xsd:date; + base:work\#DateEnd_Min "1883-12-23"^^xsd:date; + base:work\#DateStart_Max "1883-12-17"^^xsd:date; + base:work\#DateStart_Min "1883-12-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14706; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDOrganisation base:organisation\/5208; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14710 a base:work; + base:work\#DateEnd_Max "1883-12-26"^^xsd:date; + base:work\#DateEnd_Min "1883-12-26"^^xsd:date; + base:work\#DateStart_Max "1883-12-24"^^xsd:date; + base:work\#DateStart_Min "1883-12-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14710; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/5212; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14714 a base:work; + base:work\#DateEnd_Max "1884-01-12"^^xsd:date; + base:work\#DateEnd_Min "1884-01-12"^^xsd:date; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14714; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/5216; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14718 a base:work; + base:work\#DateEnd_Max "1884-01-15"^^xsd:date; + base:work\#DateEnd_Min "1884-01-15"^^xsd:date; + base:work\#DateStart_Max "1884-01-14"^^xsd:date; + base:work\#DateStart_Min "1884-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14718; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Galv-00; + base:work\#ref-IDOrganisation base:organisation\/5220; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14719 a base:work; + base:work\#DateEnd_Max "1884-01-16"^^xsd:date; + base:work\#DateEnd_Min "1884-01-16"^^xsd:date; + base:work\#DateStart_Max "1884-01-16"^^xsd:date; + base:work\#DateStart_Min "1884-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14719; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDOrganisation base:organisation\/5224; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14723 a base:work; + base:work\#DateEnd_Max "1884-01-17"^^xsd:date; + base:work\#DateEnd_Min "1884-01-17"^^xsd:date; + base:work\#DateStart_Max "1884-01-16"^^xsd:date; + base:work\#DateStart_Min "1884-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14723; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation base:organisation\/5228; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14726 a base:work; + base:work\#DateEnd_Max "1884-01-21"^^xsd:date; + base:work\#DateEnd_Min "1884-01-21"^^xsd:date; + base:work\#DateStart_Max "1884-01-21"^^xsd:date; + base:work\#DateStart_Min "1884-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14726; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Montg-00; + base:work\#ref-IDOrganisation base:organisation\/5232; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1473 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1473; + base:work\#ref-IDLocation base:location\/RUS-Kali-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14730 a base:work; + base:work\#DateEnd_Max "1884-01-22"^^xsd:date; + base:work\#DateEnd_Min "1884-01-22"^^xsd:date; + base:work\#DateStart_Max "1884-01-22"^^xsd:date; + base:work\#DateStart_Min "1884-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14730; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Mac-00; + base:work\#ref-IDOrganisation base:organisation\/5236; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14734 a base:work; + base:work\#DateEnd_Max "1884-01-23"^^xsd:date; + base:work\#DateEnd_Min "1884-01-23"^^xsd:date; + base:work\#DateStart_Max "1884-01-23"^^xsd:date; + base:work\#DateStart_Min "1884-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14734; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14738 a base:work; + base:work\#DateEnd_Max "1884-01-24"^^xsd:date; + base:work\#DateEnd_Min "1884-01-24"^^xsd:date; + base:work\#DateStart_Max "1884-01-24"^^xsd:date; + base:work\#DateStart_Min "1884-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14738; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Aug-00; + base:work\#ref-IDOrganisation base:organisation\/4716; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14742 a base:work; + base:work\#DateEnd_Max "1884-01-26"^^xsd:date; + base:work\#DateEnd_Min "1884-01-26"^^xsd:date; + base:work\#DateStart_Max "1884-01-25"^^xsd:date; + base:work\#DateStart_Min "1884-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14742; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/5240; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14746 a base:work; + base:work\#DateEnd_Max "1884-01-29"^^xsd:date; + base:work\#DateEnd_Min "1884-01-29"^^xsd:date; + base:work\#DateStart_Max "1884-01-28"^^xsd:date; + base:work\#DateStart_Min "1884-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14746; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UAS-Charls-00; + base:work\#ref-IDOrganisation base:organisation\/4908; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14750 a base:work; + base:work\#DateEnd_Max "1884-01-30"^^xsd:date; + base:work\#DateEnd_Min "1884-01-30"^^xsd:date; + base:work\#DateStart_Max "1884-01-30"^^xsd:date; + base:work\#DateStart_Min "1884-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14750; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wilm-00; + base:work\#ref-IDOrganisation base:organisation\/5244; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14754 a base:work; + base:work\#DateEnd_Max "1884-02-02"^^xsd:date; + base:work\#DateEnd_Min "1884-02-02"^^xsd:date; + base:work\#DateStart_Max "1884-02-01"^^xsd:date; + base:work\#DateStart_Min "1884-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14754; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/4956; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14758 a base:work; + base:work\#DateEnd_Max "1884-02-09"^^xsd:date; + base:work\#DateEnd_Min "1884-02-09"^^xsd:date; + base:work\#DateStart_Max "1884-02-04"^^xsd:date; + base:work\#DateStart_Min "1884-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14758; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/5248; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1476 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1476; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14762 a base:work; + base:work\#DateEnd_Max "1884-03-01"^^xsd:date; + base:work\#DateEnd_Min "1884-03-01"^^xsd:date; + base:work\#DateStart_Max "1884-02-11"^^xsd:date; + base:work\#DateStart_Min "1884-02-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14762; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/178; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14766 a base:work; + base:work\#DateEnd_Max "1884-03-06"^^xsd:date; + base:work\#DateEnd_Min "1884-03-06"^^xsd:date; + base:work\#DateStart_Max "1884-03-06"^^xsd:date; + base:work\#DateStart_Min "1884-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14766; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1305; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14770 a base:work; + base:work\#DateEnd_Max "1884-03-15"^^xsd:date; + base:work\#DateEnd_Min "1884-03-15"^^xsd:date; + base:work\#DateStart_Max "1884-03-10"^^xsd:date; + base:work\#DateStart_Min "1884-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14770; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14774 a base:work; + base:work\#DateEnd_Max "1884-03-17"^^xsd:date; + base:work\#DateEnd_Min "1884-03-17"^^xsd:date; + base:work\#DateStart_Max "1884-03-17"^^xsd:date; + base:work\#DateStart_Min "1884-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14774; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14778 a base:work; + base:work\#DateEnd_Max "1884-03-18"^^xsd:date; + base:work\#DateEnd_Min "1884-03-18"^^xsd:date; + base:work\#DateStart_Max "1884-03-18"^^xsd:date; + base:work\#DateStart_Min "1884-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14778; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Merid-00; + base:work\#ref-IDOrganisation base:organisation\/5252; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14779 a base:work; + base:work\#DateEnd_Max "1884-03-19"^^xsd:date; + base:work\#DateEnd_Min "1884-03-19"^^xsd:date; + base:work\#DateStart_Max "1884-03-19"^^xsd:date; + base:work\#DateStart_Min "1884-03-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5256; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14783 a base:work; + base:work\#DateEnd_Max "1884-03-22"^^xsd:date; + base:work\#DateEnd_Min "1884-03-22"^^xsd:date; + base:work\#DateStart_Max "1884-03-22"^^xsd:date; + base:work\#DateStart_Min "1884-03-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14783; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14786 a base:work; + base:work\#DateEnd_Max "1884-03-29"^^xsd:date; + base:work\#DateEnd_Min "1884-03-29"^^xsd:date; + base:work\#DateStart_Max "1884-03-24"^^xsd:date; + base:work\#DateStart_Min "1884-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14786; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5088; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1479 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1479; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14790 a base:work; + base:work\#DateEnd_Max "1884-04-02"^^xsd:date; + base:work\#DateEnd_Min "1884-04-02"^^xsd:date; + base:work\#DateStart_Max "1884-04-01"^^xsd:date; + base:work\#DateStart_Min "1884-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14790; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14794 a base:work; + base:work\#DateEnd_Max "1884-04-05"^^xsd:date; + base:work\#DateEnd_Min "1884-04-05"^^xsd:date; + base:work\#DateStart_Max "1884-04-03"^^xsd:date; + base:work\#DateStart_Min "1884-04-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/131; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14798 a base:work; + base:work\#DateEnd_Max "1884-04-19"^^xsd:date; + base:work\#DateEnd_Min "1884-04-19"^^xsd:date; + base:work\#DateStart_Max "1884-04-14"^^xsd:date; + base:work\#DateStart_Min "1884-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14798; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5164; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/148 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 148; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Hall-00; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14802 a base:work; + base:work\#DateEnd_Max "1884-04-26"^^xsd:date; + base:work\#DateEnd_Min "1884-04-26"^^xsd:date; + base:work\#DateStart_Max "1884-04-21"^^xsd:date; + base:work\#DateStart_Min "1884-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14802; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/5260; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14806 a base:work; + base:work\#DateEnd_Max "1884-04-30"^^xsd:date; + base:work\#DateEnd_Min "1884-04-30"^^xsd:date; + base:work\#DateStart_Max "1884-04-28"^^xsd:date; + base:work\#DateStart_Min "1884-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14806; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14810 a base:work; + base:work\#DateEnd_Max "1884-05-10"^^xsd:date; + base:work\#DateEnd_Min "1884-05-10"^^xsd:date; + base:work\#DateStart_Max "1884-05-05"^^xsd:date; + base:work\#DateStart_Min "1884-05-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14810; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14814 a base:work; + base:work\#DateEnd_Fuzzy "February 1885"; + base:work\#DateEnd_Max "1885-02-28"^^xsd:date; + base:work\#DateEnd_Min "1885-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1884"; + base:work\#DateStart_Max "1884-10-31"^^xsd:date; + base:work\#DateStart_Min "1884-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14814; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14818 a base:work; + base:work\#DateEnd_Fuzzy "Spring 1885"; + base:work\#DateEnd_Max "1885-06-20"^^xsd:date; + base:work\#DateEnd_Min "1885-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring 1885"; + base:work\#DateStart_Max "1885-06-20"^^xsd:date; + base:work\#DateStart_Min "1885-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14818; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1482 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1482; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/FieOsc-00 . + +base:work\/14822 a base:work; + base:work\#DateEnd_Fuzzy "Spring 1885"; + base:work\#DateEnd_Max "1885-06-20"^^xsd:date; + base:work\#DateEnd_Min "1885-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring 1885"; + base:work\#DateStart_Max "1885-06-20"^^xsd:date; + base:work\#DateStart_Min "1885-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14822; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/IE-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14830 a base:work; + base:work\#DateEnd_Max "1885-10-05"^^xsd:date; + base:work\#DateEnd_Min "1885-10-05"^^xsd:date; + base:work\#DateStart_Max "1885-10-05"^^xsd:date; + base:work\#DateStart_Min "1885-10-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14830; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-East-00; + base:work\#ref-IDOrganisation base:organisation\/5296; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14834 a base:work; + base:work\#DateEnd_Max "1885-10-06"^^xsd:date; + base:work\#DateEnd_Min "1885-10-06"^^xsd:date; + base:work\#DateStart_Max "1885-10-06"^^xsd:date; + base:work\#DateStart_Min "1885-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14834; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/5300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14838 a base:work; + base:work\#DateEnd_Max "1885-10-07"^^xsd:date; + base:work\#DateEnd_Min "1885-10-07"^^xsd:date; + base:work\#DateStart_Max "1885-10-07"^^xsd:date; + base:work\#DateStart_Min "1885-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14838; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14842 a base:work; + base:work\#DateEnd_Max "1889-07-20"^^xsd:date; + base:work\#DateEnd_Min "1889-07-20"^^xsd:date; + base:work\#DateStart_Max "1889-07-19"^^xsd:date; + base:work\#DateStart_Min "1889-07-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14842; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDOrganisation base:organisation\/5465; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14846 a base:work; + base:work\#DateEnd_Max "1889-10-12"^^xsd:date; + base:work\#DateEnd_Min "1889-10-12"^^xsd:date; + base:work\#DateStart_Max "1889-10-07"^^xsd:date; + base:work\#DateStart_Min "1889-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14846; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1485 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1485; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/14850 a base:work; + base:work\#DateEnd_Max "1884-05-12"^^xsd:date; + base:work\#DateEnd_Min "1884-05-12"^^xsd:date; + base:work\#DateStart_Max "1884-05-12"^^xsd:date; + base:work\#DateStart_Min "1884-05-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14850; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hanb-00; + base:work\#ref-IDOrganisation base:organisation\/5264; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14854 a base:work; + base:work\#DateEnd_Max "1884-05-13"^^xsd:date; + base:work\#DateEnd_Min "1884-05-13"^^xsd:date; + base:work\#DateStart_Max "1884-05-13"^^xsd:date; + base:work\#DateStart_Min "1884-05-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14854; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14858 a base:work; + base:work\#DateEnd_Max "1884-05-14"^^xsd:date; + base:work\#DateEnd_Min "1884-05-14"^^xsd:date; + base:work\#DateStart_Max "1884-05-14"^^xsd:date; + base:work\#DateStart_Min "1884-05-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14858; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/5268; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14862 a base:work; + base:work\#DateEnd_Max "1884-05-17"^^xsd:date; + base:work\#DateEnd_Min "1884-05-17"^^xsd:date; + base:work\#DateStart_Max "1884-05-15"^^xsd:date; + base:work\#DateStart_Min "1884-05-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14862; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/5272; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14866 a base:work; + base:work\#DateEnd_Max "1884-05-19"^^xsd:date; + base:work\#DateEnd_Min "1884-05-19"^^xsd:date; + base:work\#DateStart_Max "1884-05-19"^^xsd:date; + base:work\#DateStart_Min "1884-05-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14866; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Rockf-00; + base:work\#ref-IDOrganisation base:organisation\/5104; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14870 a base:work; + base:work\#DateEnd_Max "1884-05-20"^^xsd:date; + base:work\#DateEnd_Min "1884-05-20"^^xsd:date; + base:work\#DateStart_Max "1884-05-20"^^xsd:date; + base:work\#DateStart_Min "1884-05-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14870; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dubuq-00; + base:work\#ref-IDOrganisation base:organisation\/5276; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14874 a base:work; + base:work\#DateEnd_Max "1884-05-21"^^xsd:date; + base:work\#DateEnd_Min "1884-05-21"^^xsd:date; + base:work\#DateStart_Max "1884-05-21"^^xsd:date; + base:work\#DateStart_Min "1884-05-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14874; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14878 a base:work; + base:work\#DateEnd_Max "1884-05-22"^^xsd:date; + base:work\#DateEnd_Min "1884-05-22"^^xsd:date; + base:work\#DateStart_Max "1884-05-22"^^xsd:date; + base:work\#DateStart_Min "1884-05-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14878; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDOrganisation base:organisation\/5284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1488 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1488; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/14882 a base:work; + base:work\#DateEnd_Max "1884-05-24"^^xsd:date; + base:work\#DateEnd_Min "1884-05-24"^^xsd:date; + base:work\#DateStart_Max "1884-05-23"^^xsd:date; + base:work\#DateStart_Min "1884-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14882; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14886 a base:work; + base:work\#DateEnd_Max "1884-05-27"^^xsd:date; + base:work\#DateEnd_Min "1884-05-27"^^xsd:date; + base:work\#DateStart_Max "1884-05-27"^^xsd:date; + base:work\#DateStart_Min "1884-05-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14886; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/5196; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14890 a base:work; + base:work\#DateEnd_Max "1884-05-29"^^xsd:date; + base:work\#DateEnd_Min "1884-05-29"^^xsd:date; + base:work\#DateStart_Max "1884-05-29"^^xsd:date; + base:work\#DateStart_Min "1884-05-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14890; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14894 a base:work; + base:work\#DateEnd_Max "1885-10-10"^^xsd:date; + base:work\#DateEnd_Min "1885-10-10"^^xsd:date; + base:work\#DateStart_Max "1885-10-08"^^xsd:date; + base:work\#DateStart_Min "1885-10-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14894; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14898 a base:work; + base:work\#DateEnd_Max "1885-10-14"^^xsd:date; + base:work\#DateEnd_Min "1885-10-14"^^xsd:date; + base:work\#DateStart_Max "1885-10-12"^^xsd:date; + base:work\#DateStart_Min "1885-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14898; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5304; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/149 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 149; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDPerson base:person\/SchFra-00 . + +base:work\/14902 a base:work; + base:work\#DateEnd_Max "1885-10-31"^^xsd:date; + base:work\#DateEnd_Min "1885-10-31"^^xsd:date; + base:work\#DateStart_Max "1885-10-26"^^xsd:date; + base:work\#DateStart_Min "1885-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14902; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/5192; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14906 a base:work; + base:work\#DateEnd_Max "1885-11-04"^^xsd:date; + base:work\#DateEnd_Min "1885-11-04"^^xsd:date; + base:work\#DateStart_Max "1885-11-02"^^xsd:date; + base:work\#DateStart_Min "1885-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14906; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/5272; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1491 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1491; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/14910 a base:work; + base:work\#DateEnd_Max "1885-11-08"^^xsd:date; + base:work\#DateEnd_Min "1885-11-08"^^xsd:date; + base:work\#DateStart_Max "1885-11-08"^^xsd:date; + base:work\#DateStart_Min "1885-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14910; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14914 a base:work; + base:work\#DateEnd_Max "1885-11-07"^^xsd:date; + base:work\#DateEnd_Min "1885-11-07"^^xsd:date; + base:work\#DateStart_Max "1885-11-06"^^xsd:date; + base:work\#DateStart_Min "1885-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14914; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14918 a base:work; + base:work\#DateEnd_Max "1885-11-11"^^xsd:date; + base:work\#DateEnd_Min "1885-11-11"^^xsd:date; + base:work\#DateStart_Max "1885-11-09"^^xsd:date; + base:work\#DateStart_Min "1885-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14918; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14922 a base:work; + base:work\#DateEnd_Max "1885-11-14"^^xsd:date; + base:work\#DateEnd_Min "1885-11-14"^^xsd:date; + base:work\#DateStart_Max "1885-11-12"^^xsd:date; + base:work\#DateStart_Min "1885-11-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14922; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/5112; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14926 a base:work; + base:work\#DateEnd_Max "1885-11-18"^^xsd:date; + base:work\#DateEnd_Min "1885-11-18"^^xsd:date; + base:work\#DateStart_Max "1885-11-16"^^xsd:date; + base:work\#DateStart_Min "1885-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14926; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/4680; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14930 a base:work; + base:work\#DateEnd_Max "1885-11-19"^^xsd:date; + base:work\#DateEnd_Min "1885-11-19"^^xsd:date; + base:work\#DateStart_Max "1885-11-19"^^xsd:date; + base:work\#DateStart_Min "1885-11-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14930; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Rockf-00; + base:work\#ref-IDOrganisation base:organisation\/5104; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14934 a base:work; + base:work\#DateEnd_Max "1885-11-20"^^xsd:date; + base:work\#DateEnd_Min "1885-11-20"^^xsd:date; + base:work\#DateStart_Max "1885-11-20"^^xsd:date; + base:work\#DateStart_Min "1885-11-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14934; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/5316; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14938 a base:work; + base:work\#DateEnd_Max "1885-11-21"^^xsd:date; + base:work\#DateEnd_Min "1885-11-21"^^xsd:date; + base:work\#DateStart_Max "1885-11-21"^^xsd:date; + base:work\#DateStart_Min "1885-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14938; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/4976; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1494 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1494; + base:work\#Profession base:Profession-Singer; + base:work\#comment "her husband was director there"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/14942 a base:work; + base:work\#DateEnd_Max "1885-11-28"^^xsd:date; + base:work\#DateEnd_Min "1885-11-28"^^xsd:date; + base:work\#DateStart_Max "1885-11-23"^^xsd:date; + base:work\#DateStart_Min "1885-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14942; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4992; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14946 a base:work; + base:work\#DateEnd_Max "1885-12-05"^^xsd:date; + base:work\#DateEnd_Min "1885-12-05"^^xsd:date; + base:work\#DateStart_Max "1885-11-30"^^xsd:date; + base:work\#DateStart_Min "1885-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14946; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4988; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14950 a base:work; + base:work\#DateEnd_Max "1885-12-09"^^xsd:date; + base:work\#DateEnd_Min "1885-12-09"^^xsd:date; + base:work\#DateStart_Max "1885-12-07"^^xsd:date; + base:work\#DateStart_Min "1885-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14950; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/4996; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14954 a base:work; + base:work\#DateEnd_Max "1885-12-12"^^xsd:date; + base:work\#DateEnd_Min "1885-12-12"^^xsd:date; + base:work\#DateStart_Max "1885-12-10"^^xsd:date; + base:work\#DateStart_Min "1885-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14954; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14958 a base:work; + base:work\#DateEnd_Max "1885-12-19"^^xsd:date; + base:work\#DateEnd_Min "1885-12-19"^^xsd:date; + base:work\#DateStart_Max "1885-12-14"^^xsd:date; + base:work\#DateStart_Min "1885-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14958; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/5324; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1496 a base:work; + base:work\#DateEnd_Fuzzy "1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1496; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/14962 a base:work; + base:work\#DateEnd_Max "1885-12-25"^^xsd:date; + base:work\#DateEnd_Min "1885-12-25"^^xsd:date; + base:work\#DateStart_Max "1885-12-25"^^xsd:date; + base:work\#DateStart_Min "1885-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14962; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5256; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14966 a base:work; + base:work\#DateEnd_Max "1886-01-30"^^xsd:date; + base:work\#DateEnd_Min "1886-01-30"^^xsd:date; + base:work\#DateStart_Max "1886-01-04"^^xsd:date; + base:work\#DateStart_Min "1886-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14966; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/178; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1497 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1497; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/442; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/14970 a base:work; + base:work\#DateEnd_Max "1886-02-13"^^xsd:date; + base:work\#DateEnd_Min "1886-02-13"^^xsd:date; + base:work\#DateStart_Max "1886-02-01"^^xsd:date; + base:work\#DateStart_Min "1886-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5164; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14974 a base:work; + base:work\#DateEnd_Max "1886-02-20"^^xsd:date; + base:work\#DateEnd_Min "1886-02-20"^^xsd:date; + base:work\#DateStart_Max "1886-02-15"^^xsd:date; + base:work\#DateStart_Min "1886-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14974; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/178; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14978 a base:work; + base:work\#DateEnd_Max "1886-02-27"^^xsd:date; + base:work\#DateEnd_Min "1886-02-27"^^xsd:date; + base:work\#DateStart_Max "1886-02-22"^^xsd:date; + base:work\#DateStart_Min "1886-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14978; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/5328; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14982 a base:work; + base:work\#DateEnd_Max "1886-03-13"^^xsd:date; + base:work\#DateEnd_Min "1886-03-13"^^xsd:date; + base:work\#DateStart_Max "1886-03-01"^^xsd:date; + base:work\#DateStart_Min "1886-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14982; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5088; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14986 a base:work; + base:work\#DateEnd_Max "1886-03-17"^^xsd:date; + base:work\#DateEnd_Min "1886-03-17"^^xsd:date; + base:work\#DateStart_Max "1886-03-15"^^xsd:date; + base:work\#DateStart_Min "1886-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14986; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14990 a base:work; + base:work\#DateEnd_Max "1886-03-18"^^xsd:date; + base:work\#DateEnd_Min "1886-03-18"^^xsd:date; + base:work\#DateStart_Max "1886-03-18"^^xsd:date; + base:work\#DateStart_Min "1886-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14990; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDOrganisation base:organisation\/5332; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14994 a base:work; + base:work\#DateEnd_Max "1886-03-20"^^xsd:date; + base:work\#DateEnd_Min "1886-03-20"^^xsd:date; + base:work\#DateStart_Max "1886-03-20"^^xsd:date; + base:work\#DateStart_Min "1886-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14994; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/14998 a base:work; + base:work\#DateEnd_Max "1886-03-22"^^xsd:date; + base:work\#DateEnd_Min "1886-03-22"^^xsd:date; + base:work\#DateStart_Max "1886-03-22"^^xsd:date; + base:work\#DateStart_Min "1886-03-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 14998; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brockt-00; + base:work\#ref-IDOrganisation base:organisation\/5336; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/150 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Max "1878-10-15"^^xsd:date; + base:work\#DateStart_Min "1878-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 150; + base:work\#Profession base:Profession-Singer; + base:work\#comment "debut in Il Trovatore under the name Tini Rössler"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/115; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/1500 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1500; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/15002 a base:work; + base:work\#DateEnd_Max "1886-03-23"^^xsd:date; + base:work\#DateEnd_Min "1886-03-23"^^xsd:date; + base:work\#DateStart_Max "1886-03-23"^^xsd:date; + base:work\#DateStart_Min "1886-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15002; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Haver-00; + base:work\#ref-IDOrganisation base:organisation\/5340; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15006 a base:work; + base:work\#DateEnd_Max "1886-03-24"^^xsd:date; + base:work\#DateEnd_Min "1886-03-24"^^xsd:date; + base:work\#DateStart_Max "1886-03-24"^^xsd:date; + base:work\#DateStart_Min "1886-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15006; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burl-00; + base:work\#ref-IDOrganisation base:organisation\/5525; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15010 a base:work; + base:work\#DateEnd_Max "1886-03-27"^^xsd:date; + base:work\#DateEnd_Min "1886-03-27"^^xsd:date; + base:work\#DateStart_Max "1886-03-25"^^xsd:date; + base:work\#DateStart_Min "1886-03-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15010; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15014 a base:work; + base:work\#DateEnd_Max "1886-03-29"^^xsd:date; + base:work\#DateEnd_Min "1886-03-29"^^xsd:date; + base:work\#DateStart_Max "1886-03-29"^^xsd:date; + base:work\#DateStart_Min "1886-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15014; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15022 a base:work; + base:work\#DateEnd_Max "1886-03-30"^^xsd:date; + base:work\#DateEnd_Min "1886-03-30"^^xsd:date; + base:work\#DateStart_Max "1886-03-30"^^xsd:date; + base:work\#DateStart_Min "1886-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15022; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15026 a base:work; + base:work\#DateEnd_Max "1886-03-31"^^xsd:date; + base:work\#DateEnd_Min "1886-03-31"^^xsd:date; + base:work\#DateStart_Max "1886-03-31"^^xsd:date; + base:work\#DateStart_Min "1886-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15026; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/4692; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1503 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1503; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/3130; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/15030 a base:work; + base:work\#DateEnd_Max "1886-04-03"^^xsd:date; + base:work\#DateEnd_Min "1886-04-03"^^xsd:date; + base:work\#DateStart_Max "1886-04-01"^^xsd:date; + base:work\#DateStart_Min "1886-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15030; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15034 a base:work; + base:work\#DateEnd_Max "1886-04-07"^^xsd:date; + base:work\#DateEnd_Min "1886-04-07"^^xsd:date; + base:work\#DateStart_Max "1886-04-05"^^xsd:date; + base:work\#DateStart_Min "1886-04-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15034; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15038 a base:work; + base:work\#DateEnd_Max "1886-04-10"^^xsd:date; + base:work\#DateEnd_Min "1886-04-10"^^xsd:date; + base:work\#DateStart_Max "1886-04-08"^^xsd:date; + base:work\#DateStart_Min "1886-04-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15038; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15042 a base:work; + base:work\#DateEnd_Max "1886-04-12"^^xsd:date; + base:work\#DateEnd_Min "1886-04-12"^^xsd:date; + base:work\#DateStart_Max "1886-04-12"^^xsd:date; + base:work\#DateStart_Min "1886-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15042; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bradf-00; + base:work\#ref-IDOrganisation base:organisation\/5729; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15046 a base:work; + base:work\#DateEnd_Max "1886-04-13"^^xsd:date; + base:work\#DateEnd_Min "1886-04-13"^^xsd:date; + base:work\#DateStart_Max "1886-04-13"^^xsd:date; + base:work\#DateStart_Min "1886-04-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15046; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-WarPens-00; + base:work\#ref-IDOrganisation base:organisation\/5549; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15050 a base:work; + base:work\#DateEnd_Max "1886-04-14"^^xsd:date; + base:work\#DateEnd_Min "1886-04-14"^^xsd:date; + base:work\#DateStart_Max "1886-04-14"^^xsd:date; + base:work\#DateStart_Min "1886-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15050; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-OilC-00; + base:work\#ref-IDOrganisation base:organisation\/5645; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15051 a base:work; + base:work\#DateEnd_Max "1886-04-24"^^xsd:date; + base:work\#DateEnd_Min "1886-04-24"^^xsd:date; + base:work\#DateStart_Max "1886-04-19"^^xsd:date; + base:work\#DateStart_Min "1886-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15051; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15054 a base:work; + base:work\#DateEnd_Max "1886-04-26"^^xsd:date; + base:work\#DateEnd_Min "1886-04-26"^^xsd:date; + base:work\#DateStart_Max "1886-04-26"^^xsd:date; + base:work\#DateStart_Min "1886-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15054; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wilm-01; + base:work\#ref-IDOrganisation base:organisation\/5361; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15058 a base:work; + base:work\#DateEnd_Max "1886-04-27"^^xsd:date; + base:work\#DateEnd_Min "1886-04-27"^^xsd:date; + base:work\#DateStart_Max "1886-04-27"^^xsd:date; + base:work\#DateStart_Min "1886-04-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15058; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Trent-00; + base:work\#ref-IDOrganisation base:organisation\/5701; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1506 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1506; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/442; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/15062 a base:work; + base:work\#DateEnd_Max "1886-04-28"^^xsd:date; + base:work\#DateEnd_Min "1886-04-28"^^xsd:date; + base:work\#DateStart_Max "1886-04-28"^^xsd:date; + base:work\#DateStart_Min "1886-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15062; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDOrganisation base:organisation\/5661; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15066 a base:work; + base:work\#DateEnd_Max "1886-04-29"^^xsd:date; + base:work\#DateEnd_Min "1886-04-29"^^xsd:date; + base:work\#DateStart_Max "1886-04-29"^^xsd:date; + base:work\#DateStart_Min "1886-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15066; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Plain-00; + base:work\#ref-IDOrganisation base:organisation\/5689; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15070 a base:work; + base:work\#DateEnd_Max "1886-05-01"^^xsd:date; + base:work\#DateEnd_Min "1886-05-01"^^xsd:date; + base:work\#DateStart_Max "1886-04-30"^^xsd:date; + base:work\#DateStart_Min "1886-04-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15070; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/5601; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15074 a base:work; + base:work\#DateEnd_Max "1886-05-04"^^xsd:date; + base:work\#DateEnd_Min "1886-05-04"^^xsd:date; + base:work\#DateStart_Max "1886-05-04"^^xsd:date; + base:work\#DateStart_Min "1886-05-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15074; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Merid-00; + base:work\#ref-IDOrganisation base:organisation\/5252; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15078 a base:work; + base:work\#DateEnd_Max "1886-05-05"^^xsd:date; + base:work\#DateEnd_Min "1886-05-05"^^xsd:date; + base:work\#DateStart_Max "1886-05-05"^^xsd:date; + base:work\#DateStart_Min "1886-05-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15078; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15082 a base:work; + base:work\#DateEnd_Max "1886-05-06"^^xsd:date; + base:work\#DateEnd_Min "1886-05-06"^^xsd:date; + base:work\#DateStart_Max "1886-05-06"^^xsd:date; + base:work\#DateStart_Min "1886-05-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15082; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bridgep-00; + base:work\#ref-IDOrganisation base:organisation\/5517; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15086 a base:work; + base:work\#DateEnd_Max "1886-05-07"^^xsd:date; + base:work\#DateEnd_Min "1886-05-07"^^xsd:date; + base:work\#DateStart_Max "1886-05-07"^^xsd:date; + base:work\#DateStart_Min "1886-05-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15086; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Newp-00; + base:work\#ref-IDOrganisation base:organisation\/5605; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1509 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1509; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/MarMat-00 . + +base:work\/15090 a base:work; + base:work\#DateEnd_Max "1886-07-31"^^xsd:date; + base:work\#DateEnd_Min "1886-07-31"^^xsd:date; + base:work\#DateStart_Max "1886-07-12"^^xsd:date; + base:work\#DateStart_Min "1886-07-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15090; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15094 a base:work; + base:work\#DateEnd_Max "1886-08-07"^^xsd:date; + base:work\#DateEnd_Min "1886-08-07"^^xsd:date; + base:work\#DateStart_Max "1886-08-02"^^xsd:date; + base:work\#DateStart_Min "1886-08-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15094; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/5485; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15098 a base:work; + base:work\#DateEnd_Max "1889-07-22"^^xsd:date; + base:work\#DateEnd_Min "1889-07-22"^^xsd:date; + base:work\#DateStart_Max "1889-07-22"^^xsd:date; + base:work\#DateStart_Min "1889-07-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15098; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kearn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15102 a base:work; + base:work\#DateEnd_Max "1889-12-07"^^xsd:date; + base:work\#DateEnd_Min "1889-12-07"^^xsd:date; + base:work\#DateStart_Max "1889-10-14"^^xsd:date; + base:work\#DateStart_Min "1889-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15102; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/147; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15106 a base:work; + base:work\#DateEnd_Max "1886-04-17"^^xsd:date; + base:work\#DateEnd_Min "1886-04-17"^^xsd:date; + base:work\#DateStart_Max "1886-04-15"^^xsd:date; + base:work\#DateStart_Min "1886-04-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15106; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDOrganisation base:organisation\/4948; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15110 a base:work; + base:work\#DateEnd_Max "1886-08-21"^^xsd:date; + base:work\#DateEnd_Min "1886-08-21"^^xsd:date; + base:work\#DateStart_Max "1886-08-16"^^xsd:date; + base:work\#DateStart_Min "1886-08-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15110; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/5044; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15114 a base:work; + base:work\#DateEnd_Max "1886-08-25"^^xsd:date; + base:work\#DateEnd_Min "1886-08-25"^^xsd:date; + base:work\#DateStart_Max "1886-08-23"^^xsd:date; + base:work\#DateStart_Min "1886-08-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15114; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Leadv-00; + base:work\#ref-IDOrganisation base:organisation\/5697; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15118 a base:work; + base:work\#DateEnd_Max "1886-08-26"^^xsd:date; + base:work\#DateEnd_Min "1886-08-26"^^xsd:date; + base:work\#DateStart_Max "1886-08-26"^^xsd:date; + base:work\#DateStart_Min "1886-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15118; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDOrganisation base:organisation\/5493; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15122 a base:work; + base:work\#DateEnd_Max "1886-08-28"^^xsd:date; + base:work\#DateEnd_Min "1886-08-28"^^xsd:date; + base:work\#DateStart_Max "1886-08-28"^^xsd:date; + base:work\#DateStart_Min "1886-08-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15122; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDOrganisation base:organisation\/5465; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15126 a base:work; + base:work\#DateEnd_Max "1886-08-31"^^xsd:date; + base:work\#DateEnd_Min "1886-08-31"^^xsd:date; + base:work\#DateStart_Max "1886-08-30"^^xsd:date; + base:work\#DateStart_Min "1886-08-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15126; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Greel-00; + base:work\#ref-IDOrganisation base:organisation\/5501; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15130 a base:work; + base:work\#DateEnd_Max "1886-12-18"^^xsd:date; + base:work\#DateEnd_Min "1886-12-18"^^xsd:date; + base:work\#DateStart_Max "1886-10-25"^^xsd:date; + base:work\#DateStart_Min "1886-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15130; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1275; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15134 a base:work; + base:work\#DateEnd_Max "1886-12-25"^^xsd:date; + base:work\#DateEnd_Min "1886-12-25"^^xsd:date; + base:work\#DateStart_Max "1886-12-25"^^xsd:date; + base:work\#DateStart_Min "1886-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15134; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15138 a base:work; + base:work\#DateEnd_Max "1886-12-27"^^xsd:date; + base:work\#DateEnd_Min "1886-12-27"^^xsd:date; + base:work\#DateStart_Max "1886-12-27"^^xsd:date; + base:work\#DateStart_Min "1886-12-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15138; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5521; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15142 a base:work; + base:work\#DateEnd_Max "1887-01-25"^^xsd:date; + base:work\#DateEnd_Min "1887-01-25"^^xsd:date; + base:work\#DateStart_Max "1887-01-25"^^xsd:date; + base:work\#DateStart_Min "1887-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15142; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15146 a base:work; + base:work\#DateEnd_Max "1887-01-26"^^xsd:date; + base:work\#DateEnd_Min "1887-01-26"^^xsd:date; + base:work\#DateStart_Max "1887-01-26"^^xsd:date; + base:work\#DateStart_Min "1887-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15146; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15150 a base:work; + base:work\#DateEnd_Max "1887-01-27"^^xsd:date; + base:work\#DateEnd_Min "1887-01-27"^^xsd:date; + base:work\#DateStart_Max "1887-01-27"^^xsd:date; + base:work\#DateStart_Min "1887-01-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15150; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Plain-00; + base:work\#ref-IDOrganisation base:organisation\/5673; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15154 a base:work; + base:work\#DateEnd_Max "1887-01-28"^^xsd:date; + base:work\#DateEnd_Min "1887-01-28"^^xsd:date; + base:work\#DateStart_Max "1887-01-28"^^xsd:date; + base:work\#DateStart_Min "1887-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15154; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDOrganisation base:organisation\/5665; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15158 a base:work; + base:work\#DateEnd_Max "1887-01-29"^^xsd:date; + base:work\#DateEnd_Min "1887-01-29"^^xsd:date; + base:work\#DateStart_Max "1887-01-29"^^xsd:date; + base:work\#DateStart_Min "1887-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15158; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kings-00; + base:work\#ref-IDOrganisation base:organisation\/5545; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15162 a base:work; + base:work\#DateEnd_Max "1887-02-12"^^xsd:date; + base:work\#DateEnd_Min "1887-02-12"^^xsd:date; + base:work\#DateStart_Max "1887-01-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15162; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15166 a base:work; + base:work\#DateEnd_Max "1887-02-19"^^xsd:date; + base:work\#DateEnd_Min "1887-02-19"^^xsd:date; + base:work\#DateStart_Max "1887-02-14"^^xsd:date; + base:work\#DateStart_Min "1887-02-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15166; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/5597; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15170 a base:work; + base:work\#DateEnd_Max "1887-02-26"^^xsd:date; + base:work\#DateEnd_Min "1887-02-26"^^xsd:date; + base:work\#DateStart_Max "1887-02-21"^^xsd:date; + base:work\#DateStart_Min "1887-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15170; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/5328; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15174 a base:work; + base:work\#DateEnd_Max "1887-04-19"^^xsd:date; + base:work\#DateEnd_Min "1887-04-19"^^xsd:date; + base:work\#DateStart_Max "1887-04-19"^^xsd:date; + base:work\#DateStart_Min "1887-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15174; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Janes-00; + base:work\#ref-IDOrganisation base:organisation\/5585; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15178 a base:work; + base:work\#DateEnd_Max "1887-04-23"^^xsd:date; + base:work\#DateEnd_Min "1887-04-23"^^xsd:date; + base:work\#DateStart_Max "1887-04-21"^^xsd:date; + base:work\#DateStart_Min "1887-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15178; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/4680; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15182 a base:work; + base:work\#DateEnd_Max "1887-05-28"^^xsd:date; + base:work\#DateEnd_Min "1887-05-28"^^xsd:date; + base:work\#DateStart_Max "1887-05-02"^^xsd:date; + base:work\#DateStart_Min "1887-05-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15182; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15186 a base:work; + base:work\#DateEnd_Max "1887-06-04"^^xsd:date; + base:work\#DateEnd_Min "1887-06-04"^^xsd:date; + base:work\#DateStart_Max "1887-06-02"^^xsd:date; + base:work\#DateStart_Min "1887-06-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15186; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/5112; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15190 a base:work; + base:work\#DateEnd_Max "1887-06-17"^^xsd:date; + base:work\#DateEnd_Min "1887-06-17"^^xsd:date; + base:work\#DateStart_Max "1887-06-17"^^xsd:date; + base:work\#DateStart_Min "1887-06-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15190; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5617; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15194 a base:work; + base:work\#DateEnd_Max "1887-09-30"^^xsd:date; + base:work\#DateEnd_Min "1887-09-30"^^xsd:date; + base:work\#DateStart_Max "1887-09-30"^^xsd:date; + base:work\#DateStart_Min "1887-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15194; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/152 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1882 and 1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 152; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Carmen and Le Prophete"; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/15202 a base:work; + base:work\#DateEnd_Max "1887-10-12"^^xsd:date; + base:work\#DateEnd_Min "1887-10-12"^^xsd:date; + base:work\#DateStart_Max "1887-10-11"^^xsd:date; + base:work\#DateStart_Min "1887-10-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15202; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15206 a base:work; + base:work\#DateEnd_Max "1887-10-14"^^xsd:date; + base:work\#DateEnd_Min "1887-10-14"^^xsd:date; + base:work\#DateStart_Max "1887-10-14"^^xsd:date; + base:work\#DateStart_Min "1887-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15206; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/5268; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15210 a base:work; + base:work\#DateEnd_Max "1887-10-17"^^xsd:date; + base:work\#DateEnd_Min "1887-10-17"^^xsd:date; + base:work\#DateStart_Max "1887-10-17"^^xsd:date; + base:work\#DateStart_Min "1887-10-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15210; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDOrganisation base:organisation\/5457; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15214 a base:work; + base:work\#DateEnd_Max "1887-10-19"^^xsd:date; + base:work\#DateEnd_Min "1887-10-19"^^xsd:date; + base:work\#DateStart_Max "1887-10-19"^^xsd:date; + base:work\#DateStart_Min "1887-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15214; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDOrganisation base:organisation\/5357; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15218 a base:work; + base:work\#DateEnd_Max "1887-10-26"^^xsd:date; + base:work\#DateEnd_Min "1887-10-26"^^xsd:date; + base:work\#DateStart_Max "1887-10-24"^^xsd:date; + base:work\#DateStart_Min "1887-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15218; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15222 a base:work; + base:work\#DateEnd_Max "1887-11-12"^^xsd:date; + base:work\#DateEnd_Min "1887-11-12"^^xsd:date; + base:work\#DateStart_Max "1887-10-31"^^xsd:date; + base:work\#DateStart_Min "1887-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15222; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15226 a base:work; + base:work\#DateEnd_Max "1887-11-21"^^xsd:date; + base:work\#DateEnd_Min "1887-11-21"^^xsd:date; + base:work\#DateStart_Max "1887-11-21"^^xsd:date; + base:work\#DateStart_Min "1887-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15226; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDOrganisation base:organisation\/5429; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15230 a base:work; + base:work\#DateEnd_Max "1887-11-23"^^xsd:date; + base:work\#DateEnd_Min "1887-11-23"^^xsd:date; + base:work\#DateStart_Max "1887-11-23"^^xsd:date; + base:work\#DateStart_Min "1887-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15230; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/5196; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15234 a base:work; + base:work\#DateEnd_Max "1887-11-25"^^xsd:date; + base:work\#DateEnd_Min "1887-11-25"^^xsd:date; + base:work\#DateStart_Max "1887-11-25"^^xsd:date; + base:work\#DateStart_Min "1887-11-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15234; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Crawdf-00; + base:work\#ref-IDOrganisation base:organisation\/5581; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15238 a base:work; + base:work\#DateEnd_Max "1887-11-29"^^xsd:date; + base:work\#DateEnd_Min "1887-11-29"^^xsd:date; + base:work\#DateStart_Max "1887-11-29"^^xsd:date; + base:work\#DateStart_Min "1887-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15238; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Evansv-00; + base:work\#ref-IDOrganisation base:organisation\/5204; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15242 a base:work; + base:work\#DateEnd_Max "1887-12-03"^^xsd:date; + base:work\#DateEnd_Min "1887-12-03"^^xsd:date; + base:work\#DateStart_Max "1887-12-01"^^xsd:date; + base:work\#DateStart_Min "1887-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15242; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDOrganisation base:organisation\/5717; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15246 a base:work; + base:work\#DateEnd_Max "1887-12-13"^^xsd:date; + base:work\#DateEnd_Min "1887-12-13"^^xsd:date; + base:work\#DateStart_Max "1887-12-13"^^xsd:date; + base:work\#DateStart_Min "1887-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15246; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Mobile-00; + base:work\#ref-IDOrganisation base:organisation\/5577; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15250 a base:work; + base:work\#DateEnd_Max "1887-12-14"^^xsd:date; + base:work\#DateEnd_Min "1887-12-14"^^xsd:date; + base:work\#DateStart_Max "1887-12-14"^^xsd:date; + base:work\#DateStart_Min "1887-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15250; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Chatt-00; + base:work\#ref-IDOrganisation base:organisation\/5744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15254 a base:work; + base:work\#DateEnd_Max "1887-12-29"^^xsd:date; + base:work\#DateEnd_Min "1887-12-29"^^xsd:date; + base:work\#DateStart_Max "1887-12-26"^^xsd:date; + base:work\#DateStart_Min "1887-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15254; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4992; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15258 a base:work; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-12-31"^^xsd:date; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15258; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Musk-00; + base:work\#ref-IDOrganisation base:organisation\/5056; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15262 a base:work; + base:work\#DateEnd_Max "1888-01-03"^^xsd:date; + base:work\#DateEnd_Min "1888-01-03"^^xsd:date; + base:work\#DateStart_Max "1888-01-03"^^xsd:date; + base:work\#DateStart_Min "1888-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15262; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15263 a base:work; + base:work\#DateEnd_Max "1888-01-07"^^xsd:date; + base:work\#DateEnd_Min "1888-01-07"^^xsd:date; + base:work\#DateStart_Max "1888-01-05"^^xsd:date; + base:work\#DateStart_Min "1888-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15263; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15266 a base:work; + base:work\#DateEnd_Max "1888-01-09"^^xsd:date; + base:work\#DateEnd_Min "1888-01-09"^^xsd:date; + base:work\#DateStart_Max "1888-01-09"^^xsd:date; + base:work\#DateStart_Min "1888-01-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15266; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/5613; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15270 a base:work; + base:work\#DateEnd_Max "1888-01-11"^^xsd:date; + base:work\#DateEnd_Min "1888-01-11"^^xsd:date; + base:work\#DateStart_Max "1888-01-11"^^xsd:date; + base:work\#DateStart_Min "1888-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDOrganisation base:organisation\/5060; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15274 a base:work; + base:work\#DateEnd_Max "1888-01-16"^^xsd:date; + base:work\#DateEnd_Min "1888-01-16"^^xsd:date; + base:work\#DateStart_Max "1888-01-16"^^xsd:date; + base:work\#DateStart_Min "1888-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15274; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Erie-00; + base:work\#ref-IDOrganisation base:organisation\/5024; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15278 a base:work; + base:work\#DateEnd_Max "1888-01-21"^^xsd:date; + base:work\#DateEnd_Min "1888-01-21"^^xsd:date; + base:work\#DateStart_Max "1888-01-19"^^xsd:date; + base:work\#DateStart_Min "1888-01-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15278; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15282 a base:work; + base:work\#DateEnd_Max "1888-01-27"^^xsd:date; + base:work\#DateEnd_Min "1888-01-27"^^xsd:date; + base:work\#DateStart_Max "1888-01-26"^^xsd:date; + base:work\#DateStart_Min "1888-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15282; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/5080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15286 a base:work; + base:work\#DateEnd_Max "1888-02-13"^^xsd:date; + base:work\#DateEnd_Min "1888-02-13"^^xsd:date; + base:work\#DateStart_Max "1888-02-13"^^xsd:date; + base:work\#DateStart_Min "1888-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15286; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDOrganisation base:organisation\/5533; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15290 a base:work; + base:work\#DateEnd_Max "1888-02-23"^^xsd:date; + base:work\#DateEnd_Min "1888-02-23"^^xsd:date; + base:work\#DateStart_Max "1888-02-23"^^xsd:date; + base:work\#DateStart_Min "1888-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15290; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/5685; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15294 a base:work; + base:work\#DateEnd_Max "1888-02-27"^^xsd:date; + base:work\#DateEnd_Min "1888-02-27"^^xsd:date; + base:work\#DateStart_Max "1888-02-27"^^xsd:date; + base:work\#DateStart_Min "1888-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15294; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kings-00; + base:work\#ref-IDOrganisation base:organisation\/5545; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15298 a base:work; + base:work\#DateEnd_Max "1888-02-28"^^xsd:date; + base:work\#DateEnd_Min "1888-02-28"^^xsd:date; + base:work\#DateStart_Max "1888-02-28"^^xsd:date; + base:work\#DateStart_Min "1888-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15298; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5160; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/153 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 153; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/15302 a base:work; + base:work\#DateEnd_Max "1888-03-03"^^xsd:date; + base:work\#DateEnd_Min "1888-03-03"^^xsd:date; + base:work\#DateStart_Max "1888-03-02"^^xsd:date; + base:work\#DateStart_Min "1888-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15302; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15306 a base:work; + base:work\#DateEnd_Max "1888-03-07"^^xsd:date; + base:work\#DateEnd_Min "1888-03-07"^^xsd:date; + base:work\#DateStart_Max "1888-03-07"^^xsd:date; + base:work\#DateStart_Min "1888-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15306; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/5300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15310 a base:work; + base:work\#DateEnd_Max "1888-03-09"^^xsd:date; + base:work\#DateEnd_Min "1888-03-09"^^xsd:date; + base:work\#DateStart_Max "1888-03-09"^^xsd:date; + base:work\#DateStart_Min "1888-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-East-00; + base:work\#ref-IDOrganisation base:organisation\/5296; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15314 a base:work; + base:work\#DateEnd_Max "1888-03-13"^^xsd:date; + base:work\#DateEnd_Min "1888-03-13"^^xsd:date; + base:work\#DateStart_Max "1888-03-13"^^xsd:date; + base:work\#DateStart_Min "1888-03-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15314; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Lanc-00; + base:work\#ref-IDOrganisation base:organisation\/4920; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15318 a base:work; + base:work\#DateEnd_Max "1888-03-15"^^xsd:date; + base:work\#DateEnd_Min "1888-03-15"^^xsd:date; + base:work\#DateStart_Max "1888-03-15"^^xsd:date; + base:work\#DateStart_Min "1888-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15318; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/5349; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15322 a base:work; + base:work\#DateEnd_Max "1888-04-07"^^xsd:date; + base:work\#DateEnd_Min "1888-04-07"^^xsd:date; + base:work\#DateStart_Max "1888-03-26"^^xsd:date; + base:work\#DateStart_Min "1888-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15322; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5521; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15326 a base:work; + base:work\#DateEnd_Max "1888-04-21"^^xsd:date; + base:work\#DateEnd_Min "1888-04-21"^^xsd:date; + base:work\#DateStart_Max "1888-04-09"^^xsd:date; + base:work\#DateStart_Min "1888-04-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15326; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/5328; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15330 a base:work; + base:work\#DateEnd_Max "1888-03-17"^^xsd:date; + base:work\#DateEnd_Min "1888-03-17"^^xsd:date; + base:work\#DateStart_Max "1888-03-16"^^xsd:date; + base:work\#DateStart_Min "1888-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15330; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/4956; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15334 a base:work; + base:work\#DateEnd_Max "1889-06-13"^^xsd:date; + base:work\#DateEnd_Min "1889-06-13"^^xsd:date; + base:work\#DateStart_Max "1889-06-12"^^xsd:date; + base:work\#DateStart_Min "1889-06-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15334; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tac-00; + base:work\#ref-IDOrganisation base:organisation\/5369; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15338 a base:work; + base:work\#DateEnd_Max "1889-06-18"^^xsd:date; + base:work\#DateEnd_Min "1889-06-18"^^xsd:date; + base:work\#DateStart_Max "1889-06-17"^^xsd:date; + base:work\#DateStart_Min "1889-06-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15338; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Vict-00; + base:work\#ref-IDOrganisation base:organisation\/5752; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15342 a base:work; + base:work\#DateEnd_Max "1889-06-28"^^xsd:date; + base:work\#DateEnd_Min "1889-06-28"^^xsd:date; + base:work\#DateStart_Max "1889-06-24"^^xsd:date; + base:work\#DateStart_Min "1889-06-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15342; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Butte-00; + base:work\#ref-IDOrganisation base:organisation\/1290; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15346 a base:work; + base:work\#DateEnd_Max "1889-07-04"^^xsd:date; + base:work\#DateEnd_Min "1889-07-04"^^xsd:date; + base:work\#DateStart_Max "1889-07-01"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15346; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDOrganisation base:organisation\/5721; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15350 a base:work; + base:work\#DateEnd_Max "1889-07-13"^^xsd:date; + base:work\#DateEnd_Min "1889-07-13"^^xsd:date; + base:work\#DateStart_Max "1889-07-08"^^xsd:date; + base:work\#DateStart_Min "1889-07-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15350; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/5044; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15354 a base:work; + base:work\#DateEnd_Max "1889-07-23"^^xsd:date; + base:work\#DateEnd_Min "1889-07-23"^^xsd:date; + base:work\#DateStart_Max "1889-07-23"^^xsd:date; + base:work\#DateStart_Min "1889-07-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15354; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hast-00; + base:work\#ref-IDOrganisation base:organisation\/5541; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15362 a base:work; + base:work\#DateEnd_Max "1887-03-05"^^xsd:date; + base:work\#DateEnd_Min "1887-03-05"^^xsd:date; + base:work\#DateStart_Max "1887-02-28"^^xsd:date; + base:work\#DateStart_Min "1887-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15362; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/5324; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15366 a base:work; + base:work\#DateEnd_Max "1887-03-12"^^xsd:date; + base:work\#DateEnd_Min "1887-03-12"^^xsd:date; + base:work\#DateStart_Max "1887-03-07"^^xsd:date; + base:work\#DateStart_Min "1887-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15366; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15370 a base:work; + base:work\#DateEnd_Max "1887-03-14"^^xsd:date; + base:work\#DateEnd_Min "1887-03-14"^^xsd:date; + base:work\#DateStart_Max "1887-03-14"^^xsd:date; + base:work\#DateStart_Min "1887-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15370; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15374 a base:work; + base:work\#DateEnd_Max "1887-03-15"^^xsd:date; + base:work\#DateEnd_Min "1887-03-15"^^xsd:date; + base:work\#DateStart_Max "1887-03-15"^^xsd:date; + base:work\#DateStart_Min "1887-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15374; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Anarb-00; + base:work\#ref-IDOrganisation base:organisation\/4904; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15378 a base:work; + base:work\#DateEnd_Max "1887-03-16"^^xsd:date; + base:work\#DateEnd_Min "1887-03-16"^^xsd:date; + base:work\#DateStart_Max "1887-03-16"^^xsd:date; + base:work\#DateStart_Min "1887-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15378; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-ESagi-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15382 a base:work; + base:work\#DateEnd_Max "1887-03-19"^^xsd:date; + base:work\#DateEnd_Min "1887-03-19"^^xsd:date; + base:work\#DateStart_Max "1887-03-17"^^xsd:date; + base:work\#DateStart_Min "1887-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15382; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15386 a base:work; + base:work\#DateEnd_Max "1887-03-23"^^xsd:date; + base:work\#DateEnd_Min "1887-03-23"^^xsd:date; + base:work\#DateStart_Max "1887-03-21"^^xsd:date; + base:work\#DateStart_Min "1887-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15386; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/4996; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15390 a base:work; + base:work\#DateEnd_Max "1887-03-28"^^xsd:date; + base:work\#DateEnd_Min "1887-03-28"^^xsd:date; + base:work\#DateStart_Max "1887-03-28"^^xsd:date; + base:work\#DateStart_Min "1887-03-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15390; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/5268; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15394 a base:work; + base:work\#DateEnd_Max "1887-03-29"^^xsd:date; + base:work\#DateEnd_Min "1887-03-29"^^xsd:date; + base:work\#DateStart_Max "1887-03-29"^^xsd:date; + base:work\#DateStart_Min "1887-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15394; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Atch-00; + base:work\#ref-IDOrganisation base:organisation\/5461; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15398 a base:work; + base:work\#DateEnd_Max "1887-03-30"^^xsd:date; + base:work\#DateEnd_Min "1887-03-30"^^xsd:date; + base:work\#DateStart_Max "1887-03-30"^^xsd:date; + base:work\#DateStart_Min "1887-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15398; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LeavK-00; + base:work\#ref-IDOrganisation base:organisation\/5481; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/154 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 154; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/15402 a base:work; + base:work\#DateEnd_Max "1887-04-02"^^xsd:date; + base:work\#DateEnd_Min "1887-04-02"^^xsd:date; + base:work\#DateStart_Max "1887-03-31"^^xsd:date; + base:work\#DateStart_Min "1887-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15402; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15406 a base:work; + base:work\#DateEnd_Max "1887-04-11"^^xsd:date; + base:work\#DateEnd_Min "1887-04-11"^^xsd:date; + base:work\#DateStart_Max "1887-04-11"^^xsd:date; + base:work\#DateStart_Min "1887-04-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15406; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/5040; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15410 a base:work; + base:work\#DateEnd_Max "1887-04-12"^^xsd:date; + base:work\#DateEnd_Min "1887-04-12"^^xsd:date; + base:work\#DateStart_Max "1887-04-12"^^xsd:date; + base:work\#DateStart_Min "1887-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15410; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/5196; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15414 a base:work; + base:work\#DateEnd_Max "1887-04-13"^^xsd:date; + base:work\#DateEnd_Min "1887-04-13"^^xsd:date; + base:work\#DateStart_Max "1887-04-13"^^xsd:date; + base:work\#DateStart_Min "1887-04-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDOrganisation base:organisation\/5200; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15418 a base:work; + base:work\#DateEnd_Max "1887-04-15"^^xsd:date; + base:work\#DateEnd_Min "1887-04-15"^^xsd:date; + base:work\#DateStart_Max "1887-04-01"^^xsd:date; + base:work\#DateStart_Min "1887-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15418; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15422 a base:work; + base:work\#DateEnd_Max "1887-04-16"^^xsd:date; + base:work\#DateEnd_Min "1887-04-16"^^xsd:date; + base:work\#DateStart_Max "1887-04-16"^^xsd:date; + base:work\#DateStart_Min "1887-04-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15422; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/5316; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15426 a base:work; + base:work\#DateEnd_Max "1887-04-18"^^xsd:date; + base:work\#DateEnd_Min "1887-04-18"^^xsd:date; + base:work\#DateStart_Max "1887-04-18"^^xsd:date; + base:work\#DateStart_Min "1887-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15426; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Rockf-00; + base:work\#ref-IDOrganisation base:organisation\/5104; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15430 a base:work; + base:work\#DateEnd_Max "1887-04-20"^^xsd:date; + base:work\#DateEnd_Min "1887-04-20"^^xsd:date; + base:work\#DateStart_Max "1887-04-20"^^xsd:date; + base:work\#DateStart_Min "1887-04-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-OshkW-00; + base:work\#ref-IDOrganisation base:organisation\/5100; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15434 a base:work; + base:work\#DateEnd_Max "1887-04-30"^^xsd:date; + base:work\#DateEnd_Min "1887-04-30"^^xsd:date; + base:work\#DateStart_Max "1887-04-25"^^xsd:date; + base:work\#DateStart_Min "1887-04-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15434; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15438 a base:work; + base:work\#DateEnd_Max "1887-06-01"^^xsd:date; + base:work\#DateEnd_Min "1887-06-01"^^xsd:date; + base:work\#DateStart_Max "1887-05-30"^^xsd:date; + base:work\#DateStart_Min "1887-05-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15438; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15442 a base:work; + base:work\#DateEnd_Max "1887-06-06"^^xsd:date; + base:work\#DateEnd_Min "1887-06-06"^^xsd:date; + base:work\#DateStart_Max "1887-06-06"^^xsd:date; + base:work\#DateStart_Min "1887-06-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15442; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wino-00; + base:work\#ref-IDOrganisation base:organisation\/5737; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15446 a base:work; + base:work\#DateEnd_Max "1887-06-18"^^xsd:date; + base:work\#DateEnd_Min "1887-06-18"^^xsd:date; + base:work\#DateStart_Max "1887-06-18"^^xsd:date; + base:work\#DateStart_Min "1887-06-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15446; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-FondL-00; + base:work\#ref-IDOrganisation base:organisation\/5421; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15450 a base:work; + base:work\#DateEnd_Max "1887-10-09"^^xsd:date; + base:work\#DateEnd_Min "1887-10-09"^^xsd:date; + base:work\#DateStart_Max "1887-10-03"^^xsd:date; + base:work\#DateStart_Min "1887-10-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15450; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/5044; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15454 a base:work; + base:work\#DateEnd_Max "1887-10-10"^^xsd:date; + base:work\#DateEnd_Min "1887-10-10"^^xsd:date; + base:work\#DateStart_Max "1887-10-10"^^xsd:date; + base:work\#DateStart_Min "1887-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15454; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LawrK-00; + base:work\#ref-IDOrganisation base:organisation\/5389; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15458 a base:work; + base:work\#DateEnd_Max "1887-10-13"^^xsd:date; + base:work\#DateEnd_Min "1887-10-13"^^xsd:date; + base:work\#DateStart_Max "1887-10-13"^^xsd:date; + base:work\#DateStart_Min "1887-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15458; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Atch-00; + base:work\#ref-IDOrganisation base:organisation\/5677; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15462 a base:work; + base:work\#DateEnd_Max "1887-10-15"^^xsd:date; + base:work\#DateEnd_Min "1887-10-15"^^xsd:date; + base:work\#DateStart_Max "1887-10-15"^^xsd:date; + base:work\#DateStart_Min "1887-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15462; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LeavK-00; + base:work\#ref-IDOrganisation base:organisation\/5481; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15466 a base:work; + base:work\#DateEnd_Max "1887-10-18"^^xsd:date; + base:work\#DateEnd_Min "1887-10-18"^^xsd:date; + base:work\#DateStart_Max "1887-10-18"^^xsd:date; + base:work\#DateStart_Min "1887-10-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15466; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CoBlu-00; + base:work\#ref-IDOrganisation base:organisation\/5433; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15470 a base:work; + base:work\#DateEnd_Max "1887-10-22"^^xsd:date; + base:work\#DateEnd_Min "1887-10-22"^^xsd:date; + base:work\#DateStart_Max "1887-10-20"^^xsd:date; + base:work\#DateStart_Min "1887-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15470; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15474 a base:work; + base:work\#DateEnd_Max "1887-10-29"^^xsd:date; + base:work\#DateEnd_Min "1887-10-29"^^xsd:date; + base:work\#DateStart_Max "1887-10-27"^^xsd:date; + base:work\#DateStart_Min "1887-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15474; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/5112; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15478 a base:work; + base:work\#DateEnd_Max "1887-11-19"^^xsd:date; + base:work\#DateEnd_Min "1887-11-19"^^xsd:date; + base:work\#DateStart_Max "1887-11-14"^^xsd:date; + base:work\#DateStart_Min "1887-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15478; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/5733; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15482 a base:work; + base:work\#DateEnd_Max "1887-11-22"^^xsd:date; + base:work\#DateEnd_Min "1887-11-22"^^xsd:date; + base:work\#DateStart_Max "1887-11-22"^^xsd:date; + base:work\#DateStart_Min "1887-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15482; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Keok-00; + base:work\#ref-IDOrganisation base:organisation\/5537; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15486 a base:work; + base:work\#DateEnd_Max "1887-11-24"^^xsd:date; + base:work\#DateEnd_Min "1887-11-24"^^xsd:date; + base:work\#DateStart_Max "1887-11-24"^^xsd:date; + base:work\#DateStart_Min "1887-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15486; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15490 a base:work; + base:work\#DateEnd_Max "1887-11-26"^^xsd:date; + base:work\#DateEnd_Min "1887-11-26"^^xsd:date; + base:work\#DateStart_Max "1887-11-26"^^xsd:date; + base:work\#DateStart_Min "1887-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15490; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/4976; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15494 a base:work; + base:work\#DateEnd_Max "1887-11-30"^^xsd:date; + base:work\#DateEnd_Min "1887-11-30"^^xsd:date; + base:work\#DateStart_Max "1887-11-30"^^xsd:date; + base:work\#DateStart_Min "1887-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15494; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Owens-00; + base:work\#ref-IDOrganisation base:organisation\/5509; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15498 a base:work; + base:work\#DateEnd_Max "1887-12-10"^^xsd:date; + base:work\#DateEnd_Min "1887-12-10"^^xsd:date; + base:work\#DateStart_Max "1887-12-05"^^xsd:date; + base:work\#DateStart_Min "1887-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15498; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/5216; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/155 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 155; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/15506 a base:work; + base:work\#DateEnd_Max "1887-12-17"^^xsd:date; + base:work\#DateEnd_Min "1887-12-17"^^xsd:date; + base:work\#DateStart_Max "1887-12-15"^^xsd:date; + base:work\#DateStart_Min "1887-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15506; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/5212; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15510 a base:work; + base:work\#DateEnd_Max "1887-12-30"^^xsd:date; + base:work\#DateEnd_Min "1887-12-30"^^xsd:date; + base:work\#DateStart_Max "1887-12-30"^^xsd:date; + base:work\#DateStart_Min "1887-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDOrganisation base:organisation\/5180; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15514 a base:work; + base:work\#DateEnd_Max "1888-01-02"^^xsd:date; + base:work\#DateEnd_Min "1888-01-02"^^xsd:date; + base:work\#DateStart_Max "1888-01-02"^^xsd:date; + base:work\#DateStart_Min "1888-01-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15514; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15518 a base:work; + base:work\#DateEnd_Max "1888-01-04"^^xsd:date; + base:work\#DateEnd_Min "1888-01-04"^^xsd:date; + base:work\#DateStart_Max "1888-01-04"^^xsd:date; + base:work\#DateStart_Min "1888-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15518; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDOrganisation base:organisation\/5741; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15522 a base:work; + base:work\#DateEnd_Max "1888-01-10"^^xsd:date; + base:work\#DateEnd_Min "1888-01-10"^^xsd:date; + base:work\#DateStart_Max "1888-01-10"^^xsd:date; + base:work\#DateStart_Min "1888-01-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15522; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Anarb-00; + base:work\#ref-IDOrganisation base:organisation\/4904; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15526 a base:work; + base:work\#DateEnd_Max "1888-01-14"^^xsd:date; + base:work\#DateEnd_Min "1888-01-14"^^xsd:date; + base:work\#DateStart_Max "1888-01-12"^^xsd:date; + base:work\#DateStart_Min "1888-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15526; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15530 a base:work; + base:work\#DateEnd_Max "1888-01-18"^^xsd:date; + base:work\#DateEnd_Min "1888-01-18"^^xsd:date; + base:work\#DateStart_Max "1888-01-17"^^xsd:date; + base:work\#DateStart_Min "1888-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15530; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15534 a base:work; + base:work\#DateEnd_Max "1888-01-25"^^xsd:date; + base:work\#DateEnd_Min "1888-01-25"^^xsd:date; + base:work\#DateStart_Max "1888-01-25"^^xsd:date; + base:work\#DateStart_Min "1888-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15534; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Osw-00; + base:work\#ref-IDOrganisation base:organisation\/5353; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15538 a base:work; + base:work\#DateEnd_Max "1888-02-11"^^xsd:date; + base:work\#DateEnd_Min "1888-02-11"^^xsd:date; + base:work\#DateStart_Max "1888-01-30"^^xsd:date; + base:work\#DateStart_Min "1888-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15538; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/5445; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15543 a base:work; + base:work\#DateEnd_Max "1888-02-22"^^xsd:date; + base:work\#DateEnd_Min "1888-02-22"^^xsd:date; + base:work\#DateStart_Max "1888-02-22"^^xsd:date; + base:work\#DateStart_Min "1888-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15543; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pough-00; + base:work\#ref-IDOrganisation base:organisation\/5649; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15546 a base:work; + base:work\#DateEnd_Max "1888-02-25"^^xsd:date; + base:work\#DateEnd_Min "1888-02-25"^^xsd:date; + base:work\#DateStart_Max "1888-02-24"^^xsd:date; + base:work\#DateStart_Min "1888-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15546; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15554 a base:work; + base:work\#DateEnd_Max "1888-03-01"^^xsd:date; + base:work\#DateEnd_Min "1888-03-01"^^xsd:date; + base:work\#DateStart_Max "1888-03-01"^^xsd:date; + base:work\#DateStart_Min "1888-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15554; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDOrganisation base:organisation\/5332; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15558 a base:work; + base:work\#DateEnd_Max "1888-03-06"^^xsd:date; + base:work\#DateEnd_Min "1888-03-06"^^xsd:date; + base:work\#DateStart_Max "1888-03-06"^^xsd:date; + base:work\#DateStart_Min "1888-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15558; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bing-00; + base:work\#ref-IDOrganisation base:organisation\/5385; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15562 a base:work; + base:work\#DateEnd_Max "1888-03-08"^^xsd:date; + base:work\#DateEnd_Min "1888-03-08"^^xsd:date; + base:work\#DateStart_Max "1888-03-08"^^xsd:date; + base:work\#DateStart_Min "1888-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15562; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/5068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15566 a base:work; + base:work\#DateEnd_Max "1888-03-10"^^xsd:date; + base:work\#DateEnd_Min "1888-03-10"^^xsd:date; + base:work\#DateStart_Max "1888-03-10"^^xsd:date; + base:work\#DateStart_Min "1888-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15566; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Allen-00; + base:work\#ref-IDOrganisation base:organisation\/5341; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15570 a base:work; + base:work\#DateEnd_Max "1888-03-14"^^xsd:date; + base:work\#DateEnd_Min "1888-03-14"^^xsd:date; + base:work\#DateStart_Max "1888-03-14"^^xsd:date; + base:work\#DateStart_Min "1888-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15570; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wilm-01; + base:work\#ref-IDOrganisation base:organisation\/5361; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15574 a base:work; + base:work\#DateEnd_Max "1888-03-24"^^xsd:date; + base:work\#DateEnd_Min "1888-03-24"^^xsd:date; + base:work\#DateStart_Max "1888-03-19"^^xsd:date; + base:work\#DateStart_Min "1888-03-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15574; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5164; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15578 a base:work; + base:work\#DateEnd_Fuzzy "August 1903"; + base:work\#DateEnd_Max "1903-08-31"^^xsd:date; + base:work\#DateEnd_Min "1903-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1903"; + base:work\#DateStart_Max "1903-08-31"^^xsd:date; + base:work\#DateStart_Min "1903-06-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 15578; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/VN-HAN-00; + base:work\#ref-IDOrganisation base:organisation\/4608; + base:work\#ref-IDOrganisation2 base:organisation\/4612; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/15582 a base:work; + base:work\#DateStart_Fuzzy "between 1898 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15582; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4380; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/15586 a base:work; + base:work\#DateStart_Fuzzy "between 1898 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15586; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/4410; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/15590 a base:work; + base:work\#DateEnd_Max "1889-06-15"^^xsd:date; + base:work\#DateEnd_Min "1889-06-15"^^xsd:date; + base:work\#DateStart_Max "1889-06-14"^^xsd:date; + base:work\#DateStart_Min "1889-06-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15590; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/5441; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15598 a base:work; + base:work\#DateEnd_Max "1889-06-29"^^xsd:date; + base:work\#DateEnd_Min "1889-06-29"^^xsd:date; + base:work\#DateStart_Max "1889-06-29"^^xsd:date; + base:work\#DateStart_Min "1889-06-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15598; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Anac-00; + base:work\#ref-IDOrganisation base:organisation\/5437; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/156 a base:work; + base:work\#DateEnd_Fuzzy "1932"; + base:work\#DateEnd_Max "1932-12-31"^^xsd:date; + base:work\#DateEnd_Min "1932-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1903 and 1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 156; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2776; + base:work\#ref-IDPerson base:person\/SchErn-00 . + +base:work\/15602 a base:work; + base:work\#DateEnd_Max "1889-07-06"^^xsd:date; + base:work\#DateEnd_Min "1889-07-06"^^xsd:date; + base:work\#DateStart_Max "1889-07-06"^^xsd:date; + base:work\#DateStart_Min "1889-07-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15602; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Chey-00; + base:work\#ref-IDOrganisation base:organisation\/5405; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15610 a base:work; + base:work\#DateEnd_Max "1889-07-24"^^xsd:date; + base:work\#DateEnd_Min "1889-07-24"^^xsd:date; + base:work\#DateStart_Max "1889-07-24"^^xsd:date; + base:work\#DateStart_Min "1889-07-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15610; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDOrganisation base:organisation\/5457; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15618 a base:work; + base:work\#DateEnd_Max "1888-05-21"^^xsd:date; + base:work\#DateEnd_Min "1888-05-21"^^xsd:date; + base:work\#DateStart_Max "1888-05-21"^^xsd:date; + base:work\#DateStart_Min "1888-05-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15618; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2776; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15622 a base:work; + base:work\#DateEnd_Max "1889-02-06"^^xsd:date; + base:work\#DateEnd_Min "1889-02-06"^^xsd:date; + base:work\#DateStart_Max "1889-01-28"^^xsd:date; + base:work\#DateStart_Min "1889-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15622; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15626 a base:work; + base:work\#DateEnd_Max "1889-02-19"^^xsd:date; + base:work\#DateEnd_Min "1889-02-19"^^xsd:date; + base:work\#DateStart_Max "1889-02-18"^^xsd:date; + base:work\#DateStart_Min "1889-02-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15626; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/4940; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15630 a base:work; + base:work\#DateEnd_Max "1889-02-20"^^xsd:date; + base:work\#DateEnd_Min "1889-02-20"^^xsd:date; + base:work\#DateStart_Max "1889-02-20"^^xsd:date; + base:work\#DateStart_Min "1889-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15630; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Stockt-00; + base:work\#ref-IDOrganisation base:organisation\/5373; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15634 a base:work; + base:work\#DateEnd_Max "1889-02-21"^^xsd:date; + base:work\#DateEnd_Min "1889-02-21"^^xsd:date; + base:work\#DateStart_Max "1889-02-21"^^xsd:date; + base:work\#DateStart_Min "1889-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15634; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDOrganisation base:organisation\/1095; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15638 a base:work; + base:work\#DateEnd_Max "1889-02-23"^^xsd:date; + base:work\#DateEnd_Min "1889-02-23"^^xsd:date; + base:work\#DateStart_Max "1889-02-22"^^xsd:date; + base:work\#DateStart_Min "1889-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15638; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Oakl-00; + base:work\#ref-IDOrganisation base:organisation\/5609; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15642 a base:work; + base:work\#DateEnd_Max "1889-03-02"^^xsd:date; + base:work\#DateEnd_Min "1889-03-02"^^xsd:date; + base:work\#DateStart_Max "1889-02-25"^^xsd:date; + base:work\#DateStart_Min "1889-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15642; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/5485; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15646 a base:work; + base:work\#DateEnd_Max "1889-03-04"^^xsd:date; + base:work\#DateEnd_Min "1889-03-04"^^xsd:date; + base:work\#DateStart_Max "1889-03-04"^^xsd:date; + base:work\#DateStart_Min "1889-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15646; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDOrganisation base:organisation\/5553; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15650 a base:work; + base:work\#DateEnd_Max "1889-03-05"^^xsd:date; + base:work\#DateEnd_Min "1889-03-05"^^xsd:date; + base:work\#DateStart_Max "1889-03-05"^^xsd:date; + base:work\#DateStart_Min "1889-03-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15650; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CSanB-00; + base:work\#ref-IDOrganisation base:organisation\/5653; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15654 a base:work; + base:work\#DateEnd_Max "1889-03-08"^^xsd:date; + base:work\#DateEnd_Min "1889-03-08"^^xsd:date; + base:work\#DateStart_Max "1889-03-06"^^xsd:date; + base:work\#DateStart_Min "1889-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15654; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CA-01; + base:work\#ref-IDOrganisation base:organisation\/5748; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15658 a base:work; + base:work\#DateEnd_Max "1889-03-09"^^xsd:date; + base:work\#DateEnd_Min "1889-03-09"^^xsd:date; + base:work\#DateStart_Max "1889-03-09"^^xsd:date; + base:work\#DateStart_Min "1889-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15658; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Fres-00; + base:work\#ref-IDOrganisation base:organisation\/5377; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15662 a base:work; + base:work\#DateEnd_Max "1889-06-11"^^xsd:date; + base:work\#DateEnd_Min "1889-06-11"^^xsd:date; + base:work\#DateStart_Max "1889-06-10"^^xsd:date; + base:work\#DateStart_Min "1889-06-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15662; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Vict-00; + base:work\#ref-IDOrganisation base:organisation\/5725; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15666 a base:work; + base:work\#DateEnd_Max "1890-02-08"^^xsd:date; + base:work\#DateEnd_Min "1890-02-08"^^xsd:date; + base:work\#DateStart_Max "1890-02-04"^^xsd:date; + base:work\#DateStart_Min "1890-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15666; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15670 a base:work; + base:work\#DateEnd_Max "1890-03-29"^^xsd:date; + base:work\#DateEnd_Min "1890-03-29"^^xsd:date; + base:work\#DateStart_Max "1890-03-10"^^xsd:date; + base:work\#DateStart_Min "1890-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15670; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15674 a base:work; + base:work\#DateEnd_Max "1890-04-12"^^xsd:date; + base:work\#DateEnd_Min "1890-04-12"^^xsd:date; + base:work\#DateStart_Max "1890-04-07"^^xsd:date; + base:work\#DateStart_Min "1890-04-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15674; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/4988; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15678 a base:work; + base:work\#DateEnd_Max "1890-04-18"^^xsd:date; + base:work\#DateEnd_Min "1890-04-18"^^xsd:date; + base:work\#DateStart_Max "1890-04-18"^^xsd:date; + base:work\#DateStart_Min "1890-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15678; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15682 a base:work; + base:work\#DateEnd_Max "1890-04-22"^^xsd:date; + base:work\#DateEnd_Min "1890-04-22"^^xsd:date; + base:work\#DateStart_Max "1890-04-21"^^xsd:date; + base:work\#DateStart_Min "1890-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15682; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/4680; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15686 a base:work; + base:work\#DateEnd_Max "1890-04-24"^^xsd:date; + base:work\#DateEnd_Min "1890-04-24"^^xsd:date; + base:work\#DateStart_Max "1890-04-24"^^xsd:date; + base:work\#DateStart_Min "1890-04-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15686; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15690 a base:work; + base:work\#DateEnd_Max "1890-04-26"^^xsd:date; + base:work\#DateEnd_Min "1890-04-26"^^xsd:date; + base:work\#DateStart_Max "1890-04-26"^^xsd:date; + base:work\#DateStart_Min "1890-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15690; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/5473; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15694 a base:work; + base:work\#DateEnd_Max "1890-04-29"^^xsd:date; + base:work\#DateEnd_Min "1890-04-29"^^xsd:date; + base:work\#DateStart_Max "1890-04-29"^^xsd:date; + base:work\#DateStart_Min "1890-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/4996; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15698 a base:work; + base:work\#DateEnd_Max "1890-05-03"^^xsd:date; + base:work\#DateEnd_Min "1890-05-03"^^xsd:date; + base:work\#DateStart_Max "1890-05-01"^^xsd:date; + base:work\#DateStart_Min "1890-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15698; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/5709; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/157 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 157; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1815? , with engagements at Theater an der Wien"; + base:work\#ref-IDOrganisation base:organisation\/388; + base:work\#ref-IDPerson base:person\/SchWil-00 . + +base:work\/15702 a base:work; + base:work\#DateEnd_Max "1890-05-06"^^xsd:date; + base:work\#DateEnd_Min "1890-05-06"^^xsd:date; + base:work\#DateStart_Max "1890-05-06"^^xsd:date; + base:work\#DateStart_Min "1890-05-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15702; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Zanes-00; + base:work\#ref-IDOrganisation base:organisation\/5188; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15706 a base:work; + base:work\#DateEnd_Max "1890-05-08"^^xsd:date; + base:work\#DateEnd_Min "1890-05-08"^^xsd:date; + base:work\#DateStart_Max "1890-05-08"^^xsd:date; + base:work\#DateStart_Min "1890-05-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15706; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Youngst-00; + base:work\#ref-IDOrganisation base:organisation\/5657; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1571 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1571; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/15710 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-06-20"^^xsd:date; + base:work\#DateEnd_Min "1891-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-20"^^xsd:date; + base:work\#DateStart_Min "1890-09-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15710; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15714 a base:work; + base:work\#DateEnd_Max "1891-09-22"^^xsd:date; + base:work\#DateEnd_Min "1891-09-22"^^xsd:date; + base:work\#DateStart_Max "1891-09-22"^^xsd:date; + base:work\#DateStart_Min "1891-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15714; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Brandt-00; + base:work\#ref-IDOrganisation base:organisation\/5621; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15718 a base:work; + base:work\#DateEnd_Max "1891-09-26"^^xsd:date; + base:work\#DateEnd_Min "1891-09-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1890-09-24"^^xsd:date; + base:work\#DateStart_Min "1891-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15718; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/4664; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15722 a base:work; + base:work\#DateEnd_Max "1891-10-06"^^xsd:date; + base:work\#DateEnd_Min "1891-10-06"^^xsd:date; + base:work\#DateStart_Max "1891-10-05"^^xsd:date; + base:work\#DateStart_Min "1891-10-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15722; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/5685; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15726 a base:work; + base:work\#DateEnd_Max "1891-10-10"^^xsd:date; + base:work\#DateEnd_Min "1891-10-10"^^xsd:date; + base:work\#DateStart_Max "1891-10-08"^^xsd:date; + base:work\#DateStart_Min "1891-10-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15726; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15730 a base:work; + base:work\#DateEnd_Max "1891-10-13"^^xsd:date; + base:work\#DateEnd_Min "1891-10-13"^^xsd:date; + base:work\#DateStart_Max "1891-10-13"^^xsd:date; + base:work\#DateStart_Min "1891-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15730; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-FallRv-00; + base:work\#ref-IDOrganisation base:organisation\/5345; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15734 a base:work; + base:work\#DateEnd_Max "1891-10-15"^^xsd:date; + base:work\#DateEnd_Min "1891-10-15"^^xsd:date; + base:work\#DateStart_Max "1891-10-15"^^xsd:date; + base:work\#DateStart_Min "1891-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15734; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewBed-00; + base:work\#ref-IDOrganisation base:organisation\/5641; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15738 a base:work; + base:work\#DateEnd_Max "1891-10-24"^^xsd:date; + base:work\#DateEnd_Min "1891-10-24"^^xsd:date; + base:work\#DateStart_Max "1891-10-19"^^xsd:date; + base:work\#DateStart_Min "1891-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15738; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5393; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1574 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1574; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/15742 a base:work; + base:work\#DateEnd_Max "1891-11-09"^^xsd:date; + base:work\#DateEnd_Min "1891-11-09"^^xsd:date; + base:work\#DateStart_Max "1891-11-09"^^xsd:date; + base:work\#DateStart_Min "1891-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15742; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CNorw-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15746 a base:work; + base:work\#DateEnd_Max "1891-11-11"^^xsd:date; + base:work\#DateEnd_Min "1891-11-11"^^xsd:date; + base:work\#DateStart_Max "1891-11-11"^^xsd:date; + base:work\#DateStart_Min "1891-11-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15746; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5681; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15750 a base:work; + base:work\#DateEnd_Max "1891-11-14"^^xsd:date; + base:work\#DateEnd_Min "1891-11-14"^^xsd:date; + base:work\#DateStart_Max "1891-11-14"^^xsd:date; + base:work\#DateStart_Min "1891-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15750; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Newt-00; + base:work\#ref-IDOrganisation base:organisation\/5397; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15754 a base:work; + base:work\#DateEnd_Max "1891-11-28"^^xsd:date; + base:work\#DateEnd_Min "1891-11-28"^^xsd:date; + base:work\#DateStart_Max "1891-11-23"^^xsd:date; + base:work\#DateStart_Min "1891-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15754; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/5561; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15758 a base:work; + base:work\#DateEnd_Max "1891-07-12"^^xsd:date; + base:work\#DateEnd_Min "1891-12-07"^^xsd:date; + base:work\#DateStart_Max "1891-12-07"^^xsd:date; + base:work\#DateStart_Min "1891-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15758; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/5068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15762 a base:work; + base:work\#DateEnd_Max "1891-12-09"^^xsd:date; + base:work\#DateEnd_Min "1891-12-09"^^xsd:date; + base:work\#DateStart_Max "1891-12-09"^^xsd:date; + base:work\#DateStart_Min "1891-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15762; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-East-00; + base:work\#ref-IDOrganisation base:organisation\/5296; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15766 a base:work; + base:work\#DateEnd_Max "1891-12-26"^^xsd:date; + base:work\#DateEnd_Min "1891-12-26"^^xsd:date; + base:work\#DateStart_Max "1891-12-25"^^xsd:date; + base:work\#DateStart_Min "1891-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15766; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1577 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-01-01"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1577; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/442; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/15770 a base:work; + base:work\#DateEnd_Max "1892-01-01"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Max "1892-01-01"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15770; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15771 a base:work; + base:work\#DateEnd_Max "1892-01-23"^^xsd:date; + base:work\#DateEnd_Min "1892-01-23"^^xsd:date; + base:work\#DateStart_Max "1892-01-11"^^xsd:date; + base:work\#DateStart_Min "1892-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15771; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1275; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15772 a base:work; + base:work\#DateEnd_Max "1892-01-26"^^xsd:date; + base:work\#DateEnd_Min "1892-01-26"^^xsd:date; + base:work\#DateStart_Max "1892-01-26"^^xsd:date; + base:work\#DateStart_Min "1892-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15772; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDOrganisation base:organisation\/5417; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15776 a base:work; + base:work\#DateEnd_Max "1892-01-30"^^xsd:date; + base:work\#DateEnd_Min "1892-01-30"^^xsd:date; + base:work\#DateStart_Max "1892-01-28"^^xsd:date; + base:work\#DateStart_Min "1892-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15776; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15779 a base:work; + base:work\#DateEnd_Max "1892-02-04"^^xsd:date; + base:work\#DateEnd_Min "1892-02-04"^^xsd:date; + base:work\#DateStart_Max "1892-02-03"^^xsd:date; + base:work\#DateStart_Min "1892-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15780 a base:work; + base:work\#DateEnd_Max "1892-02-06"^^xsd:date; + base:work\#DateEnd_Min "1892-02-06"^^xsd:date; + base:work\#DateStart_Max "1892-02-06"^^xsd:date; + base:work\#DateStart_Min "1892-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15780; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15782 a base:work; + base:work\#DateEnd_Max "1892-02-13"^^xsd:date; + base:work\#DateEnd_Min "1892-02-13"^^xsd:date; + base:work\#DateStart_Max "1892-02-08"^^xsd:date; + base:work\#DateStart_Min "1892-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15782; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15786 a base:work; + base:work\#DateEnd_Max "1892-02-20"^^xsd:date; + base:work\#DateEnd_Min "1892-02-20"^^xsd:date; + base:work\#DateStart_Max "1892-02-18"^^xsd:date; + base:work\#DateStart_Min "1892-02-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15786; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/2776; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15790 a base:work; + base:work\#DateEnd_Max "1892-03-02"^^xsd:date; + base:work\#DateEnd_Min "1892-03-02"^^xsd:date; + base:work\#DateStart_Max "1892-02-29"^^xsd:date; + base:work\#DateStart_Min "1892-02-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15790; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15794 a base:work; + base:work\#DateEnd_Max "1892-03-12"^^xsd:date; + base:work\#DateEnd_Min "1892-03-12"^^xsd:date; + base:work\#DateStart_Max "1892-03-07"^^xsd:date; + base:work\#DateStart_Min "1892-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/5192; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15798 a base:work; + base:work\#DateEnd_Max "1892-03-16"^^xsd:date; + base:work\#DateEnd_Min "1892-03-16"^^xsd:date; + base:work\#DateStart_Max "1892-03-16"^^xsd:date; + base:work\#DateStart_Min "1892-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15798; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDOrganisation base:organisation\/5429; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/158 a base:work; + base:work\#Employment "Engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 158; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/SchWil-00 . + +base:work\/1580 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1580; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/443; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/15802 a base:work; + base:work\#DateEnd_Max "1892-03-19"^^xsd:date; + base:work\#DateEnd_Min "1892-03-19"^^xsd:date; + base:work\#DateStart_Max "1892-03-17"^^xsd:date; + base:work\#DateStart_Min "1892-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15802; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/5633; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15806 a base:work; + base:work\#DateEnd_Max "1892-03-21"^^xsd:date; + base:work\#DateEnd_Min "1892-03-21"^^xsd:date; + base:work\#DateStart_Max "1892-03-21"^^xsd:date; + base:work\#DateStart_Min "1892-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15806; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/5268; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15810 a base:work; + base:work\#DateEnd_Max "1892-03-22"^^xsd:date; + base:work\#DateEnd_Min "1892-03-22"^^xsd:date; + base:work\#DateStart_Max "1892-03-22"^^xsd:date; + base:work\#DateStart_Min "1892-03-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15810; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15822 a base:work; + base:work\#DateEnd_Max "1892-03-26"^^xsd:date; + base:work\#DateEnd_Min "1892-03-26"^^xsd:date; + base:work\#DateStart_Max "1892-03-24"^^xsd:date; + base:work\#DateStart_Min "1892-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15822; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15826 a base:work; + base:work\#DateEnd_Max "1892-03-29"^^xsd:date; + base:work\#DateEnd_Min "1892-03-29"^^xsd:date; + base:work\#DateStart_Max "1892-03-29"^^xsd:date; + base:work\#DateStart_Min "1892-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15826; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDOrganisation base:organisation\/5669; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1583 a base:work; + base:work\#DateEnd_Fuzzy "between 1881 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1583; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/444; + base:work\#ref-IDPerson base:person\/MarSal-00 . + +base:work\/15830 a base:work; + base:work\#DateEnd_Max "1892-03-31"^^xsd:date; + base:work\#DateEnd_Min "1892-03-31"^^xsd:date; + base:work\#DateStart_Max "1892-03-31"^^xsd:date; + base:work\#DateStart_Min "1892-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15830; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15838 a base:work; + base:work\#DateEnd_Max "1892-04-01"^^xsd:date; + base:work\#DateEnd_Min "1892-04-01"^^xsd:date; + base:work\#DateStart_Max "1892-04-01"^^xsd:date; + base:work\#DateStart_Min "1892-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15838; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15842 a base:work; + base:work\#DateEnd_Max "1892-04-02"^^xsd:date; + base:work\#DateEnd_Min "1892-04-02"^^xsd:date; + base:work\#DateStart_Max "1892-04-02"^^xsd:date; + base:work\#DateStart_Min "1892-04-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15842; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CoBlu-00; + base:work\#ref-IDOrganisation base:organisation\/5433; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15846 a base:work; + base:work\#DateEnd_Max "1892-04-09"^^xsd:date; + base:work\#DateEnd_Min "1892-04-09"^^xsd:date; + base:work\#DateStart_Max "1892-04-04"^^xsd:date; + base:work\#DateStart_Min "1892-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15846; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15874 a base:work; + base:work\#DateEnd_Max "1889-12-09"^^xsd:date; + base:work\#DateEnd_Min "1889-12-09"^^xsd:date; + base:work\#DateStart_Max "1889-12-09"^^xsd:date; + base:work\#DateStart_Min "1889-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15874; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15878 a base:work; + base:work\#DateEnd_Max "1889-12-05"^^xsd:date; + base:work\#DateEnd_Min "1889-12-05"^^xsd:date; + base:work\#DateStart_Max "1889-12-05"^^xsd:date; + base:work\#DateStart_Min "1889-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15878; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-AubNY-00; + base:work\#ref-IDOrganisation base:organisation\/5401; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15882 a base:work; + base:work\#DateEnd_Max "1889-12-12"^^xsd:date; + base:work\#DateEnd_Min "1889-12-12"^^xsd:date; + base:work\#DateStart_Max "1889-12-11"^^xsd:date; + base:work\#DateStart_Min "1889-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15882; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDOrganisation base:organisation\/4700; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15886 a base:work; + base:work\#DateEnd_Max "1889-12-14"^^xsd:date; + base:work\#DateEnd_Min "1889-12-14"^^xsd:date; + base:work\#DateStart_Max "1889-12-13"^^xsd:date; + base:work\#DateStart_Min "1889-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15886; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/4692; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15890 a base:work; + base:work\#DateEnd_Max "1889-12-21"^^xsd:date; + base:work\#DateEnd_Min "1889-12-21"^^xsd:date; + base:work\#DateStart_Max "1889-12-16"^^xsd:date; + base:work\#DateStart_Min "1889-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15890; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/5513; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15894 a base:work; + base:work\#DateEnd_Max "1890-01-11"^^xsd:date; + base:work\#DateEnd_Min "1890-01-11"^^xsd:date; + base:work\#DateStart_Max "1890-01-06"^^xsd:date; + base:work\#DateStart_Min "1890-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15894; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15898 a base:work; + base:work\#DateEnd_Max "1890-01-13"^^xsd:date; + base:work\#DateEnd_Min "1890-01-13"^^xsd:date; + base:work\#DateStart_Max "1890-01-13"^^xsd:date; + base:work\#DateStart_Min "1890-01-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15898; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-FallRv-00; + base:work\#ref-IDOrganisation base:organisation\/5345; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/159 a base:work; + base:work\#Employment """Engagement +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 159; + base:work\#comment "End of Engagement because of marriage with an officer, David Oskar von Döring. It was forbidden being an officer´s wife and working on stage at the same time"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/SchWil-00 . + +base:work\/15902 a base:work; + base:work\#DateEnd_Max "1890-01-14"^^xsd:date; + base:work\#DateEnd_Min "1890-01-14"^^xsd:date; + base:work\#DateStart_Max "1890-01-14"^^xsd:date; + base:work\#DateStart_Min "1890-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15902; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Holyo-00; + base:work\#ref-IDOrganisation base:organisation\/5629; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15906 a base:work; + base:work\#DateEnd_Max "1890-01-15"^^xsd:date; + base:work\#DateEnd_Min "1890-01-15"^^xsd:date; + base:work\#DateStart_Max "1890-01-15"^^xsd:date; + base:work\#DateStart_Min "1890-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15906; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15910 a base:work; + base:work\#DateEnd_Max "1890-01-16"^^xsd:date; + base:work\#DateEnd_Min "1890-01-16"^^xsd:date; + base:work\#DateStart_Max "1890-01-16"^^xsd:date; + base:work\#DateStart_Min "1890-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15910; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15914 a base:work; + base:work\#DateEnd_Max "1890-02-01"^^xsd:date; + base:work\#DateEnd_Min "1890-02-01"^^xsd:date; + base:work\#DateStart_Max "1890-01-20"^^xsd:date; + base:work\#DateStart_Min "1890-01-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15914; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15918 a base:work; + base:work\#DateEnd_Max "1890-02-03"^^xsd:date; + base:work\#DateEnd_Min "1890-02-03"^^xsd:date; + base:work\#DateStart_Max "1890-02-03"^^xsd:date; + base:work\#DateStart_Min "1890-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15918; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bridgep-00; + base:work\#ref-IDOrganisation base:organisation\/5756; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15922 a base:work; + base:work\#DateEnd_Max "1890-03-08"^^xsd:date; + base:work\#DateEnd_Min "1890-03-08"^^xsd:date; + base:work\#DateStart_Max "1890-02-24"^^xsd:date; + base:work\#DateStart_Min "1890-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15922; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/5324; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15926 a base:work; + base:work\#DateEnd_Max "1890-04-05"^^xsd:date; + base:work\#DateEnd_Min "1890-04-05"^^xsd:date; + base:work\#DateStart_Max "1890-03-31"^^xsd:date; + base:work\#DateStart_Min "1890-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15926; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/5192; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15930 a base:work; + base:work\#DateEnd_Max "1890-04-17"^^xsd:date; + base:work\#DateEnd_Min "1890-04-17"^^xsd:date; + base:work\#DateStart_Max "1890-04-14"^^xsd:date; + base:work\#DateStart_Min "1890-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15930; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15934 a base:work; + base:work\#DateEnd_Max "1890-04-19"^^xsd:date; + base:work\#DateEnd_Min "1890-04-19"^^xsd:date; + base:work\#DateStart_Max "1890-04-19"^^xsd:date; + base:work\#DateStart_Min "1890-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15934; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15938 a base:work; + base:work\#DateEnd_Max "1890-04-23"^^xsd:date; + base:work\#DateEnd_Min "1890-04-23"^^xsd:date; + base:work\#DateStart_Max "1890-04-23"^^xsd:date; + base:work\#DateStart_Min "1890-04-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15938; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDOrganisation base:organisation\/5284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15942 a base:work; + base:work\#DateEnd_Max "1890-04-25"^^xsd:date; + base:work\#DateEnd_Min "1890-04-25"^^xsd:date; + base:work\#DateStart_Max "1890-04-25"^^xsd:date; + base:work\#DateStart_Min "1890-04-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15942; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDOrganisation base:organisation\/5200; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15946 a base:work; + base:work\#DateEnd_Max "1890-04-28"^^xsd:date; + base:work\#DateEnd_Min "1890-04-28"^^xsd:date; + base:work\#DateStart_Max "1890-04-28"^^xsd:date; + base:work\#DateStart_Min "1890-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15946; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/5316; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15950 a base:work; + base:work\#DateEnd_Max "1890-04-30"^^xsd:date; + base:work\#DateEnd_Min "1890-04-30"^^xsd:date; + base:work\#DateStart_Max "1890-04-30"^^xsd:date; + base:work\#DateStart_Min "1890-04-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15950; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Vinc-00; + base:work\#ref-IDOrganisation base:organisation\/5505; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15954 a base:work; + base:work\#DateEnd_Max "1890-05-05"^^xsd:date; + base:work\#DateEnd_Min "1890-05-05"^^xsd:date; + base:work\#DateStart_Max "1890-05-05"^^xsd:date; + base:work\#DateStart_Min "1890-05-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15954; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDOrganisation base:organisation\/5469; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15958 a base:work; + base:work\#DateEnd_Max "1890-05-07"^^xsd:date; + base:work\#DateEnd_Min "1890-05-07"^^xsd:date; + base:work\#DateStart_Max "1890-05-07"^^xsd:date; + base:work\#DateStart_Min "1890-05-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15958; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDOrganisation base:organisation\/5012; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15962 a base:work; + base:work\#DateEnd_Max "1890-05-10"^^xsd:date; + base:work\#DateEnd_Min "1890-05-10"^^xsd:date; + base:work\#DateStart_Max "1890-05-09"^^xsd:date; + base:work\#DateStart_Min "1890-05-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15962; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/4684; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15966 a base:work; + base:work\#DateEnd_Max "1891-09-21"^^xsd:date; + base:work\#DateEnd_Min "1891-09-21"^^xsd:date; + base:work\#DateStart_Max "1891-09-21"^^xsd:date; + base:work\#DateStart_Min "1891-09-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15966; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Lond-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15970 a base:work; + base:work\#DateEnd_Max "1891-09-23"^^xsd:date; + base:work\#DateEnd_Min "1891-09-23"^^xsd:date; + base:work\#DateStart_Max "1891-09-23"^^xsd:date; + base:work\#DateStart_Min "1891-09-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Ham-00; + base:work\#ref-IDOrganisation base:organisation\/4924; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15974 a base:work; + base:work\#DateEnd_Max "1891-10-03"^^xsd:date; + base:work\#DateEnd_Min "1891-10-03"^^xsd:date; + base:work\#DateStart_Max "1891-09-28"^^xsd:date; + base:work\#DateStart_Min "1891-09-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15974; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/131; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15978 a base:work; + base:work\#DateEnd_Max "1891-10-07"^^xsd:date; + base:work\#DateEnd_Min "1891-10-07"^^xsd:date; + base:work\#DateStart_Max "1891-10-07"^^xsd:date; + base:work\#DateStart_Min "1891-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15978; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15982 a base:work; + base:work\#DateEnd_Max "1891-10-12"^^xsd:date; + base:work\#DateEnd_Min "1891-10-12"^^xsd:date; + base:work\#DateStart_Max "1891-10-12"^^xsd:date; + base:work\#DateStart_Min "1891-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15982; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Haver-00; + base:work\#ref-IDOrganisation base:organisation\/5340; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15986 a base:work; + base:work\#DateEnd_Max "1891-10-14"^^xsd:date; + base:work\#DateEnd_Min "1891-10-14"^^xsd:date; + base:work\#DateStart_Max "1891-10-14"^^xsd:date; + base:work\#DateStart_Min "1891-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15986; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brockt-00; + base:work\#ref-IDOrganisation base:organisation\/5336; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15990 a base:work; + base:work\#DateEnd_Max "1891-10-17"^^xsd:date; + base:work\#DateEnd_Min "1891-10-17"^^xsd:date; + base:work\#DateStart_Max "1891-10-16"^^xsd:date; + base:work\#DateStart_Min "1891-10-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15990; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDOrganisation base:organisation\/5332; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15994 a base:work; + base:work\#DateEnd_Max "1891-11-07"^^xsd:date; + base:work\#DateEnd_Min "1891-11-07"^^xsd:date; + base:work\#DateStart_Max "1891-10-26"^^xsd:date; + base:work\#DateStart_Min "1891-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15994; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2096; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/15998 a base:work; + base:work\#DateEnd_Max "1891-11-10"^^xsd:date; + base:work\#DateEnd_Min "1891-11-10"^^xsd:date; + base:work\#DateStart_Max "1891-11-10"^^xsd:date; + base:work\#DateStart_Min "1891-11-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 15998; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/5168; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16 a base:work; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-12-31"^^xsd:date; + base:work\#DateStart_Min "1845-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16; + base:work\#Profession base:Profession-Singer; + base:work\#comment """she gave concerts in Germany with Hermann Berens (piano), later in Hungary +"""; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/160 a base:work; + base:work\#DateEnd_Fuzzy "1994"; + base:work\#DateEnd_Max "1994-12-31"^^xsd:date; + base:work\#DateEnd_Min "1994-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 160; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/SchCle-00 . + +base:work\/16002 a base:work; + base:work\#DateEnd_Max "1891-11-13"^^xsd:date; + base:work\#DateEnd_Min "1891-11-13"^^xsd:date; + base:work\#DateStart_Max "1891-11-13"^^xsd:date; + base:work\#DateStart_Min "1891-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16002; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16006 a base:work; + base:work\#DateEnd_Max "1891-11-21"^^xsd:date; + base:work\#DateEnd_Min "1891-11-21"^^xsd:date; + base:work\#DateStart_Max "1891-11-16"^^xsd:date; + base:work\#DateStart_Min "1891-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16006; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/5328; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1601 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1601; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/16010 a base:work; + base:work\#DateEnd_Max "1891-12-05"^^xsd:date; + base:work\#DateEnd_Min "1891-12-05"^^xsd:date; + base:work\#DateStart_Max "1891-11-30"^^xsd:date; + base:work\#DateStart_Min "1891-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16010; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/5597; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16014 a base:work; + base:work\#DateEnd_Max "1891-12-08"^^xsd:date; + base:work\#DateEnd_Min "1891-12-08"^^xsd:date; + base:work\#DateStart_Max "1891-12-08"^^xsd:date; + base:work\#DateStart_Min "1891-12-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16014; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDOrganisation base:organisation\/4916; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16018 a base:work; + base:work\#DateEnd_Max "1891-12-10"^^xsd:date; + base:work\#DateEnd_Min "1891-12-10"^^xsd:date; + base:work\#DateStart_Max "1891-12-10"^^xsd:date; + base:work\#DateStart_Min "1891-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16018; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Trent-00; + base:work\#ref-IDOrganisation base:organisation\/5701; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16022 a base:work; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-12-31"^^xsd:date; + base:work\#DateStart_Max "1891-12-28"^^xsd:date; + base:work\#DateStart_Min "1891-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16022; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/5557; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16026 a base:work; + base:work\#DateEnd_Max "1892-01-09"^^xsd:date; + base:work\#DateEnd_Min "1892-01-09"^^xsd:date; + base:work\#DateStart_Max "1892-01-04"^^xsd:date; + base:work\#DateStart_Min "1892-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16026; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16030 a base:work; + base:work\#DateEnd_Max "1892-01-27"^^xsd:date; + base:work\#DateEnd_Min "1892-01-27"^^xsd:date; + base:work\#DateStart_Max "1892-01-27"^^xsd:date; + base:work\#DateStart_Min "1892-01-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16030; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDOrganisation base:organisation\/5060; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16034 a base:work; + base:work\#DateEnd_Max "1892-02-02"^^xsd:date; + base:work\#DateEnd_Min "1892-02-02"^^xsd:date; + base:work\#DateStart_Max "1892-02-02"^^xsd:date; + base:work\#DateStart_Min "1892-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16034; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16038 a base:work; + base:work\#DateEnd_Max "1892-02-17"^^xsd:date; + base:work\#DateEnd_Min "1892-02-17"^^xsd:date; + base:work\#DateStart_Max "1892-02-15"^^xsd:date; + base:work\#DateStart_Min "1892-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16038; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1604 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1604; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/16042 a base:work; + base:work\#DateEnd_Max "1892-02-27"^^xsd:date; + base:work\#DateEnd_Min "1892-02-27"^^xsd:date; + base:work\#DateStart_Max "1892-02-25"^^xsd:date; + base:work\#DateStart_Min "1892-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16042; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/4992; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16046 a base:work; + base:work\#DateEnd_Max "1892-03-05"^^xsd:date; + base:work\#DateEnd_Min "1892-03-05"^^xsd:date; + base:work\#DateStart_Max "1892-03-03"^^xsd:date; + base:work\#DateStart_Min "1892-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16046; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/4996; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16050 a base:work; + base:work\#DateEnd_Max "1892-03-14"^^xsd:date; + base:work\#DateEnd_Min "1892-03-14"^^xsd:date; + base:work\#DateStart_Max "1892-03-14"^^xsd:date; + base:work\#DateStart_Min "1892-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16050; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/5473; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16054 a base:work; + base:work\#DateEnd_Max "1877-11-03"^^xsd:date; + base:work\#DateEnd_Min "1877-11-03"^^xsd:date; + base:work\#DateStart_Max "1877-10-31"^^xsd:date; + base:work\#DateStart_Min "1877-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16054; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/4940; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16058 a base:work; + base:work\#DateEnd_Max "1889-06-22"^^xsd:date; + base:work\#DateEnd_Min "1889-06-22"^^xsd:date; + base:work\#DateStart_Max "1889-06-19"^^xsd:date; + base:work\#DateStart_Min "1889-06-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16058; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hel-00; + base:work\#ref-IDOrganisation base:organisation\/5573; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1607 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1607; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/445; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/161 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 161; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/SchMal-00 . + +base:work\/1610 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1610; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/16126 a base:work; + base:work\#DateEnd_Fuzzy "August 1865"; + base:work\#DateEnd_Max "1865-08-31"^^xsd:date; + base:work\#DateEnd_Min "1865-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1863"; + base:work\#DateStart_Max "1863-03-31"^^xsd:date; + base:work\#DateStart_Min "1863-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16126; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Iwa-00; + base:work\#ref-IDOrganisation base:organisation\/4896; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1613 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1613; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MarBla-00 . + +base:work\/16130 a base:work; + base:work\#DateEnd_Max "1892-07-02"^^xsd:date; + base:work\#DateEnd_Min "1892-07-02"^^xsd:date; + base:work\#DateStart_Max "1892-07-02"^^xsd:date; + base:work\#DateStart_Min "1892-07-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16130; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SantAn-00; + base:work\#ref-IDOrganisation base:organisation\/5449; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16134 a base:work; + base:work\#DateEnd_Max "1892-11-19"^^xsd:date; + base:work\#DateEnd_Min "1892-11-19"^^xsd:date; + base:work\#DateStart_Max "1892-11-07"^^xsd:date; + base:work\#DateStart_Min "1892-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16134; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/5393; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16138 a base:work; + base:work\#DateEnd_Max "1892-11-25"^^xsd:date; + base:work\#DateEnd_Min "1892-11-25"^^xsd:date; + base:work\#DateStart_Max "1892-11-25"^^xsd:date; + base:work\#DateStart_Min "1892-11-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16138; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1614 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1614; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/446; + base:work\#ref-IDPerson base:person\/GulEll-00 . + +base:work\/16142 a base:work; + base:work\#DateEnd_Max "1892-11-29"^^xsd:date; + base:work\#DateEnd_Min "1892-11-29"^^xsd:date; + base:work\#DateStart_Max "1892-11-29"^^xsd:date; + base:work\#DateStart_Min "1892-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16142; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MNHTN-00; + base:work\#ref-IDOrganisation base:organisation\/5425; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16146 a base:work; + base:work\#DateEnd_Max "1892-12-26"^^xsd:date; + base:work\#DateEnd_Min "1892-12-26"^^xsd:date; + base:work\#DateStart_Max "1892-12-26"^^xsd:date; + base:work\#DateStart_Min "1892-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16146; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDOrganisation base:organisation\/5705; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16150 a base:work; + base:work\#DateEnd_Max "1892-12-30"^^xsd:date; + base:work\#DateEnd_Min "1892-12-30"^^xsd:date; + base:work\#DateStart_Max "1892-12-30"^^xsd:date; + base:work\#DateStart_Min "1892-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16150; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sup-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16154 a base:work; + base:work\#DateEnd_Max "1893-01-02"^^xsd:date; + base:work\#DateEnd_Min "1893-01-02"^^xsd:date; + base:work\#DateStart_Max "1893-01-02"^^xsd:date; + base:work\#DateStart_Min "1893-01-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16154; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-OshkW-00; + base:work\#ref-IDOrganisation base:organisation\/5100; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16158 a base:work; + base:work\#DateEnd_Max "1893-01-04"^^xsd:date; + base:work\#DateEnd_Min "1893-01-04"^^xsd:date; + base:work\#DateStart_Max "1893-01-04"^^xsd:date; + base:work\#DateStart_Min "1893-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16158; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Rac-00; + base:work\#ref-IDOrganisation base:organisation\/5381; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16162 a base:work; + base:work\#DateEnd_Max "1893-01-11"^^xsd:date; + base:work\#DateEnd_Min "1893-01-11"^^xsd:date; + base:work\#DateStart_Max "1893-01-09"^^xsd:date; + base:work\#DateStart_Min "1893-01-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16162; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/5108; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16166 a base:work; + base:work\#DateEnd_Max "1893-01-17"^^xsd:date; + base:work\#DateEnd_Min "1893-01-17"^^xsd:date; + base:work\#DateStart_Max "1893-01-17"^^xsd:date; + base:work\#DateStart_Min "1893-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16166; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDOrganisation base:organisation\/5180; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1617 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1617; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/GulEll-00 . + +base:work\/16170 a base:work; + base:work\#DateEnd_Max "1893-01-20"^^xsd:date; + base:work\#DateEnd_Min "1893-01-20"^^xsd:date; + base:work\#DateStart_Max "1893-01-20"^^xsd:date; + base:work\#DateStart_Min "1893-01-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16170; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDOrganisation base:organisation\/5060; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16174 a base:work; + base:work\#DateEnd_Max "1893-01-22"^^xsd:date; + base:work\#DateEnd_Min "1893-01-22"^^xsd:date; + base:work\#DateStart_Max "1893-01-22"^^xsd:date; + base:work\#DateStart_Min "1893-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16174; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16178 a base:work; + base:work\#DateEnd_Max "1893-01-24"^^xsd:date; + base:work\#DateEnd_Min "1893-01-24"^^xsd:date; + base:work\#DateStart_Max "1893-01-24"^^xsd:date; + base:work\#DateStart_Min "1893-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16178; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDOrganisation base:organisation\/5741; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16182 a base:work; + base:work\#DateEnd_Max "1893-01-28"^^xsd:date; + base:work\#DateEnd_Min "1893-01-28"^^xsd:date; + base:work\#DateStart_Max "1893-01-26"^^xsd:date; + base:work\#DateStart_Min "1893-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16182; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16186 a base:work; + base:work\#DateEnd_Max "1893-02-11"^^xsd:date; + base:work\#DateEnd_Min "1893-02-11"^^xsd:date; + base:work\#DateStart_Max "1893-02-06"^^xsd:date; + base:work\#DateStart_Min "1893-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16186; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1619 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1619; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/GulEll-00 . + +base:work\/16190 a base:work; + base:work\#DateEnd_Max "1893-02-18"^^xsd:date; + base:work\#DateEnd_Min "1893-02-18"^^xsd:date; + base:work\#DateStart_Max "1893-02-16"^^xsd:date; + base:work\#DateStart_Min "1893-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16190; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16194 a base:work; + base:work\#DateEnd_Max "1893-02-21"^^xsd:date; + base:work\#DateEnd_Min "1893-02-21"^^xsd:date; + base:work\#DateStart_Max "1893-02-21"^^xsd:date; + base:work\#DateStart_Min "1893-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16194; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5413; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16198 a base:work; + base:work\#DateEnd_Max "1893-03-01"^^xsd:date; + base:work\#DateEnd_Min "1893-03-01"^^xsd:date; + base:work\#DateStart_Max "1893-02-27"^^xsd:date; + base:work\#DateStart_Min "1893-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16198; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/162 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 162; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she sang alternately in Gotha and Coburg"; + base:work\#ref-IDOrganisation base:organisation\/125; + base:work\#ref-IDPerson base:person\/SchMal-00 . + +base:work\/16202 a base:work; + base:work\#DateEnd_Max "1893-03-04"^^xsd:date; + base:work\#DateEnd_Min "1893-03-04"^^xsd:date; + base:work\#DateStart_Max "1893-03-02"^^xsd:date; + base:work\#DateStart_Min "1893-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16202; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16206 a base:work; + base:work\#DateEnd_Max "1893-03-11"^^xsd:date; + base:work\#DateEnd_Min "1893-03-11"^^xsd:date; + base:work\#DateStart_Max "1893-03-06"^^xsd:date; + base:work\#DateStart_Min "1893-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16206; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/5589; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16210 a base:work; + base:work\#DateEnd_Max "1893-03-14"^^xsd:date; + base:work\#DateEnd_Min "1893-03-14"^^xsd:date; + base:work\#DateStart_Max "1893-03-14"^^xsd:date; + base:work\#DateStart_Min "1893-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16210; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDOrganisation base:organisation\/5493; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16214 a base:work; + base:work\#DateEnd_Max "1893-03-15"^^xsd:date; + base:work\#DateEnd_Min "1893-03-15"^^xsd:date; + base:work\#DateStart_Max "1893-03-15"^^xsd:date; + base:work\#DateStart_Min "1893-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16214; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDOrganisation base:organisation\/5465; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16218 a base:work; + base:work\#DateEnd_Max "1893-03-16"^^xsd:date; + base:work\#DateEnd_Min "1893-03-16"^^xsd:date; + base:work\#DateStart_Max "1893-03-16"^^xsd:date; + base:work\#DateStart_Min "1893-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16218; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Chey-00; + base:work\#ref-IDOrganisation base:organisation\/5405; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1622 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1622; + base:work\#ref-IDOrganisation base:organisation\/447; + base:work\#ref-IDPerson base:person\/GulEll-00 . + +base:work\/16222 a base:work; + base:work\#DateEnd_Max "1893-03-17"^^xsd:date; + base:work\#DateEnd_Min "1893-03-17"^^xsd:date; + base:work\#DateStart_Max "1893-03-17"^^xsd:date; + base:work\#DateStart_Min "1893-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16222; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Kearn-00; + base:work\#ref-IDOrganisation base:organisation\/5637; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16226 a base:work; + base:work\#DateEnd_Max "1893-03-18"^^xsd:date; + base:work\#DateEnd_Min "1893-03-18"^^xsd:date; + base:work\#DateStart_Max "1893-03-18"^^xsd:date; + base:work\#DateStart_Min "1893-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16226; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDOrganisation base:organisation\/5457; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16230 a base:work; + base:work\#DateEnd_Max "1893-03-21"^^xsd:date; + base:work\#DateEnd_Min "1893-03-21"^^xsd:date; + base:work\#DateStart_Max "1893-03-20"^^xsd:date; + base:work\#DateStart_Min "1893-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16230; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16234 a base:work; + base:work\#DateEnd_Max "1893-03-22"^^xsd:date; + base:work\#DateEnd_Min "1893-03-22"^^xsd:date; + base:work\#DateStart_Max "1893-03-22"^^xsd:date; + base:work\#DateStart_Min "1893-03-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16234; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16238 a base:work; + base:work\#DateEnd_Max "1893-03-23"^^xsd:date; + base:work\#DateEnd_Min "1893-03-23"^^xsd:date; + base:work\#DateStart_Max "1893-03-23"^^xsd:date; + base:work\#DateStart_Min "1893-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16238; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/5268; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16242 a base:work; + base:work\#DateEnd_Max "1893-04-03"^^xsd:date; + base:work\#DateEnd_Min "1893-04-03"^^xsd:date; + base:work\#DateStart_Max "1893-04-03"^^xsd:date; + base:work\#DateStart_Min "1893-04-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16242; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDOrganisation base:organisation\/5284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16246 a base:work; + base:work\#DateEnd_Max "1893-04-04"^^xsd:date; + base:work\#DateEnd_Min "1893-04-04"^^xsd:date; + base:work\#DateStart_Max "1893-04-04"^^xsd:date; + base:work\#DateStart_Min "1893-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16246; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1625 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1625; + base:work\#ref-IDOrganisation base:organisation\/448; + base:work\#ref-IDPerson base:person\/GulEll-00 . + +base:work\/16250 a base:work; + base:work\#DateEnd_Max "1893-04-05"^^xsd:date; + base:work\#DateEnd_Min "1893-04-05"^^xsd:date; + base:work\#DateStart_Max "1893-04-05"^^xsd:date; + base:work\#DateStart_Min "1893-04-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16250; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/5196; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16254 a base:work; + base:work\#DateEnd_Max "1893-04-06"^^xsd:date; + base:work\#DateEnd_Min "1893-04-06"^^xsd:date; + base:work\#DateStart_Max "1893-04-06"^^xsd:date; + base:work\#DateStart_Min "1893-04-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16254; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Galesb-00; + base:work\#ref-IDOrganisation base:organisation\/2821; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16258 a base:work; + base:work\#DateEnd_Max "1893-04-07"^^xsd:date; + base:work\#DateEnd_Min "1893-04-07"^^xsd:date; + base:work\#DateStart_Max "1893-04-07"^^xsd:date; + base:work\#DateStart_Min "1893-04-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16258; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDOrganisation base:organisation\/5429; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16266 a base:work; + base:work\#DateEnd_Max "1893-04-15"^^xsd:date; + base:work\#DateEnd_Min "1893-04-15"^^xsd:date; + base:work\#DateStart_Max "1893-04-10"^^xsd:date; + base:work\#DateStart_Min "1893-04-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16266; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/4724; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16270 a base:work; + base:work\#DateEnd_Max "1893-04-17"^^xsd:date; + base:work\#DateEnd_Min "1893-04-17"^^xsd:date; + base:work\#DateStart_Max "1893-04-17"^^xsd:date; + base:work\#DateStart_Min "1893-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/5473; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16274 a base:work; + base:work\#DateEnd_Fuzzy "July 1861"; + base:work\#DateEnd_Max "1861-07-31"^^xsd:date; + base:work\#DateEnd_Min "1861-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "July 1861"; + base:work\#DateStart_Max "1861-07-31"^^xsd:date; + base:work\#DateStart_Min "1861-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16274; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Boch-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16278 a base:work; + base:work\#DateEnd_Fuzzy "between July 1861 and December 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between July and December 1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16278; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Nowy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1628 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1628; + base:work\#ref-IDLocation base:location\/VN-HCMC-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16282 a base:work; + base:work\#DateEnd_Fuzzy "between July 1861 and December 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between July and December 1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16282; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Prz-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16286 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16286; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Rzes-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16290 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16290; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Berez-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16294 a base:work; + base:work\#DateEnd_Fuzzy "Spring 1869"; + base:work\#DateEnd_Max "1869-06-20"^^xsd:date; + base:work\#DateEnd_Min "1869-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Octorber 1865"; + base:work\#DateStart_Max "1865-10-31"^^xsd:date; + base:work\#DateStart_Min "1865-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16294; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Krak-00; + base:work\#ref-IDOrganisation base:organisation\/4652; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16298 a base:work; + base:work\#DateEnd_Max "1877-10-27"^^xsd:date; + base:work\#DateEnd_Min "1877-10-27"^^xsd:date; + base:work\#DateStart_Max "1877-10-23"^^xsd:date; + base:work\#DateStart_Min "1877-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16298; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-VirgCity-00; + base:work\#ref-IDOrganisation base:organisation\/4928; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/163 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 163; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she sang together with Ludwig Schnorr von Carolsfeld"; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDOrganisation base:organisation\/140; + base:work\#ref-IDPerson base:person\/SchMal-00 . + +base:work\/16302 a base:work; + base:work\#DateEnd_Max "1877-10-29"^^xsd:date; + base:work\#DateEnd_Min "1877-10-29"^^xsd:date; + base:work\#DateStart_Max "1877-10-29"^^xsd:date; + base:work\#DateStart_Min "1877-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16302; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CarsonC-00; + base:work\#ref-IDOrganisation base:organisation\/4932; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16306 a base:work; + base:work\#DateEnd_Max "1877-10-30"^^xsd:date; + base:work\#DateEnd_Min "1877-10-30"^^xsd:date; + base:work\#DateStart_Max "1877-10-30"^^xsd:date; + base:work\#DateStart_Min "1877-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16306; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Reno-00; + base:work\#ref-IDOrganisation base:organisation\/4936; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1631 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1631; + base:work\#ref-IDLocation base:location\/VN-HAN-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16310 a base:work; + base:work\#DateEnd_Max "1892-03-23"^^xsd:date; + base:work\#DateEnd_Min "1892-03-23"^^xsd:date; + base:work\#DateStart_Max "1892-03-23"^^xsd:date; + base:work\#DateStart_Min "1892-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDOrganisation base:organisation\/5457; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1634 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1634; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1637 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1637; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16374 a base:work; + base:work\#DateEnd_Max "1883-03-24"^^xsd:date; + base:work\#DateEnd_Min "1883-03-24"^^xsd:date; + base:work\#DateStart_Max "1883-03-24"^^xsd:date; + base:work\#DateStart_Min "1883-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16374; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16382 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-10-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16382; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16386 a base:work; + base:work\#DateEnd_Max "1892-11-05"^^xsd:date; + base:work\#DateEnd_Min "1892-11-05"^^xsd:date; + base:work\#DateStart_Max "1892-10-10"^^xsd:date; + base:work\#DateStart_Min "1892-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16386; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/569; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16390 a base:work; + base:work\#DateEnd_Max "1892-11-23"^^xsd:date; + base:work\#DateEnd_Min "1892-11-23"^^xsd:date; + base:work\#DateStart_Max "1892-11-23"^^xsd:date; + base:work\#DateStart_Min "1892-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16390; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CMiddl-00; + base:work\#ref-IDOrganisation base:organisation\/5569; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16394 a base:work; + base:work\#DateEnd_Max "1892-11-28"^^xsd:date; + base:work\#DateEnd_Min "1892-11-28"^^xsd:date; + base:work\#DateStart_Max "1892-11-28"^^xsd:date; + base:work\#DateStart_Min "1892-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16394; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/5597; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16398 a base:work; + base:work\#DateEnd_Max "1892-12-17"^^xsd:date; + base:work\#DateEnd_Min "1892-12-17"^^xsd:date; + base:work\#DateStart_Max "1892-12-05"^^xsd:date; + base:work\#DateStart_Min "1892-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16398; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/5048; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/164 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 164; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/546; + base:work\#ref-IDPerson base:person\/SchMal-00 . + +base:work\/1640 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "25th February 1904"; + base:work\#DateStart_Max "1904-02-24"^^xsd:date; + base:work\#DateStart_Min "1904-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1640; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/4435; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16402 a base:work; + base:work\#DateEnd_Max "1892-12-29"^^xsd:date; + base:work\#DateEnd_Min "1892-12-29"^^xsd:date; + base:work\#DateStart_Max "1892-12-29"^^xsd:date; + base:work\#DateStart_Min "1892-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16402; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wino-00; + base:work\#ref-IDOrganisation base:organisation\/5737; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16406 a base:work; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-12-31"^^xsd:date; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16406; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-EauCl-00; + base:work\#ref-IDOrganisation base:organisation\/5477; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16410 a base:work; + base:work\#DateEnd_Max "1893-01-03"^^xsd:date; + base:work\#DateEnd_Min "1893-01-03"^^xsd:date; + base:work\#DateStart_Max "1893-01-03"^^xsd:date; + base:work\#DateStart_Min "1893-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16410; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDOrganisation base:organisation\/5760; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16414 a base:work; + base:work\#DateEnd_Max "1893-01-07"^^xsd:date; + base:work\#DateEnd_Min "1893-01-07"^^xsd:date; + base:work\#DateStart_Max "1893-01-05"^^xsd:date; + base:work\#DateStart_Min "1893-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16418 a base:work; + base:work\#DateEnd_Max "1893-01-14"^^xsd:date; + base:work\#DateEnd_Min "1893-01-14"^^xsd:date; + base:work\#DateStart_Max "1893-01-12"^^xsd:date; + base:work\#DateStart_Min "1893-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16418; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/5565; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16422 a base:work; + base:work\#DateEnd_Max "1893-01-19"^^xsd:date; + base:work\#DateEnd_Min "1893-01-19"^^xsd:date; + base:work\#DateStart_Max "1893-01-19"^^xsd:date; + base:work\#DateStart_Min "1893-01-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16422; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/4712; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16426 a base:work; + base:work\#DateEnd_Max "1893-01-21"^^xsd:date; + base:work\#DateEnd_Min "1893-01-21"^^xsd:date; + base:work\#DateStart_Max "1893-01-21"^^xsd:date; + base:work\#DateStart_Min "1893-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16426; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Jackso-00; + base:work\#ref-IDOrganisation base:organisation\/4732; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1643 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1643; + base:work\#ref-IDLocation base:location\/IDN-Java-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16430 a base:work; + base:work\#DateEnd_Max "1893-01-23"^^xsd:date; + base:work\#DateEnd_Min "1893-01-23"^^xsd:date; + base:work\#DateStart_Max "1893-01-23"^^xsd:date; + base:work\#DateStart_Min "1893-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Anarb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16434 a base:work; + base:work\#DateEnd_Max "1893-01-25"^^xsd:date; + base:work\#DateEnd_Min "1893-01-25"^^xsd:date; + base:work\#DateStart_Max "1893-01-25"^^xsd:date; + base:work\#DateStart_Min "1893-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16434; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16438 a base:work; + base:work\#DateEnd_Max "1893-02-04"^^xsd:date; + base:work\#DateEnd_Min "1893-02-04"^^xsd:date; + base:work\#DateStart_Max "1893-01-30"^^xsd:date; + base:work\#DateStart_Min "1893-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16438; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16442 a base:work; + base:work\#DateEnd_Max "1893-02-15"^^xsd:date; + base:work\#DateEnd_Min "1893-02-15"^^xsd:date; + base:work\#DateStart_Max "1893-02-13"^^xsd:date; + base:work\#DateStart_Min "1893-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16442; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16446 a base:work; + base:work\#DateEnd_Max "1893-02-20"^^xsd:date; + base:work\#DateEnd_Min "1893-02-20"^^xsd:date; + base:work\#DateStart_Max "1893-02-20"^^xsd:date; + base:work\#DateStart_Min "1893-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16446; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16450 a base:work; + base:work\#DateEnd_Max "1893-02-25"^^xsd:date; + base:work\#DateEnd_Min "1893-02-25"^^xsd:date; + base:work\#DateStart_Max "1893-02-22"^^xsd:date; + base:work\#DateStart_Min "1893-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16450; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/16458 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16458; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4211; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/1646 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1646; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16462 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16462; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4216; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/16466 a base:work; + base:work\#DateEnd_Fuzzy "December 1825"; + base:work\#DateEnd_Max "1825-12-31"^^xsd:date; + base:work\#DateEnd_Min "1825-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1825"; + base:work\#DateStart_Max "1825-12-31"^^xsd:date; + base:work\#DateStart_Min "1825-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16466; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NATr-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16470 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Probably 1827"; + base:work\#DateStart_Max "1827-12-31"^^xsd:date; + base:work\#DateStart_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16470; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Firewall presentation"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16471 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Probably 1827"; + base:work\#DateStart_Max "1827-12-31"^^xsd:date; + base:work\#DateStart_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16471; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Liverpool Theatre"; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDOrganisation base:organisation\/4628; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16474 a base:work; + base:work\#DateEnd_Fuzzy "1829"; + base:work\#DateEnd_Max "1829-12-31"^^xsd:date; + base:work\#DateEnd_Min "1829-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16474; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16475 a base:work; + base:work\#DateEnd_Fuzzy "1829"; + base:work\#DateEnd_Max "1829-12-31"^^xsd:date; + base:work\#DateEnd_Min "1829-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16475; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16478 a base:work; + base:work\#DateEnd_Fuzzy "Between Summer 1837 and 1838"; + base:work\#DateEnd_Max "1838-12-31"^^xsd:date; + base:work\#DateEnd_Min "1837-06-24"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1837"; + base:work\#DateStart_Max "1837-09-23"^^xsd:date; + base:work\#DateStart_Min "1837-06-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16478; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1071; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16482 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16482; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16486 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "October 1842"; + base:work\#DateStart_Max "1842-10-31"^^xsd:date; + base:work\#DateStart_Min "1842-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16486; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/1649 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 1649; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16490 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "May 1849"; + base:work\#DateStart_Max "1849-05-31"^^xsd:date; + base:work\#DateStart_Min "1849-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16490; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2415; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16494 a base:work; + base:work\#DateEnd_Fuzzy "August 1851"; + base:work\#DateEnd_Max "1851-08-31"^^xsd:date; + base:work\#DateEnd_Min "1851-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Late 1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16494; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16498 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16498; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Brougham Lyceum"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/165 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 165; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment """UA: Tristan und Isolde, title role together with her husband. after the death of her husband (21.7.1865) she withdrew from the stage +"""; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/SchMal-00 . + +base:work\/16502 a base:work; + base:work\#DateEnd_Fuzzy "1818, 1819 and 1820"; + base:work\#DateEnd_Max "1820-12-31"^^xsd:date; + base:work\#DateEnd_Min "1818-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1818, 1819 and 1820"; + base:work\#DateStart_Max "1820-12-31"^^xsd:date; + base:work\#DateStart_Min "1818-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16502; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16506 a base:work; + base:work\#DateEnd_Fuzzy "1821"; + base:work\#DateEnd_Max "1821-12-31"^^xsd:date; + base:work\#DateEnd_Min "1821-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1820"; + base:work\#DateStart_Max "1820-12-31"^^xsd:date; + base:work\#DateStart_Min "1820-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16506; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour in England, Ireland and Scotland"; + base:work\#ref-IDLocation base:location\/IE-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16510 a base:work; + base:work\#DateEnd_Fuzzy "1821"; + base:work\#DateEnd_Max "1821-12-31"^^xsd:date; + base:work\#DateEnd_Min "1821-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1820"; + base:work\#DateStart_Max "1820-12-31"^^xsd:date; + base:work\#DateStart_Min "1820-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16510; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour in England, Ireland and Scotland"; + base:work\#ref-IDLocation base:location\/SCT-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16514 a base:work; + base:work\#DateEnd_Fuzzy "1821"; + base:work\#DateEnd_Max "1821-12-31"^^xsd:date; + base:work\#DateEnd_Min "1821-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1820"; + base:work\#DateStart_Max "1820-12-31"^^xsd:date; + base:work\#DateStart_Min "1820-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16514; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour in England, Ireland and Scotland"; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16518 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16518; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16522 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16522; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16526 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16526; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16530 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16530; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16534 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16534; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16538 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16538; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16542 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16542; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16546 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16546; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Mobile-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16550 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16550; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Frankfort - Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Natch-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16554 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16554; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Lexington - Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Vick-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16558 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16558; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Vicksburg - Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Lex-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16562 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16562; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Natchez - Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/UAS-Frank-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/16570 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1878 und 30.04.1878"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16570; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/166 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 166; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MosMin-00 . + +base:work\/1664 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1664; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1667 a base:work; + base:work\#DateEnd_Fuzzy "July 1891"; + base:work\#DateEnd_Max "1891-07-31"^^xsd:date; + base:work\#DateEnd_Min "1891-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1891"; + base:work\#DateStart_Max "1891-06-30"^^xsd:date; + base:work\#DateStart_Min "1891-06-01"^^xsd:date; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1667; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/449; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1670 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1670; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CSTR-SanJos-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/1673 a base:work; + base:work\#DateEnd_Fuzzy "Between 1892 and 1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1892 and 1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1673; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EG-00; + base:work\#ref-IDPerson base:person\/ArrBla-00 . + +base:work\/16766 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16766; + base:work\#Profession base:Profession-Other; + base:work\#comment "Military service"; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16770 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16770; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16774 a base:work; + base:work\#DateStart_Fuzzy "1948"; + base:work\#DateStart_Max "1948-12-31"^^xsd:date; + base:work\#DateStart_Min "1948-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16774; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5120; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16778 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16778; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/565; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16782 a base:work; + base:work\#DateStart_Fuzzy "August 1914"; + base:work\#DateStart_Max "1914-08-31"^^xsd:date; + base:work\#DateStart_Min "1914-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16782; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16786 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16786; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5764; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16790 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16790; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/5772; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16794 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/5768; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16798 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16798; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/5776; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/168 a base:work; + base:work\#Employment "Singer, Theatre owner, Direktor, Gesangslehrer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 168; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/16802 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16802; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/5780; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16806 a base:work; + base:work\#DateStart_Fuzzy "December 1926"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16806; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/3820; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16810 a base:work; + base:work\#DateStart_Fuzzy "April 1927"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 16810; + base:work\#Profession base:Profession-Actor; + base:work\#comment "to benefit the Shakespeare Memorial Theatre Fund"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/4748; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16814 a base:work; + base:work\#DateStart_Fuzzy "December 1927"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 16814; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/4748; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16818 a base:work; + base:work\#DateStart_Fuzzy "30th May 1927"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16818; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/5124; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16822 a base:work; + base:work\#DateStart_Fuzzy "28th February 1928"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16822; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5128; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16826 a base:work; + base:work\#DateStart_Fuzzy "June 1928"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 16826; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5132; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16827 a base:work; + base:work\#DateStart_Fuzzy "26th December 1928"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16827; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/573; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16830 a base:work; + base:work\#DateStart_Fuzzy "September 1929"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16830; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-Greenw-00; + base:work\#ref-IDOrganisation base:organisation\/4752; + base:work\#ref-IDOrganisation2 base:organisation\/69724; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16834 a base:work; + base:work\#DateStart_Fuzzy "Between 1929 and 1930"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16834; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5136; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16835 a base:work; + base:work\#DateStart_Fuzzy "Between 1929 and 1930"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16835; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5140; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16838 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16838; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/69728; + base:work\#ref-IDOrganisation2 base:organisation\/69748; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16842 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16842; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation base:organisation\/69732; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16846 a base:work; + base:work\#DateStart_Fuzzy "Autumm 1924"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16846; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-Bris-00; + base:work\#ref-IDOrganisation base:organisation\/69740; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16850 a base:work; + base:work\#DateStart_Fuzzy "March 1925"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16850; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/69744; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16854 a base:work; + base:work\#DateStart_Fuzzy "September 1925"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16854; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16858 a base:work; + base:work\#DateStart_Fuzzy "15th October 1931"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16858; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/232; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16862 a base:work; + base:work\#DateStart_Fuzzy "February 1932"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16862; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/FR-MtCarlo-00; + base:work\#ref-IDOrganisation base:organisation\/5144; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16866 a base:work; + base:work\#DateStart_Fuzzy "Between 1932 and 1933"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16866; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/573; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16870 a base:work; + base:work\#DateStart_Fuzzy "Janury 1936"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16870; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/564; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16874 a base:work; + base:work\#DateStart_Fuzzy "15th April 1929"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16874; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5148; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16878 a base:work; + base:work\#DateStart_Fuzzy "Between 1940 and 1941"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16878; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/69708; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/1688 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1688; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/451; + base:work\#ref-IDPerson base:person\/BaiAnn-00 . + +base:work\/16882 a base:work; + base:work\#DateStart_Fuzzy "Between 1941 and 1942"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16882; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/69712; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16886 a base:work; + base:work\#DateStart_Fuzzy "1943"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16886; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/239; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16890 a base:work; + base:work\#DateStart_Fuzzy "June 1944"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16890; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69716; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16894 a base:work; + base:work\#DateEnd_Fuzzy "September 1946"; + base:work\#DateStart_Fuzzy "1946"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16894; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/304; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16898 a base:work; + base:work\#DateStart_Fuzzy "September 1931"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16898; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5136; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/169 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 169; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/SRB-BEL-00; + base:work\#ref-IDOrganisation base:organisation\/129; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/16902 a base:work; + base:work\#DateStart_Fuzzy "1933"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16902; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/5140; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16906 a base:work; + base:work\#DateStart_Fuzzy "April 1937"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 16906; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/304; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/1691 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1691; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDOrganisation base:organisation\/308; + base:work\#ref-IDPerson base:person\/BaiAnn-00 . + +base:work\/16910 a base:work; + base:work\#DateStart_Fuzzy "1939"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16910; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/3900; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16914 a base:work; + base:work\#DateStart_Fuzzy "Between 1950 and 1952"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16914; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-Holly-00; + base:work\#ref-IDOrganisation base:organisation\/69704; + base:work\#ref-IDPerson base:person\/BenCha-00 . + +base:work\/16918 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16918; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/16922 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16922; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/LT-00; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/16926 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16926; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/Bel-00; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/16930 a base:work; + base:work\#DateEnd_Fuzzy "February 1910"; + base:work\#DateEnd_Max "1910-02-28"^^xsd:date; + base:work\#DateEnd_Min "1910-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1910"; + base:work\#DateStart_Max "1910-02-10"^^xsd:date; + base:work\#DateStart_Min "1910-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 16930; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/16934 a base:work; + base:work\#DateEnd_Fuzzy "17th September 1909"; + base:work\#DateEnd_Max "1909-09-17"^^xsd:date; + base:work\#DateEnd_Min "1909-09-17"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably 1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16934; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/71960; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16938 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16938; + base:work\#ref-IDLocation base:location\/UK-Leeds-00; + base:work\#ref-IDOrganisation base:organisation\/69752; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16946 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16946; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1092; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16950 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16950; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16954 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16954; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDOrganisation base:organisation\/71944; + base:work\#ref-IDOrganisation2 base:organisation\/71932; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16958 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16958; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16962 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16962; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16966 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16966; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/1697 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1697; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/452; + base:work\#ref-IDPerson base:person\/BaiAnn-00 . + +base:work\/16970 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16970; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16974 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16974; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16978 a base:work; + base:work\#DateEnd_Fuzzy "between 1910 and 1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1910 and 1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16978; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16982 a base:work; + base:work\#DateEnd_Fuzzy "between 1910 and 1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1910 and 1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16982; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16986 a base:work; + base:work\#DateEnd_Fuzzy "between 1910 and 1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1910 and 1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16986; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16990 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16990; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16994 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16994; + base:work\#comment "Royal Theatre"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16995 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16995; + base:work\#comment "Globe Theatre in Cleveland"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/16997 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 16997; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Joburg; + base:work\#ref-IDOrganisation base:organisation\/71936; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/17 a base:work; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Carnival 1847, Rom"; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/170 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 170; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/SRB-NovSad-00; + base:work\#ref-IDOrganisation base:organisation\/130; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/1700 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1700; + base:work\#ref-IDLocation base:location\/AT-GRAZ-00; + base:work\#ref-IDOrganisation base:organisation\/453; + base:work\#ref-IDPerson base:person\/BaiIda-00 . + +base:work\/17000 a base:work; + base:work\#DateEnd_Max "1893-04-18"^^xsd:date; + base:work\#DateEnd_Min "1893-04-18"^^xsd:date; + base:work\#DateStart_Max "1893-04-18"^^xsd:date; + base:work\#DateStart_Min "1893-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17000; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17001 a base:work; + base:work\#DateEnd_Max "1893-04-22"^^xsd:date; + base:work\#DateEnd_Min "1893-04-22"^^xsd:date; + base:work\#DateStart_Max "1893-04-21"^^xsd:date; + base:work\#DateStart_Min "1893-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17001; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17002 a base:work; + base:work\#DateEnd_Max "1893-04-29"^^xsd:date; + base:work\#DateEnd_Min "1893-04-29"^^xsd:date; + base:work\#DateStart_Max "1893-04-24"^^xsd:date; + base:work\#DateStart_Min "1893-04-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17002; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17003 a base:work; + base:work\#DateEnd_Max "1893-05-07"^^xsd:date; + base:work\#DateEnd_Min "1893-05-07"^^xsd:date; + base:work\#DateStart_Max "1893-05-01"^^xsd:date; + base:work\#DateStart_Min "1893-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17003; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17004 a base:work; + base:work\#DateEnd_Max "1893-05-11"^^xsd:date; + base:work\#DateEnd_Min "1893-05-11"^^xsd:date; + base:work\#DateStart_Max "1893-05-11"^^xsd:date; + base:work\#DateStart_Min "1893-05-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17004; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17005 a base:work; + base:work\#DateEnd_Max "1893-10-03"^^xsd:date; + base:work\#DateEnd_Min "1893-10-03"^^xsd:date; + base:work\#DateStart_Max "1893-10-03"^^xsd:date; + base:work\#DateStart_Min "1893-10-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17005; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Ham-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17006 a base:work; + base:work\#DateEnd_Max "1893-10-11"^^xsd:date; + base:work\#DateEnd_Min "1893-10-11"^^xsd:date; + base:work\#DateStart_Max "1893-10-09"^^xsd:date; + base:work\#DateStart_Min "1893-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17006; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/71971; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17007 a base:work; + base:work\#DateEnd_Max "1893-10-14"^^xsd:date; + base:work\#DateEnd_Min "1893-10-14"^^xsd:date; + base:work\#DateStart_Max "1893-10-12"^^xsd:date; + base:work\#DateStart_Min "1893-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17007; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17008 a base:work; + base:work\#DateEnd_Max "1893-10-19"^^xsd:date; + base:work\#DateEnd_Min "1893-10-19"^^xsd:date; + base:work\#DateStart_Max "1893-10-18"^^xsd:date; + base:work\#DateStart_Min "1893-10-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17008; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17009 a base:work; + base:work\#DateEnd_Max "1893-10-20"^^xsd:date; + base:work\#DateEnd_Min "1893-10-20"^^xsd:date; + base:work\#DateStart_Max "1893-10-20"^^xsd:date; + base:work\#DateStart_Min "1893-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17009; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/2806; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17010 a base:work; + base:work\#DateEnd_Max "1893-10-21"^^xsd:date; + base:work\#DateEnd_Min "1893-10-21"^^xsd:date; + base:work\#DateStart_Max "1893-10-21"^^xsd:date; + base:work\#DateStart_Min "1893-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17010; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Anarb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17011 a base:work; + base:work\#DateEnd_Max "1893-10-25"^^xsd:date; + base:work\#DateEnd_Min "1893-10-25"^^xsd:date; + base:work\#DateStart_Max "1893-10-23"^^xsd:date; + base:work\#DateStart_Min "1893-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17011; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17012 a base:work; + base:work\#DateEnd_Max "1893-10-28"^^xsd:date; + base:work\#DateEnd_Min "1893-10-28"^^xsd:date; + base:work\#DateStart_Max "1893-10-26"^^xsd:date; + base:work\#DateStart_Min "1893-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17012; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17013 a base:work; + base:work\#DateEnd_Max "1893-10-30"^^xsd:date; + base:work\#DateEnd_Min "1893-10-30"^^xsd:date; + base:work\#DateStart_Max "1893-10-30"^^xsd:date; + base:work\#DateStart_Min "1893-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17013; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Rac-00; + base:work\#ref-IDOrganisation base:organisation\/5381; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17014 a base:work; + base:work\#DateEnd_Max "1893-11-03"^^xsd:date; + base:work\#DateEnd_Min "1893-11-03"^^xsd:date; + base:work\#DateStart_Max "1893-11-02"^^xsd:date; + base:work\#DateStart_Min "1893-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17014; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDOrganisation base:organisation\/5760; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17015 a base:work; + base:work\#DateEnd_Max "1893-11-04"^^xsd:date; + base:work\#DateEnd_Min "1893-11-04"^^xsd:date; + base:work\#DateStart_Max "1893-11-04"^^xsd:date; + base:work\#DateStart_Min "1893-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17015; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dubuq-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17016 a base:work; + base:work\#DateEnd_Max "1893-11-07"^^xsd:date; + base:work\#DateEnd_Min "1893-11-07"^^xsd:date; + base:work\#DateStart_Max "1893-11-07"^^xsd:date; + base:work\#DateStart_Min "1893-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17016; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wino-00; + base:work\#ref-IDOrganisation base:organisation\/5737; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17017 a base:work; + base:work\#DateEnd_Max "1893-11-08"^^xsd:date; + base:work\#DateEnd_Min "1893-11-08"^^xsd:date; + base:work\#DateStart_Max "1893-11-08"^^xsd:date; + base:work\#DateStart_Min "1893-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17017; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-EauCl-00; + base:work\#ref-IDOrganisation base:organisation\/5477; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17018 a base:work; + base:work\#DateEnd_Max "1893-11-11"^^xsd:date; + base:work\#DateEnd_Min "1893-11-11"^^xsd:date; + base:work\#DateStart_Max "1893-11-10"^^xsd:date; + base:work\#DateStart_Min "1893-11-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17018; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17019 a base:work; + base:work\#DateEnd_Max "1893-11-15"^^xsd:date; + base:work\#DateEnd_Min "1893-11-15"^^xsd:date; + base:work\#DateStart_Max "1893-11-13"^^xsd:date; + base:work\#DateStart_Min "1893-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17019; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17020 a base:work; + base:work\#DateEnd_Max "1893-11-18"^^xsd:date; + base:work\#DateEnd_Min "1893-11-18"^^xsd:date; + base:work\#DateStart_Max "1893-11-16"^^xsd:date; + base:work\#DateStart_Min "1893-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17020; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17021 a base:work; + base:work\#DateEnd_Max "1893-12-10"^^xsd:date; + base:work\#DateEnd_Min "1893-12-10"^^xsd:date; + base:work\#DateStart_Max "1893-11-27"^^xsd:date; + base:work\#DateStart_Min "1893-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17021; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/4724; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17022 a base:work; + base:work\#DateEnd_Max "1893-12-11"^^xsd:date; + base:work\#DateEnd_Min "1893-12-11"^^xsd:date; + base:work\#DateStart_Max "1893-12-11"^^xsd:date; + base:work\#DateStart_Min "1893-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17022; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SpringM-00; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17023 a base:work; + base:work\#DateEnd_Max "1893-12-12"^^xsd:date; + base:work\#DateEnd_Min "1893-12-12"^^xsd:date; + base:work\#DateStart_Max "1893-12-12"^^xsd:date; + base:work\#DateStart_Min "1893-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17023; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FSm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17024 a base:work; + base:work\#DateEnd_Max "1893-12-13"^^xsd:date; + base:work\#DateEnd_Min "1893-12-13"^^xsd:date; + base:work\#DateStart_Max "1893-12-13"^^xsd:date; + base:work\#DateStart_Min "1893-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17024; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LtlRo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17025 a base:work; + base:work\#DateEnd_Max "1893-12-14"^^xsd:date; + base:work\#DateEnd_Min "1893-12-14"^^xsd:date; + base:work\#DateStart_Max "1893-12-14"^^xsd:date; + base:work\#DateStart_Min "1893-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17025; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Texark-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17026 a base:work; + base:work\#DateEnd_Max "1893-12-15"^^xsd:date; + base:work\#DateEnd_Min "1893-12-15"^^xsd:date; + base:work\#DateStart_Max "1893-12-15"^^xsd:date; + base:work\#DateStart_Min "1893-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17026; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17027 a base:work; + base:work\#DateEnd_Max "1893-12-16"^^xsd:date; + base:work\#DateEnd_Min "1893-12-16"^^xsd:date; + base:work\#DateStart_Max "1893-12-16"^^xsd:date; + base:work\#DateStart_Min "1893-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17027; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dall-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17028 a base:work; + base:work\#DateEnd_Max "1893-12-19"^^xsd:date; + base:work\#DateEnd_Min "1893-12-19"^^xsd:date; + base:work\#DateStart_Max "1893-12-18"^^xsd:date; + base:work\#DateStart_Min "1893-12-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17028; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanAnt-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17029 a base:work; + base:work\#DateEnd_Max "1893-12-20"^^xsd:date; + base:work\#DateEnd_Min "1893-12-20"^^xsd:date; + base:work\#DateStart_Max "1893-12-20"^^xsd:date; + base:work\#DateStart_Min "1893-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17029; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDOrganisation base:organisation\/5224; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1703 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1703; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/BaiIda-00 . + +base:work\/17030 a base:work; + base:work\#DateEnd_Max "1893-12-21"^^xsd:date; + base:work\#DateEnd_Min "1893-12-21"^^xsd:date; + base:work\#DateStart_Max "1893-12-21"^^xsd:date; + base:work\#DateStart_Min "1893-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17030; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17031 a base:work; + base:work\#DateEnd_Max "1893-12-23"^^xsd:date; + base:work\#DateEnd_Min "1893-12-23"^^xsd:date; + base:work\#DateStart_Max "1893-12-22"^^xsd:date; + base:work\#DateStart_Min "1893-12-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17031; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Galv-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17032 a base:work; + base:work\#DateEnd_Max "1893-12-30"^^xsd:date; + base:work\#DateEnd_Min "1893-12-30"^^xsd:date; + base:work\#DateStart_Max "1893-12-25"^^xsd:date; + base:work\#DateStart_Min "1893-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17032; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17033 a base:work; + base:work\#DateEnd_Max "1894-01-01"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#DateStart_Max "1894-01-01"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17033; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Montg-00; + base:work\#ref-IDOrganisation base:organisation\/5232; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17034 a base:work; + base:work\#DateEnd_Max "1894-01-03"^^xsd:date; + base:work\#DateEnd_Min "1894-01-03"^^xsd:date; + base:work\#DateStart_Max "1894-01-02"^^xsd:date; + base:work\#DateStart_Min "1894-01-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17034; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17035 a base:work; + base:work\#DateEnd_Max "1894-01-04"^^xsd:date; + base:work\#DateEnd_Min "1894-01-04"^^xsd:date; + base:work\#DateStart_Max "1894-01-04"^^xsd:date; + base:work\#DateStart_Min "1894-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17035; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17036 a base:work; + base:work\#DateEnd_Max "1894-01-06"^^xsd:date; + base:work\#DateEnd_Min "1894-01-06"^^xsd:date; + base:work\#DateStart_Max "1894-01-05"^^xsd:date; + base:work\#DateStart_Min "1894-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17036; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17037 a base:work; + base:work\#DateEnd_Max "1894-01-08"^^xsd:date; + base:work\#DateEnd_Min "1894-01-08"^^xsd:date; + base:work\#DateStart_Max "1894-01-08"^^xsd:date; + base:work\#DateStart_Min "1894-01-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17037; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mac-00; + base:work\#ref-IDOrganisation base:organisation\/71972; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17038 a base:work; + base:work\#DateEnd_Max "1894-01-19"^^xsd:date; + base:work\#DateEnd_Min "1894-01-19"^^xsd:date; + base:work\#DateStart_Max "1894-01-19"^^xsd:date; + base:work\#DateStart_Min "1894-01-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17038; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17039 a base:work; + base:work\#DateEnd_Max "1894-01-10"^^xsd:date; + base:work\#DateEnd_Min "1894-01-10"^^xsd:date; + base:work\#DateStart_Max "1894-01-10"^^xsd:date; + base:work\#DateStart_Min "1894-01-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17039; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UAS-Charls-00; + base:work\#ref-IDOrganisation base:organisation\/4908; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17040 a base:work; + base:work\#DateEnd_Max "1894-01-11"^^xsd:date; + base:work\#DateEnd_Min "1894-01-11"^^xsd:date; + base:work\#DateStart_Max "1894-01-11"^^xsd:date; + base:work\#DateStart_Min "1894-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17040; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wilm-00; + base:work\#ref-IDOrganisation base:organisation\/5244; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17041 a base:work; + base:work\#DateEnd_Max "1894-01-13"^^xsd:date; + base:work\#DateEnd_Min "1894-01-13"^^xsd:date; + base:work\#DateStart_Max "1894-01-12"^^xsd:date; + base:work\#DateStart_Min "1894-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17041; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/71973; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17042 a base:work; + base:work\#DateEnd_Max "1894-01-20"^^xsd:date; + base:work\#DateEnd_Min "1894-01-20"^^xsd:date; + base:work\#DateStart_Max "1894-01-15"^^xsd:date; + base:work\#DateStart_Min "1894-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17042; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17043 a base:work; + base:work\#DateEnd_Max "1894-01-27"^^xsd:date; + base:work\#DateEnd_Min "1894-01-27"^^xsd:date; + base:work\#DateStart_Max "1894-01-22"^^xsd:date; + base:work\#DateStart_Min "1894-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17043; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/5597; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17044 a base:work; + base:work\#DateEnd_Max "1894-02-10"^^xsd:date; + base:work\#DateEnd_Min "1894-02-10"^^xsd:date; + base:work\#DateStart_Max "1894-01-29"^^xsd:date; + base:work\#DateStart_Min "1894-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17044; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17045 a base:work; + base:work\#DateEnd_Max "1894-02-17"^^xsd:date; + base:work\#DateEnd_Min "1894-02-17"^^xsd:date; + base:work\#DateStart_Max "1894-02-12"^^xsd:date; + base:work\#DateStart_Min "1894-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17045; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5220; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17046 a base:work; + base:work\#DateEnd_Max "1894-02-19"^^xsd:date; + base:work\#DateEnd_Min "1894-02-19"^^xsd:date; + base:work\#DateStart_Max "1894-02-19"^^xsd:date; + base:work\#DateStart_Min "1894-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17046; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Low-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17047 a base:work; + base:work\#DateEnd_Max "1894-02-20"^^xsd:date; + base:work\#DateEnd_Min "1894-02-20"^^xsd:date; + base:work\#DateStart_Max "1894-02-20"^^xsd:date; + base:work\#DateStart_Min "1894-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17047; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Manch-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17048 a base:work; + base:work\#DateEnd_Max "1894-02-21"^^xsd:date; + base:work\#DateEnd_Min "1894-02-21"^^xsd:date; + base:work\#DateStart_Max "1894-02-21"^^xsd:date; + base:work\#DateStart_Min "1894-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17048; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17049 a base:work; + base:work\#DateEnd_Max "1894-02-22"^^xsd:date; + base:work\#DateEnd_Min "1894-02-22"^^xsd:date; + base:work\#DateStart_Max "1894-02-22"^^xsd:date; + base:work\#DateStart_Min "1894-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17049; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CMiddl-00; + base:work\#ref-IDOrganisation base:organisation\/5569; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17050 a base:work; + base:work\#DateEnd_Max "1894-02-23"^^xsd:date; + base:work\#DateEnd_Min "1894-02-23"^^xsd:date; + base:work\#DateStart_Max "1894-02-23"^^xsd:date; + base:work\#DateStart_Min "1894-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17050; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17051 a base:work; + base:work\#DateEnd_Max "1894-02-24"^^xsd:date; + base:work\#DateEnd_Min "1894-02-24"^^xsd:date; + base:work\#DateStart_Max "1894-02-24"^^xsd:date; + base:work\#DateStart_Min "1894-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17051; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5681; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17052 a base:work; + base:work\#DateEnd_Max "1894-02-26"^^xsd:date; + base:work\#DateEnd_Min "1894-02-26"^^xsd:date; + base:work\#DateStart_Max "1894-02-26"^^xsd:date; + base:work\#DateStart_Min "1894-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17052; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Nort-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17053 a base:work; + base:work\#DateEnd_Max "1894-02-27"^^xsd:date; + base:work\#DateEnd_Min "1894-02-27"^^xsd:date; + base:work\#DateStart_Max "1894-02-27"^^xsd:date; + base:work\#DateStart_Min "1894-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17053; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/1068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17054 a base:work; + base:work\#DateEnd_Max "1894-02-28"^^xsd:date; + base:work\#DateEnd_Min "1894-02-28"^^xsd:date; + base:work\#DateStart_Max "1894-02-28"^^xsd:date; + base:work\#DateStart_Min "1894-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17054; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17055 a base:work; + base:work\#DateEnd_Max "1894-03-01"^^xsd:date; + base:work\#DateEnd_Min "1894-03-01"^^xsd:date; + base:work\#DateStart_Max "1894-03-01"^^xsd:date; + base:work\#DateStart_Min "1894-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17055; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17056 a base:work; + base:work\#DateEnd_Max "1894-03-02"^^xsd:date; + base:work\#DateEnd_Min "1894-03-02"^^xsd:date; + base:work\#DateStart_Max "1894-03-02"^^xsd:date; + base:work\#DateStart_Min "1894-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17056; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17057 a base:work; + base:work\#DateEnd_Max "1894-03-03"^^xsd:date; + base:work\#DateEnd_Min "1894-03-03"^^xsd:date; + base:work\#DateStart_Max "1894-03-03"^^xsd:date; + base:work\#DateStart_Min "1894-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17057; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17058 a base:work; + base:work\#DateEnd_Max "1894-03-10"^^xsd:date; + base:work\#DateEnd_Min "1894-03-10"^^xsd:date; + base:work\#DateStart_Max "1894-03-05"^^xsd:date; + base:work\#DateStart_Min "1894-03-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17058; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/4724; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17059 a base:work; + base:work\#DateEnd_Max "1894-03-14"^^xsd:date; + base:work\#DateEnd_Min "1894-03-14"^^xsd:date; + base:work\#DateStart_Max "1894-03-12"^^xsd:date; + base:work\#DateStart_Min "1894-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17059; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17060 a base:work; + base:work\#DateEnd_Max "1894-03-15"^^xsd:date; + base:work\#DateEnd_Min "1894-03-15"^^xsd:date; + base:work\#DateStart_Max "1894-03-15"^^xsd:date; + base:work\#DateStart_Min "1894-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17060; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Paris-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17061 a base:work; + base:work\#DateEnd_Max "1894-03-16"^^xsd:date; + base:work\#DateEnd_Min "1894-03-16"^^xsd:date; + base:work\#DateStart_Max "1894-03-16"^^xsd:date; + base:work\#DateStart_Min "1894-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17061; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lex-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17062 a base:work; + base:work\#DateEnd_Max "1894-03-17"^^xsd:date; + base:work\#DateEnd_Min "1894-03-17"^^xsd:date; + base:work\#DateStart_Max "1894-03-17"^^xsd:date; + base:work\#DateStart_Min "1894-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17062; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UAS-Frank-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17063 a base:work; + base:work\#DateEnd_Max "1894-03-31"^^xsd:date; + base:work\#DateEnd_Min "1894-03-31"^^xsd:date; + base:work\#DateStart_Max "1894-03-29"^^xsd:date; + base:work\#DateStart_Min "1894-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17063; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17064 a base:work; + base:work\#DateEnd_Max "1894-04-07"^^xsd:date; + base:work\#DateEnd_Min "1894-04-07"^^xsd:date; + base:work\#DateStart_Max "1894-04-02"^^xsd:date; + base:work\#DateStart_Min "1894-04-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17064; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17065 a base:work; + base:work\#DateEnd_Max "1894-04-14"^^xsd:date; + base:work\#DateEnd_Min "1894-04-14"^^xsd:date; + base:work\#DateStart_Max "1894-04-12"^^xsd:date; + base:work\#DateStart_Min "1894-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17065; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17066 a base:work; + base:work\#DateEnd_Max "1894-04-17"^^xsd:date; + base:work\#DateEnd_Min "1894-04-17"^^xsd:date; + base:work\#DateStart_Max "1894-04-17"^^xsd:date; + base:work\#DateStart_Min "1894-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17066; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17067 a base:work; + base:work\#DateEnd_Max "1894-04-19"^^xsd:date; + base:work\#DateEnd_Min "1894-04-19"^^xsd:date; + base:work\#DateStart_Max "1894-04-19"^^xsd:date; + base:work\#DateStart_Min "1894-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17067; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Riv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17068 a base:work; + base:work\#DateEnd_Max "1894-04-20"^^xsd:date; + base:work\#DateEnd_Min "1894-04-20"^^xsd:date; + base:work\#DateStart_Max "1894-04-20"^^xsd:date; + base:work\#DateStart_Min "1894-04-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17068; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDOrganisation base:organisation\/2821; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17069 a base:work; + base:work\#DateEnd_Max "1894-04-21"^^xsd:date; + base:work\#DateEnd_Min "1894-04-21"^^xsd:date; + base:work\#DateStart_Max "1894-04-21"^^xsd:date; + base:work\#DateStart_Min "1894-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17069; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/58600; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17070 a base:work; + base:work\#DateEnd_Max "1894-05-12"^^xsd:date; + base:work\#DateEnd_Min "1894-05-12"^^xsd:date; + base:work\#DateStart_Max "1894-04-21"^^xsd:date; + base:work\#DateStart_Min "1894-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17070; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17071 a base:work; + base:work\#DateEnd_Max "1895-09-22"^^xsd:date; + base:work\#DateEnd_Min "1895-06-21"^^xsd:date; + base:work\#DateStart_Max "1894-10-31"^^xsd:date; + base:work\#DateStart_Min "1894-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17071; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17072 a base:work; + base:work\#DateEnd_Max "1895-10-19"^^xsd:date; + base:work\#DateEnd_Min "1895-10-19"^^xsd:date; + base:work\#DateStart_Max "1895-10-07"^^xsd:date; + base:work\#DateStart_Min "1895-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17072; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/136; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17073 a base:work; + base:work\#DateEnd_Max "1895-10-26"^^xsd:date; + base:work\#DateEnd_Min "1895-10-26"^^xsd:date; + base:work\#DateStart_Max "1895-10-21"^^xsd:date; + base:work\#DateStart_Min "1895-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17073; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17074 a base:work; + base:work\#DateEnd_Max "1895-10-28"^^xsd:date; + base:work\#DateEnd_Min "1895-10-28"^^xsd:date; + base:work\#DateStart_Max "1895-10-28"^^xsd:date; + base:work\#DateStart_Min "1895-10-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17074; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pough-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17075 a base:work; + base:work\#DateEnd_Max "1895-10-29"^^xsd:date; + base:work\#DateEnd_Min "1895-10-29"^^xsd:date; + base:work\#DateStart_Max "1895-10-29"^^xsd:date; + base:work\#DateStart_Min "1895-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17075; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17076 a base:work; + base:work\#DateEnd_Max "1895-10-30"^^xsd:date; + base:work\#DateEnd_Min "1895-10-30"^^xsd:date; + base:work\#DateStart_Max "1895-10-30"^^xsd:date; + base:work\#DateStart_Min "1895-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17076; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-JohnstNY-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17077 a base:work; + base:work\#DateEnd_Max "1895-11-02"^^xsd:date; + base:work\#DateEnd_Min "1895-11-02"^^xsd:date; + base:work\#DateStart_Max "1895-10-31"^^xsd:date; + base:work\#DateStart_Min "1895-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17077; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/178; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17078 a base:work; + base:work\#DateEnd_Max "1895-11-04"^^xsd:date; + base:work\#DateEnd_Min "1895-11-04"^^xsd:date; + base:work\#DateStart_Max "1895-11-04"^^xsd:date; + base:work\#DateStart_Min "1895-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17078; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17079 a base:work; + base:work\#DateEnd_Max "1895-11-06"^^xsd:date; + base:work\#DateEnd_Min "1895-11-06"^^xsd:date; + base:work\#DateStart_Max "1895-11-06"^^xsd:date; + base:work\#DateStart_Min "1895-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17079; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Itha-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17080 a base:work; + base:work\#DateEnd_Max "1895-11-08"^^xsd:date; + base:work\#DateEnd_Min "1895-11-08"^^xsd:date; + base:work\#DateStart_Max "1895-11-08"^^xsd:date; + base:work\#DateStart_Min "1895-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17080; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17081 a base:work; + base:work\#DateEnd_Max "1895-11-09"^^xsd:date; + base:work\#DateEnd_Min "1895-11-09"^^xsd:date; + base:work\#DateStart_Max "1895-11-09"^^xsd:date; + base:work\#DateStart_Min "1895-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17081; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17082 a base:work; + base:work\#DateEnd_Max "1895-11-11"^^xsd:date; + base:work\#DateEnd_Min "1895-11-11"^^xsd:date; + base:work\#DateStart_Max "1895-11-11"^^xsd:date; + base:work\#DateStart_Min "1895-11-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17082; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/4704; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17083 a base:work; + base:work\#DateEnd_Max "1895-11-12"^^xsd:date; + base:work\#DateEnd_Min "1895-11-12"^^xsd:date; + base:work\#DateStart_Max "1895-11-12"^^xsd:date; + base:work\#DateStart_Min "1895-11-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17083; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/1068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17084 a base:work; + base:work\#DateEnd_Max "1895-11-13"^^xsd:date; + base:work\#DateEnd_Min "1895-11-13"^^xsd:date; + base:work\#DateStart_Max "1895-11-13"^^xsd:date; + base:work\#DateStart_Min "1895-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17084; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDOrganisation base:organisation\/5332; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17085 a base:work; + base:work\#DateEnd_Max "1895-11-14"^^xsd:date; + base:work\#DateEnd_Min "1895-11-14"^^xsd:date; + base:work\#DateStart_Max "1895-11-14"^^xsd:date; + base:work\#DateStart_Min "1895-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17085; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CMiddl-00; + base:work\#ref-IDOrganisation base:organisation\/5569; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17086 a base:work; + base:work\#DateEnd_Max "1895-11-16"^^xsd:date; + base:work\#DateEnd_Min "1895-11-16"^^xsd:date; + base:work\#DateStart_Max "1895-11-16"^^xsd:date; + base:work\#DateStart_Min "1895-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17086; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17087 a base:work; + base:work\#DateEnd_Max "1895-11-30"^^xsd:date; + base:work\#DateEnd_Min "1895-11-30"^^xsd:date; + base:work\#DateStart_Max "1895-11-18"^^xsd:date; + base:work\#DateStart_Min "1895-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17087; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17088 a base:work; + base:work\#DateEnd_Max "1895-12-02"^^xsd:date; + base:work\#DateEnd_Min "1895-12-02"^^xsd:date; + base:work\#DateStart_Max "1895-12-02"^^xsd:date; + base:work\#DateStart_Min "1895-12-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17088; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wilm-01; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17089 a base:work; + base:work\#DateEnd_Max "1895-12-04"^^xsd:date; + base:work\#DateEnd_Min "1895-12-04"^^xsd:date; + base:work\#DateStart_Max "1895-12-04"^^xsd:date; + base:work\#DateStart_Min "1895-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17089; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17090 a base:work; + base:work\#DateEnd_Max "1895-12-05"^^xsd:date; + base:work\#DateEnd_Min "1895-12-05"^^xsd:date; + base:work\#DateStart_Max "1895-12-05"^^xsd:date; + base:work\#DateStart_Min "1895-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17090; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lanc-00; + base:work\#ref-IDOrganisation base:organisation\/4920; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17091 a base:work; + base:work\#DateEnd_Max "1895-12-05"^^xsd:date; + base:work\#DateEnd_Min "1895-12-05"^^xsd:date; + base:work\#DateStart_Max "1895-12-05"^^xsd:date; + base:work\#DateStart_Min "1895-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17091; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/5068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17092 a base:work; + base:work\#DateEnd_Max "1895-12-07"^^xsd:date; + base:work\#DateEnd_Min "1895-12-07"^^xsd:date; + base:work\#DateStart_Max "1895-12-07"^^xsd:date; + base:work\#DateStart_Min "1895-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17092; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Read-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17093 a base:work; + base:work\#DateEnd_Max "1895-12-14"^^xsd:date; + base:work\#DateEnd_Min "1895-12-14"^^xsd:date; + base:work\#DateStart_Max "1895-12-09"^^xsd:date; + base:work\#DateStart_Min "1895-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17093; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17094 a base:work; + base:work\#DateEnd_Max "1895-12-17"^^xsd:date; + base:work\#DateEnd_Min "1895-12-17"^^xsd:date; + base:work\#DateStart_Max "1895-12-16"^^xsd:date; + base:work\#DateStart_Min "1895-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17094; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/5681; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17095 a base:work; + base:work\#DateEnd_Max "1895-12-25"^^xsd:date; + base:work\#DateEnd_Min "1895-12-25"^^xsd:date; + base:work\#DateStart_Max "1895-12-25"^^xsd:date; + base:work\#DateStart_Min "1895-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17095; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bridgep-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17096 a base:work; + base:work\#DateEnd_Max "1895-12-26"^^xsd:date; + base:work\#DateEnd_Min "1895-12-26"^^xsd:date; + base:work\#DateStart_Max "1895-12-26"^^xsd:date; + base:work\#DateStart_Min "1895-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17096; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17097 a base:work; + base:work\#DateEnd_Max "1896-01-11"^^xsd:date; + base:work\#DateEnd_Min "1896-01-11"^^xsd:date; + base:work\#DateStart_Max "1895-12-30"^^xsd:date; + base:work\#DateStart_Min "1895-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17097; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/5220; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17098 a base:work; + base:work\#DateEnd_Max "1896-01-18"^^xsd:date; + base:work\#DateEnd_Min "1896-01-18"^^xsd:date; + base:work\#DateStart_Max "1896-01-13"^^xsd:date; + base:work\#DateStart_Min "1896-01-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17098; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17099 a base:work; + base:work\#DateEnd_Max "1897-02-06"^^xsd:date; + base:work\#DateEnd_Min "1897-02-06"^^xsd:date; + base:work\#DateStart_Max "1897-01-25"^^xsd:date; + base:work\#DateStart_Min "1897-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17099; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/171 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 171; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/17100 a base:work; + base:work\#DateEnd_Max "1897-02-09"^^xsd:date; + base:work\#DateEnd_Min "1897-02-09"^^xsd:date; + base:work\#DateStart_Max "1897-02-08"^^xsd:date; + base:work\#DateStart_Min "1897-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17100; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17101 a base:work; + base:work\#DateEnd_Max "1897-02-13"^^xsd:date; + base:work\#DateEnd_Min "1897-02-13"^^xsd:date; + base:work\#DateStart_Max "1897-02-10"^^xsd:date; + base:work\#DateStart_Min "1897-02-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17101; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17102 a base:work; + base:work\#DateEnd_Max "1897-10-20"^^xsd:date; + base:work\#DateEnd_Min "1897-10-20"^^xsd:date; + base:work\#DateStart_Max "1897-10-18"^^xsd:date; + base:work\#DateStart_Min "1897-10-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17102; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17103 a base:work; + base:work\#DateEnd_Max "1897-10-22"^^xsd:date; + base:work\#DateEnd_Min "1897-10-22"^^xsd:date; + base:work\#DateStart_Max "1897-10-21"^^xsd:date; + base:work\#DateStart_Min "1897-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17103; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17104 a base:work; + base:work\#DateEnd_Max "1897-10-23"^^xsd:date; + base:work\#DateEnd_Min "1897-10-23"^^xsd:date; + base:work\#DateStart_Max "1897-10-23"^^xsd:date; + base:work\#DateStart_Min "1897-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17104; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17105 a base:work; + base:work\#DateEnd_Max "1897-10-25"^^xsd:date; + base:work\#DateEnd_Min "1897-10-25"^^xsd:date; + base:work\#DateStart_Max "1897-10-25"^^xsd:date; + base:work\#DateStart_Min "1897-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17105; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17106 a base:work; + base:work\#DateEnd_Max "1897-10-26"^^xsd:date; + base:work\#DateEnd_Min "1897-10-26"^^xsd:date; + base:work\#DateStart_Max "1897-10-26"^^xsd:date; + base:work\#DateStart_Min "1897-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17106; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17107 a base:work; + base:work\#DateEnd_Max "1897-10-27"^^xsd:date; + base:work\#DateEnd_Min "1897-10-27"^^xsd:date; + base:work\#DateStart_Max "1897-10-27"^^xsd:date; + base:work\#DateStart_Min "1897-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17107; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dubuq-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17108 a base:work; + base:work\#DateEnd_Max "1897-11-20"^^xsd:date; + base:work\#DateEnd_Min "1897-11-20"^^xsd:date; + base:work\#DateStart_Max "1897-11-01"^^xsd:date; + base:work\#DateStart_Min "1897-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17108; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17109 a base:work; + base:work\#DateEnd_Max "1897-11-23"^^xsd:date; + base:work\#DateEnd_Min "1897-11-23"^^xsd:date; + base:work\#DateStart_Max "1897-11-22"^^xsd:date; + base:work\#DateStart_Min "1897-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17109; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/335; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17110 a base:work; + base:work\#DateEnd_Max "1897-11-25"^^xsd:date; + base:work\#DateEnd_Min "1897-11-25"^^xsd:date; + base:work\#DateStart_Max "1897-11-24"^^xsd:date; + base:work\#DateStart_Min "1897-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17110; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17111 a base:work; + base:work\#DateEnd_Max "1897-11-27"^^xsd:date; + base:work\#DateEnd_Min "1897-11-27"^^xsd:date; + base:work\#DateStart_Max "1897-11-26"^^xsd:date; + base:work\#DateStart_Min "1897-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17111; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17112 a base:work; + base:work\#DateEnd_Max "1897-11-29"^^xsd:date; + base:work\#DateEnd_Min "1897-11-29"^^xsd:date; + base:work\#DateStart_Max "1897-11-29"^^xsd:date; + base:work\#DateStart_Min "1897-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17112; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17113 a base:work; + base:work\#DateEnd_Max "1897-12-03"^^xsd:date; + base:work\#DateEnd_Min "1897-12-03"^^xsd:date; + base:work\#DateStart_Max "1897-12-03"^^xsd:date; + base:work\#DateStart_Min "1897-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17113; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17114 a base:work; + base:work\#DateEnd_Max "1897-12-04"^^xsd:date; + base:work\#DateEnd_Min "1897-12-04"^^xsd:date; + base:work\#DateStart_Max "1897-12-04"^^xsd:date; + base:work\#DateStart_Min "1897-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17114; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17115 a base:work; + base:work\#DateEnd_Max "1897-12-08"^^xsd:date; + base:work\#DateEnd_Min "1897-12-08"^^xsd:date; + base:work\#DateStart_Max "1897-12-06"^^xsd:date; + base:work\#DateStart_Min "1897-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17115; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDOrganisation base:organisation\/151; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17116 a base:work; + base:work\#DateEnd_Max "1897-12-09"^^xsd:date; + base:work\#DateEnd_Min "1897-12-09"^^xsd:date; + base:work\#DateStart_Max "1897-12-09"^^xsd:date; + base:work\#DateStart_Min "1897-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17116; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lex-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17117 a base:work; + base:work\#DateEnd_Max "1897-12-11"^^xsd:date; + base:work\#DateEnd_Min "1897-12-11"^^xsd:date; + base:work\#DateStart_Max "1897-12-10"^^xsd:date; + base:work\#DateStart_Min "1897-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17117; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDOrganisation base:organisation\/2806; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17118 a base:work; + base:work\#DateEnd_Max "1897-12-14"^^xsd:date; + base:work\#DateEnd_Min "1897-12-14"^^xsd:date; + base:work\#DateStart_Max "1897-12-13"^^xsd:date; + base:work\#DateStart_Min "1897-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17118; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17119 a base:work; + base:work\#DateEnd_Max "1897-12-15"^^xsd:date; + base:work\#DateEnd_Min "1897-12-15"^^xsd:date; + base:work\#DateStart_Max "1897-12-15"^^xsd:date; + base:work\#DateStart_Min "1897-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17119; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LtlRo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17120 a base:work; + base:work\#DateEnd_Max "1897-12-25"^^xsd:date; + base:work\#DateEnd_Min "1897-12-25"^^xsd:date; + base:work\#DateStart_Max "1897-12-20"^^xsd:date; + base:work\#DateStart_Min "1897-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17120; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation base:organisation\/60000; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17121 a base:work; + base:work\#DateEnd_Max "1898-01-03"^^xsd:date; + base:work\#DateEnd_Min "1898-01-03"^^xsd:date; + base:work\#DateStart_Max "1898-01-03"^^xsd:date; + base:work\#DateStart_Min "1898-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17121; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17122 a base:work; + base:work\#DateEnd_Max "1898-01-04"^^xsd:date; + base:work\#DateEnd_Min "1898-01-04"^^xsd:date; + base:work\#DateStart_Max "1898-01-04"^^xsd:date; + base:work\#DateStart_Min "1898-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17122; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17123 a base:work; + base:work\#DateEnd_Max "1898-01-05"^^xsd:date; + base:work\#DateEnd_Min "1898-01-05"^^xsd:date; + base:work\#DateStart_Max "1898-01-05"^^xsd:date; + base:work\#DateStart_Min "1898-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17123; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Galv-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17124 a base:work; + base:work\#DateEnd_Max "1898-01-06"^^xsd:date; + base:work\#DateEnd_Min "1898-01-06"^^xsd:date; + base:work\#DateStart_Max "1898-01-06"^^xsd:date; + base:work\#DateStart_Min "1898-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17124; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation base:organisation\/5228; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17125 a base:work; + base:work\#DateEnd_Max "1898-01-08"^^xsd:date; + base:work\#DateEnd_Min "1898-01-08"^^xsd:date; + base:work\#DateStart_Max "1898-01-07"^^xsd:date; + base:work\#DateStart_Min "1898-01-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17125; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanAnt-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17126 a base:work; + base:work\#DateEnd_Max "1898-01-22"^^xsd:date; + base:work\#DateEnd_Min "1898-01-22"^^xsd:date; + base:work\#DateStart_Max "1898-01-17"^^xsd:date; + base:work\#DateStart_Min "1898-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17126; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/4964; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17127 a base:work; + base:work\#DateEnd_Max "1898-01-25"^^xsd:date; + base:work\#DateEnd_Min "1898-01-25"^^xsd:date; + base:work\#DateStart_Max "1898-01-24"^^xsd:date; + base:work\#DateStart_Min "1898-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17127; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17128 a base:work; + base:work\#DateEnd_Max "1898-01-29"^^xsd:date; + base:work\#DateEnd_Min "1898-01-29"^^xsd:date; + base:work\#DateStart_Max "1898-01-26"^^xsd:date; + base:work\#DateStart_Min "1898-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17128; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17129 a base:work; + base:work\#DateEnd_Max "1898-01-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-31"^^xsd:date; + base:work\#DateStart_Max "1898-01-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17129; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Chatt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17130 a base:work; + base:work\#DateEnd_Max "1898-02-01"^^xsd:date; + base:work\#DateEnd_Min "1898-02-01"^^xsd:date; + base:work\#DateStart_Max "1898-02-01"^^xsd:date; + base:work\#DateStart_Min "1898-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17130; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Knox-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17131 a base:work; + base:work\#DateEnd_Max "1898-02-02"^^xsd:date; + base:work\#DateEnd_Min "1898-02-02"^^xsd:date; + base:work\#DateStart_Max "1898-02-02"^^xsd:date; + base:work\#DateStart_Min "1898-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17131; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Roano-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17132 a base:work; + base:work\#DateEnd_Max "1898-02-04"^^xsd:date; + base:work\#DateEnd_Min "1898-02-04"^^xsd:date; + base:work\#DateStart_Max "1898-02-03"^^xsd:date; + base:work\#DateStart_Min "1898-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17132; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/49080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17133 a base:work; + base:work\#DateEnd_Max "1898-02-05"^^xsd:date; + base:work\#DateEnd_Min "1898-02-05"^^xsd:date; + base:work\#DateStart_Max "1898-02-05"^^xsd:date; + base:work\#DateStart_Min "1898-02-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17133; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/71973; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17134 a base:work; + base:work\#DateEnd_Max "1898-02-19"^^xsd:date; + base:work\#DateEnd_Min "1898-02-19"^^xsd:date; + base:work\#DateStart_Max "1898-02-07"^^xsd:date; + base:work\#DateStart_Min "1898-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17134; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17135 a base:work; + base:work\#DateEnd_Max "1898-02-22"^^xsd:date; + base:work\#DateEnd_Min "1898-02-22"^^xsd:date; + base:work\#DateStart_Max "1898-02-22"^^xsd:date; + base:work\#DateStart_Min "1898-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17135; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDOrganisation base:organisation\/1720; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17136 a base:work; + base:work\#DateEnd_Max "1898-03-12"^^xsd:date; + base:work\#DateEnd_Min "1898-03-12"^^xsd:date; + base:work\#DateStart_Max "1898-02-28"^^xsd:date; + base:work\#DateStart_Min "1898-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17136; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/54350; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17137 a base:work; + base:work\#DateEnd_Max "1898-03-20"^^xsd:date; + base:work\#DateEnd_Min "1898-03-20"^^xsd:date; + base:work\#DateStart_Max "1898-03-20"^^xsd:date; + base:work\#DateStart_Min "1898-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17137; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17138 a base:work; + base:work\#DateEnd_Max "1898-04-07"^^xsd:date; + base:work\#DateEnd_Min "1898-04-07"^^xsd:date; + base:work\#DateStart_Max "1898-03-28"^^xsd:date; + base:work\#DateStart_Min "1898-03-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17138; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/54280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17139 a base:work; + base:work\#DateEnd_Max "1898-07-07"^^xsd:date; + base:work\#DateEnd_Min "1898-07-07"^^xsd:date; + base:work\#DateStart_Max "1898-06-13"^^xsd:date; + base:work\#DateStart_Min "1898-06-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17139; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17140 a base:work; + base:work\#DateEnd_Max "1898-09-03"^^xsd:date; + base:work\#DateEnd_Min "1898-09-03"^^xsd:date; + base:work\#DateStart_Max "1898-09-01"^^xsd:date; + base:work\#DateStart_Min "1898-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17140; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17141 a base:work; + base:work\#DateEnd_Max "1898-09-05"^^xsd:date; + base:work\#DateEnd_Min "1898-09-05"^^xsd:date; + base:work\#DateStart_Max "1898-09-05"^^xsd:date; + base:work\#DateStart_Min "1898-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17141; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SantAn-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17142 a base:work; + base:work\#DateEnd_Max "1898-09-10"^^xsd:date; + base:work\#DateEnd_Min "1898-09-10"^^xsd:date; + base:work\#DateStart_Max "1898-09-07"^^xsd:date; + base:work\#DateStart_Min "1898-09-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17142; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDOrganisation base:organisation\/2821; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17143 a base:work; + base:work\#DateEnd_Max "1898-09-24"^^xsd:date; + base:work\#DateEnd_Min "1898-09-24"^^xsd:date; + base:work\#DateStart_Max "1898-09-12"^^xsd:date; + base:work\#DateStart_Min "1898-09-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17143; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17144 a base:work; + base:work\#DateEnd_Max "1898-09-28"^^xsd:date; + base:work\#DateEnd_Min "1898-09-28"^^xsd:date; + base:work\#DateStart_Max "1898-09-26"^^xsd:date; + base:work\#DateStart_Min "1898-09-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17144; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oakl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17145 a base:work; + base:work\#DateEnd_Max "1898-09-29"^^xsd:date; + base:work\#DateEnd_Min "1898-09-29"^^xsd:date; + base:work\#DateStart_Max "1898-09-29"^^xsd:date; + base:work\#DateStart_Min "1898-09-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17145; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SantRos-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17146 a base:work; + base:work\#DateEnd_Max "1898-09-30"^^xsd:date; + base:work\#DateEnd_Min "1898-09-30"^^xsd:date; + base:work\#DateStart_Max "1898-09-30"^^xsd:date; + base:work\#DateStart_Min "1898-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17146; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17147 a base:work; + base:work\#DateEnd_Max "1898-10-01"^^xsd:date; + base:work\#DateEnd_Min "1898-10-01"^^xsd:date; + base:work\#DateStart_Max "1898-10-01"^^xsd:date; + base:work\#DateStart_Min "1898-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17147; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Stockt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17148 a base:work; + base:work\#DateEnd_Max "1898-10-03"^^xsd:date; + base:work\#DateEnd_Min "1898-10-03"^^xsd:date; + base:work\#DateStart_Max "1898-10-03"^^xsd:date; + base:work\#DateStart_Min "1898-10-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17148; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fres-00; + base:work\#ref-IDOrganisation base:organisation\/5377; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17149 a base:work; + base:work\#DateEnd_Max "1898-10-06"^^xsd:date; + base:work\#DateEnd_Min "1898-10-06"^^xsd:date; + base:work\#DateStart_Max "1898-10-06"^^xsd:date; + base:work\#DateStart_Min "1898-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17149; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tri-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17150 a base:work; + base:work\#DateEnd_Max "1898-10-07"^^xsd:date; + base:work\#DateEnd_Min "1898-10-07"^^xsd:date; + base:work\#DateStart_Max "1898-10-07"^^xsd:date; + base:work\#DateStart_Min "1898-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17150; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17151 a base:work; + base:work\#DateEnd_Max "1898-10-10"^^xsd:date; + base:work\#DateEnd_Min "1898-10-10"^^xsd:date; + base:work\#DateStart_Max "1898-10-10"^^xsd:date; + base:work\#DateStart_Min "1898-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17151; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atch-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17152 a base:work; + base:work\#DateEnd_Max "1898-10-12"^^xsd:date; + base:work\#DateEnd_Min "1898-10-12"^^xsd:date; + base:work\#DateStart_Max "1898-10-11"^^xsd:date; + base:work\#DateStart_Min "1898-10-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17152; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17153 a base:work; + base:work\#DateEnd_Max "1898-10-13"^^xsd:date; + base:work\#DateEnd_Min "1898-10-13"^^xsd:date; + base:work\#DateStart_Max "1898-10-13"^^xsd:date; + base:work\#DateStart_Min "1898-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17153; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17154 a base:work; + base:work\#DateEnd_Max "1898-10-15"^^xsd:date; + base:work\#DateEnd_Min "1898-10-15"^^xsd:date; + base:work\#DateStart_Max "1898-10-14"^^xsd:date; + base:work\#DateStart_Min "1898-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17154; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17155 a base:work; + base:work\#DateEnd_Max "1898-11-05"^^xsd:date; + base:work\#DateEnd_Min "1898-11-05"^^xsd:date; + base:work\#DateStart_Max "1898-10-17"^^xsd:date; + base:work\#DateStart_Min "1898-10-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17155; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17156 a base:work; + base:work\#DateEnd_Max "1898-11-12"^^xsd:date; + base:work\#DateEnd_Min "1898-11-12"^^xsd:date; + base:work\#DateStart_Max "1898-11-07"^^xsd:date; + base:work\#DateStart_Min "1898-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17156; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17157 a base:work; + base:work\#DateEnd_Max "1898-11-19"^^xsd:date; + base:work\#DateEnd_Min "1898-11-19"^^xsd:date; + base:work\#DateStart_Max "1898-11-14"^^xsd:date; + base:work\#DateStart_Min "1898-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17157; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17158 a base:work; + base:work\#DateEnd_Max "1898-11-22"^^xsd:date; + base:work\#DateEnd_Min "1898-11-22"^^xsd:date; + base:work\#DateStart_Max "1898-11-22"^^xsd:date; + base:work\#DateStart_Min "1898-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17158; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17159 a base:work; + base:work\#DateEnd_Max "1898-11-24"^^xsd:date; + base:work\#DateEnd_Min "1898-11-24"^^xsd:date; + base:work\#DateStart_Max "1898-11-23"^^xsd:date; + base:work\#DateStart_Min "1898-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17159; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/1380; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17160 a base:work; + base:work\#DateEnd_Max "1898-11-25"^^xsd:date; + base:work\#DateEnd_Min "1898-11-25"^^xsd:date; + base:work\#DateStart_Max "1898-11-25"^^xsd:date; + base:work\#DateStart_Min "1898-11-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17160; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/4688; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17161 a base:work; + base:work\#DateEnd_Max "1898-11-26"^^xsd:date; + base:work\#DateEnd_Min "1898-11-26"^^xsd:date; + base:work\#DateStart_Max "1898-11-26"^^xsd:date; + base:work\#DateStart_Min "1898-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17161; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Itha-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17162 a base:work; + base:work\#DateEnd_Max "1898-11-28"^^xsd:date; + base:work\#DateEnd_Min "1898-11-28"^^xsd:date; + base:work\#DateStart_Max "1898-11-28"^^xsd:date; + base:work\#DateStart_Min "1898-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17162; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17163 a base:work; + base:work\#DateEnd_Max "1898-11-30"^^xsd:date; + base:work\#DateEnd_Min "1898-11-30"^^xsd:date; + base:work\#DateStart_Max "1898-11-30"^^xsd:date; + base:work\#DateStart_Min "1898-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17163; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17164 a base:work; + base:work\#DateEnd_Max "1898-12-01"^^xsd:date; + base:work\#DateEnd_Min "1898-12-01"^^xsd:date; + base:work\#DateStart_Max "1898-12-01"^^xsd:date; + base:work\#DateStart_Min "1898-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17164; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17165 a base:work; + base:work\#DateEnd_Max "1898-12-02"^^xsd:date; + base:work\#DateEnd_Min "1898-12-02"^^xsd:date; + base:work\#DateStart_Max "1898-12-02"^^xsd:date; + base:work\#DateStart_Min "1898-12-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17165; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Trent-00; + base:work\#ref-IDOrganisation base:organisation\/5701; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17166 a base:work; + base:work\#DateEnd_Max "1898-12-03"^^xsd:date; + base:work\#DateEnd_Min "1898-12-03"^^xsd:date; + base:work\#DateStart_Max "1898-12-03"^^xsd:date; + base:work\#DateStart_Min "1898-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17166; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17167 a base:work; + base:work\#DateEnd_Max "1898-12-10"^^xsd:date; + base:work\#DateEnd_Min "1898-12-10"^^xsd:date; + base:work\#DateStart_Max "1898-12-05"^^xsd:date; + base:work\#DateStart_Min "1898-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17167; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17168 a base:work; + base:work\#DateEnd_Max "1898-12-17"^^xsd:date; + base:work\#DateEnd_Min "1898-12-17"^^xsd:date; + base:work\#DateStart_Max "1898-12-12"^^xsd:date; + base:work\#DateStart_Min "1898-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17168; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/4660; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17169 a base:work; + base:work\#DateEnd_Max "1898-12-26"^^xsd:date; + base:work\#DateEnd_Min "1898-12-26"^^xsd:date; + base:work\#DateStart_Max "1898-12-26"^^xsd:date; + base:work\#DateStart_Min "1898-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17169; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17170 a base:work; + base:work\#DateEnd_Max "1898-12-28"^^xsd:date; + base:work\#DateEnd_Min "1898-12-28"^^xsd:date; + base:work\#DateStart_Max "1898-12-28"^^xsd:date; + base:work\#DateStart_Min "1898-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17170; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17171 a base:work; + base:work\#DateEnd_Max "1898-12-29"^^xsd:date; + base:work\#DateEnd_Min "1898-12-29"^^xsd:date; + base:work\#DateStart_Max "1898-12-29"^^xsd:date; + base:work\#DateStart_Min "1898-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17171; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17172 a base:work; + base:work\#DateEnd_Max "1898-12-30"^^xsd:date; + base:work\#DateEnd_Min "1898-12-30"^^xsd:date; + base:work\#DateStart_Max "1898-12-30"^^xsd:date; + base:work\#DateStart_Min "1898-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17172; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CMiddl-00; + base:work\#ref-IDOrganisation base:organisation\/5569; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17173 a base:work; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-12-31"^^xsd:date; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17173; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NLdn-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17174 a base:work; + base:work\#DateEnd_Max "1899-01-04"^^xsd:date; + base:work\#DateEnd_Min "1899-01-04"^^xsd:date; + base:work\#DateStart_Max "1899-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17174; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17175 a base:work; + base:work\#DateEnd_Max "1899-01-09"^^xsd:date; + base:work\#DateEnd_Min "1899-01-09"^^xsd:date; + base:work\#DateStart_Max "1899-01-09"^^xsd:date; + base:work\#DateStart_Min "1899-01-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17175; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Low-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17176 a base:work; + base:work\#DateEnd_Max "1899-01-12"^^xsd:date; + base:work\#DateEnd_Min "1899-01-12"^^xsd:date; + base:work\#DateStart_Max "1899-01-12"^^xsd:date; + base:work\#DateStart_Min "1899-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17176; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Nort-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17177 a base:work; + base:work\#DateEnd_Max "1899-01-14"^^xsd:date; + base:work\#DateEnd_Min "1899-01-14"^^xsd:date; + base:work\#DateStart_Max "1899-01-14"^^xsd:date; + base:work\#DateStart_Min "1899-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17177; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDOrganisation base:organisation\/5661; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17178 a base:work; + base:work\#DateEnd_Max "1899-01-21"^^xsd:date; + base:work\#DateEnd_Min "1899-01-21"^^xsd:date; + base:work\#DateStart_Max "1899-01-16"^^xsd:date; + base:work\#DateStart_Min "1899-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17178; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17179 a base:work; + base:work\#DateEnd_Max "1899-01-27"^^xsd:date; + base:work\#DateEnd_Min "1899-01-27"^^xsd:date; + base:work\#DateStart_Max "1899-01-23"^^xsd:date; + base:work\#DateStart_Min "1899-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17179; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17180 a base:work; + base:work\#DateEnd_Max "1899-01-28"^^xsd:date; + base:work\#DateEnd_Min "1899-01-28"^^xsd:date; + base:work\#DateStart_Max "1899-01-28"^^xsd:date; + base:work\#DateStart_Min "1899-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17180; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17181 a base:work; + base:work\#DateEnd_Max "1899-01-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-31"^^xsd:date; + base:work\#DateStart_Max "1899-01-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17181; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pough-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17182 a base:work; + base:work\#DateEnd_Max "1899-02-02"^^xsd:date; + base:work\#DateEnd_Min "1899-02-02"^^xsd:date; + base:work\#DateStart_Max "1899-02-01"^^xsd:date; + base:work\#DateStart_Min "1899-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17182; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17183 a base:work; + base:work\#DateEnd_Max "1899-02-04"^^xsd:date; + base:work\#DateEnd_Min "1899-02-04"^^xsd:date; + base:work\#DateStart_Max "1899-02-04"^^xsd:date; + base:work\#DateStart_Min "1899-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17183; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OgdNY-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17184 a base:work; + base:work\#DateEnd_Max "1899-02-08"^^xsd:date; + base:work\#DateEnd_Min "1899-02-08"^^xsd:date; + base:work\#DateStart_Max "1899-02-06"^^xsd:date; + base:work\#DateStart_Min "1899-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17184; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Otta-00; + base:work\#ref-IDOrganisation base:organisation\/1670; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17185 a base:work; + base:work\#DateEnd_Max "1899-02-15"^^xsd:date; + base:work\#DateEnd_Min "1899-02-15"^^xsd:date; + base:work\#DateStart_Max "1899-02-13"^^xsd:date; + base:work\#DateStart_Min "1899-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17185; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/71971; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17186 a base:work; + base:work\#DateEnd_Max "1899-02-18"^^xsd:date; + base:work\#DateEnd_Min "1899-02-18"^^xsd:date; + base:work\#DateStart_Max "1899-02-16"^^xsd:date; + base:work\#DateStart_Min "1899-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17186; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17187 a base:work; + base:work\#DateEnd_Max "1899-02-22"^^xsd:date; + base:work\#DateEnd_Min "1899-02-22"^^xsd:date; + base:work\#DateStart_Max "1899-02-20"^^xsd:date; + base:work\#DateStart_Min "1899-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17187; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17188 a base:work; + base:work\#DateEnd_Max "1899-02-23"^^xsd:date; + base:work\#DateEnd_Min "1899-02-23"^^xsd:date; + base:work\#DateStart_Max "1899-02-23"^^xsd:date; + base:work\#DateStart_Min "1899-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17188; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mansfi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17189 a base:work; + base:work\#DateEnd_Max "1899-02-25"^^xsd:date; + base:work\#DateEnd_Min "1899-02-25"^^xsd:date; + base:work\#DateStart_Max "1899-02-24"^^xsd:date; + base:work\#DateStart_Min "1899-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17189; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17190 a base:work; + base:work\#DateEnd_Max "1899-03-01"^^xsd:date; + base:work\#DateEnd_Min "1899-03-01"^^xsd:date; + base:work\#DateStart_Max "1899-02-27"^^xsd:date; + base:work\#DateStart_Min "1899-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17190; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/335; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17191 a base:work; + base:work\#DateEnd_Max "1899-03-02"^^xsd:date; + base:work\#DateEnd_Min "1899-03-02"^^xsd:date; + base:work\#DateStart_Max "1899-03-02"^^xsd:date; + base:work\#DateStart_Min "1899-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17191; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17192 a base:work; + base:work\#DateEnd_Max "1899-03-03"^^xsd:date; + base:work\#DateEnd_Min "1899-03-03"^^xsd:date; + base:work\#DateStart_Max "1899-03-03"^^xsd:date; + base:work\#DateStart_Min "1899-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17192; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Evansv-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17193 a base:work; + base:work\#DateEnd_Max "1899-03-04"^^xsd:date; + base:work\#DateEnd_Min "1899-03-04"^^xsd:date; + base:work\#DateStart_Max "1899-03-04"^^xsd:date; + base:work\#DateStart_Min "1899-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17193; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Owens-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17194 a base:work; + base:work\#DateEnd_Max "1899-03-08"^^xsd:date; + base:work\#DateEnd_Min "1899-03-08"^^xsd:date; + base:work\#DateStart_Max "1899-03-06"^^xsd:date; + base:work\#DateStart_Min "1899-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17194; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17195 a base:work; + base:work\#DateEnd_Max "1899-03-09"^^xsd:date; + base:work\#DateEnd_Min "1899-03-09"^^xsd:date; + base:work\#DateStart_Max "1899-03-09"^^xsd:date; + base:work\#DateStart_Min "1899-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17195; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USa-FairmI-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17196 a base:work; + base:work\#DateEnd_Max "1899-03-10"^^xsd:date; + base:work\#DateEnd_Min "1899-03-10"^^xsd:date; + base:work\#DateStart_Max "1899-03-10"^^xsd:date; + base:work\#DateStart_Min "1899-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17196; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/72055; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17197 a base:work; + base:work\#DateEnd_Max "1899-03-11"^^xsd:date; + base:work\#DateEnd_Min "1899-03-11"^^xsd:date; + base:work\#DateStart_Max "1899-03-11"^^xsd:date; + base:work\#DateStart_Min "1899-03-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17197; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/5613; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17198 a base:work; + base:work\#DateEnd_Max "1899-03-18"^^xsd:date; + base:work\#DateEnd_Min "1899-03-18"^^xsd:date; + base:work\#DateStart_Max "1899-03-16"^^xsd:date; + base:work\#DateStart_Min "1899-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17198; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17199 a base:work; + base:work\#DateEnd_Max "1899-03-20"^^xsd:date; + base:work\#DateEnd_Min "1899-03-20"^^xsd:date; + base:work\#DateStart_Max "1899-03-20"^^xsd:date; + base:work\#DateStart_Min "1899-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17199; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OshkW-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/172 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 172; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/CH-GEN-00; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/17200 a base:work; + base:work\#DateEnd_Max "1899-03-21"^^xsd:date; + base:work\#DateEnd_Min "1899-03-21"^^xsd:date; + base:work\#DateStart_Max "1899-03-21"^^xsd:date; + base:work\#DateStart_Min "1899-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17200; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Rac-00; + base:work\#ref-IDOrganisation base:organisation\/5381; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17201 a base:work; + base:work\#DateEnd_Max "1899-03-23"^^xsd:date; + base:work\#DateEnd_Min "1899-03-23"^^xsd:date; + base:work\#DateStart_Max "1899-03-23"^^xsd:date; + base:work\#DateStart_Min "1899-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17201; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17202 a base:work; + base:work\#DateEnd_Max "1899-03-24"^^xsd:date; + base:work\#DateEnd_Min "1899-03-24"^^xsd:date; + base:work\#DateStart_Max "1899-03-24"^^xsd:date; + base:work\#DateStart_Min "1899-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17202; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-EauCl-00; + base:work\#ref-IDOrganisation base:organisation\/5477; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17203 a base:work; + base:work\#DateEnd_Max "1899-04-05"^^xsd:date; + base:work\#DateEnd_Min "1899-04-05"^^xsd:date; + base:work\#DateStart_Max "1899-04-03"^^xsd:date; + base:work\#DateStart_Min "1899-04-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17203; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17204 a base:work; + base:work\#DateEnd_Max "1899-04-08"^^xsd:date; + base:work\#DateEnd_Min "1899-04-08"^^xsd:date; + base:work\#DateStart_Max "1899-04-06"^^xsd:date; + base:work\#DateStart_Min "1899-04-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17204; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17205 a base:work; + base:work\#DateEnd_Max "1899-04-11"^^xsd:date; + base:work\#DateEnd_Min "1899-04-11"^^xsd:date; + base:work\#DateStart_Max "1899-04-11"^^xsd:date; + base:work\#DateStart_Min "1899-04-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17205; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USa-SiouF-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17206 a base:work; + base:work\#DateEnd_Max "1899-04-12"^^xsd:date; + base:work\#DateEnd_Min "1899-04-12"^^xsd:date; + base:work\#DateStart_Max "1899-04-12"^^xsd:date; + base:work\#DateStart_Min "1899-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17206; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDOrganisation base:organisation\/54530; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17207 a base:work; + base:work\#DateEnd_Max "1899-04-13"^^xsd:date; + base:work\#DateEnd_Min "1899-04-13"^^xsd:date; + base:work\#DateStart_Max "1899-04-13"^^xsd:date; + base:work\#DateStart_Min "1899-04-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17207; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDOrganisation base:organisation\/72080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17208 a base:work; + base:work\#DateEnd_Max "1899-04-15"^^xsd:date; + base:work\#DateEnd_Min "1899-04-15"^^xsd:date; + base:work\#DateStart_Max "1899-04-14"^^xsd:date; + base:work\#DateStart_Min "1899-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17208; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17209 a base:work; + base:work\#DateEnd_Max "1899-04-22"^^xsd:date; + base:work\#DateEnd_Min "1899-04-22"^^xsd:date; + base:work\#DateStart_Max "1899-04-17"^^xsd:date; + base:work\#DateStart_Min "1899-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17209; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17210 a base:work; + base:work\#DateEnd_Max "1899-04-29"^^xsd:date; + base:work\#DateEnd_Min "1899-04-29"^^xsd:date; + base:work\#DateStart_Max "1899-04-24"^^xsd:date; + base:work\#DateStart_Min "1899-04-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17210; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17211 a base:work; + base:work\#DateEnd_Max "1899-09-06"^^xsd:date; + base:work\#DateEnd_Min "1899-09-06"^^xsd:date; + base:work\#DateStart_Max "1899-09-04"^^xsd:date; + base:work\#DateStart_Min "1899-09-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17211; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17212 a base:work; + base:work\#DateEnd_Max "1899-09-07"^^xsd:date; + base:work\#DateEnd_Min "1899-09-07"^^xsd:date; + base:work\#DateStart_Max "1899-09-07"^^xsd:date; + base:work\#DateStart_Min "1899-09-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17212; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CA-01; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17213 a base:work; + base:work\#DateEnd_Max "1899-09-08"^^xsd:date; + base:work\#DateEnd_Min "1899-09-08"^^xsd:date; + base:work\#DateStart_Max "1899-09-08"^^xsd:date; + base:work\#DateStart_Min "1899-09-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17213; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanB-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17214 a base:work; + base:work\#DateEnd_Max "1899-09-09"^^xsd:date; + base:work\#DateEnd_Min "1899-09-09"^^xsd:date; + base:work\#DateStart_Max "1899-09-09"^^xsd:date; + base:work\#DateStart_Min "1899-09-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17214; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Riv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17215 a base:work; + base:work\#DateEnd_Max "1899-09-16"^^xsd:date; + base:work\#DateEnd_Min "1899-09-16"^^xsd:date; + base:work\#DateStart_Max "1899-09-11"^^xsd:date; + base:work\#DateStart_Min "1899-09-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17215; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17216 a base:work; + base:work\#DateEnd_Max "1899-09-18"^^xsd:date; + base:work\#DateEnd_Min "1899-09-18"^^xsd:date; + base:work\#DateStart_Max "1899-09-18"^^xsd:date; + base:work\#DateStart_Min "1899-09-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17216; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StBarb-04; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17217 a base:work; + base:work\#DateEnd_Max "1899-09-20"^^xsd:date; + base:work\#DateEnd_Min "1899-09-20"^^xsd:date; + base:work\#DateStart_Max "1899-09-20"^^xsd:date; + base:work\#DateStart_Min "1899-09-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17217; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fres-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17218 a base:work; + base:work\#DateEnd_Max "1899-09-21"^^xsd:date; + base:work\#DateEnd_Min "1899-09-21"^^xsd:date; + base:work\#DateStart_Max "1899-09-21"^^xsd:date; + base:work\#DateStart_Min "1899-09-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17218; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Stockt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17219 a base:work; + base:work\#DateEnd_Max "1899-09-23"^^xsd:date; + base:work\#DateEnd_Min "1899-09-23"^^xsd:date; + base:work\#DateStart_Max "1899-09-22"^^xsd:date; + base:work\#DateStart_Min "1899-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17219; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17220 a base:work; + base:work\#DateEnd_Max "1899-10-07"^^xsd:date; + base:work\#DateEnd_Min "1899-10-07"^^xsd:date; + base:work\#DateStart_Max "1899-09-25"^^xsd:date; + base:work\#DateStart_Min "1899-09-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17220; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/51520; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17221 a base:work; + base:work\#DateEnd_Max "1899-10-11"^^xsd:date; + base:work\#DateEnd_Min "1899-10-11"^^xsd:date; + base:work\#DateStart_Max "1899-10-09"^^xsd:date; + base:work\#DateStart_Min "1899-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17221; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oakl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17222 a base:work; + base:work\#DateEnd_Max "1899-10-13"^^xsd:date; + base:work\#DateEnd_Min "1899-10-13"^^xsd:date; + base:work\#DateStart_Max "1899-10-13"^^xsd:date; + base:work\#DateStart_Min "1899-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17222; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17223 a base:work; + base:work\#DateEnd_Max "1899-10-14"^^xsd:date; + base:work\#DateEnd_Min "1899-10-14"^^xsd:date; + base:work\#DateStart_Max "1899-10-14"^^xsd:date; + base:work\#DateStart_Min "1899-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17223; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Marysv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17224 a base:work; + base:work\#DateEnd_Max "1899-10-18"^^xsd:date; + base:work\#DateEnd_Min "1899-10-18"^^xsd:date; + base:work\#DateStart_Max "1899-10-16"^^xsd:date; + base:work\#DateStart_Min "1899-10-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17224; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17225 a base:work; + base:work\#DateEnd_Max "1899-10-19"^^xsd:date; + base:work\#DateEnd_Min "1899-10-19"^^xsd:date; + base:work\#DateStart_Max "1899-10-19"^^xsd:date; + base:work\#DateStart_Min "1899-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17225; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tac-00; + base:work\#ref-IDOrganisation base:organisation\/72075; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17226 a base:work; + base:work\#DateEnd_Max "1899-10-21"^^xsd:date; + base:work\#DateEnd_Min "1899-10-21"^^xsd:date; + base:work\#DateStart_Max "1899-10-20"^^xsd:date; + base:work\#DateStart_Min "1899-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17226; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/72095; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17227 a base:work; + base:work\#DateEnd_Max "1899-10-24"^^xsd:date; + base:work\#DateEnd_Min "1899-10-24"^^xsd:date; + base:work\#DateStart_Max "1899-10-23"^^xsd:date; + base:work\#DateStart_Min "1899-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17227; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Spok-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17228 a base:work; + base:work\#DateEnd_Max "1899-10-26"^^xsd:date; + base:work\#DateEnd_Min "1899-10-26"^^xsd:date; + base:work\#DateStart_Max "1899-10-26"^^xsd:date; + base:work\#DateStart_Min "1899-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17228; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hel-00; + base:work\#ref-IDOrganisation base:organisation\/5573; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17229 a base:work; + base:work\#DateEnd_Max "1899-10-28"^^xsd:date; + base:work\#DateEnd_Min "1899-10-28"^^xsd:date; + base:work\#DateStart_Max "1899-10-27"^^xsd:date; + base:work\#DateStart_Min "1899-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17229; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Butte-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17230 a base:work; + base:work\#DateEnd_Max "1899-11-01"^^xsd:date; + base:work\#DateEnd_Min "1899-11-01"^^xsd:date; + base:work\#DateStart_Max "1899-10-31"^^xsd:date; + base:work\#DateStart_Min "1899-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17230; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Can-DiJeSt-75; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17231 a base:work; + base:work\#DateEnd_Max "1899-11-02"^^xsd:date; + base:work\#DateEnd_Min "1899-11-02"^^xsd:date; + base:work\#DateStart_Max "1899-11-02"^^xsd:date; + base:work\#DateStart_Min "1899-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17231; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GrFork-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17232 a base:work; + base:work\#DateEnd_Max "1899-11-04"^^xsd:date; + base:work\#DateEnd_Min "1899-11-04"^^xsd:date; + base:work\#DateStart_Max "1899-11-04"^^xsd:date; + base:work\#DateStart_Min "1899-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17232; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17233 a base:work; + base:work\#DateEnd_Max "1899-11-18"^^xsd:date; + base:work\#DateEnd_Min "1899-11-18"^^xsd:date; + base:work\#DateStart_Max "1899-11-06"^^xsd:date; + base:work\#DateStart_Min "1899-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17233; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17234 a base:work; + base:work\#DateEnd_Max "1899-11-21"^^xsd:date; + base:work\#DateEnd_Min "1899-11-21"^^xsd:date; + base:work\#DateStart_Max "1899-11-21"^^xsd:date; + base:work\#DateStart_Min "1899-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17234; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Janes-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17235 a base:work; + base:work\#DateEnd_Max "1899-11-24"^^xsd:date; + base:work\#DateEnd_Min "1899-11-24"^^xsd:date; + base:work\#DateStart_Max "1899-11-22"^^xsd:date; + base:work\#DateStart_Min "1899-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17235; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17236 a base:work; + base:work\#DateEnd_Max "1899-11-28"^^xsd:date; + base:work\#DateEnd_Min "1899-11-28"^^xsd:date; + base:work\#DateStart_Max "1899-11-28"^^xsd:date; + base:work\#DateStart_Min "1899-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17236; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDOrganisation base:organisation\/5284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17237 a base:work; + base:work\#DateEnd_Max "1899-11-29"^^xsd:date; + base:work\#DateEnd_Min "1899-11-29"^^xsd:date; + base:work\#DateStart_Max "1899-11-29"^^xsd:date; + base:work\#DateStart_Min "1899-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17237; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17238 a base:work; + base:work\#DateEnd_Max "1899-12-02"^^xsd:date; + base:work\#DateEnd_Min "1899-12-02"^^xsd:date; + base:work\#DateStart_Max "1899-11-30"^^xsd:date; + base:work\#DateStart_Min "1899-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17238; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17239 a base:work; + base:work\#DateEnd_Max "1899-12-04"^^xsd:date; + base:work\#DateEnd_Min "1899-12-04"^^xsd:date; + base:work\#DateStart_Max "1899-12-04"^^xsd:date; + base:work\#DateStart_Min "1899-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17239; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17240 a base:work; + base:work\#DateEnd_Max "1899-12-05"^^xsd:date; + base:work\#DateEnd_Min "1899-12-05"^^xsd:date; + base:work\#DateStart_Max "1899-12-05"^^xsd:date; + base:work\#DateStart_Min "1899-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17240; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17241 a base:work; + base:work\#DateEnd_Max "1899-12-06"^^xsd:date; + base:work\#DateEnd_Min "1899-12-06"^^xsd:date; + base:work\#DateStart_Max "1899-12-06"^^xsd:date; + base:work\#DateStart_Min "1899-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17241; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDOrganisation base:organisation\/1380; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17242 a base:work; + base:work\#DateEnd_Max "1899-12-09"^^xsd:date; + base:work\#DateEnd_Min "1899-12-09"^^xsd:date; + base:work\#DateStart_Max "1899-12-09"^^xsd:date; + base:work\#DateStart_Min "1899-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17242; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17243 a base:work; + base:work\#DateEnd_Max "1899-12-11"^^xsd:date; + base:work\#DateEnd_Min "1899-12-11"^^xsd:date; + base:work\#DateStart_Max "1899-12-11"^^xsd:date; + base:work\#DateStart_Min "1899-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17243; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17244 a base:work; + base:work\#DateEnd_Max "1899-12-13"^^xsd:date; + base:work\#DateEnd_Min "1899-12-13"^^xsd:date; + base:work\#DateStart_Max "1899-12-13"^^xsd:date; + base:work\#DateStart_Min "1899-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17244; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/5613; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17245 a base:work; + base:work\#DateEnd_Max "1899-12-16"^^xsd:date; + base:work\#DateEnd_Min "1899-12-16"^^xsd:date; + base:work\#DateStart_Max "1899-12-14"^^xsd:date; + base:work\#DateStart_Min "1899-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17245; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17246 a base:work; + base:work\#DateEnd_Max "1899-12-26"^^xsd:date; + base:work\#DateEnd_Min "1899-12-26"^^xsd:date; + base:work\#DateStart_Max "1899-12-25"^^xsd:date; + base:work\#DateStart_Min "1899-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17246; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Otta-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17247 a base:work; + base:work\#DateEnd_Max "1899-12-27"^^xsd:date; + base:work\#DateEnd_Min "1899-12-27"^^xsd:date; + base:work\#DateStart_Max "1899-12-27"^^xsd:date; + base:work\#DateStart_Min "1899-12-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17247; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Burl-00; + base:work\#ref-IDOrganisation base:organisation\/5525; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17248 a base:work; + base:work\#DateEnd_Max "1900-01-13"^^xsd:date; + base:work\#DateEnd_Min "1900-01-13"^^xsd:date; + base:work\#DateStart_Max "1900-01-01"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17248; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17249 a base:work; + base:work\#DateEnd_Max "1900-01-20"^^xsd:date; + base:work\#DateEnd_Min "1900-01-20"^^xsd:date; + base:work\#DateStart_Max "1900-01-15"^^xsd:date; + base:work\#DateStart_Min "1900-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17249; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/5152; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17250 a base:work; + base:work\#DateEnd_Max "1900-01-22"^^xsd:date; + base:work\#DateEnd_Min "1900-01-22"^^xsd:date; + base:work\#DateStart_Max "1900-01-22"^^xsd:date; + base:work\#DateStart_Min "1900-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17250; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Nort-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17251 a base:work; + base:work\#DateEnd_Max "1900-01-24"^^xsd:date; + base:work\#DateEnd_Min "1900-01-24"^^xsd:date; + base:work\#DateStart_Max "1900-01-24"^^xsd:date; + base:work\#DateStart_Min "1900-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17251; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17252 a base:work; + base:work\#DateEnd_Max "1900-01-27"^^xsd:date; + base:work\#DateEnd_Min "1900-01-27"^^xsd:date; + base:work\#DateStart_Max "1900-01-25"^^xsd:date; + base:work\#DateStart_Min "1900-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17252; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/4944; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17253 a base:work; + base:work\#DateEnd_Max "1900-01-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-31"^^xsd:date; + base:work\#DateStart_Max "1900-01-29"^^xsd:date; + base:work\#DateStart_Min "1900-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17253; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/71971; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17254 a base:work; + base:work\#DateEnd_Max "1900-02-03"^^xsd:date; + base:work\#DateEnd_Min "1900-02-03"^^xsd:date; + base:work\#DateStart_Max "1900-02-01"^^xsd:date; + base:work\#DateStart_Min "1900-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17254; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17255 a base:work; + base:work\#DateEnd_Max "1900-02-06"^^xsd:date; + base:work\#DateEnd_Min "1900-02-06"^^xsd:date; + base:work\#DateStart_Max "1900-02-06"^^xsd:date; + base:work\#DateStart_Min "1900-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17255; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17256 a base:work; + base:work\#DateEnd_Max "1900-02-07"^^xsd:date; + base:work\#DateEnd_Min "1900-02-07"^^xsd:date; + base:work\#DateStart_Max "1900-02-07"^^xsd:date; + base:work\#DateStart_Min "1900-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17256; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17257 a base:work; + base:work\#DateEnd_Max "1900-02-12"^^xsd:date; + base:work\#DateEnd_Min "1900-02-12"^^xsd:date; + base:work\#DateStart_Max "1900-02-12"^^xsd:date; + base:work\#DateStart_Min "1900-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17257; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Erie-00; + base:work\#ref-IDOrganisation base:organisation\/5024; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17258 a base:work; + base:work\#DateEnd_Max "1900-02-13"^^xsd:date; + base:work\#DateEnd_Min "1900-02-13"^^xsd:date; + base:work\#DateStart_Max "1900-02-13"^^xsd:date; + base:work\#DateStart_Min "1900-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17258; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-JamesNY-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17259 a base:work; + base:work\#DateEnd_Max "1900-02-14"^^xsd:date; + base:work\#DateEnd_Min "1900-02-14"^^xsd:date; + base:work\#DateStart_Max "1900-02-14"^^xsd:date; + base:work\#DateStart_Min "1900-02-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17259; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GenNY-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17260 a base:work; + base:work\#DateEnd_Max "1900-02-15"^^xsd:date; + base:work\#DateEnd_Min "1900-02-15"^^xsd:date; + base:work\#DateStart_Max "1900-02-15"^^xsd:date; + base:work\#DateStart_Min "1900-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17260; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17261 a base:work; + base:work\#DateEnd_Max "1900-03-17"^^xsd:date; + base:work\#DateEnd_Min "1900-03-17"^^xsd:date; + base:work\#DateStart_Max "1900-02-26"^^xsd:date; + base:work\#DateStart_Min "1900-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17261; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17262 a base:work; + base:work\#DateEnd_Max "1900-03-19"^^xsd:date; + base:work\#DateEnd_Min "1900-03-19"^^xsd:date; + base:work\#DateStart_Max "1900-03-19"^^xsd:date; + base:work\#DateStart_Min "1900-03-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17262; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17263 a base:work; + base:work\#DateEnd_Max "1900-03-23"^^xsd:date; + base:work\#DateEnd_Min "1900-03-23"^^xsd:date; + base:work\#DateStart_Max "1900-03-21"^^xsd:date; + base:work\#DateStart_Min "1900-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17263; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDOrganisation base:organisation\/1720; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17264 a base:work; + base:work\#DateEnd_Max "1900-03-26"^^xsd:date; + base:work\#DateEnd_Min "1900-03-26"^^xsd:date; + base:work\#DateStart_Max "1900-03-26"^^xsd:date; + base:work\#DateStart_Min "1900-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17264; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/4708; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17265 a base:work; + base:work\#DateEnd_Max "1900-03-27"^^xsd:date; + base:work\#DateEnd_Min "1900-03-27"^^xsd:date; + base:work\#DateStart_Max "1900-03-27"^^xsd:date; + base:work\#DateStart_Min "1900-03-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17265; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/1380; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17266 a base:work; + base:work\#DateEnd_Max "1900-03-29"^^xsd:date; + base:work\#DateEnd_Min "1900-03-29"^^xsd:date; + base:work\#DateStart_Max "1900-03-29"^^xsd:date; + base:work\#DateStart_Min "1900-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17266; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17267 a base:work; + base:work\#DateEnd_Max "1900-03-30"^^xsd:date; + base:work\#DateEnd_Min "1900-03-30"^^xsd:date; + base:work\#DateStart_Max "1900-03-30"^^xsd:date; + base:work\#DateStart_Min "1900-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17267; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Osw-00; + base:work\#ref-IDOrganisation base:organisation\/5076; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17268 a base:work; + base:work\#DateEnd_Max "1900-03-31"^^xsd:date; + base:work\#DateEnd_Min "1900-03-31"^^xsd:date; + base:work\#DateStart_Max "1900-03-31"^^xsd:date; + base:work\#DateStart_Min "1900-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17268; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/2786; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17269 a base:work; + base:work\#DateEnd_Max "1900-10-15"^^xsd:date; + base:work\#DateEnd_Min "1900-10-15"^^xsd:date; + base:work\#DateStart_Max "1900-10-11"^^xsd:date; + base:work\#DateStart_Min "1900-10-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17269; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDOrganisation base:organisation\/5661; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17270 a base:work; + base:work\#DateEnd_Max "1900-10-01"^^xsd:date; + base:work\#DateEnd_Min "1900-10-01"^^xsd:date; + base:work\#DateStart_Max "1900-10-01"^^xsd:date; + base:work\#DateStart_Min "1900-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17270; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17271 a base:work; + base:work\#DateEnd_Max "1900-10-19"^^xsd:date; + base:work\#DateEnd_Min "1900-10-19"^^xsd:date; + base:work\#DateStart_Max "1900-10-19"^^xsd:date; + base:work\#DateStart_Min "1900-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17271; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Itha-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17272 a base:work; + base:work\#DateEnd_Max "1900-10-20"^^xsd:date; + base:work\#DateEnd_Min "1900-10-20"^^xsd:date; + base:work\#DateStart_Max "1900-10-20"^^xsd:date; + base:work\#DateStart_Min "1900-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17272; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17273 a base:work; + base:work\#DateEnd_Max "1900-10-23"^^xsd:date; + base:work\#DateEnd_Min "1900-10-23"^^xsd:date; + base:work\#DateStart_Max "1900-10-23"^^xsd:date; + base:work\#DateStart_Min "1900-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17273; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-YorkP-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17274 a base:work; + base:work\#DateEnd_Max "1900-10-24"^^xsd:date; + base:work\#DateEnd_Min "1900-10-24"^^xsd:date; + base:work\#DateStart_Max "1900-10-24"^^xsd:date; + base:work\#DateStart_Min "1900-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17274; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Altoo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17275 a base:work; + base:work\#DateEnd_Max "1900-10-25"^^xsd:date; + base:work\#DateEnd_Min "1900-10-25"^^xsd:date; + base:work\#DateStart_Max "1900-10-25"^^xsd:date; + base:work\#DateStart_Min "1900-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17275; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Johnst-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17276 a base:work; + base:work\#DateEnd_Max "1900-10-26"^^xsd:date; + base:work\#DateEnd_Min "1900-10-26"^^xsd:date; + base:work\#DateStart_Max "1900-10-26"^^xsd:date; + base:work\#DateStart_Min "1900-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17276; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17277 a base:work; + base:work\#DateEnd_Max "1900-10-27"^^xsd:date; + base:work\#DateEnd_Min "1900-10-27"^^xsd:date; + base:work\#DateStart_Max "1900-10-27"^^xsd:date; + base:work\#DateStart_Min "1900-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17277; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Zanes-00; + base:work\#ref-IDOrganisation base:organisation\/5188; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17278 a base:work; + base:work\#DateEnd_Max "1900-10-31"^^xsd:date; + base:work\#DateEnd_Min "1900-10-31"^^xsd:date; + base:work\#DateStart_Max "1900-10-29"^^xsd:date; + base:work\#DateStart_Min "1900-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17278; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/1140; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17279 a base:work; + base:work\#DateEnd_Max "1900-11-01"^^xsd:date; + base:work\#DateEnd_Min "1900-11-01"^^xsd:date; + base:work\#DateStart_Max "1900-11-01"^^xsd:date; + base:work\#DateStart_Min "1900-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17279; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tol-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17280 a base:work; + base:work\#DateEnd_Max "1900-11-02"^^xsd:date; + base:work\#DateEnd_Min "1900-11-02"^^xsd:date; + base:work\#DateStart_Max "1900-11-02"^^xsd:date; + base:work\#DateStart_Min "1900-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17280; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mansfi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17281 a base:work; + base:work\#DateEnd_Max "1900-11-13"^^xsd:date; + base:work\#DateEnd_Min "1900-11-13"^^xsd:date; + base:work\#DateStart_Max "1900-11-13"^^xsd:date; + base:work\#DateStart_Min "1900-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17281; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17282 a base:work; + base:work\#DateEnd_Max "1900-11-06"^^xsd:date; + base:work\#DateEnd_Min "1900-11-06"^^xsd:date; + base:work\#DateStart_Max "1900-11-06"^^xsd:date; + base:work\#DateStart_Min "1900-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17282; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SpringO-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17283 a base:work; + base:work\#DateEnd_Max "1900-11-07"^^xsd:date; + base:work\#DateEnd_Min "1900-11-07"^^xsd:date; + base:work\#DateStart_Max "1900-11-07"^^xsd:date; + base:work\#DateStart_Min "1900-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17283; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17284 a base:work; + base:work\#DateEnd_Max "1900-11-08"^^xsd:date; + base:work\#DateEnd_Min "1900-11-08"^^xsd:date; + base:work\#DateStart_Max "1900-11-08"^^xsd:date; + base:work\#DateStart_Min "1900-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17284; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-01; + base:work\#ref-IDOrganisation base:organisation\/72090; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17285 a base:work; + base:work\#DateEnd_Max "1900-11-09"^^xsd:date; + base:work\#DateEnd_Min "1900-11-09"^^xsd:date; + base:work\#DateStart_Max "1900-11-09"^^xsd:date; + base:work\#DateStart_Min "1900-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17285; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Munc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17286 a base:work; + base:work\#DateEnd_Max "1900-11-14"^^xsd:date; + base:work\#DateEnd_Min "1900-11-14"^^xsd:date; + base:work\#DateStart_Max "1900-11-12"^^xsd:date; + base:work\#DateStart_Min "1900-11-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17286; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/4744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17287 a base:work; + base:work\#DateEnd_Max "1900-11-15"^^xsd:date; + base:work\#DateEnd_Min "1900-11-15"^^xsd:date; + base:work\#DateStart_Max "1900-11-15"^^xsd:date; + base:work\#DateStart_Min "1900-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17287; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lans-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17288 a base:work; + base:work\#DateEnd_Max "1900-11-17"^^xsd:date; + base:work\#DateEnd_Min "1900-11-17"^^xsd:date; + base:work\#DateStart_Max "1900-11-16"^^xsd:date; + base:work\#DateStart_Min "1900-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17288; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17289 a base:work; + base:work\#DateEnd_Max "1900-11-20"^^xsd:date; + base:work\#DateEnd_Min "1900-11-20"^^xsd:date; + base:work\#DateStart_Max "1900-11-20"^^xsd:date; + base:work\#DateStart_Min "1900-11-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17289; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/2806; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17290 a base:work; + base:work\#DateEnd_Max "1900-11-21"^^xsd:date; + base:work\#DateEnd_Min "1900-11-21"^^xsd:date; + base:work\#DateStart_Max "1900-11-21"^^xsd:date; + base:work\#DateStart_Min "1900-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17290; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17291 a base:work; + base:work\#DateEnd_Max "1900-11-24"^^xsd:date; + base:work\#DateEnd_Min "1900-11-24"^^xsd:date; + base:work\#DateStart_Max "1900-11-22"^^xsd:date; + base:work\#DateStart_Min "1900-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17291; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17292 a base:work; + base:work\#DateEnd_Max "1900-11-24"^^xsd:date; + base:work\#DateEnd_Min "1900-11-24"^^xsd:date; + base:work\#DateStart_Max "1900-11-24"^^xsd:date; + base:work\#DateStart_Min "1900-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17292; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Evansv-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17293 a base:work; + base:work\#DateEnd_Max "1900-11-27"^^xsd:date; + base:work\#DateEnd_Min "1900-11-27"^^xsd:date; + base:work\#DateStart_Max "1900-11-27"^^xsd:date; + base:work\#DateStart_Min "1900-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17293; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-TerHau-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17294 a base:work; + base:work\#DateEnd_Max "1900-11-28"^^xsd:date; + base:work\#DateEnd_Min "1900-11-28"^^xsd:date; + base:work\#DateStart_Max "1900-11-28"^^xsd:date; + base:work\#DateStart_Min "1900-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17294; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17295 a base:work; + base:work\#DateEnd_Max "1900-11-29"^^xsd:date; + base:work\#DateEnd_Min "1900-11-29"^^xsd:date; + base:work\#DateStart_Max "1900-11-29"^^xsd:date; + base:work\#DateStart_Min "1900-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17295; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17296 a base:work; + base:work\#DateEnd_Max "1900-11-30"^^xsd:date; + base:work\#DateEnd_Min "1900-11-30"^^xsd:date; + base:work\#DateStart_Max "1900-11-30"^^xsd:date; + base:work\#DateStart_Min "1900-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17296; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Elg-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17297 a base:work; + base:work\#DateEnd_Max "1900-12-01"^^xsd:date; + base:work\#DateEnd_Min "1900-12-01"^^xsd:date; + base:work\#DateStart_Max "1900-12-01"^^xsd:date; + base:work\#DateStart_Min "1900-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17297; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OshkW-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17298 a base:work; + base:work\#DateEnd_Max "1900-12-03"^^xsd:date; + base:work\#DateEnd_Min "1900-12-03"^^xsd:date; + base:work\#DateStart_Max "1900-12-03"^^xsd:date; + base:work\#DateStart_Min "1900-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17298; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GreB-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17299 a base:work; + base:work\#DateEnd_Max "1900-12-04"^^xsd:date; + base:work\#DateEnd_Min "1900-12-04"^^xsd:date; + base:work\#DateStart_Max "1900-12-04"^^xsd:date; + base:work\#DateStart_Min "1900-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17299; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MarinW-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/173 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 173; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/17300 a base:work; + base:work\#DateEnd_Max "1900-12-05"^^xsd:date; + base:work\#DateEnd_Min "1900-12-05"^^xsd:date; + base:work\#DateStart_Max "1900-12-05"^^xsd:date; + base:work\#DateStart_Min "1900-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17300; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Marq-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17301 a base:work; + base:work\#DateEnd_Max "1900-12-06"^^xsd:date; + base:work\#DateEnd_Min "1900-12-06"^^xsd:date; + base:work\#DateStart_Max "1900-12-06"^^xsd:date; + base:work\#DateStart_Min "1900-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17301; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/US-Calum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17302 a base:work; + base:work\#DateEnd_Max "1900-12-07"^^xsd:date; + base:work\#DateEnd_Min "1900-12-07"^^xsd:date; + base:work\#DateStart_Max "1900-12-07"^^xsd:date; + base:work\#DateStart_Min "1900-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17302; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-AshW-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17303 a base:work; + base:work\#DateEnd_Max "1900-12-08"^^xsd:date; + base:work\#DateEnd_Min "1900-12-08"^^xsd:date; + base:work\#DateStart_Max "1900-12-08"^^xsd:date; + base:work\#DateStart_Min "1900-12-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17303; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17304 a base:work; + base:work\#DateEnd_Max "1900-12-12"^^xsd:date; + base:work\#DateEnd_Min "1900-12-12"^^xsd:date; + base:work\#DateStart_Max "1900-12-10"^^xsd:date; + base:work\#DateStart_Min "1900-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17304; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17305 a base:work; + base:work\#DateEnd_Max "1900-12-15"^^xsd:date; + base:work\#DateEnd_Min "1900-12-15"^^xsd:date; + base:work\#DateStart_Max "1900-12-13"^^xsd:date; + base:work\#DateStart_Min "1900-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17305; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17306 a base:work; + base:work\#DateEnd_Max "1900-12-17"^^xsd:date; + base:work\#DateEnd_Min "1900-12-17"^^xsd:date; + base:work\#DateStart_Max "1900-12-17"^^xsd:date; + base:work\#DateStart_Min "1900-12-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17306; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wino-00; + base:work\#ref-IDOrganisation base:organisation\/5737; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17307 a base:work; + base:work\#DateEnd_Max "1900-12-19"^^xsd:date; + base:work\#DateEnd_Min "1900-12-19"^^xsd:date; + base:work\#DateStart_Max "1900-12-19"^^xsd:date; + base:work\#DateStart_Min "1900-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17307; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDOrganisation base:organisation\/5760; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17308 a base:work; + base:work\#DateEnd_Max "1900-12-20"^^xsd:date; + base:work\#DateEnd_Min "1900-12-20"^^xsd:date; + base:work\#DateStart_Max "1900-12-20"^^xsd:date; + base:work\#DateStart_Min "1900-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17308; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dubuq-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17309 a base:work; + base:work\#DateEnd_Max "1900-12-25"^^xsd:date; + base:work\#DateEnd_Min "1900-12-25"^^xsd:date; + base:work\#DateStart_Max "1900-12-25"^^xsd:date; + base:work\#DateStart_Min "1900-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17309; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CedRap-00; + base:work\#ref-IDOrganisation base:organisation\/5284; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1731 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1731; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-Klag-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17310 a base:work; + base:work\#DateEnd_Max "1900-12-26"^^xsd:date; + base:work\#DateEnd_Min "1900-12-26"^^xsd:date; + base:work\#DateStart_Max "1900-12-26"^^xsd:date; + base:work\#DateStart_Min "1900-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17310; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDOrganisation base:organisation\/5280; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17311 a base:work; + base:work\#DateEnd_Max "1900-12-27"^^xsd:date; + base:work\#DateEnd_Min "1900-12-27"^^xsd:date; + base:work\#DateStart_Max "1900-12-27"^^xsd:date; + base:work\#DateStart_Min "1900-12-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17311; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Streat-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17312 a base:work; + base:work\#DateEnd_Max "1900-12-29"^^xsd:date; + base:work\#DateEnd_Min "1900-12-29"^^xsd:date; + base:work\#DateStart_Max "1900-12-29"^^xsd:date; + base:work\#DateStart_Min "1900-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17312; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17313 a base:work; + base:work\#DateEnd_Max "1901-01-01"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Max "1901-01-01"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17313; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Ham-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17314 a base:work; + base:work\#DateEnd_Max "1901-01-02"^^xsd:date; + base:work\#DateEnd_Min "1901-01-02"^^xsd:date; + base:work\#DateStart_Max "1901-01-02"^^xsd:date; + base:work\#DateStart_Min "1901-01-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17314; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Niag-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17315 a base:work; + base:work\#DateEnd_Max "1901-01-05"^^xsd:date; + base:work\#DateEnd_Min "1901-01-05"^^xsd:date; + base:work\#DateStart_Max "1901-01-03"^^xsd:date; + base:work\#DateStart_Min "1901-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17315; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/71971; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17316 a base:work; + base:work\#DateEnd_Max "1901-01-09"^^xsd:date; + base:work\#DateEnd_Min "1901-01-09"^^xsd:date; + base:work\#DateStart_Max "1901-01-07"^^xsd:date; + base:work\#DateStart_Min "1901-01-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17316; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17317 a base:work; + base:work\#DateEnd_Max "1901-01-11"^^xsd:date; + base:work\#DateEnd_Min "1901-01-11"^^xsd:date; + base:work\#DateStart_Max "1901-01-11"^^xsd:date; + base:work\#DateStart_Min "1901-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17317; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Akr-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17318 a base:work; + base:work\#DateEnd_Max "1901-01-12"^^xsd:date; + base:work\#DateEnd_Min "1901-01-12"^^xsd:date; + base:work\#DateStart_Max "1901-01-12"^^xsd:date; + base:work\#DateStart_Min "1901-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17318; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Cant-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17319 a base:work; + base:work\#DateEnd_Max "1901-01-19"^^xsd:date; + base:work\#DateEnd_Min "1901-01-19"^^xsd:date; + base:work\#DateStart_Max "1901-01-14"^^xsd:date; + base:work\#DateStart_Min "1901-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17319; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17320 a base:work; + base:work\#DateEnd_Max "1901-01-21"^^xsd:date; + base:work\#DateEnd_Min "1901-01-21"^^xsd:date; + base:work\#DateStart_Max "1901-01-21"^^xsd:date; + base:work\#DateStart_Min "1901-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17320; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Huntin-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17321 a base:work; + base:work\#DateEnd_Max "1901-01-23"^^xsd:date; + base:work\#DateEnd_Min "1901-01-23"^^xsd:date; + base:work\#DateStart_Max "1901-01-23"^^xsd:date; + base:work\#DateStart_Min "1901-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17321; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CharVil-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17322 a base:work; + base:work\#DateEnd_Max "1901-01-24"^^xsd:date; + base:work\#DateEnd_Min "1901-01-24"^^xsd:date; + base:work\#DateStart_Max "1901-01-24"^^xsd:date; + base:work\#DateStart_Min "1901-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17322; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/71973; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17323 a base:work; + base:work\#DateEnd_Max "1901-01-25"^^xsd:date; + base:work\#DateEnd_Min "1901-01-25"^^xsd:date; + base:work\#DateStart_Max "1901-01-25"^^xsd:date; + base:work\#DateStart_Min "1901-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17323; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NewNews-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17324 a base:work; + base:work\#DateEnd_Max "1901-01-26"^^xsd:date; + base:work\#DateEnd_Min "1901-01-26"^^xsd:date; + base:work\#DateStart_Max "1901-01-26"^^xsd:date; + base:work\#DateStart_Min "1901-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17324; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/5349; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17325 a base:work; + base:work\#DateEnd_Max "1901-01-28"^^xsd:date; + base:work\#DateEnd_Min "1901-01-28"^^xsd:date; + base:work\#DateStart_Max "1901-01-28"^^xsd:date; + base:work\#DateStart_Min "1901-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17325; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UAS-Charls-00; + base:work\#ref-IDOrganisation base:organisation\/71974; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17326 a base:work; + base:work\#DateEnd_Max "1901-01-29"^^xsd:date; + base:work\#DateEnd_Min "1901-01-29"^^xsd:date; + base:work\#DateStart_Max "1901-01-29"^^xsd:date; + base:work\#DateStart_Min "1901-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17326; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17327 a base:work; + base:work\#DateEnd_Max "1901-01-30"^^xsd:date; + base:work\#DateEnd_Min "1901-01-30"^^xsd:date; + base:work\#DateStart_Max "1901-01-30"^^xsd:date; + base:work\#DateStart_Min "1901-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17327; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17328 a base:work; + base:work\#DateEnd_Max "1901-01-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-31"^^xsd:date; + base:work\#DateStart_Max "1901-01-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17328; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17329 a base:work; + base:work\#DateEnd_Max "1901-02-01"^^xsd:date; + base:work\#DateEnd_Min "1901-02-01"^^xsd:date; + base:work\#DateStart_Max "1901-02-01"^^xsd:date; + base:work\#DateStart_Min "1901-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17329; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Montg-00; + base:work\#ref-IDOrganisation base:organisation\/5232; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17330 a base:work; + base:work\#DateEnd_Max "1901-02-02"^^xsd:date; + base:work\#DateEnd_Min "1901-02-02"^^xsd:date; + base:work\#DateStart_Max "1901-02-02"^^xsd:date; + base:work\#DateStart_Min "1901-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17330; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pens-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17331 a base:work; + base:work\#DateEnd_Max "1901-02-09"^^xsd:date; + base:work\#DateEnd_Min "1901-02-09"^^xsd:date; + base:work\#DateStart_Max "1901-02-04"^^xsd:date; + base:work\#DateStart_Min "1901-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17331; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17332 a base:work; + base:work\#DateEnd_Max "1901-02-02"^^xsd:date; + base:work\#DateEnd_Min "1901-02-02"^^xsd:date; + base:work\#DateStart_Max "1901-02-02"^^xsd:date; + base:work\#DateStart_Min "1901-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17332; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Beau-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17333 a base:work; + base:work\#DateEnd_Max "1901-02-13"^^xsd:date; + base:work\#DateEnd_Min "1901-02-13"^^xsd:date; + base:work\#DateStart_Max "1901-02-12"^^xsd:date; + base:work\#DateStart_Min "1901-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17333; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17334 a base:work; + base:work\#DateEnd_Max "1901-02-14"^^xsd:date; + base:work\#DateEnd_Min "1901-02-14"^^xsd:date; + base:work\#DateStart_Max "1901-02-14"^^xsd:date; + base:work\#DateStart_Min "1901-02-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17334; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanAnt-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17335 a base:work; + base:work\#DateEnd_Max "1901-02-15"^^xsd:date; + base:work\#DateEnd_Min "1901-02-15"^^xsd:date; + base:work\#DateStart_Max "1901-02-15"^^xsd:date; + base:work\#DateStart_Min "1901-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17335; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17336 a base:work; + base:work\#DateEnd_Max "1901-02-16"^^xsd:date; + base:work\#DateEnd_Min "1901-02-16"^^xsd:date; + base:work\#DateStart_Max "1901-02-16"^^xsd:date; + base:work\#DateStart_Min "1901-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17336; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Waco-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17337 a base:work; + base:work\#DateEnd_Max "1901-02-18"^^xsd:date; + base:work\#DateEnd_Min "1901-02-18"^^xsd:date; + base:work\#DateStart_Max "1901-02-18"^^xsd:date; + base:work\#DateStart_Min "1901-02-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17337; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dall-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17338 a base:work; + base:work\#DateEnd_Max "1901-02-19"^^xsd:date; + base:work\#DateEnd_Min "1901-02-19"^^xsd:date; + base:work\#DateStart_Max "1901-02-19"^^xsd:date; + base:work\#DateStart_Min "1901-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17338; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17339 a base:work; + base:work\#DateEnd_Max "1901-02-20"^^xsd:date; + base:work\#DateEnd_Min "1901-02-20"^^xsd:date; + base:work\#DateStart_Max "1901-02-20"^^xsd:date; + base:work\#DateStart_Min "1901-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17339; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FSm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1734 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1734; + base:work\#ref-IDLocation base:location\/AT-Linz-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17340 a base:work; + base:work\#DateEnd_Max "1901-02-22"^^xsd:date; + base:work\#DateEnd_Min "1901-02-22"^^xsd:date; + base:work\#DateStart_Max "1901-02-22"^^xsd:date; + base:work\#DateStart_Min "1901-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17340; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Jopl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17341 a base:work; + base:work\#DateEnd_Max "1901-02-23"^^xsd:date; + base:work\#DateEnd_Min "1901-02-23"^^xsd:date; + base:work\#DateStart_Max "1901-02-23"^^xsd:date; + base:work\#DateStart_Min "1901-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17341; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17342 a base:work; + base:work\#DateEnd_Max "1901-03-02"^^xsd:date; + base:work\#DateEnd_Min "1901-03-02"^^xsd:date; + base:work\#DateStart_Max "1901-02-25"^^xsd:date; + base:work\#DateStart_Min "1901-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17342; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17343 a base:work; + base:work\#DateEnd_Max "1901-03-04"^^xsd:date; + base:work\#DateEnd_Min "1901-03-04"^^xsd:date; + base:work\#DateStart_Max "1901-03-04"^^xsd:date; + base:work\#DateStart_Min "1901-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17343; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17344 a base:work; + base:work\#DateEnd_Max "1901-03-05"^^xsd:date; + base:work\#DateEnd_Min "1901-03-05"^^xsd:date; + base:work\#DateStart_Max "1901-03-05"^^xsd:date; + base:work\#DateStart_Min "1901-03-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17344; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CriCre-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17345 a base:work; + base:work\#DateEnd_Max "1901-03-06"^^xsd:date; + base:work\#DateEnd_Min "1901-03-06"^^xsd:date; + base:work\#DateStart_Max "1901-03-06"^^xsd:date; + base:work\#DateStart_Min "1901-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17345; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Leadv-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17346 a base:work; + base:work\#DateEnd_Max "1901-03-07"^^xsd:date; + base:work\#DateEnd_Min "1901-03-07"^^xsd:date; + base:work\#DateStart_Max "1901-03-07"^^xsd:date; + base:work\#DateStart_Min "1901-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17346; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Asp-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17347 a base:work; + base:work\#DateEnd_Max "1901-03-08"^^xsd:date; + base:work\#DateEnd_Min "1901-03-08"^^xsd:date; + base:work\#DateStart_Max "1901-03-08"^^xsd:date; + base:work\#DateStart_Min "1901-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17347; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GraJun-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17348 a base:work; + base:work\#DateEnd_Max "1901-03-09"^^xsd:date; + base:work\#DateEnd_Min "1901-03-09"^^xsd:date; + base:work\#DateStart_Max "1901-03-09"^^xsd:date; + base:work\#DateStart_Min "1901-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17348; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Provo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17349 a base:work; + base:work\#DateEnd_Max "1901-03-16"^^xsd:date; + base:work\#DateEnd_Min "1901-03-16"^^xsd:date; + base:work\#DateStart_Max "1901-03-11"^^xsd:date; + base:work\#DateStart_Min "1901-03-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17349; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17350 a base:work; + base:work\#DateEnd_Max "1901-03-18"^^xsd:date; + base:work\#DateEnd_Min "1901-03-18"^^xsd:date; + base:work\#DateStart_Max "1901-03-18"^^xsd:date; + base:work\#DateStart_Min "1901-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17350; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ogden-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17351 a base:work; + base:work\#DateEnd_Max "1901-03-19"^^xsd:date; + base:work\#DateEnd_Min "1901-03-19"^^xsd:date; + base:work\#DateStart_Max "1901-03-19"^^xsd:date; + base:work\#DateStart_Min "1901-03-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17351; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pocat-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17352 a base:work; + base:work\#DateEnd_Max "1901-03-21"^^xsd:date; + base:work\#DateEnd_Min "1901-03-21"^^xsd:date; + base:work\#DateStart_Max "1901-03-20"^^xsd:date; + base:work\#DateStart_Min "1901-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17352; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Boise-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17353 a base:work; + base:work\#DateEnd_Max "1901-03-23"^^xsd:date; + base:work\#DateEnd_Min "1901-03-23"^^xsd:date; + base:work\#DateStart_Max "1901-03-23"^^xsd:date; + base:work\#DateStart_Min "1901-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17353; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pendl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17354 a base:work; + base:work\#DateEnd_Max "1901-03-27"^^xsd:date; + base:work\#DateEnd_Min "1901-03-27"^^xsd:date; + base:work\#DateStart_Max "1901-03-25"^^xsd:date; + base:work\#DateStart_Min "1901-03-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17354; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17355 a base:work; + base:work\#DateEnd_Max "1901-03-28"^^xsd:date; + base:work\#DateEnd_Min "1901-03-28"^^xsd:date; + base:work\#DateStart_Max "1901-03-28"^^xsd:date; + base:work\#DateStart_Min "1901-03-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17355; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Vict-00; + base:work\#ref-IDOrganisation base:organisation\/67440; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17356 a base:work; + base:work\#DateEnd_Max "1901-04-06"^^xsd:date; + base:work\#DateEnd_Min "1901-04-06"^^xsd:date; + base:work\#DateStart_Max "1901-03-29"^^xsd:date; + base:work\#DateStart_Min "1901-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17356; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Vanc-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17357 a base:work; + base:work\#DateEnd_Max "1901-04-10"^^xsd:date; + base:work\#DateEnd_Min "1901-04-10"^^xsd:date; + base:work\#DateStart_Max "1901-04-08"^^xsd:date; + base:work\#DateStart_Min "1901-04-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17357; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/72095; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17358 a base:work; + base:work\#DateEnd_Max "1901-04-11"^^xsd:date; + base:work\#DateEnd_Min "1901-04-11"^^xsd:date; + base:work\#DateStart_Max "1901-04-11"^^xsd:date; + base:work\#DateStart_Min "1901-04-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17358; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tac-00; + base:work\#ref-IDOrganisation base:organisation\/72075; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17359 a base:work; + base:work\#DateEnd_Max "1901-04-13"^^xsd:date; + base:work\#DateEnd_Min "1901-04-13"^^xsd:date; + base:work\#DateStart_Max "1901-04-12"^^xsd:date; + base:work\#DateStart_Min "1901-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17359; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Spok-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17360 a base:work; + base:work\#DateEnd_Max "1901-04-15"^^xsd:date; + base:work\#DateEnd_Min "1901-04-15"^^xsd:date; + base:work\#DateStart_Max "1901-04-15"^^xsd:date; + base:work\#DateStart_Min "1901-04-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17360; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GreFal-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17361 a base:work; + base:work\#DateEnd_Max "1901-04-16"^^xsd:date; + base:work\#DateEnd_Min "1901-04-16"^^xsd:date; + base:work\#DateStart_Max "1901-04-16"^^xsd:date; + base:work\#DateStart_Min "1901-04-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17361; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hel-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17362 a base:work; + base:work\#DateEnd_Max "1901-04-17"^^xsd:date; + base:work\#DateEnd_Min "1901-04-17"^^xsd:date; + base:work\#DateStart_Max "1901-04-17"^^xsd:date; + base:work\#DateStart_Min "1901-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17362; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Anac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17363 a base:work; + base:work\#DateEnd_Max "1901-04-20"^^xsd:date; + base:work\#DateEnd_Min "1901-04-20"^^xsd:date; + base:work\#DateStart_Max "1901-04-18"^^xsd:date; + base:work\#DateStart_Min "1901-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17363; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Butte-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17364 a base:work; + base:work\#DateEnd_Max "1901-04-24"^^xsd:date; + base:work\#DateEnd_Min "1901-04-24"^^xsd:date; + base:work\#DateStart_Max "1901-04-23"^^xsd:date; + base:work\#DateStart_Min "1901-04-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17364; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Can-DiJeSt-75; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17365 a base:work; + base:work\#DateEnd_Max "1901-04-26"^^xsd:date; + base:work\#DateEnd_Min "1901-04-26"^^xsd:date; + base:work\#DateStart_Max "1901-04-26"^^xsd:date; + base:work\#DateStart_Min "1901-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17365; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Crook-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17366 a base:work; + base:work\#DateEnd_Max "1901-04-27"^^xsd:date; + base:work\#DateEnd_Min "1901-04-27"^^xsd:date; + base:work\#DateStart_Max "1901-04-27"^^xsd:date; + base:work\#DateStart_Min "1901-04-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17366; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LitFall-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17367 a base:work; + base:work\#DateEnd_Max "1901-04-30"^^xsd:date; + base:work\#DateEnd_Min "1901-04-30"^^xsd:date; + base:work\#DateStart_Max "1901-04-29"^^xsd:date; + base:work\#DateStart_Min "1901-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17367; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17368 a base:work; + base:work\#DateEnd_Max "1901-07-31"^^xsd:date; + base:work\#DateEnd_Min "1901-07-01"^^xsd:date; + base:work\#DateStart_Max "1901-07-31"^^xsd:date; + base:work\#DateStart_Min "1901-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17368; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17369 a base:work; + base:work\#DateEnd_Max "1901-10-01"^^xsd:date; + base:work\#DateEnd_Min "1901-10-01"^^xsd:date; + base:work\#DateStart_Max "1901-09-30"^^xsd:date; + base:work\#DateStart_Min "1901-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17369; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1737 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1737; + base:work\#ref-IDLocation base:location\/GER-Sigm-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17370 a base:work; + base:work\#DateEnd_Max "1901-10-03"^^xsd:date; + base:work\#DateEnd_Min "1901-10-03"^^xsd:date; + base:work\#DateStart_Max "1901-10-03"^^xsd:date; + base:work\#DateStart_Min "1901-10-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17370; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17371 a base:work; + base:work\#DateEnd_Max "1901-10-04"^^xsd:date; + base:work\#DateEnd_Min "1901-10-04"^^xsd:date; + base:work\#DateStart_Max "1901-10-04"^^xsd:date; + base:work\#DateStart_Min "1901-10-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17371; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17372 a base:work; + base:work\#DateEnd_Max "1901-10-07"^^xsd:date; + base:work\#DateEnd_Min "1901-10-07"^^xsd:date; + base:work\#DateStart_Max "1901-10-07"^^xsd:date; + base:work\#DateStart_Min "1901-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17372; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Itha-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17373 a base:work; + base:work\#DateEnd_Max "1901-10-08"^^xsd:date; + base:work\#DateEnd_Min "1901-10-08"^^xsd:date; + base:work\#DateStart_Max "1901-10-08"^^xsd:date; + base:work\#DateStart_Min "1901-10-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17373; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17374 a base:work; + base:work\#DateEnd_Max "1901-10-09"^^xsd:date; + base:work\#DateEnd_Min "1901-10-09"^^xsd:date; + base:work\#DateStart_Max "1901-10-09"^^xsd:date; + base:work\#DateStart_Min "1901-10-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17374; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17375 a base:work; + base:work\#DateEnd_Max "1901-10-10"^^xsd:date; + base:work\#DateEnd_Min "1901-10-10"^^xsd:date; + base:work\#DateStart_Max "1901-10-10"^^xsd:date; + base:work\#DateStart_Min "1901-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17375; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Waterto-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17376 a base:work; + base:work\#DateEnd_Max "1901-10-11"^^xsd:date; + base:work\#DateEnd_Min "1901-10-11"^^xsd:date; + base:work\#DateStart_Max "1901-10-11"^^xsd:date; + base:work\#DateStart_Min "1901-10-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17376; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OgdNY-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17377 a base:work; + base:work\#DateEnd_Max "1901-10-12"^^xsd:date; + base:work\#DateEnd_Min "1901-10-12"^^xsd:date; + base:work\#DateStart_Max "1901-10-12"^^xsd:date; + base:work\#DateStart_Min "1901-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17377; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Otta-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17378 a base:work; + base:work\#DateEnd_Max "1901-10-19"^^xsd:date; + base:work\#DateEnd_Min "1901-10-19"^^xsd:date; + base:work\#DateStart_Max "1901-10-14"^^xsd:date; + base:work\#DateStart_Min "1901-10-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17378; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/131; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17379 a base:work; + base:work\#DateEnd_Max "1901-10-21"^^xsd:date; + base:work\#DateEnd_Min "1901-10-21"^^xsd:date; + base:work\#DateStart_Max "1901-10-21"^^xsd:date; + base:work\#DateStart_Min "1901-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17379; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Glover-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17380 a base:work; + base:work\#DateEnd_Max "1901-10-22"^^xsd:date; + base:work\#DateEnd_Min "1901-10-22"^^xsd:date; + base:work\#DateStart_Max "1901-10-22"^^xsd:date; + base:work\#DateStart_Min "1901-10-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17380; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDOrganisation base:organisation\/1380; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17381 a base:work; + base:work\#DateEnd_Max "1901-10-10"^^xsd:date; + base:work\#DateEnd_Min "1901-10-10"^^xsd:date; + base:work\#DateStart_Max "1901-10-10"^^xsd:date; + base:work\#DateStart_Min "1901-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17381; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDOrganisation base:organisation\/5176; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17382 a base:work; + base:work\#DateEnd_Max "1901-10-24"^^xsd:date; + base:work\#DateEnd_Min "1901-10-24"^^xsd:date; + base:work\#DateStart_Max "1901-10-24"^^xsd:date; + base:work\#DateStart_Min "1901-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17382; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bing-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17383 a base:work; + base:work\#DateEnd_Max "1901-10-25"^^xsd:date; + base:work\#DateEnd_Min "1901-10-25"^^xsd:date; + base:work\#DateStart_Max "1901-10-25"^^xsd:date; + base:work\#DateStart_Min "1901-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17383; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Allen-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17384 a base:work; + base:work\#DateEnd_Max "1901-10-26"^^xsd:date; + base:work\#DateEnd_Min "1901-10-26"^^xsd:date; + base:work\#DateStart_Max "1901-10-26"^^xsd:date; + base:work\#DateStart_Min "1901-10-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17384; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lanc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17385 a base:work; + base:work\#DateEnd_Max "1901-10-28"^^xsd:date; + base:work\#DateEnd_Min "1901-10-28"^^xsd:date; + base:work\#DateStart_Max "1901-10-28"^^xsd:date; + base:work\#DateStart_Min "1901-10-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17385; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/5349; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17386 a base:work; + base:work\#DateEnd_Max "1901-10-30"^^xsd:date; + base:work\#DateEnd_Min "1901-10-30"^^xsd:date; + base:work\#DateStart_Max "1901-10-30"^^xsd:date; + base:work\#DateStart_Min "1901-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17386; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/71973; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17387 a base:work; + base:work\#DateEnd_Max "1901-10-31"^^xsd:date; + base:work\#DateEnd_Min "1901-10-31"^^xsd:date; + base:work\#DateStart_Max "1901-10-31"^^xsd:date; + base:work\#DateStart_Min "1901-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17387; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lynch-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17388 a base:work; + base:work\#DateEnd_Max "1901-11-01"^^xsd:date; + base:work\#DateEnd_Min "1901-11-01"^^xsd:date; + base:work\#DateStart_Max "1901-11-01"^^xsd:date; + base:work\#DateStart_Min "1901-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17388; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Roano-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17389 a base:work; + base:work\#DateEnd_Max "1901-11-02"^^xsd:date; + base:work\#DateEnd_Min "1901-11-02"^^xsd:date; + base:work\#DateStart_Max "1901-11-02"^^xsd:date; + base:work\#DateStart_Min "1901-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17389; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Knox-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17390 a base:work; + base:work\#DateEnd_Max "1901-11-04"^^xsd:date; + base:work\#DateEnd_Min "1901-11-04"^^xsd:date; + base:work\#DateStart_Max "1901-11-04"^^xsd:date; + base:work\#DateStart_Min "1901-11-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17390; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Chatt-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17391 a base:work; + base:work\#DateEnd_Max "1901-11-05"^^xsd:date; + base:work\#DateEnd_Min "1901-11-05"^^xsd:date; + base:work\#DateStart_Max "1901-11-05"^^xsd:date; + base:work\#DateStart_Min "1901-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17391; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDOrganisation base:organisation\/5717; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17392 a base:work; + base:work\#DateEnd_Max "1901-11-06"^^xsd:date; + base:work\#DateEnd_Min "1901-11-06"^^xsd:date; + base:work\#DateStart_Max "1901-11-06"^^xsd:date; + base:work\#DateStart_Min "1901-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17392; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17393 a base:work; + base:work\#DateEnd_Max "1901-11-07"^^xsd:date; + base:work\#DateEnd_Min "1901-11-07"^^xsd:date; + base:work\#DateStart_Max "1901-11-07"^^xsd:date; + base:work\#DateStart_Min "1901-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17393; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17394 a base:work; + base:work\#DateEnd_Max "1901-11-08"^^xsd:date; + base:work\#DateEnd_Min "1901-11-08"^^xsd:date; + base:work\#DateStart_Max "1901-11-08"^^xsd:date; + base:work\#DateStart_Min "1901-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17394; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Columb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17395 a base:work; + base:work\#DateEnd_Max "1901-11-09"^^xsd:date; + base:work\#DateEnd_Min "1901-11-09"^^xsd:date; + base:work\#DateStart_Max "1901-11-09"^^xsd:date; + base:work\#DateStart_Min "1901-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17395; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17396 a base:work; + base:work\#DateEnd_Max "1901-11-13"^^xsd:date; + base:work\#DateEnd_Min "1901-11-13"^^xsd:date; + base:work\#DateStart_Max "1901-11-13"^^xsd:date; + base:work\#DateStart_Min "1901-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17396; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17398 a base:work; + base:work\#DateEnd_Max "1901-11-15"^^xsd:date; + base:work\#DateEnd_Min "1901-11-15"^^xsd:date; + base:work\#DateStart_Max "1901-11-15"^^xsd:date; + base:work\#DateStart_Min "1901-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17398; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mobile-00; + base:work\#ref-IDOrganisation base:organisation\/5577; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17399 a base:work; + base:work\#DateEnd_Max "1901-11-16"^^xsd:date; + base:work\#DateEnd_Min "1901-11-16"^^xsd:date; + base:work\#DateStart_Max "1901-11-16"^^xsd:date; + base:work\#DateStart_Min "1901-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17399; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pens-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/174 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 174; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/SavZar-00 . + +base:work\/1740 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1740; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17400 a base:work; + base:work\#DateEnd_Max "1901-11-23"^^xsd:date; + base:work\#DateEnd_Min "1901-11-23"^^xsd:date; + base:work\#DateStart_Max "1901-11-18"^^xsd:date; + base:work\#DateStart_Min "1901-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17400; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17401 a base:work; + base:work\#DateEnd_Max "1901-11-26"^^xsd:date; + base:work\#DateEnd_Min "1901-11-26"^^xsd:date; + base:work\#DateStart_Max "1901-11-26"^^xsd:date; + base:work\#DateStart_Min "1901-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17401; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Galv-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17402 a base:work; + base:work\#DateEnd_Max "1901-11-27"^^xsd:date; + base:work\#DateEnd_Min "1901-11-27"^^xsd:date; + base:work\#DateStart_Max "1901-11-27"^^xsd:date; + base:work\#DateStart_Min "1901-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17402; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17403 a base:work; + base:work\#DateEnd_Max "1901-11-28"^^xsd:date; + base:work\#DateEnd_Min "1901-11-28"^^xsd:date; + base:work\#DateStart_Max "1901-11-28"^^xsd:date; + base:work\#DateStart_Min "1901-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17403; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanAnt-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17404 a base:work; + base:work\#DateEnd_Max "1901-11-29"^^xsd:date; + base:work\#DateEnd_Min "1901-11-29"^^xsd:date; + base:work\#DateStart_Max "1901-11-29"^^xsd:date; + base:work\#DateStart_Min "1901-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17404; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17405 a base:work; + base:work\#DateEnd_Max "1901-12-04"^^xsd:date; + base:work\#DateEnd_Min "1901-12-04"^^xsd:date; + base:work\#DateStart_Max "1901-12-04"^^xsd:date; + base:work\#DateStart_Min "1901-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17405; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDOrganisation base:organisation\/1110; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17406 a base:work; + base:work\#DateEnd_Max "1901-12-05"^^xsd:date; + base:work\#DateEnd_Min "1901-12-05"^^xsd:date; + base:work\#DateStart_Max "1901-12-05"^^xsd:date; + base:work\#DateStart_Min "1901-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17406; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Waco-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17407 a base:work; + base:work\#DateEnd_Max "1901-12-06"^^xsd:date; + base:work\#DateEnd_Min "1901-12-06"^^xsd:date; + base:work\#DateStart_Max "1901-12-06"^^xsd:date; + base:work\#DateStart_Min "1901-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17407; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LtlRo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17408 a base:work; + base:work\#DateEnd_Max "1901-12-07"^^xsd:date; + base:work\#DateEnd_Min "1901-12-07"^^xsd:date; + base:work\#DateStart_Max "1901-12-07"^^xsd:date; + base:work\#DateStart_Min "1901-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17408; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17409 a base:work; + base:work\#DateEnd_Max "1901-12-09"^^xsd:date; + base:work\#DateEnd_Min "1901-12-09"^^xsd:date; + base:work\#DateStart_Max "1901-12-09"^^xsd:date; + base:work\#DateStart_Min "1901-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17409; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SpringM-00; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17410 a base:work; + base:work\#DateEnd_Max "1901-12-10"^^xsd:date; + base:work\#DateEnd_Min "1901-12-10"^^xsd:date; + base:work\#DateStart_Max "1901-12-10"^^xsd:date; + base:work\#DateStart_Min "1901-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17410; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17411 a base:work; + base:work\#DateEnd_Max "1901-12-11"^^xsd:date; + base:work\#DateEnd_Min "1901-12-11"^^xsd:date; + base:work\#DateStart_Max "1901-12-11"^^xsd:date; + base:work\#DateStart_Min "1901-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17411; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17412 a base:work; + base:work\#DateEnd_Max "1901-12-12"^^xsd:date; + base:work\#DateEnd_Min "1901-12-12"^^xsd:date; + base:work\#DateStart_Max "1901-12-12"^^xsd:date; + base:work\#DateStart_Min "1901-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17412; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17413 a base:work; + base:work\#DateEnd_Max "1901-12-14"^^xsd:date; + base:work\#DateEnd_Min "1901-12-14"^^xsd:date; + base:work\#DateStart_Max "1901-12-13"^^xsd:date; + base:work\#DateStart_Min "1901-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17413; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17414 a base:work; + base:work\#DateEnd_Max "1901-12-21"^^xsd:date; + base:work\#DateEnd_Min "1901-12-21"^^xsd:date; + base:work\#DateStart_Max "1901-12-16"^^xsd:date; + base:work\#DateStart_Min "1901-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17414; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17415 a base:work; + base:work\#DateEnd_Max "1901-12-25"^^xsd:date; + base:work\#DateEnd_Min "1901-12-25"^^xsd:date; + base:work\#DateStart_Max "1901-12-25"^^xsd:date; + base:work\#DateStart_Min "1901-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17415; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDOrganisation base:organisation\/5465; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17416 a base:work; + base:work\#DateEnd_Max "1901-12-26"^^xsd:date; + base:work\#DateEnd_Min "1901-12-26"^^xsd:date; + base:work\#DateStart_Max "1901-12-26"^^xsd:date; + base:work\#DateStart_Min "1901-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17416; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17417 a base:work; + base:work\#DateEnd_Max "1901-12-28"^^xsd:date; + base:work\#DateEnd_Min "1901-12-28"^^xsd:date; + base:work\#DateStart_Max "1901-12-28"^^xsd:date; + base:work\#DateStart_Min "1901-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17417; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Leadv-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17418 a base:work; + base:work\#DateEnd_Max "1902-01-02"^^xsd:date; + base:work\#DateEnd_Min "1902-01-02"^^xsd:date; + base:work\#DateStart_Max "1901-12-30"^^xsd:date; + base:work\#DateStart_Min "1901-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17418; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17419 a base:work; + base:work\#DateEnd_Max "1902-01-03"^^xsd:date; + base:work\#DateEnd_Min "1902-01-03"^^xsd:date; + base:work\#DateStart_Max "1902-01-03"^^xsd:date; + base:work\#DateStart_Min "1902-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17419; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ogden-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17420 a base:work; + base:work\#DateEnd_Max "1902-01-18"^^xsd:date; + base:work\#DateEnd_Min "1902-01-18"^^xsd:date; + base:work\#DateStart_Max "1902-01-06"^^xsd:date; + base:work\#DateStart_Min "1902-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17420; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/51520; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17421 a base:work; + base:work\#DateEnd_Max "1902-01-20"^^xsd:date; + base:work\#DateEnd_Min "1902-01-20"^^xsd:date; + base:work\#DateStart_Max "1902-01-20"^^xsd:date; + base:work\#DateStart_Min "1902-01-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17421; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fres-00; + base:work\#ref-IDOrganisation base:organisation\/5377; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17422 a base:work; + base:work\#DateEnd_Max "1902-01-25"^^xsd:date; + base:work\#DateEnd_Min "1902-01-25"^^xsd:date; + base:work\#DateStart_Max "1902-01-22"^^xsd:date; + base:work\#DateStart_Min "1902-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17422; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17423 a base:work; + base:work\#DateEnd_Max "1902-01-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-31"^^xsd:date; + base:work\#DateStart_Max "1902-01-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17423; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanB-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17424 a base:work; + base:work\#DateEnd_Max "1902-02-04"^^xsd:date; + base:work\#DateEnd_Min "1902-02-04"^^xsd:date; + base:work\#DateStart_Max "1902-02-03"^^xsd:date; + base:work\#DateStart_Min "1902-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17424; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oakl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17425 a base:work; + base:work\#DateEnd_Max "1902-02-05"^^xsd:date; + base:work\#DateEnd_Min "1902-02-05"^^xsd:date; + base:work\#DateStart_Max "1902-02-05"^^xsd:date; + base:work\#DateStart_Min "1902-02-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17425; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanJ-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17426 a base:work; + base:work\#DateEnd_Max "1902-02-06"^^xsd:date; + base:work\#DateEnd_Min "1902-02-06"^^xsd:date; + base:work\#DateStart_Max "1902-02-06"^^xsd:date; + base:work\#DateStart_Min "1902-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17426; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Stockt-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17427 a base:work; + base:work\#DateEnd_Max "1902-02-07"^^xsd:date; + base:work\#DateEnd_Min "1902-02-07"^^xsd:date; + base:work\#DateStart_Max "1902-02-07"^^xsd:date; + base:work\#DateStart_Min "1902-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17427; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/1095; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17428 a base:work; + base:work\#DateEnd_Max "1902-02-08"^^xsd:date; + base:work\#DateEnd_Min "1902-02-08"^^xsd:date; + base:work\#DateStart_Max "1902-02-08"^^xsd:date; + base:work\#DateStart_Min "1902-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17428; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Marysv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17429 a base:work; + base:work\#DateEnd_Max "1902-02-12"^^xsd:date; + base:work\#DateEnd_Min "1902-02-12"^^xsd:date; + base:work\#DateStart_Max "1902-02-11"^^xsd:date; + base:work\#DateStart_Min "1902-02-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17429; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1743 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1743; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17430 a base:work; + base:work\#DateEnd_Max "1902-02-15"^^xsd:date; + base:work\#DateEnd_Min "1902-02-15"^^xsd:date; + base:work\#DateStart_Max "1902-02-13"^^xsd:date; + base:work\#DateStart_Min "1902-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17430; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17431 a base:work; + base:work\#DateEnd_Max "1902-02-17"^^xsd:date; + base:work\#DateEnd_Min "1902-02-17"^^xsd:date; + base:work\#DateStart_Max "1902-02-17"^^xsd:date; + base:work\#DateStart_Min "1902-02-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17431; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tac-00; + base:work\#ref-IDOrganisation base:organisation\/72075; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17432 a base:work; + base:work\#DateEnd_Max "1902-02-18"^^xsd:date; + base:work\#DateEnd_Min "1902-02-18"^^xsd:date; + base:work\#DateStart_Max "1902-02-18"^^xsd:date; + base:work\#DateStart_Min "1902-02-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17432; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Yaki-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17433 a base:work; + base:work\#DateEnd_Max "1902-02-19"^^xsd:date; + base:work\#DateEnd_Min "1902-02-19"^^xsd:date; + base:work\#DateStart_Max "1902-02-19"^^xsd:date; + base:work\#DateStart_Min "1902-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17433; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Spok-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17434 a base:work; + base:work\#DateEnd_Max "1902-02-25"^^xsd:date; + base:work\#DateEnd_Min "1902-02-25"^^xsd:date; + base:work\#DateStart_Max "1902-02-22"^^xsd:date; + base:work\#DateStart_Min "1902-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17434; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Butte-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17435 a base:work; + base:work\#DateEnd_Max "1902-02-26"^^xsd:date; + base:work\#DateEnd_Min "1902-02-26"^^xsd:date; + base:work\#DateStart_Max "1902-02-26"^^xsd:date; + base:work\#DateStart_Min "1902-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17435; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bozem-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17436 a base:work; + base:work\#DateEnd_Max "1902-03-01"^^xsd:date; + base:work\#DateEnd_Min "1902-03-01"^^xsd:date; + base:work\#DateStart_Max "1902-03-01"^^xsd:date; + base:work\#DateStart_Min "1902-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17436; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Can-DiJeSt-75; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17437 a base:work; + base:work\#DateEnd_Max "1902-03-04"^^xsd:date; + base:work\#DateEnd_Min "1902-03-04"^^xsd:date; + base:work\#DateStart_Max "1902-03-04"^^xsd:date; + base:work\#DateStart_Min "1902-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17437; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17438 a base:work; + base:work\#DateEnd_Max "1902-03-06"^^xsd:date; + base:work\#DateEnd_Min "1902-03-06"^^xsd:date; + base:work\#DateStart_Max "1902-03-06"^^xsd:date; + base:work\#DateStart_Min "1902-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17438; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/US-Calum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17439 a base:work; + base:work\#DateEnd_Max "1902-03-08"^^xsd:date; + base:work\#DateEnd_Min "1902-03-08"^^xsd:date; + base:work\#DateStart_Max "1902-03-08"^^xsd:date; + base:work\#DateStart_Min "1902-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17439; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Marq-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17440 a base:work; + base:work\#DateEnd_Max "1902-03-10"^^xsd:date; + base:work\#DateEnd_Min "1902-03-10"^^xsd:date; + base:work\#DateStart_Max "1902-03-10"^^xsd:date; + base:work\#DateStart_Min "1902-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17440; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17441 a base:work; + base:work\#DateEnd_Max "1902-03-11"^^xsd:date; + base:work\#DateEnd_Min "1902-03-11"^^xsd:date; + base:work\#DateStart_Max "1902-03-11"^^xsd:date; + base:work\#DateStart_Min "1902-03-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17441; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17442 a base:work; + base:work\#DateEnd_Max "1902-03-13"^^xsd:date; + base:work\#DateEnd_Min "1902-03-13"^^xsd:date; + base:work\#DateStart_Max "1902-03-13"^^xsd:date; + base:work\#DateStart_Min "1902-03-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17442; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Kalamz-00; + base:work\#ref-IDOrganisation base:organisation\/49080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17443 a base:work; + base:work\#DateEnd_Max "1902-03-14"^^xsd:date; + base:work\#DateEnd_Min "1902-03-14"^^xsd:date; + base:work\#DateStart_Max "1902-03-14"^^xsd:date; + base:work\#DateStart_Min "1902-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17443; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Musk-00; + base:work\#ref-IDOrganisation base:organisation\/5056; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17444 a base:work; + base:work\#DateEnd_Max "1902-03-15"^^xsd:date; + base:work\#DateEnd_Min "1902-03-15"^^xsd:date; + base:work\#DateStart_Max "1902-03-15"^^xsd:date; + base:work\#DateStart_Min "1902-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17444; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17445 a base:work; + base:work\#DateEnd_Max "1902-03-31"^^xsd:date; + base:work\#DateEnd_Min "1902-03-31"^^xsd:date; + base:work\#DateStart_Max "1902-03-31"^^xsd:date; + base:work\#DateStart_Min "1902-03-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17445; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Jackso-00; + base:work\#ref-IDOrganisation base:organisation\/4732; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17446 a base:work; + base:work\#DateEnd_Max "1902-04-02"^^xsd:date; + base:work\#DateEnd_Min "1902-04-02"^^xsd:date; + base:work\#DateStart_Max "1902-04-02"^^xsd:date; + base:work\#DateStart_Min "1902-04-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17446; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/5613; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17447 a base:work; + base:work\#DateEnd_Max "1902-04-04"^^xsd:date; + base:work\#DateEnd_Min "1902-04-04"^^xsd:date; + base:work\#DateStart_Max "1902-04-04"^^xsd:date; + base:work\#DateStart_Min "1902-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17447; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bloom-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17448 a base:work; + base:work\#DateEnd_Max "1902-04-07"^^xsd:date; + base:work\#DateEnd_Min "1902-04-07"^^xsd:date; + base:work\#DateStart_Max "1902-04-07"^^xsd:date; + base:work\#DateStart_Min "1902-04-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17448; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-JackVil-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17449 a base:work; + base:work\#DateEnd_Max "1902-04-08"^^xsd:date; + base:work\#DateEnd_Min "1902-04-08"^^xsd:date; + base:work\#DateStart_Max "1902-04-08"^^xsd:date; + base:work\#DateStart_Min "1902-04-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17449; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17450 a base:work; + base:work\#DateEnd_Max "1902-04-09"^^xsd:date; + base:work\#DateEnd_Min "1902-04-09"^^xsd:date; + base:work\#DateStart_Max "1902-04-09"^^xsd:date; + base:work\#DateStart_Min "1902-04-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17450; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DecatIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17451 a base:work; + base:work\#DateEnd_Max "1902-04-11"^^xsd:date; + base:work\#DateEnd_Min "1902-04-11"^^xsd:date; + base:work\#DateStart_Max "1902-04-11"^^xsd:date; + base:work\#DateStart_Min "1902-04-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17451; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Munc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17452 a base:work; + base:work\#DateEnd_Max "1902-04-12"^^xsd:date; + base:work\#DateEnd_Min "1902-04-12"^^xsd:date; + base:work\#DateStart_Max "1902-04-12"^^xsd:date; + base:work\#DateStart_Min "1902-04-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17452; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17453 a base:work; + base:work\#DateEnd_Max "1902-04-14"^^xsd:date; + base:work\#DateEnd_Min "1902-04-14"^^xsd:date; + base:work\#DateStart_Max "1902-04-14"^^xsd:date; + base:work\#DateStart_Min "1902-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17453; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Anders-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17454 a base:work; + base:work\#DateEnd_Max "1902-04-18"^^xsd:date; + base:work\#DateEnd_Min "1902-04-18"^^xsd:date; + base:work\#DateStart_Max "1902-04-18"^^xsd:date; + base:work\#DateStart_Min "1902-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17454; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Akr-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17455 a base:work; + base:work\#DateEnd_Max "1902-04-21"^^xsd:date; + base:work\#DateEnd_Min "1902-04-21"^^xsd:date; + base:work\#DateStart_Max "1902-04-21"^^xsd:date; + base:work\#DateStart_Min "1902-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17455; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Youngst-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17456 a base:work; + base:work\#DateEnd_Max "1902-04-28"^^xsd:date; + base:work\#DateEnd_Min "1902-04-28"^^xsd:date; + base:work\#DateStart_Max "1902-04-28"^^xsd:date; + base:work\#DateStart_Min "1902-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17456; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Altoo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17457 a base:work; + base:work\#DateEnd_Max "1902-04-29"^^xsd:date; + base:work\#DateEnd_Min "1902-04-29"^^xsd:date; + base:work\#DateStart_Max "1902-04-29"^^xsd:date; + base:work\#DateStart_Min "1902-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17457; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17458 a base:work; + base:work\#DateEnd_Max "1902-04-30"^^xsd:date; + base:work\#DateEnd_Min "1902-04-30"^^xsd:date; + base:work\#DateStart_Max "1902-04-30"^^xsd:date; + base:work\#DateStart_Min "1902-04-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17458; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17459 a base:work; + base:work\#DateEnd_Max "1902-05-01"^^xsd:date; + base:work\#DateEnd_Min "1902-05-01"^^xsd:date; + base:work\#DateStart_Max "1902-05-01"^^xsd:date; + base:work\#DateStart_Min "1902-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17459; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1746 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1746; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17460 a base:work; + base:work\#DateEnd_Max "1902-05-02"^^xsd:date; + base:work\#DateEnd_Min "1902-05-02"^^xsd:date; + base:work\#DateStart_Max "1902-05-02"^^xsd:date; + base:work\#DateStart_Min "1902-05-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17460; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bing-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17461 a base:work; + base:work\#DateEnd_Max "1902-05-03"^^xsd:date; + base:work\#DateEnd_Min "1902-05-03"^^xsd:date; + base:work\#DateStart_Max "1902-05-03"^^xsd:date; + base:work\#DateStart_Min "1902-05-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17461; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oran-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17462 a base:work; + base:work\#DateEnd_Max "1903-04-28"^^xsd:date; + base:work\#DateEnd_Min "1902-10-31"^^xsd:date; + base:work\#DateStart_Max "1903-04-28"^^xsd:date; + base:work\#DateStart_Min "1902-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17462; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17463 a base:work; + base:work\#DateEnd_Max "1903-04-28"^^xsd:date; + base:work\#DateEnd_Min "1902-10-31"^^xsd:date; + base:work\#DateStart_Max "1903-04-28"^^xsd:date; + base:work\#DateStart_Min "1902-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17463; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-Pozn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17464 a base:work; + base:work\#DateEnd_Max "1903-04-28"^^xsd:date; + base:work\#DateEnd_Min "1902-10-31"^^xsd:date; + base:work\#DateStart_Max "1903-04-28"^^xsd:date; + base:work\#DateStart_Min "1902-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17464; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-Crac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17465 a base:work; + base:work\#DateEnd_Max "1903-04-30"^^xsd:date; + base:work\#DateEnd_Min "1903-04-01"^^xsd:date; + base:work\#DateStart_Max "1903-01-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17465; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17466 a base:work; + base:work\#DateEnd_Max "1905-05-02"^^xsd:date; + base:work\#DateEnd_Min "1905-05-02"^^xsd:date; + base:work\#DateStart_Max "1905-05-02"^^xsd:date; + base:work\#DateStart_Min "1905-05-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17466; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2776; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17467 a base:work; + base:work\#DateEnd_Max "1905-11-06"^^xsd:date; + base:work\#DateEnd_Min "1905-11-06"^^xsd:date; + base:work\#DateStart_Max "1905-11-06"^^xsd:date; + base:work\#DateStart_Min "1905-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17467; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17468 a base:work; + base:work\#DateEnd_Max "1905-11-07"^^xsd:date; + base:work\#DateEnd_Min "1905-11-07"^^xsd:date; + base:work\#DateStart_Max "1905-11-07"^^xsd:date; + base:work\#DateStart_Min "1905-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17468; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Willms-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17469 a base:work; + base:work\#DateEnd_Max "1905-11-08"^^xsd:date; + base:work\#DateEnd_Min "1905-11-08"^^xsd:date; + base:work\#DateStart_Max "1905-11-08"^^xsd:date; + base:work\#DateStart_Min "1905-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17469; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Elm-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17470 a base:work; + base:work\#DateEnd_Max "1905-11-10"^^xsd:date; + base:work\#DateEnd_Min "1905-11-10"^^xsd:date; + base:work\#DateStart_Max "1905-11-10"^^xsd:date; + base:work\#DateStart_Min "1905-11-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17470; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Niag-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17471 a base:work; + base:work\#DateEnd_Max "1905-11-14"^^xsd:date; + base:work\#DateEnd_Min "1905-11-14"^^xsd:date; + base:work\#DateStart_Max "1905-11-14"^^xsd:date; + base:work\#DateStart_Min "1905-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17471; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDOrganisation base:organisation\/2340; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17472 a base:work; + base:work\#DateEnd_Max "1905-11-16"^^xsd:date; + base:work\#DateEnd_Min "1905-11-16"^^xsd:date; + base:work\#DateStart_Max "1905-11-16"^^xsd:date; + base:work\#DateStart_Min "1905-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17472; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Madi-00; + base:work\#ref-IDOrganisation base:organisation\/5760; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17473 a base:work; + base:work\#DateEnd_Max "1905-11-18"^^xsd:date; + base:work\#DateEnd_Min "1905-11-18"^^xsd:date; + base:work\#DateStart_Max "1905-11-18"^^xsd:date; + base:work\#DateStart_Min "1905-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17473; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ishp-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17474 a base:work; + base:work\#DateEnd_Max "1905-11-20"^^xsd:date; + base:work\#DateEnd_Min "1905-11-20"^^xsd:date; + base:work\#DateStart_Max "1905-11-20"^^xsd:date; + base:work\#DateStart_Min "1905-11-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17474; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Marq-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17475 a base:work; + base:work\#DateEnd_Max "1905-11-21"^^xsd:date; + base:work\#DateEnd_Min "1905-11-21"^^xsd:date; + base:work\#DateStart_Max "1905-11-21"^^xsd:date; + base:work\#DateStart_Min "1905-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17475; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hanc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17476 a base:work; + base:work\#DateEnd_Max "1905-11-22"^^xsd:date; + base:work\#DateEnd_Min "1905-11-22"^^xsd:date; + base:work\#DateStart_Max "1905-11-22"^^xsd:date; + base:work\#DateStart_Min "1905-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17476; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/US-Calum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17477 a base:work; + base:work\#DateEnd_Max "1905-11-24"^^xsd:date; + base:work\#DateEnd_Min "1905-11-24"^^xsd:date; + base:work\#DateStart_Max "1905-11-24"^^xsd:date; + base:work\#DateStart_Min "1905-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17477; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dulu-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17478 a base:work; + base:work\#DateEnd_Max "1905-11-29"^^xsd:date; + base:work\#DateEnd_Min "1905-11-29"^^xsd:date; + base:work\#DateStart_Max "1905-11-27"^^xsd:date; + base:work\#DateStart_Min "1905-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17478; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17479 a base:work; + base:work\#DateEnd_Max "1905-12-02"^^xsd:date; + base:work\#DateEnd_Min "1905-12-02"^^xsd:date; + base:work\#DateStart_Max "1905-11-30"^^xsd:date; + base:work\#DateStart_Min "1905-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17479; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Minnea-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17480 a base:work; + base:work\#DateEnd_Max "1905-12-04"^^xsd:date; + base:work\#DateEnd_Min "1905-12-04"^^xsd:date; + base:work\#DateStart_Max "1905-12-04"^^xsd:date; + base:work\#DateStart_Min "1905-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17480; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-DMoi-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17481 a base:work; + base:work\#DateEnd_Max "1905-12-05"^^xsd:date; + base:work\#DateEnd_Min "1905-12-05"^^xsd:date; + base:work\#DateStart_Max "1905-12-05"^^xsd:date; + base:work\#DateStart_Min "1905-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17481; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sioux-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17482 a base:work; + base:work\#DateEnd_Max "1905-12-06"^^xsd:date; + base:work\#DateEnd_Min "1905-12-06"^^xsd:date; + base:work\#DateStart_Max "1905-12-06"^^xsd:date; + base:work\#DateStart_Min "1905-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17482; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Davep-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17483 a base:work; + base:work\#DateEnd_Max "1905-12-11"^^xsd:date; + base:work\#DateEnd_Min "1905-12-11"^^xsd:date; + base:work\#DateStart_Max "1905-12-11"^^xsd:date; + base:work\#DateStart_Min "1905-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17483; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wino-00; + base:work\#ref-IDOrganisation base:organisation\/5737; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17484 a base:work; + base:work\#DateEnd_Max "1905-12-12"^^xsd:date; + base:work\#DateEnd_Min "1905-12-12"^^xsd:date; + base:work\#DateStart_Max "1905-12-12"^^xsd:date; + base:work\#DateStart_Min "1905-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17484; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USa-SiouF-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17485 a base:work; + base:work\#DateEnd_Max "1905-12-14"^^xsd:date; + base:work\#DateEnd_Min "1905-12-14"^^xsd:date; + base:work\#DateStart_Max "1905-12-14"^^xsd:date; + base:work\#DateStart_Min "1905-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17485; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MilCit-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17486 a base:work; + base:work\#DateEnd_Max "1905-12-15"^^xsd:date; + base:work\#DateEnd_Min "1905-12-15"^^xsd:date; + base:work\#DateStart_Max "1905-12-15"^^xsd:date; + base:work\#DateStart_Min "1905-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17486; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bill-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17487 a base:work; + base:work\#DateEnd_Max "1905-12-16"^^xsd:date; + base:work\#DateEnd_Min "1905-12-16"^^xsd:date; + base:work\#DateStart_Max "1905-12-16"^^xsd:date; + base:work\#DateStart_Min "1905-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17487; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Jamest-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17488 a base:work; + base:work\#DateEnd_Max "1905-12-18"^^xsd:date; + base:work\#DateEnd_Min "1905-12-18"^^xsd:date; + base:work\#DateStart_Max "1905-12-18"^^xsd:date; + base:work\#DateStart_Min "1905-12-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17488; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bozem-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17489 a base:work; + base:work\#DateEnd_Max "1905-12-19"^^xsd:date; + base:work\#DateEnd_Min "1905-12-19"^^xsd:date; + base:work\#DateStart_Max "1905-12-19"^^xsd:date; + base:work\#DateStart_Min "1905-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17489; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hel-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1749 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1749; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17490 a base:work; + base:work\#DateEnd_Max "1905-12-20"^^xsd:date; + base:work\#DateEnd_Min "1905-12-20"^^xsd:date; + base:work\#DateStart_Max "1905-12-20"^^xsd:date; + base:work\#DateStart_Min "1905-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17490; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bill-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17491 a base:work; + base:work\#DateEnd_Max "1905-12-22"^^xsd:date; + base:work\#DateEnd_Min "1905-12-22"^^xsd:date; + base:work\#DateStart_Max "1905-12-22"^^xsd:date; + base:work\#DateStart_Min "1905-12-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17491; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GreFal-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17492 a base:work; + base:work\#DateEnd_Max "1905-12-23"^^xsd:date; + base:work\#DateEnd_Min "1905-12-23"^^xsd:date; + base:work\#DateStart_Max "1905-12-23"^^xsd:date; + base:work\#DateStart_Min "1905-12-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17492; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hel-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17493 a base:work; + base:work\#DateEnd_Max "1905-12-25"^^xsd:date; + base:work\#DateEnd_Min "1905-12-25"^^xsd:date; + base:work\#DateStart_Max "1905-12-25"^^xsd:date; + base:work\#DateStart_Min "1905-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17493; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Butte-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17494 a base:work; + base:work\#DateEnd_Max "1905-12-26"^^xsd:date; + base:work\#DateEnd_Min "1905-12-26"^^xsd:date; + base:work\#DateStart_Max "1905-12-26"^^xsd:date; + base:work\#DateStart_Min "1905-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17494; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Anac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17495 a base:work; + base:work\#DateEnd_Max "1905-12-28"^^xsd:date; + base:work\#DateEnd_Min "1905-12-28"^^xsd:date; + base:work\#DateStart_Max "1905-12-28"^^xsd:date; + base:work\#DateStart_Min "1905-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17495; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Spok-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17496 a base:work; + base:work\#DateEnd_Max "1905-12-29"^^xsd:date; + base:work\#DateEnd_Min "1905-12-29"^^xsd:date; + base:work\#DateStart_Max "1905-12-29"^^xsd:date; + base:work\#DateStart_Min "1905-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17496; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17497 a base:work; + base:work\#DateEnd_Max "1905-12-30"^^xsd:date; + base:work\#DateEnd_Min "1905-12-30"^^xsd:date; + base:work\#DateStart_Max "1905-12-30"^^xsd:date; + base:work\#DateStart_Min "1905-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17497; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-WalWal-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17498 a base:work; + base:work\#DateEnd_Max "1906-01-02"^^xsd:date; + base:work\#DateEnd_Min "1906-01-02"^^xsd:date; + base:work\#DateStart_Max "1906-01-01"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17498; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17499 a base:work; + base:work\#DateEnd_Max "1906-01-03"^^xsd:date; + base:work\#DateEnd_Min "1906-01-03"^^xsd:date; + base:work\#DateStart_Max "1906-01-03"^^xsd:date; + base:work\#DateStart_Min "1906-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17499; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ever-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17500 a base:work; + base:work\#DateEnd_Max "1906-01-04"^^xsd:date; + base:work\#DateEnd_Min "1906-01-04"^^xsd:date; + base:work\#DateStart_Max "1906-01-04"^^xsd:date; + base:work\#DateStart_Min "1906-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17500; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bellin-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17501 a base:work; + base:work\#DateEnd_Max "1906-01-06"^^xsd:date; + base:work\#DateEnd_Min "1906-01-06"^^xsd:date; + base:work\#DateStart_Max "1906-01-06"^^xsd:date; + base:work\#DateStart_Min "1906-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17501; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-Vict-00; + base:work\#ref-IDOrganisation base:organisation\/67440; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17502 a base:work; + base:work\#DateEnd_Max "1906-01-08"^^xsd:date; + base:work\#DateEnd_Min "1906-01-08"^^xsd:date; + base:work\#DateStart_Max "1906-01-08"^^xsd:date; + base:work\#DateStart_Min "1906-01-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17502; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tac-00; + base:work\#ref-IDOrganisation base:organisation\/72075; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17503 a base:work; + base:work\#DateEnd_Max "1906-01-09"^^xsd:date; + base:work\#DateEnd_Min "1906-01-09"^^xsd:date; + base:work\#DateStart_Max "1906-01-09"^^xsd:date; + base:work\#DateStart_Min "1906-01-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17503; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Olymp-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17504 a base:work; + base:work\#DateEnd_Max "1906-01-10"^^xsd:date; + base:work\#DateEnd_Min "1906-01-10"^^xsd:date; + base:work\#DateStart_Max "1906-01-10"^^xsd:date; + base:work\#DateStart_Min "1906-01-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17504; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hoqui-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17505 a base:work; + base:work\#DateEnd_Max "1906-01-13"^^xsd:date; + base:work\#DateEnd_Min "1906-01-13"^^xsd:date; + base:work\#DateStart_Max "1906-01-11"^^xsd:date; + base:work\#DateStart_Min "1906-01-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17505; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17506 a base:work; + base:work\#DateEnd_Max "1906-01-20"^^xsd:date; + base:work\#DateEnd_Min "1906-01-20"^^xsd:date; + base:work\#DateStart_Max "1906-01-15"^^xsd:date; + base:work\#DateStart_Min "1906-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17506; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/51520; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17507 a base:work; + base:work\#DateEnd_Max "1906-01-23"^^xsd:date; + base:work\#DateEnd_Min "1906-01-23"^^xsd:date; + base:work\#DateStart_Max "1906-01-22"^^xsd:date; + base:work\#DateStart_Min "1906-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17507; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Oakl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17508 a base:work; + base:work\#DateEnd_Max "1906-01-24"^^xsd:date; + base:work\#DateEnd_Min "1906-01-24"^^xsd:date; + base:work\#DateStart_Max "1906-01-24"^^xsd:date; + base:work\#DateStart_Min "1906-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17508; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Fres-00; + base:work\#ref-IDOrganisation base:organisation\/5377; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17509 a base:work; + base:work\#DateEnd_Max "1906-01-25"^^xsd:date; + base:work\#DateEnd_Min "1906-01-25"^^xsd:date; + base:work\#DateStart_Max "1906-01-25"^^xsd:date; + base:work\#DateStart_Min "1906-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17509; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hanf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17510 a base:work; + base:work\#DateEnd_Max "1906-01-26"^^xsd:date; + base:work\#DateEnd_Min "1906-01-26"^^xsd:date; + base:work\#DateStart_Max "1906-01-26"^^xsd:date; + base:work\#DateStart_Min "1906-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17510; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StBarb-04; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17511 a base:work; + base:work\#DateEnd_Max "1906-01-29"^^xsd:date; + base:work\#DateEnd_Min "1906-01-29"^^xsd:date; + base:work\#DateStart_Max "1906-01-29"^^xsd:date; + base:work\#DateStart_Min "1906-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17511; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SantAn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17512 a base:work; + base:work\#DateEnd_Max "1906-01-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-31"^^xsd:date; + base:work\#DateStart_Max "1906-01-30"^^xsd:date; + base:work\#DateStart_Min "1906-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17512; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanD-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17513 a base:work; + base:work\#DateEnd_Max "1906-02-01"^^xsd:date; + base:work\#DateEnd_Min "1906-02-01"^^xsd:date; + base:work\#DateStart_Max "1906-02-01"^^xsd:date; + base:work\#DateStart_Min "1906-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17513; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Redla-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17514 a base:work; + base:work\#DateEnd_Max "1906-02-07"^^xsd:date; + base:work\#DateEnd_Min "1906-02-07"^^xsd:date; + base:work\#DateStart_Max "1906-02-05"^^xsd:date; + base:work\#DateStart_Min "1906-02-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17514; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17515 a base:work; + base:work\#DateEnd_Max "1906-02-08"^^xsd:date; + base:work\#DateEnd_Min "1906-02-08"^^xsd:date; + base:work\#DateStart_Max "1906-02-08"^^xsd:date; + base:work\#DateStart_Min "1906-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17515; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pomo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17516 a base:work; + base:work\#DateEnd_Max "1906-02-09"^^xsd:date; + base:work\#DateEnd_Min "1906-02-09"^^xsd:date; + base:work\#DateStart_Max "1906-02-09"^^xsd:date; + base:work\#DateStart_Min "1906-02-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17516; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Redla-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17517 a base:work; + base:work\#DateEnd_Max "1906-02-10"^^xsd:date; + base:work\#DateEnd_Min "1906-02-10"^^xsd:date; + base:work\#DateStart_Max "1906-02-10"^^xsd:date; + base:work\#DateStart_Min "1906-02-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17517; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-CSanB-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17518 a base:work; + base:work\#DateEnd_Max "1906-02-12"^^xsd:date; + base:work\#DateEnd_Min "1906-02-12"^^xsd:date; + base:work\#DateStart_Max "1906-02-12"^^xsd:date; + base:work\#DateStart_Min "1906-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17518; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Riv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17519 a base:work; + base:work\#DateEnd_Max "1906-02-13"^^xsd:date; + base:work\#DateEnd_Min "1906-02-13"^^xsd:date; + base:work\#DateStart_Max "1906-02-13"^^xsd:date; + base:work\#DateStart_Min "1906-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17519; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1752 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1752; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17520 a base:work; + base:work\#DateEnd_Max "1906-02-17"^^xsd:date; + base:work\#DateEnd_Min "1906-02-17"^^xsd:date; + base:work\#DateStart_Max "1906-02-15"^^xsd:date; + base:work\#DateStart_Min "1906-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17520; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17521 a base:work; + base:work\#DateEnd_Max "1906-02-19"^^xsd:date; + base:work\#DateEnd_Min "1906-02-19"^^xsd:date; + base:work\#DateStart_Max "1906-02-19"^^xsd:date; + base:work\#DateStart_Min "1906-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17521; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Logan-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17522 a base:work; + base:work\#DateEnd_Max "1906-02-20"^^xsd:date; + base:work\#DateEnd_Min "1906-02-20"^^xsd:date; + base:work\#DateStart_Max "1906-02-20"^^xsd:date; + base:work\#DateStart_Min "1906-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17522; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ogden-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17523 a base:work; + base:work\#DateEnd_Max "1906-02-22"^^xsd:date; + base:work\#DateEnd_Min "1906-02-22"^^xsd:date; + base:work\#DateStart_Max "1906-02-22"^^xsd:date; + base:work\#DateStart_Min "1906-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17523; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pueb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17524 a base:work; + base:work\#DateEnd_Max "1906-02-23"^^xsd:date; + base:work\#DateEnd_Min "1906-02-23"^^xsd:date; + base:work\#DateStart_Max "1906-02-23"^^xsd:date; + base:work\#DateStart_Min "1906-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17524; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LasVNM-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17525 a base:work; + base:work\#DateEnd_Max "1906-02-24"^^xsd:date; + base:work\#DateEnd_Min "1906-02-24"^^xsd:date; + base:work\#DateStart_Max "1906-02-24"^^xsd:date; + base:work\#DateStart_Min "1906-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17525; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Albuq-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17526 a base:work; + base:work\#DateEnd_Max "1906-02-26"^^xsd:date; + base:work\#DateEnd_Min "1906-02-26"^^xsd:date; + base:work\#DateStart_Max "1906-02-26"^^xsd:date; + base:work\#DateStart_Min "1906-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17526; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-ColSpr-00; + base:work\#ref-IDOrganisation base:organisation\/1110; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17527 a base:work; + base:work\#DateEnd_Max "1906-02-28"^^xsd:date; + base:work\#DateEnd_Min "1906-02-28"^^xsd:date; + base:work\#DateStart_Max "1906-02-28"^^xsd:date; + base:work\#DateStart_Min "1906-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17527; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LincN-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17528 a base:work; + base:work\#DateEnd_Max "1906-03-01"^^xsd:date; + base:work\#DateEnd_Min "1906-03-01"^^xsd:date; + base:work\#DateStart_Max "1906-03-01"^^xsd:date; + base:work\#DateStart_Min "1906-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17528; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tope-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17529 a base:work; + base:work\#DateEnd_Max "1906-03-02"^^xsd:date; + base:work\#DateEnd_Min "1906-03-02"^^xsd:date; + base:work\#DateStart_Max "1906-03-02"^^xsd:date; + base:work\#DateStart_Min "1906-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17529; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wichi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17530 a base:work; + base:work\#DateEnd_Max "1906-03-03"^^xsd:date; + base:work\#DateEnd_Min "1906-03-03"^^xsd:date; + base:work\#DateStart_Max "1906-03-03"^^xsd:date; + base:work\#DateStart_Min "1906-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17530; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OklaCit-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17531 a base:work; + base:work\#DateEnd_Max "1906-03-06"^^xsd:date; + base:work\#DateEnd_Min "1906-03-06"^^xsd:date; + base:work\#DateStart_Max "1906-03-06"^^xsd:date; + base:work\#DateStart_Min "1906-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17531; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-FortW-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17532 a base:work; + base:work\#DateEnd_Max "1906-03-08"^^xsd:date; + base:work\#DateEnd_Min "1906-03-08"^^xsd:date; + base:work\#DateStart_Max "1906-03-08"^^xsd:date; + base:work\#DateStart_Min "1906-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17532; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aust-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17533 a base:work; + base:work\#DateEnd_Max "1906-03-10"^^xsd:date; + base:work\#DateEnd_Min "1906-03-10"^^xsd:date; + base:work\#DateStart_Max "1906-03-10"^^xsd:date; + base:work\#DateStart_Min "1906-03-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17533; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17534 a base:work; + base:work\#DateEnd_Max "1906-03-12"^^xsd:date; + base:work\#DateEnd_Min "1906-03-12"^^xsd:date; + base:work\#DateStart_Max "1906-03-12"^^xsd:date; + base:work\#DateStart_Min "1906-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17534; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Galv-00; + base:work\#ref-IDOrganisation base:organisation\/54530; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17535 a base:work; + base:work\#DateEnd_Max "1906-03-14"^^xsd:date; + base:work\#DateEnd_Min "1906-03-14"^^xsd:date; + base:work\#DateStart_Max "1906-03-14"^^xsd:date; + base:work\#DateStart_Min "1906-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17535; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Shreve-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17536 a base:work; + base:work\#DateEnd_Max "1906-03-15"^^xsd:date; + base:work\#DateEnd_Min "1906-03-15"^^xsd:date; + base:work\#DateStart_Max "1906-03-15"^^xsd:date; + base:work\#DateStart_Min "1906-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17536; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Jacks-00; + base:work\#ref-IDOrganisation base:organisation\/2375; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17537 a base:work; + base:work\#DateEnd_Max "1906-03-16"^^xsd:date; + base:work\#DateEnd_Min "1906-03-16"^^xsd:date; + base:work\#DateStart_Max "1906-03-16"^^xsd:date; + base:work\#DateStart_Min "1906-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17537; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Natch-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17538 a base:work; + base:work\#DateEnd_Max "1906-03-17"^^xsd:date; + base:work\#DateEnd_Min "1906-03-17"^^xsd:date; + base:work\#DateStart_Max "1906-03-17"^^xsd:date; + base:work\#DateStart_Min "1906-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17538; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Vick-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17539 a base:work; + base:work\#DateEnd_Max "1906-03-20"^^xsd:date; + base:work\#DateEnd_Min "1906-03-20"^^xsd:date; + base:work\#DateStart_Max "1906-03-20"^^xsd:date; + base:work\#DateStart_Min "1906-03-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17539; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LtlRo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17540 a base:work; + base:work\#DateEnd_Max "1906-03-21"^^xsd:date; + base:work\#DateEnd_Min "1906-03-21"^^xsd:date; + base:work\#DateStart_Max "1906-03-21"^^xsd:date; + base:work\#DateStart_Min "1906-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17540; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17541 a base:work; + base:work\#DateEnd_Max "1906-03-23"^^xsd:date; + base:work\#DateEnd_Min "1906-03-23"^^xsd:date; + base:work\#DateStart_Max "1906-03-23"^^xsd:date; + base:work\#DateStart_Min "1906-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17541; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tenn-00; + base:work\#ref-IDOrganisation base:organisation\/5717; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17542 a base:work; + base:work\#DateEnd_Max "1906-03-24"^^xsd:date; + base:work\#DateEnd_Min "1906-03-24"^^xsd:date; + base:work\#DateStart_Max "1906-03-24"^^xsd:date; + base:work\#DateStart_Min "1906-03-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17542; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Chatt-00; + base:work\#ref-IDOrganisation base:organisation\/5744; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17543 a base:work; + base:work\#DateEnd_Max "1906-03-26"^^xsd:date; + base:work\#DateEnd_Min "1906-03-26"^^xsd:date; + base:work\#DateStart_Max "1906-03-26"^^xsd:date; + base:work\#DateStart_Min "1906-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17543; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Birm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17544 a base:work; + base:work\#DateEnd_Max "1906-03-27"^^xsd:date; + base:work\#DateEnd_Min "1906-03-27"^^xsd:date; + base:work\#DateStart_Max "1906-03-27"^^xsd:date; + base:work\#DateStart_Min "1906-03-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17544; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Montg-00; + base:work\#ref-IDOrganisation base:organisation\/5232; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17545 a base:work; + base:work\#DateEnd_Max "1906-03-28"^^xsd:date; + base:work\#DateEnd_Min "1906-03-28"^^xsd:date; + base:work\#DateStart_Max "1906-03-28"^^xsd:date; + base:work\#DateStart_Min "1906-03-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17545; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mobile-00; + base:work\#ref-IDOrganisation base:organisation\/5577; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17546 a base:work; + base:work\#DateEnd_Max "1906-03-29"^^xsd:date; + base:work\#DateEnd_Min "1906-03-29"^^xsd:date; + base:work\#DateStart_Max "1906-03-29"^^xsd:date; + base:work\#DateStart_Min "1906-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17546; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Selm-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17547 a base:work; + base:work\#DateEnd_Max "1906-03-30"^^xsd:date; + base:work\#DateEnd_Min "1906-03-30"^^xsd:date; + base:work\#DateStart_Max "1906-03-30"^^xsd:date; + base:work\#DateStart_Min "1906-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17547; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Atla-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17548 a base:work; + base:work\#DateEnd_Max "1906-04-03"^^xsd:date; + base:work\#DateEnd_Min "1906-04-03"^^xsd:date; + base:work\#DateStart_Max "1906-04-03"^^xsd:date; + base:work\#DateStart_Min "1906-04-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17548; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Aug-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17549 a base:work; + base:work\#DateEnd_Max "1906-04-04"^^xsd:date; + base:work\#DateEnd_Min "1906-04-04"^^xsd:date; + base:work\#DateStart_Max "1906-04-04"^^xsd:date; + base:work\#DateStart_Min "1906-04-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17549; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sav-00; + base:work\#ref-IDOrganisation base:organisation\/4960; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1755 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1755; + base:work\#ref-IDOrganisation base:organisation\/386; + base:work\#ref-IDPerson base:person\/LieIgn-00 . + +base:work\/17550 a base:work; + base:work\#DateEnd_Max "1906-04-07"^^xsd:date; + base:work\#DateEnd_Min "1906-04-07"^^xsd:date; + base:work\#DateStart_Max "1906-04-07"^^xsd:date; + base:work\#DateStart_Min "1906-04-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17550; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wilm-00; + base:work\#ref-IDOrganisation base:organisation\/5244; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17551 a base:work; + base:work\#DateEnd_Max "1906-04-16"^^xsd:date; + base:work\#DateEnd_Min "1906-04-16"^^xsd:date; + base:work\#DateStart_Max "1906-04-16"^^xsd:date; + base:work\#DateStart_Min "1906-04-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17551; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Norf-00; + base:work\#ref-IDOrganisation base:organisation\/5349; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17552 a base:work; + base:work\#DateEnd_Max "1906-04-17"^^xsd:date; + base:work\#DateEnd_Min "1906-04-17"^^xsd:date; + base:work\#DateStart_Max "1906-04-17"^^xsd:date; + base:work\#DateStart_Min "1906-04-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17552; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/71973; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17553 a base:work; + base:work\#DateEnd_Max "1906-04-19"^^xsd:date; + base:work\#DateEnd_Min "1906-04-19"^^xsd:date; + base:work\#DateStart_Max "1906-04-19"^^xsd:date; + base:work\#DateStart_Min "1906-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17553; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Roano-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17554 a base:work; + base:work\#DateEnd_Max "1906-04-20"^^xsd:date; + base:work\#DateEnd_Min "1906-04-20"^^xsd:date; + base:work\#DateStart_Max "1906-04-20"^^xsd:date; + base:work\#DateStart_Min "1906-04-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17554; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bluef-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17555 a base:work; + base:work\#DateEnd_Max "1906-04-23"^^xsd:date; + base:work\#DateEnd_Min "1906-04-23"^^xsd:date; + base:work\#DateStart_Max "1906-04-23"^^xsd:date; + base:work\#DateStart_Min "1906-04-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17555; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Stau-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17556 a base:work; + base:work\#DateEnd_Max "1906-04-25"^^xsd:date; + base:work\#DateEnd_Min "1906-04-25"^^xsd:date; + base:work\#DateStart_Max "1906-04-25"^^xsd:date; + base:work\#DateStart_Min "1906-04-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17556; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wilm-01; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17557 a base:work; + base:work\#DateEnd_Max "1906-04-26"^^xsd:date; + base:work\#DateEnd_Min "1906-04-26"^^xsd:date; + base:work\#DateStart_Max "1906-04-26"^^xsd:date; + base:work\#DateStart_Min "1906-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17557; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lanc-00; + base:work\#ref-IDOrganisation base:organisation\/4920; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17558 a base:work; + base:work\#DateEnd_Max "1906-04-27"^^xsd:date; + base:work\#DateEnd_Min "1906-04-27"^^xsd:date; + base:work\#DateStart_Max "1906-04-27"^^xsd:date; + base:work\#DateStart_Min "1906-04-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17558; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Allen-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17559 a base:work; + base:work\#DateEnd_Max "1906-04-28"^^xsd:date; + base:work\#DateEnd_Min "1906-04-28"^^xsd:date; + base:work\#DateStart_Max "1906-04-28"^^xsd:date; + base:work\#DateStart_Min "1906-04-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17559; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Trent-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17560 a base:work; + base:work\#DateEnd_Max "1906-10-15"^^xsd:date; + base:work\#DateEnd_Min "1906-10-15"^^xsd:date; + base:work\#DateStart_Max "1906-10-15"^^xsd:date; + base:work\#DateStart_Min "1906-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17560; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Plain-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17561 a base:work; + base:work\#DateEnd_Max "1906-10-17"^^xsd:date; + base:work\#DateEnd_Min "1906-10-17"^^xsd:date; + base:work\#DateStart_Max "1906-10-17"^^xsd:date; + base:work\#DateStart_Min "1906-10-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17561; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/New\+Brunswick; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17562 a base:work; + base:work\#DateEnd_Max "1906-10-22"^^xsd:date; + base:work\#DateEnd_Min "1906-10-22"^^xsd:date; + base:work\#DateStart_Max "1906-10-22"^^xsd:date; + base:work\#DateStart_Min "1906-10-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17562; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Paters-00; + base:work\#ref-IDOrganisation base:organisation\/1110; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17563 a base:work; + base:work\#DateEnd_Max "1906-10-25"^^xsd:date; + base:work\#DateEnd_Min "1906-10-25"^^xsd:date; + base:work\#DateStart_Max "1906-10-25"^^xsd:date; + base:work\#DateStart_Min "1906-10-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17563; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Troy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17564 a base:work; + base:work\#DateEnd_Max "1906-10-27"^^xsd:date; + base:work\#DateEnd_Min "1906-10-27"^^xsd:date; + base:work\#DateStart_Max "1906-10-27"^^xsd:date; + base:work\#DateStart_Min "1906-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17564; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Pough-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17565 a base:work; + base:work\#DateEnd_Max "1906-10-29"^^xsd:date; + base:work\#DateEnd_Min "1906-10-29"^^xsd:date; + base:work\#DateStart_Max "1906-10-29"^^xsd:date; + base:work\#DateStart_Min "1906-10-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17565; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/5529; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17566 a base:work; + base:work\#DateEnd_Max "1906-10-30"^^xsd:date; + base:work\#DateEnd_Min "1906-10-30"^^xsd:date; + base:work\#DateStart_Max "1906-10-30"^^xsd:date; + base:work\#DateStart_Min "1906-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17566; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bridgep-00; + base:work\#ref-IDOrganisation base:organisation\/5517; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17567 a base:work; + base:work\#DateEnd_Max "1906-10-31"^^xsd:date; + base:work\#DateEnd_Min "1906-10-31"^^xsd:date; + base:work\#DateStart_Max "1906-10-31"^^xsd:date; + base:work\#DateStart_Min "1906-10-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17567; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17568 a base:work; + base:work\#DateEnd_Max "1906-11-01"^^xsd:date; + base:work\#DateEnd_Min "1906-11-01"^^xsd:date; + base:work\#DateStart_Max "1906-11-01"^^xsd:date; + base:work\#DateStart_Min "1906-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17568; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SprinFie-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17569 a base:work; + base:work\#DateEnd_Max "1906-11-02"^^xsd:date; + base:work\#DateEnd_Min "1906-11-02"^^xsd:date; + base:work\#DateStart_Max "1906-11-02"^^xsd:date; + base:work\#DateStart_Min "1906-11-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17569; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Holyo-00; + base:work\#ref-IDOrganisation base:organisation\/5629; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17570 a base:work; + base:work\#DateEnd_Max "1906-11-03"^^xsd:date; + base:work\#DateEnd_Min "1906-11-03"^^xsd:date; + base:work\#DateStart_Max "1906-11-03"^^xsd:date; + base:work\#DateStart_Min "1906-11-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17570; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17571 a base:work; + base:work\#DateEnd_Max "1906-11-05"^^xsd:date; + base:work\#DateEnd_Min "1906-11-05"^^xsd:date; + base:work\#DateStart_Max "1906-11-05"^^xsd:date; + base:work\#DateStart_Min "1906-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17571; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NLdn-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17572 a base:work; + base:work\#DateEnd_Max "1906-11-06"^^xsd:date; + base:work\#DateEnd_Min "1906-11-06"^^xsd:date; + base:work\#DateStart_Max "1906-11-06"^^xsd:date; + base:work\#DateStart_Min "1906-11-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17572; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Newp-00; + base:work\#ref-IDOrganisation base:organisation\/5605; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17573 a base:work; + base:work\#DateEnd_Max "1906-11-07"^^xsd:date; + base:work\#DateEnd_Min "1906-11-07"^^xsd:date; + base:work\#DateStart_Max "1906-11-07"^^xsd:date; + base:work\#DateStart_Min "1906-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17573; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Worc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17574 a base:work; + base:work\#DateEnd_Max "1906-11-08"^^xsd:date; + base:work\#DateEnd_Min "1906-11-08"^^xsd:date; + base:work\#DateStart_Max "1906-11-08"^^xsd:date; + base:work\#DateStart_Min "1906-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17574; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Low-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17575 a base:work; + base:work\#DateEnd_Max "1906-11-09"^^xsd:date; + base:work\#DateEnd_Min "1906-11-09"^^xsd:date; + base:work\#DateStart_Max "1906-11-09"^^xsd:date; + base:work\#DateStart_Min "1906-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17575; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-LawrM-00; + base:work\#ref-IDOrganisation base:organisation\/1110; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17576 a base:work; + base:work\#DateEnd_Max "1906-11-14"^^xsd:date; + base:work\#DateEnd_Min "1906-11-14"^^xsd:date; + base:work\#DateStart_Max "1906-11-14"^^xsd:date; + base:work\#DateStart_Min "1906-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17576; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-PortlM-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17577 a base:work; + base:work\#DateEnd_Max "1906-11-15"^^xsd:date; + base:work\#DateEnd_Min "1906-11-15"^^xsd:date; + base:work\#DateStart_Max "1906-11-15"^^xsd:date; + base:work\#DateStart_Min "1906-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17577; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bang-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17578 a base:work; + base:work\#DateEnd_Max "1906-11-16"^^xsd:date; + base:work\#DateEnd_Min "1906-11-16"^^xsd:date; + base:work\#DateStart_Max "1906-11-16"^^xsd:date; + base:work\#DateStart_Min "1906-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17578; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/CA-StJohn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17579 a base:work; + base:work\#DateEnd_Max "1906-11-17"^^xsd:date; + base:work\#DateEnd_Min "1906-11-17"^^xsd:date; + base:work\#DateStart_Max "1906-11-17"^^xsd:date; + base:work\#DateStart_Min "1906-11-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17579; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Hali-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1758 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1758; + base:work\#Profession base:Profession-Director; + base:work\#comment "Director together with Bela Laszky"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/454; + base:work\#ref-IDPerson base:person\/AscLeo-00 . + +base:work\/17580 a base:work; + base:work\#DateEnd_Max "1906-11-21"^^xsd:date; + base:work\#DateEnd_Min "1906-11-21"^^xsd:date; + base:work\#DateStart_Max "1906-11-21"^^xsd:date; + base:work\#DateStart_Min "1906-11-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17580; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Burl-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17581 a base:work; + base:work\#DateEnd_Max "1906-11-22"^^xsd:date; + base:work\#DateEnd_Min "1906-11-22"^^xsd:date; + base:work\#DateStart_Max "1906-11-22"^^xsd:date; + base:work\#DateStart_Min "1906-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17581; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Brattle-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17582 a base:work; + base:work\#DateEnd_Max "1906-11-23"^^xsd:date; + base:work\#DateEnd_Min "1906-11-23"^^xsd:date; + base:work\#DateStart_Max "1906-11-23"^^xsd:date; + base:work\#DateStart_Min "1906-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17582; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Benn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17583 a base:work; + base:work\#DateEnd_Max "1906-11-24"^^xsd:date; + base:work\#DateEnd_Min "1906-11-24"^^xsd:date; + base:work\#DateStart_Max "1906-11-24"^^xsd:date; + base:work\#DateStart_Min "1906-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17583; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17584 a base:work; + base:work\#DateEnd_Max "1906-11-26"^^xsd:date; + base:work\#DateEnd_Min "1906-11-26"^^xsd:date; + base:work\#DateStart_Max "1906-11-26"^^xsd:date; + base:work\#DateStart_Min "1906-11-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17584; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Osw-00; + base:work\#ref-IDOrganisation base:organisation\/5076; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17585 a base:work; + base:work\#DateEnd_Max "1906-11-27"^^xsd:date; + base:work\#DateEnd_Min "1906-11-27"^^xsd:date; + base:work\#DateStart_Max "1906-11-27"^^xsd:date; + base:work\#DateStart_Min "1906-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17585; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-02; + base:work\#ref-IDOrganisation base:organisation\/49080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17586 a base:work; + base:work\#DateEnd_Max "1906-11-28"^^xsd:date; + base:work\#DateEnd_Min "1906-11-28"^^xsd:date; + base:work\#DateStart_Max "1906-11-28"^^xsd:date; + base:work\#DateStart_Min "1906-11-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17586; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Waterto-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17587 a base:work; + base:work\#DateEnd_Max "1906-11-29"^^xsd:date; + base:work\#DateEnd_Min "1906-11-29"^^xsd:date; + base:work\#DateStart_Max "1906-11-29"^^xsd:date; + base:work\#DateStart_Min "1906-11-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17587; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17588 a base:work; + base:work\#DateEnd_Max "1906-11-30"^^xsd:date; + base:work\#DateEnd_Min "1906-11-30"^^xsd:date; + base:work\#DateStart_Max "1906-11-30"^^xsd:date; + base:work\#DateStart_Min "1906-11-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17588; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Itha-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17589 a base:work; + base:work\#DateEnd_Max "1906-12-01"^^xsd:date; + base:work\#DateEnd_Min "1906-12-01"^^xsd:date; + base:work\#DateStart_Max "1906-12-01"^^xsd:date; + base:work\#DateStart_Min "1906-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17589; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDOrganisation base:organisation\/2340; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17590 a base:work; + base:work\#DateEnd_Max "1906-12-03"^^xsd:date; + base:work\#DateEnd_Min "1906-12-03"^^xsd:date; + base:work\#DateStart_Max "1906-12-03"^^xsd:date; + base:work\#DateStart_Min "1906-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17590; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Bing-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17591 a base:work; + base:work\#DateEnd_Max "1906-12-04"^^xsd:date; + base:work\#DateEnd_Min "1906-12-04"^^xsd:date; + base:work\#DateStart_Max "1906-12-04"^^xsd:date; + base:work\#DateStart_Min "1906-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17591; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17592 a base:work; + base:work\#DateEnd_Max "1906-12-05"^^xsd:date; + base:work\#DateEnd_Min "1906-12-05"^^xsd:date; + base:work\#DateStart_Max "1906-12-05"^^xsd:date; + base:work\#DateStart_Min "1906-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17592; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-WilkB-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17593 a base:work; + base:work\#DateEnd_Max "1906-12-07"^^xsd:date; + base:work\#DateEnd_Min "1906-12-07"^^xsd:date; + base:work\#DateStart_Max "1906-12-07"^^xsd:date; + base:work\#DateStart_Min "1906-12-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17593; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Altoo-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17594 a base:work; + base:work\#DateEnd_Max "1906-12-08"^^xsd:date; + base:work\#DateEnd_Min "1906-12-08"^^xsd:date; + base:work\#DateStart_Max "1906-12-08"^^xsd:date; + base:work\#DateStart_Min "1906-12-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17594; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Johnst-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17595 a base:work; + base:work\#DateEnd_Max "1906-12-10"^^xsd:date; + base:work\#DateEnd_Min "1906-12-10"^^xsd:date; + base:work\#DateStart_Max "1906-12-10"^^xsd:date; + base:work\#DateStart_Min "1906-12-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17595; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GreBur-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17596 a base:work; + base:work\#DateEnd_Max "1906-12-11"^^xsd:date; + base:work\#DateEnd_Min "1906-12-11"^^xsd:date; + base:work\#DateStart_Max "1906-12-11"^^xsd:date; + base:work\#DateStart_Min "1906-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17596; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDOrganisation base:organisation\/1068; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17597 a base:work; + base:work\#DateEnd_Max "1906-12-13"^^xsd:date; + base:work\#DateEnd_Min "1906-12-13"^^xsd:date; + base:work\#DateStart_Max "1906-12-13"^^xsd:date; + base:work\#DateStart_Min "1906-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17597; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Akr-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17598 a base:work; + base:work\#DateEnd_Max "1906-12-14"^^xsd:date; + base:work\#DateEnd_Min "1906-12-14"^^xsd:date; + base:work\#DateStart_Max "1906-12-14"^^xsd:date; + base:work\#DateStart_Min "1906-12-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17598; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Cant-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17599 a base:work; + base:work\#DateEnd_Max "1906-12-15"^^xsd:date; + base:work\#DateEnd_Min "1906-12-15"^^xsd:date; + base:work\#DateStart_Max "1906-12-15"^^xsd:date; + base:work\#DateStart_Min "1906-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17599; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-EasLiv-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17600 a base:work; + base:work\#DateEnd_Max "1906-12-25"^^xsd:date; + base:work\#DateEnd_Min "1906-12-25"^^xsd:date; + base:work\#DateStart_Max "1906-12-25"^^xsd:date; + base:work\#DateStart_Min "1906-12-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17600; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17601 a base:work; + base:work\#DateEnd_Max "1906-12-27"^^xsd:date; + base:work\#DateEnd_Min "1906-12-27"^^xsd:date; + base:work\#DateStart_Max "1906-12-27"^^xsd:date; + base:work\#DateStart_Min "1906-12-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17601; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17602 a base:work; + base:work\#DateEnd_Max "1906-12-28"^^xsd:date; + base:work\#DateEnd_Min "1906-12-28"^^xsd:date; + base:work\#DateStart_Max "1906-12-28"^^xsd:date; + base:work\#DateStart_Min "1906-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17602; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lex-00; + base:work\#ref-IDOrganisation base:organisation\/370; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17603 a base:work; + base:work\#DateEnd_Max "1906-12-29"^^xsd:date; + base:work\#DateEnd_Min "1906-12-29"^^xsd:date; + base:work\#DateStart_Max "1906-12-29"^^xsd:date; + base:work\#DateStart_Min "1906-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17603; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OMiddl-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17604 a base:work; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-12-31"^^xsd:date; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-12-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17604; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Richm-01; + base:work\#ref-IDOrganisation base:organisation\/72090; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17605 a base:work; + base:work\#DateEnd_Max "1907-01-01"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Max "1907-01-01"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17605; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Indy-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17606 a base:work; + base:work\#DateEnd_Max "1907-01-03"^^xsd:date; + base:work\#DateEnd_Min "1907-01-03"^^xsd:date; + base:work\#DateStart_Max "1907-01-03"^^xsd:date; + base:work\#DateStart_Min "1907-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17606; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Evansv-00; + base:work\#ref-IDOrganisation base:organisation\/1410; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17607 a base:work; + base:work\#DateEnd_Max "1907-01-04"^^xsd:date; + base:work\#DateEnd_Min "1907-01-04"^^xsd:date; + base:work\#DateStart_Max "1907-01-04"^^xsd:date; + base:work\#DateStart_Min "1907-01-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17607; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Paduc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17608 a base:work; + base:work\#DateEnd_Max "1907-01-05"^^xsd:date; + base:work\#DateEnd_Min "1907-01-05"^^xsd:date; + base:work\#DateStart_Max "1907-01-05"^^xsd:date; + base:work\#DateStart_Min "1907-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17608; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Cairo-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17609 a base:work; + base:work\#DateEnd_Max "1907-01-07"^^xsd:date; + base:work\#DateEnd_Min "1907-01-07"^^xsd:date; + base:work\#DateStart_Max "1907-01-07"^^xsd:date; + base:work\#DateStart_Min "1907-01-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17609; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/1761 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1761; + base:work\#Profession base:Profession-Composer; + base:work\#comment "firsttime “Das Dreimäderlhaus”"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/455; + base:work\#ref-IDPerson base:person\/BerHei-00 . + +base:work\/17610 a base:work; + base:work\#DateEnd_Max "1907-01-08"^^xsd:date; + base:work\#DateEnd_Min "1907-01-08"^^xsd:date; + base:work\#DateStart_Max "1907-01-08"^^xsd:date; + base:work\#DateStart_Min "1907-01-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17610; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-JackVil-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17611 a base:work; + base:work\#DateEnd_Max "1907-01-09"^^xsd:date; + base:work\#DateEnd_Min "1907-01-09"^^xsd:date; + base:work\#DateStart_Max "1907-01-09"^^xsd:date; + base:work\#DateStart_Min "1907-01-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17611; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Quinc-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17612 a base:work; + base:work\#DateEnd_Max "1907-01-12"^^xsd:date; + base:work\#DateEnd_Min "1907-01-12"^^xsd:date; + base:work\#DateStart_Max "1907-01-10"^^xsd:date; + base:work\#DateStart_Min "1907-01-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17612; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17613 a base:work; + base:work\#DateEnd_Max "1907-01-14"^^xsd:date; + base:work\#DateEnd_Min "1907-01-14"^^xsd:date; + base:work\#DateStart_Max "1907-01-14"^^xsd:date; + base:work\#DateStart_Min "1907-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17613; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-StJos-00; + base:work\#ref-IDOrganisation base:organisation\/5312; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17614 a base:work; + base:work\#DateEnd_Max "1907-01-15"^^xsd:date; + base:work\#DateEnd_Min "1907-01-15"^^xsd:date; + base:work\#DateStart_Max "1907-01-15"^^xsd:date; + base:work\#DateStart_Min "1907-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17614; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NebraCit-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17615 a base:work; + base:work\#DateEnd_Max "1907-01-16"^^xsd:date; + base:work\#DateEnd_Min "1907-01-16"^^xsd:date; + base:work\#DateStart_Max "1907-01-16"^^xsd:date; + base:work\#DateStart_Min "1907-01-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17615; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDOrganisation base:organisation\/5292; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17616 a base:work; + base:work\#DateEnd_Max "1907-01-17"^^xsd:date; + base:work\#DateEnd_Min "1907-01-17"^^xsd:date; + base:work\#DateStart_Max "1907-01-17"^^xsd:date; + base:work\#DateStart_Min "1907-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17616; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-IowCit-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17617 a base:work; + base:work\#DateEnd_Max "1907-01-18"^^xsd:date; + base:work\#DateEnd_Min "1907-01-18"^^xsd:date; + base:work\#DateStart_Max "1907-01-18"^^xsd:date; + base:work\#DateStart_Min "1907-01-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17617; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Burli-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17618 a base:work; + base:work\#DateEnd_Max "1907-01-21"^^xsd:date; + base:work\#DateEnd_Min "1907-01-21"^^xsd:date; + base:work\#DateStart_Max "1907-01-21"^^xsd:date; + base:work\#DateStart_Min "1907-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17618; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17619 a base:work; + base:work\#DateEnd_Max "1907-01-22"^^xsd:date; + base:work\#DateEnd_Min "1907-01-22"^^xsd:date; + base:work\#DateStart_Max "1907-01-22"^^xsd:date; + base:work\#DateStart_Min "1907-01-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17619; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BloomIl-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17620 a base:work; + base:work\#DateEnd_Max "1907-01-23"^^xsd:date; + base:work\#DateEnd_Min "1907-01-23"^^xsd:date; + base:work\#DateStart_Max "1907-01-23"^^xsd:date; + base:work\#DateStart_Min "1907-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17620; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Streat-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17621 a base:work; + base:work\#DateEnd_Max "1907-01-24"^^xsd:date; + base:work\#DateEnd_Min "1907-01-24"^^xsd:date; + base:work\#DateStart_Max "1907-01-24"^^xsd:date; + base:work\#DateStart_Min "1907-01-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17621; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Joliet-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17622 a base:work; + base:work\#DateEnd_Max "1907-01-25"^^xsd:date; + base:work\#DateEnd_Min "1907-01-25"^^xsd:date; + base:work\#DateStart_Max "1907-01-25"^^xsd:date; + base:work\#DateStart_Min "1907-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17622; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MichCity-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17623 a base:work; + base:work\#DateEnd_Max "1907-01-26"^^xsd:date; + base:work\#DateEnd_Min "1907-01-26"^^xsd:date; + base:work\#DateStart_Max "1907-01-26"^^xsd:date; + base:work\#DateStart_Min "1907-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17623; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SBend-00; + base:work\#ref-IDOrganisation base:organisation\/5613; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17624 a base:work; + base:work\#DateEnd_Max "1907-01-28"^^xsd:date; + base:work\#DateEnd_Min "1907-01-28"^^xsd:date; + base:work\#DateStart_Max "1907-01-28"^^xsd:date; + base:work\#DateStart_Min "1907-01-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17624; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ben-Harb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17625 a base:work; + base:work\#DateEnd_Max "1907-01-29"^^xsd:date; + base:work\#DateEnd_Min "1907-01-29"^^xsd:date; + base:work\#DateStart_Max "1907-01-29"^^xsd:date; + base:work\#DateStart_Min "1907-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17625; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Dowag-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17626 a base:work; + base:work\#DateEnd_Max "1907-01-30"^^xsd:date; + base:work\#DateEnd_Min "1907-01-30"^^xsd:date; + base:work\#DateStart_Max "1907-01-30"^^xsd:date; + base:work\#DateStart_Min "1907-01-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17626; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GrRap-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17627 a base:work; + base:work\#DateEnd_Max "1907-01-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-31"^^xsd:date; + base:work\#DateStart_Max "1907-01-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17627; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BatCre-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17628 a base:work; + base:work\#DateEnd_Max "1907-02-01"^^xsd:date; + base:work\#DateEnd_Min "1907-02-01"^^xsd:date; + base:work\#DateStart_Max "1907-02-01"^^xsd:date; + base:work\#DateStart_Min "1907-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17628; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Jackso-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17629 a base:work; + base:work\#DateEnd_Max "1907-02-02"^^xsd:date; + base:work\#DateEnd_Min "1907-02-02"^^xsd:date; + base:work\#DateStart_Max "1907-02-02"^^xsd:date; + base:work\#DateStart_Min "1907-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17629; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-BayC-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17630 a base:work; + base:work\#DateEnd_Max "1907-02-04"^^xsd:date; + base:work\#DateEnd_Min "1907-02-04"^^xsd:date; + base:work\#DateStart_Max "1907-02-04"^^xsd:date; + base:work\#DateStart_Min "1907-02-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17630; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Sag-00; + base:work\#ref-IDOrganisation base:organisation\/4736; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17631 a base:work; + base:work\#DateEnd_Max "1907-02-05"^^xsd:date; + base:work\#DateEnd_Min "1907-02-05"^^xsd:date; + base:work\#DateStart_Max "1907-02-05"^^xsd:date; + base:work\#DateStart_Min "1907-02-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17631; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Flint-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17632 a base:work; + base:work\#DateEnd_Max "1907-02-06"^^xsd:date; + base:work\#DateEnd_Min "1907-02-06"^^xsd:date; + base:work\#DateStart_Max "1907-02-06"^^xsd:date; + base:work\#DateStart_Min "1907-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17632; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lans-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17633 a base:work; + base:work\#DateEnd_Max "1907-02-07"^^xsd:date; + base:work\#DateEnd_Min "1907-02-07"^^xsd:date; + base:work\#DateStart_Max "1907-02-07"^^xsd:date; + base:work\#DateStart_Min "1907-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17633; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Adria-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17634 a base:work; + base:work\#DateEnd_Max "1907-02-08"^^xsd:date; + base:work\#DateEnd_Min "1907-02-08"^^xsd:date; + base:work\#DateStart_Max "1907-02-08"^^xsd:date; + base:work\#DateStart_Min "1907-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17634; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ypsi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17635 a base:work; + base:work\#DateEnd_Max "1907-02-09"^^xsd:date; + base:work\#DateEnd_Min "1907-02-09"^^xsd:date; + base:work\#DateStart_Max "1907-02-09"^^xsd:date; + base:work\#DateStart_Min "1907-02-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17635; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Lima-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17636 a base:work; + base:work\#DateEnd_Max "1907-02-11"^^xsd:date; + base:work\#DateEnd_Min "1907-02-11"^^xsd:date; + base:work\#DateStart_Max "1907-02-11"^^xsd:date; + base:work\#DateStart_Min "1907-02-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17636; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-VanWer-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17637 a base:work; + base:work\#DateEnd_Max "1907-02-12"^^xsd:date; + base:work\#DateEnd_Min "1907-02-12"^^xsd:date; + base:work\#DateStart_Max "1907-02-12"^^xsd:date; + base:work\#DateStart_Min "1907-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17637; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mario; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17638 a base:work; + base:work\#DateEnd_Max "1907-02-13"^^xsd:date; + base:work\#DateEnd_Min "1907-02-13"^^xsd:date; + base:work\#DateStart_Max "1907-02-13"^^xsd:date; + base:work\#DateStart_Min "1907-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17638; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Ash-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17639 a base:work; + base:work\#DateEnd_Max "1907-02-14"^^xsd:date; + base:work\#DateEnd_Min "1907-02-14"^^xsd:date; + base:work\#DateStart_Max "1907-02-14"^^xsd:date; + base:work\#DateStart_Min "1907-02-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17639; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Norwa-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17640 a base:work; + base:work\#DateEnd_Max "1907-02-15"^^xsd:date; + base:work\#DateEnd_Min "1907-02-15"^^xsd:date; + base:work\#DateStart_Max "1907-02-15"^^xsd:date; + base:work\#DateStart_Min "1907-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17640; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Mansfi-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17641 a base:work; + base:work\#DateEnd_Max "1907-02-16"^^xsd:date; + base:work\#DateEnd_Min "1907-02-16"^^xsd:date; + base:work\#DateStart_Max "1907-02-16"^^xsd:date; + base:work\#DateStart_Min "1907-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17641; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-SpringO-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17642 a base:work; + base:work\#DateEnd_Max "1907-02-18"^^xsd:date; + base:work\#DateEnd_Min "1907-02-18"^^xsd:date; + base:work\#DateStart_Max "1907-02-18"^^xsd:date; + base:work\#DateStart_Min "1907-02-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17642; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NPhila-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17643 a base:work; + base:work\#DateEnd_Max "1907-02-19"^^xsd:date; + base:work\#DateEnd_Min "1907-02-19"^^xsd:date; + base:work\#DateStart_Max "1907-02-19"^^xsd:date; + base:work\#DateStart_Min "1907-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17643; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Parkers-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17644 a base:work; + base:work\#DateEnd_Max "1907-02-20"^^xsd:date; + base:work\#DateEnd_Min "1907-02-20"^^xsd:date; + base:work\#DateStart_Max "1907-02-20"^^xsd:date; + base:work\#DateStart_Min "1907-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17644; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Charlest-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17645 a base:work; + base:work\#DateEnd_Max "1907-02-21"^^xsd:date; + base:work\#DateEnd_Min "1907-02-21"^^xsd:date; + base:work\#DateStart_Max "1907-02-21"^^xsd:date; + base:work\#DateStart_Min "1907-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17645; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Huntin-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17646 a base:work; + base:work\#DateEnd_Max "1907-02-22"^^xsd:date; + base:work\#DateEnd_Min "1907-02-22"^^xsd:date; + base:work\#DateStart_Max "1907-02-22"^^xsd:date; + base:work\#DateStart_Min "1907-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17646; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-MarOh-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17647 a base:work; + base:work\#DateEnd_Max "1907-02-23"^^xsd:date; + base:work\#DateEnd_Min "1907-02-23"^^xsd:date; + base:work\#DateStart_Max "1907-02-23"^^xsd:date; + base:work\#DateStart_Min "1907-02-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17647; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Zanes-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17648 a base:work; + base:work\#DateEnd_Max "1907-02-25"^^xsd:date; + base:work\#DateEnd_Min "1907-02-25"^^xsd:date; + base:work\#DateStart_Max "1907-02-25"^^xsd:date; + base:work\#DateStart_Min "1907-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17648; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Latro-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17649 a base:work; + base:work\#DateEnd_Max "1907-02-26"^^xsd:date; + base:work\#DateEnd_Min "1907-02-26"^^xsd:date; + base:work\#DateStart_Max "1907-02-26"^^xsd:date; + base:work\#DateStart_Min "1907-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17649; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Steuben-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17650 a base:work; + base:work\#DateEnd_Max "1907-02-27"^^xsd:date; + base:work\#DateEnd_Min "1907-02-27"^^xsd:date; + base:work\#DateStart_Max "1907-02-27"^^xsd:date; + base:work\#DateStart_Min "1907-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17650; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Shar-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17651 a base:work; + base:work\#DateEnd_Max "1907-02-28"^^xsd:date; + base:work\#DateEnd_Min "1907-02-28"^^xsd:date; + base:work\#DateStart_Max "1907-02-28"^^xsd:date; + base:work\#DateStart_Min "1907-02-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17651; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Meadv-00; + base:work\#ref-IDOrganisation base:organisation\/49080; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17652 a base:work; + base:work\#DateEnd_Max "1907-03-01"^^xsd:date; + base:work\#DateEnd_Min "1907-03-01"^^xsd:date; + base:work\#DateStart_Max "1907-03-01"^^xsd:date; + base:work\#DateStart_Min "1907-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17652; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-OilC-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17653 a base:work; + base:work\#DateEnd_Max "1907-03-02"^^xsd:date; + base:work\#DateEnd_Min "1907-03-02"^^xsd:date; + base:work\#DateStart_Max "1907-03-02"^^xsd:date; + base:work\#DateStart_Min "1907-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17653; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Kane-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17654 a base:work; + base:work\#DateEnd_Max "1907-03-05"^^xsd:date; + base:work\#DateEnd_Min "1907-03-05"^^xsd:date; + base:work\#DateStart_Max "1907-03-04"^^xsd:date; + base:work\#DateStart_Min "1907-03-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17654; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Waterto-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17655 a base:work; + base:work\#DateEnd_Max "1907-03-06"^^xsd:date; + base:work\#DateEnd_Min "1907-03-06"^^xsd:date; + base:work\#DateStart_Max "1907-03-06"^^xsd:date; + base:work\#DateStart_Min "1907-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17655; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Olea; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17656 a base:work; + base:work\#DateEnd_Max "1907-03-07"^^xsd:date; + base:work\#DateEnd_Min "1907-03-07"^^xsd:date; + base:work\#DateStart_Max "1907-03-07"^^xsd:date; + base:work\#DateStart_Min "1907-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17656; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Horn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17657 a base:work; + base:work\#DateEnd_Max "1907-03-08"^^xsd:date; + base:work\#DateEnd_Min "1907-03-08"^^xsd:date; + base:work\#DateStart_Max "1907-03-08"^^xsd:date; + base:work\#DateStart_Min "1907-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17657; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-GenNY-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17658 a base:work; + base:work\#DateEnd_Max "1907-03-09"^^xsd:date; + base:work\#DateEnd_Min "1907-03-09"^^xsd:date; + base:work\#DateStart_Max "1907-03-09"^^xsd:date; + base:work\#DateStart_Min "1907-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17658; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Corn-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17659 a base:work; + base:work\#DateEnd_Max "1907-03-11"^^xsd:date; + base:work\#DateEnd_Min "1907-03-11"^^xsd:date; + base:work\#DateStart_Max "1907-03-11"^^xsd:date; + base:work\#DateStart_Min "1907-03-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17659; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Tow-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17660 a base:work; + base:work\#DateEnd_Max "1907-03-13"^^xsd:date; + base:work\#DateEnd_Min "1907-03-13"^^xsd:date; + base:work\#DateStart_Max "1907-03-12"^^xsd:date; + base:work\#DateStart_Min "1907-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17660; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Wav-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17661 a base:work; + base:work\#DateEnd_Max "1907-03-14"^^xsd:date; + base:work\#DateEnd_Min "1907-03-14"^^xsd:date; + base:work\#DateStart_Max "1907-03-14"^^xsd:date; + base:work\#DateStart_Min "1907-03-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17661; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/17662 a base:work; + base:work\#DateEnd_Max "1909-01-12"^^xsd:date; + base:work\#DateEnd_Min "1909-01-12"^^xsd:date; + base:work\#DateStart_Max "1909-01-12"^^xsd:date; + base:work\#DateStart_Min "1909-01-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 17662; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/ModHel-00 . + +base:work\/18 a base:work; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 18; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/1830 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1895 and 1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1830; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Violinist"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDOrganisation2 base:organisation\/72172; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1833 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1833; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/CZ-Budweis-00; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1836 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1836; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1839 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1839; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment "assistant of Gustav Mahler"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1842 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Autumm 1909"; + base:work\#DateStart_Max "1909-11-23"^^xsd:date; + base:work\#DateStart_Min "1909-09-24"^^xsd:date; + base:work\#Employment "employments"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1842; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDOrganisation base:organisation\/456; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1845 a base:work; + base:work\#DateEnd_Fuzzy "1939"; + base:work\#DateEnd_Max "1939-11-23"^^xsd:date; + base:work\#DateEnd_Min "1939-11-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "employments"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1845; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/1854 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1854; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Niz-00; + base:work\#ref-IDOrganisation base:organisation\/457; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/186 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 186; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "Primaballerina"; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDOrganisation base:organisation\/139; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1860 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1860; + base:work\#Profession base:Profession-Singer; + base:work\#comment """After her big success in Nizza she went to Germany to study Wagner-roles. +She had different guest engagements also in Berlin at the Hofoper."""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1862 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1862; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Gustav Mahler gave her the job in Wien"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/187 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 187; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1871 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1871; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/434; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1874 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1874; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1877 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1877; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/446; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/188 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 188; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/IT-Parm-00; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1889 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1889; + base:work\#Profession base:Profession-Singer; + base:work\#comment "After the first world war she had guest engagements in Berlin, Dresden, Leipzig, München and Amsterdam, but dates are not known until now."; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/434; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/189 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 189; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "together with her husband Francesco"; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/19 a base:work; + base:work\#DateStart_Fuzzy "October 1847"; + base:work\#DateStart_Max "1847-10-31"^^xsd:date; + base:work\#DateStart_Min "1847-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 19; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/190 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 190; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "because of an invitation"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/191 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 191; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "Paris im Ballett-Divertissement zu Halévys Oper La tempête"; + base:work\#ref-IDOrganisation base:organisation\/141; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1910 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment """Opera singer + +"""; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1910; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CH-Zur-00; + base:work\#ref-IDOrganisation base:organisation\/458; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1913 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1913; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/NOR-Nores-00; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1916 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1916; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1919 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1919; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/192 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 192; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "At the same time guest engagements in London"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1922 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1922; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/117; + base:work\#ref-IDPerson base:person\/CahCha-00 . + +base:work\/1923 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1923; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1926 a base:work; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1926; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/459; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1929 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1929; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/193 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 193; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "fixed contract. She was the highest paid dancer of her time in Paris"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1932 a base:work; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1932; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/180; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/194 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 194; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "after an invitation"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/RosCa-00 . + +base:work\/1943 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#Employment "world tour with engagements"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1943; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1946 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "world tour with engagements"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1946; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1949 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "engagements"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1949; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/460; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/195 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 195; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/1952 a base:work; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1952; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1955 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1955; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/461; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1958 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1958; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/196 a base:work; + base:work\#Employment "choirmaster"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 196; + base:work\#comment "on recommendation of Richard Wagner"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/1961 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1961; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/MC-MtCarlo-00; + base:work\#ref-IDOrganisation base:organisation\/462; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1964 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1964; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDOrganisation base:organisation\/463; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1967 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1967; + base:work\#Profession base:Profession-Singer; + base:work\#comment "first season of this institution"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/197 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 197; + base:work\#comment "first Lohengrin there"; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/1970 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1970; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1973 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1973; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/1976 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 1976; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/CapVic-00 . + +base:work\/198 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 198; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDOrganisation base:organisation\/143; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/199 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 199; + base:work\#comment "of the first Ring des Nibelungen"; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/1995 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 1995; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/1998 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 1998; + base:work\#Profession base:Profession-Singer; + base:work\#comment "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + base:work\#ref-IDLocation base:location\/MC-MtCarlo-00; + base:work\#ref-IDOrganisation base:organisation\/462; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/2 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/20 a base:work; + base:work\#DateEnd_Max "1875-05-30"^^xsd:date; + base:work\#DateEnd_Min "1875-05-30"^^xsd:date; + base:work\#DateStart_Min "1873-10-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 20; + base:work\#Profession base:Profession-Actor; + base:work\#comment "04.10.1873-30.05.1875 or later"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/200 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 200; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/2001 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-04-26"^^xsd:date; + base:work\#DateEnd_Min "1906-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-04-26"^^xsd:date; + base:work\#DateStart_Min "1906-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2001; + base:work\#Profession base:Profession-Singer; + base:work\#comment "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/2345; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/2004 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2004; + base:work\#Profession base:Profession-Singer; + base:work\#comment "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/2007 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2007; + base:work\#Profession base:Profession-Singer; + base:work\#comment "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/201 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 201; + base:work\#comment "of the philharmonic concerts"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/2010 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2010; + base:work\#Profession base:Profession-Singer; + base:work\#comment "During her time in Berlin she has guest engagements in Monte Carlo, Paris, London, Stockholm und Brüssel."; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/2013 a base:work; + base:work\#DateEnd_Fuzzy "1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2013; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/2016 a base:work; + base:work\#Employment "Emcee"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2016; + base:work\#ref-IDOrganisation base:organisation\/465; + base:work\#ref-IDPerson base:person\/GruFri-00 . + +base:work\/2019 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2019; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/465; + base:work\#ref-IDPerson base:person\/GruFri-00 . + +base:work\/202 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 202; + base:work\#comment "Gesellschaft der Musikfreunde"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/2022 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#Employment """emcee +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2022; + base:work\#comment "from time to time during this periode"; + base:work\#ref-IDOrganisation base:organisation\/466; + base:work\#ref-IDPerson base:person\/GruFri-00 . + +base:work\/2025 a base:work; + base:work\#Employment "Cabaret Artist"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2025; + base:work\#comment "“Doppelconférence“"; + base:work\#ref-IDOrganisation base:organisation\/467; + base:work\#ref-IDPerson base:person\/GruFri-00 . + +base:work\/2028 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2028; + base:work\#ref-IDOrganisation base:organisation\/468; + base:work\#ref-IDPerson base:person\/GruFri-00 . + +base:work\/203 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 203; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/144; + base:work\#ref-IDPerson base:person\/RicHar-00 . + +base:work\/2031 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2031; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDPerson base:person\/GunRao-00 . + +base:work\/2034 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2034; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/471; + base:work\#ref-IDPerson base:person\/GunRao-00 . + +base:work\/2037 a base:work; + base:work\#DateEnd_Fuzzy "1951"; + base:work\#DateEnd_Max "1951-12-31"^^xsd:date; + base:work\#DateEnd_Min "1951-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2037; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/470; + base:work\#ref-IDPerson base:person\/GunRao-00 . + +base:work\/204 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-01-01"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 204; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/145; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/205 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-05-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-05-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 205; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDOrganisation base:organisation\/146; + base:work\#ref-IDPerson base:person\/ReiCat-00 . + +base:work\/2063 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2063; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2066 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2066; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Bernhard Scholz helped her to get the job. After marriage 1863 she finished her career as an opera singer and sang only in concerts again."; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/475; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2069 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868-1880"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2069; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/473; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2072 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2072; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2075 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2075; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2078 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2078; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2081 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2081; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EST-Dorpat-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2084 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2084; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-SZ-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2087 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2087; + base:work\#comment "concert tours with Laura Rappoldi"; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2090 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2090; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-Elberf-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2093 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2093; + base:work\#comment "tour through USA"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2096 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2096; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/2099 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2099; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/474; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/21 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/210 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 210; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/151; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/2102 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2102; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/MotHen-00 . + +base:work\/2105 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2105; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/92; + base:work\#ref-IDPerson base:person\/MotHen-00 . + +base:work\/2108 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2108; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/476; + base:work\#ref-IDPerson base:person\/MotHen-00 . + +base:work\/21096 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21096; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69764; + base:work\#ref-IDOrganisation2 base:organisation\/58250; + base:work\#ref-IDPerson base:person\/AbrBin-742 . + +base:work\/211 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 211; + base:work\#Profession base:Profession-Actor; + base:work\#comment "played supporting roles alongside prominent actors like Edwin Booth and John Edward McCullough"; + base:work\#ref-IDOrganisation base:organisation\/70; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/21100 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21100; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Bessar-00; + base:work\#ref-IDOrganisation base:organisation\/69768; + base:work\#ref-IDOrganisation2 base:organisation\/59130; + base:work\#ref-IDPerson base:person\/AbrBin-742 . + +base:work\/21104 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21104; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69768; + base:work\#ref-IDOrganisation2 base:organisation\/59130; + base:work\#ref-IDPerson base:person\/AbrBin-742 . + +base:work\/21108 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21108; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/AbrBin-742 . + +base:work\/2111 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2111; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/MotHen-00 . + +base:work\/21112 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21112; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69772; + base:work\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:work\/21116 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21116; + base:work\#Profession base:Profession-Author; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Krak-00; + base:work\#ref-IDOrganisation base:organisation\/69776; + base:work\#ref-IDPerson base:person\/AdlIsr-1121 . + +base:work\/21120 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21120; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDOrganisation base:organisation\/69780; + base:work\#ref-IDOrganisation2 base:organisation\/67950; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21124 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21124; + base:work\#Profession base:Profession-Founder; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69784; + base:work\#ref-IDOrganisation2 base:organisation\/55000; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21128 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-03"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21128; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69788; + base:work\#ref-IDOrganisation2 base:organisation\/53650; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21132 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21132; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21136 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 21136; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDOrganisation base:organisation\/69792; + base:work\#ref-IDOrganisation2 base:organisation\/58900; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/2114 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2114; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/MotHen-00 . + +base:work\/21140 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21140; + base:work\#Profession base:Profession-Manager; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69796; + base:work\#ref-IDOrganisation2 base:organisation\/56170; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21144 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21144; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69800; + base:work\#ref-IDOrganisation2 base:organisation\/59880; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21148 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21148; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21152 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21152; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-122; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21156 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21156; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69804; + base:work\#ref-IDOrganisation2 base:organisation\/569; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21160 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21160; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/Lit-DiJeSt-111; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21164 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21164; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/21168 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21168; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/69808; + base:work\#ref-IDOrganisation2 base:organisation\/66720; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/2117 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2117; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21172 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21172; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69812; + base:work\#ref-IDOrganisation2 base:organisation\/56150; + base:work\#ref-IDPerson base:person\/AdlSte-1127 . + +base:work\/21176 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21176; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/AdlSte-1127 . + +base:work\/21180 a base:work; + base:work\#DateEnd_Fuzzy "1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21180; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/AdlSte-1127 . + +base:work\/21184 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21184; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/AdlSte-1127 . + +base:work\/21188 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21188; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/66720; + base:work\#ref-IDPerson base:person\/AdlSte-1127 . + +base:work\/21192 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21192; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-33; + base:work\#ref-IDOrganisation base:organisation\/69816; + base:work\#ref-IDOrganisation2 base:organisation\/71808; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21196 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21196; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-68; + base:work\#ref-IDOrganisation base:organisation\/69820; + base:work\#ref-IDOrganisation2 base:organisation\/62730; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/212 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 212; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/153; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/2120 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2120; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21200 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21200; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#Profession3 base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/RU-Berdi-00; + base:work\#ref-IDOrganisation base:organisation\/69824; + base:work\#ref-IDOrganisation2 base:organisation\/71808; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21204 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21204; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/69768; + base:work\#ref-IDOrganisation2 base:organisation\/59130; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21208 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21208; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/69828; + base:work\#ref-IDOrganisation2 base:organisation\/57250; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21212 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21212; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69832; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21216 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21216; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "7"; + base:work\#ref-IDOrganisation base:organisation\/69836; + base:work\#ref-IDOrganisation2 base:organisation\/56970; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21220 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21220; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "8"; + base:work\#ref-IDOrganisation base:organisation\/69840; + base:work\#ref-IDOrganisation2 base:organisation\/68280; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21224 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21224; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/53140; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21228 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21228; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "10"; + base:work\#ref-IDOrganisation base:organisation\/69844; + base:work\#ref-IDOrganisation2 base:organisation\/56930; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/2123 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2123; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDOrganisation base:organisation\/477; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21232 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21232; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "11"; + base:work\#ref-IDOrganisation base:organisation\/69848; + base:work\#ref-IDOrganisation2 base:organisation\/54740; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21236 a base:work; + base:work\#DateStart_Fuzzy "10"; + base:work\#DateStart_Max "2010-12-31"^^xsd:date; + base:work\#DateStart_Min "2010-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21236; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDOrganisation base:organisation\/69852; + base:work\#ref-IDOrganisation2 base:organisation\/57030; + base:work\#ref-IDPerson base:person\/AntRiv-1161 . + +base:work\/21240 a base:work; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21240; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/56030; + base:work\#ref-IDOrganisation2 base:organisation\/56030; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21244 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21244; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69856; + base:work\#ref-IDOrganisation2 base:organisation\/71812; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21248 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21248; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/49940; + base:work\#ref-IDOrganisation2 base:organisation\/49940; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21252 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21252; + base:work\#Profession base:Profession-Director; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69860; + base:work\#ref-IDOrganisation2 base:organisation\/59070; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21256 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21256; + base:work\#Profession base:Profession-Director; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/56190; + base:work\#ref-IDOrganisation2 base:organisation\/56190; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/2126 a base:work; + base:work\#Employment "engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2126; + base:work\#comment "engagements in several German opera houses."; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21260 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21260; + base:work\#Profession base:Profession-Director; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69864; + base:work\#ref-IDOrganisation2 base:organisation\/52800; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21264 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21264; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/69868; + base:work\#ref-IDOrganisation2 base:organisation\/71816; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21268 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21268; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/69872; + base:work\#ref-IDOrganisation2 base:organisation\/71816; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21272 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21272; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/52800; + base:work\#ref-IDOrganisation2 base:organisation\/52800; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21280 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21280; + base:work\#Profession base:Profession-Author; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/59940; + base:work\#ref-IDOrganisation2 base:organisation\/59940; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21284 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21284; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21288 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21288; + base:work\#Profession base:Profession-Director; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-2; + base:work\#ref-IDOrganisation base:organisation\/54760; + base:work\#ref-IDOrganisation2 base:organisation\/54760; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/2129 a base:work; + base:work\#Employment "engagements"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2129; + base:work\#comment "engagements in Amsterdam."; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21292 a base:work; + base:work\#DateStart_Fuzzy "End of 1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-09-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21292; + base:work\#Profession base:Profession-Director; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21296 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21296; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/66730; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/213 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 213; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/154; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/21300 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21300; + base:work\#Profession base:Profession-Founder; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21304 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 21304; + base:work\#Profession base:Profession-Director; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21308 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21308; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/69876; + base:work\#ref-IDOrganisation2 base:organisation\/57830; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21312 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21312; + base:work\#Profession base:Profession-Translator; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/21316 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21316; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/69880; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:work\/2132 a base:work; + base:work\#Employment "engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2132; + base:work\#comment "engagements in Prag."; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21320 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21320; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/48970; + base:work\#ref-IDOrganisation2 base:organisation\/48970; + base:work\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:work\/21324 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21324; + base:work\#Profession base:Profession-Director; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/48990; + base:work\#ref-IDOrganisation2 base:organisation\/48990; + base:work\#ref-IDPerson base:person\/AxeAvr-1204 . + +base:work\/21332 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21332; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/AxeMin-1205 . + +base:work\/21336 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21336; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/AxeMin-1205 . + +base:work\/21340 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21340; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/AxeMin-1205 . + +base:work\/2135 a base:work; + base:work\#Employment "engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2135; + base:work\#comment "engagements in Budapest."; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/PauRos-00 . + +base:work\/21356 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21356; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69892; + base:work\#ref-IDOrganisation2 base:organisation\/58830; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21360 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21360; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69896; + base:work\#ref-IDOrganisation2 base:organisation\/57510; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21364 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21364; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69900; + base:work\#ref-IDOrganisation2 base:organisation\/50120; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21368 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21368; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69904; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21372 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21372; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/69908; + base:work\#ref-IDOrganisation2 base:organisation\/58870; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21376 a base:work; + base:work\#DateEnd_Fuzzy "Between 1914 and 1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21376; + base:work\#Profession base:Profession-Singer; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/62260; + base:work\#ref-IDOrganisation2 base:organisation\/62260; + base:work\#ref-IDPerson base:person\/AxeRos-980 . + +base:work\/21380 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21380; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/48990; + base:work\#ref-IDOrganisation2 base:organisation\/48990; + base:work\#ref-IDPerson base:person\/AxeRuk-1207 . + +base:work\/21388 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21388; + base:work\#Profession base:Profession-Singer; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/67940; + base:work\#ref-IDOrganisation2 base:organisation\/67940; + base:work\#ref-IDPerson base:person\/BecBer-1238 . + +base:work\/21396 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21396; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/69916; + base:work\#ref-IDPerson base:person\/BecBer-1238 . + +base:work\/214 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 214; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/155; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/21400 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21400; + base:work\#Profession base:Profession-Singer; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69860; + base:work\#ref-IDOrganisation2 base:organisation\/59070; + base:work\#ref-IDPerson base:person\/BecBer-1238 . + +base:work\/21404 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 21404; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69920; + base:work\#ref-IDOrganisation2 base:organisation\/56550; + base:work\#ref-IDPerson base:person\/BecBer-1238 . + +base:work\/21412 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21412; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Can-DiJeSt-75; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21416 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21416; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69520; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21420 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21420; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21424 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21424; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21428 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21428; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21432 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21432; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/DK-00; + base:work\#ref-IDOrganisation base:organisation\/49390; + base:work\#ref-IDOrganisation2 base:organisation\/49390; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21440 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21440; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDOrganisation base:organisation\/52280; + base:work\#ref-IDOrganisation2 base:organisation\/52280; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21444 a base:work; + base:work\#Employment "Media"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21444; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDOrganisation base:organisation\/69928; + base:work\#ref-IDOrganisation2 base:organisation\/59790; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21448 a base:work; + base:work\#DateStart_Fuzzy "October 1921"; + base:work\#DateStart_Max "1921-10-31"^^xsd:date; + base:work\#DateStart_Min "1921-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21448; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/2145 a base:work; + base:work\#Employment "Student"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2145; + base:work\#comment "Studies with Vinzenz Lachner"; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21456 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21456; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Stagemanager; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21460 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21460; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/69932; + base:work\#ref-IDOrganisation2 base:organisation\/62520; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/21476 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21476; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-122; + base:work\#ref-IDOrganisation base:organisation\/69936; + base:work\#ref-IDOrganisation2 base:organisation\/68310; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/2148 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#Employment "Student"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2148; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/426; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21480 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21480; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/69940; + base:work\#ref-IDOrganisation2 base:organisation\/57250; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21484 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21484; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/69944; + base:work\#ref-IDOrganisation2 base:organisation\/57470; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21488 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21488; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2796; + base:work\#ref-IDOrganisation2 base:organisation\/2796; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21492 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21492; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDOrganisation base:organisation\/69948; + base:work\#ref-IDOrganisation2 base:organisation\/54910; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21496 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21496; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/69952; + base:work\#ref-IDOrganisation2 base:organisation\/68330; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/215 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 215; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/156; + base:work\#ref-IDPerson base:person\/RehAda-00 . + +base:work\/21500 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21500; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21504 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21504; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDOrganisation base:organisation\/69956; + base:work\#ref-IDOrganisation2 base:organisation\/63730; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21508 a base:work; + base:work\#DateEnd_Fuzzy "1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 21508; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/YU-00; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/2151 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2151; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Saarb-00; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21512 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21512; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/21516 a base:work; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21516; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/BelHir-1249 . + +base:work\/21520 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-11-30"^^xsd:date; + base:work\#DateStart_Min "1870-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21520; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/BelHir-1249 . + +base:work\/21524 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21524; + base:work\#Profession base:Profession-Author; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/BelHir-1249 . + +base:work\/21528 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#Employment "Circus"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21528; + base:work\#Profession base:Profession-Author; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/61670; + base:work\#ref-IDOrganisation2 base:organisation\/61670; + base:work\#ref-IDPerson base:person\/BelHir-1249 . + +base:work\/21532 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21532; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21536 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21536; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/69960; + base:work\#ref-IDOrganisation2 base:organisation\/66610; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2154 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2154; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21540 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21540; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/69964; + base:work\#ref-IDOrganisation2 base:organisation\/58420; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21544 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21544; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/69968; + base:work\#ref-IDOrganisation2 base:organisation\/58730; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21548 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21548; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69972; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21552 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21552; + base:work\#Profession base:Profession-Director; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/66740; + base:work\#ref-IDOrganisation2 base:organisation\/66740; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21556 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21556; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69976; + base:work\#ref-IDOrganisation2 base:organisation\/60900; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21560 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21560; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/69980; + base:work\#ref-IDOrganisation2 base:organisation\/62500; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21564 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21564; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/69984; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21568 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21568; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDOrganisation base:organisation\/69988; + base:work\#ref-IDOrganisation2 base:organisation\/56660; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2157 a base:work; + base:work\#DateEnd_Fuzzy "1864"; + base:work\#DateEnd_Max "1864-12-31"^^xsd:date; + base:work\#DateEnd_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2157; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/NL-Rott-00; + base:work\#ref-IDOrganisation base:organisation\/478; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21576 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21576; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69996; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21580 a base:work; + base:work\#DateStart_Fuzzy "1919-1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21580; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69290; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21584 a base:work; + base:work\#DateStart_Fuzzy "1920-1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21584; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDOrganisation base:organisation\/70000; + base:work\#ref-IDOrganisation2 base:organisation\/49740; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21588 a base:work; + base:work\#DateStart_Fuzzy "1920-1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21588; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "15"; + base:work\#ref-IDOrganisation base:organisation\/50420; + base:work\#ref-IDOrganisation2 base:organisation\/50420; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21592 a base:work; + base:work\#DateStart_Fuzzy "1926-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21592; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70004; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/21596 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21596; + base:work\#Profession base:Profession-Other; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/216 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 216; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/PatAde-00 . + +base:work\/2160 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2160; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDOrganisation base:organisation\/140; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21600 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21600; + base:work\#Profession base:Profession-Other; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/70008; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/21604 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21604; + base:work\#Profession base:Profession-Other; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDOrganisation base:organisation\/69080; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/21608 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21608; + base:work\#Profession base:Profession-Author; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69080; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/21612 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21612; + base:work\#Profession base:Profession-Author; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/TR-Ist-00; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/21616 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21616; + base:work\#Profession base:Profession-Author; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/21620 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21620; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/54200; + base:work\#ref-IDOrganisation2 base:organisation\/54200; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/21624 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21624; + base:work\#Profession base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70012; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/21628 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21628; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70016; + base:work\#ref-IDOrganisation2 base:organisation\/52360; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/2163 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2163; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/479; + base:work\#ref-IDPerson base:person\/LevHer-00 . + +base:work\/21632 a base:work; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21632; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70020; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/21636 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21636; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/70024; + base:work\#ref-IDOrganisation2 base:organisation\/53000; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/21640 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21640; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/49190; + base:work\#ref-IDOrganisation2 base:organisation\/49190; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/21644 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21644; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70028; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21648 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21648; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-119; + base:work\#ref-IDOrganisation base:organisation\/62270; + base:work\#ref-IDOrganisation2 base:organisation\/62270; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/2165 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2165; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21652 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21652; + base:work\#Profession base:Profession-Director; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/70032; + base:work\#ref-IDOrganisation2 base:organisation\/62270; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21656 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21656; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21660 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21660; + base:work\#Profession base:Profession-Director; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21664 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21664; + base:work\#Profession base:Profession-Director; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation2 base:organisation\/48970; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21668 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21668; + base:work\#Profession base:Profession-Director; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation2 base:organisation\/62450; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21672 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21672; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation2 base:organisation\/56170; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21676 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21676; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/2168 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2168; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21680 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21680; + base:work\#Profession base:Profession-Director; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation2 base:organisation\/68220; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21684 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21684; + base:work\#Profession base:Profession-Director; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/69120; + base:work\#ref-IDPerson base:person\/BerLeo-1264 . + +base:work\/21688 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21688; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70036; + base:work\#ref-IDOrganisation2 base:organisation\/71824; + base:work\#ref-IDPerson base:person\/BerLey-1270 . + +base:work\/21692 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21692; + base:work\#Profession base:Profession-Manager; + base:work\#Profession3 base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/BerLey-1270 . + +base:work\/21696 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21696; + base:work\#Profession base:Profession-Manager; + base:work\#Profession3 base:Profession-; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70044; + base:work\#ref-IDOrganisation2 base:organisation\/67480; + base:work\#ref-IDPerson base:person\/BerLey-1270 . + +base:work\/217 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 217; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/161; + base:work\#ref-IDPerson base:person\/NazAll-00 . + +base:work\/21700 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21700; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69260; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/21704 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21704; + base:work\#Profession base:Profession-Other; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/54970; + base:work\#ref-IDOrganisation2 base:organisation\/54970; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/21708 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21708; + base:work\#Profession base:Profession-Author; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70048; + base:work\#ref-IDOrganisation2 base:organisation\/66720; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/2171 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2171; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21712 a base:work; + base:work\#DateStart_Fuzzy "1924-09-01"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "2001-09-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21712; + base:work\#Profession base:Profession-Author; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70052; + base:work\#ref-IDOrganisation2 base:organisation\/66730; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/21716 a base:work; + base:work\#DateStart_Fuzzy "1926-11-01"; + base:work\#DateStart_Min "2001-11-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21716; + base:work\#Profession base:Profession-Author; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/21720 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21720; + base:work\#Profession base:Profession-Author; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/ISR-00; + base:work\#ref-IDOrganisation base:organisation\/54760; + base:work\#ref-IDOrganisation2 base:organisation\/54760; + base:work\#ref-IDPerson base:person\/BerYit-1275 . + +base:work\/21724 a base:work; + base:work\#Employment "Musical Organization"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21724; + base:work\#Profession base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70056; + base:work\#ref-IDOrganisation2 base:organisation\/54090; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21728 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21728; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/70060; + base:work\#ref-IDOrganisation2 base:organisation\/59230; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21732 a base:work; + base:work\#Employment "Musical Organization"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21732; + base:work\#Profession base:Profession-Singer; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70064; + base:work\#ref-IDOrganisation2 base:organisation\/63670; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21736 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21736; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/2174 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2174; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21740 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21740; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21744 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21744; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70068; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21748 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21748; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/67090; + base:work\#ref-IDOrganisation2 base:organisation\/67090; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21752 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21752; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21756 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21756; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/BerBer-859 . + +base:work\/21760 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21760; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/69940; + base:work\#ref-IDOrganisation2 base:organisation\/57250; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21764 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21764; + base:work\#Profession base:Profession-Manager; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/70072; + base:work\#ref-IDOrganisation2 base:organisation\/63220; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21768 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21768; + base:work\#Profession base:Profession-Manager; + base:work\#comment "3"; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/2177 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2177; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21772 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21772; + base:work\#Profession base:Profession-Manager; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/69920; + base:work\#ref-IDOrganisation2 base:organisation\/56550; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21776 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21776; + base:work\#Profession base:Profession-Manager; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69840; + base:work\#ref-IDOrganisation2 base:organisation\/68280; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21780 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21780; + base:work\#Profession base:Profession-Director; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21784 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21784; + base:work\#Profession base:Profession-Director; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21788 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21788; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21792 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21792; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UA-Krem-00; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/21796 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21796; + base:work\#Profession base:Profession-Director; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/218 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 218; + base:work\#Profession base:Profession-Other; + base:work\#comment "Producer"; + base:work\#ref-IDOrganisation base:organisation\/162; + base:work\#ref-IDPerson base:person\/NazAll-00 . + +base:work\/2180 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2180; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/21800 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21800; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/52830; + base:work\#ref-IDOrganisation2 base:organisation\/52830; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21804 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21804; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70076; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21808 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21808; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69880; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21812 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21812; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/70080; + base:work\#ref-IDOrganisation2 base:organisation\/58660; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21816 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21816; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21820 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21820; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21824 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21824; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21828 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21828; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70084; + base:work\#ref-IDOrganisation2 base:organisation\/58370; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21832 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21832; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21836 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21836; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21840 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21840; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21844 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21844; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21848 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21848; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/Lit-DiJeSt-111; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21852 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21852; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/BlaYet-1319 . + +base:work\/21856 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21856; + base:work\#Profession base:Profession-Singer; + base:work\#Profession3 base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21860 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21860; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21864 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21864; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70088; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21868 a base:work; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21868; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21872 a base:work; + base:work\#DateStart_Fuzzy "1920-1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21872; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDOrganisation2 base:organisation\/284; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21876 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21876; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21880 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21880; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/57520; + base:work\#ref-IDOrganisation2 base:organisation\/57520; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21884 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21884; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70092; + base:work\#ref-IDOrganisation2 base:organisation\/59620; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21888 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-03"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21888; + base:work\#Profession base:Profession-Founder; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70096; + base:work\#ref-IDOrganisation2 base:organisation\/55010; + base:work\#ref-IDPerson base:person\/BlaLeo-1000 . + +base:work\/21892 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21892; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70100; + base:work\#ref-IDPerson base:person\/BoyRaf-791 . + +base:work\/21896 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21896; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/BoyRaf-791 . + +base:work\/219 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 219; + base:work\#Profession base:Profession-Actor; + base:work\#comment "English debut"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/163; + base:work\#ref-IDPerson base:person\/NazAll-00 . + +base:work\/21900 a base:work; + base:work\#DateStart_Fuzzy "1905-06-01"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21900; + base:work\#Profession base:Profession-Manager; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/526; + base:work\#ref-IDPerson base:person\/BoyRaf-791 . + +base:work\/21904 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21904; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/70104; + base:work\#ref-IDOrganisation2 base:organisation\/66980; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21908 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21908; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/67970; + base:work\#ref-IDOrganisation2 base:organisation\/67970; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21912 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21912; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21916 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 21916; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21920 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21920; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDOrganisation base:organisation\/69320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21924 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21924; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/RU-Sib-00; + base:work\#ref-IDOrganisation base:organisation\/70108; + base:work\#ref-IDOrganisation2 base:organisation\/54320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21928 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21928; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PS-00; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21932 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21932; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/ISR-00; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/21936 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21936; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/DaySam-1479 . + +base:work\/21940 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21940; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDOrganisation base:organisation\/70112; + base:work\#ref-IDPerson base:person\/DaySam-1479 . + +base:work\/21944 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21944; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDOrganisation base:organisation\/70116; + base:work\#ref-IDPerson base:person\/DaySam-1479 . + +base:work\/21948 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21948; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21952 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21952; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/70120; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21956 a base:work; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21956; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-69; + base:work\#ref-IDOrganisation base:organisation\/52820; + base:work\#ref-IDOrganisation2 base:organisation\/52820; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21960 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21960; + base:work\#Profession base:Profession-Author; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21964 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21964; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDOrganisation base:organisation\/70124; + base:work\#ref-IDOrganisation2 base:organisation\/62420; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21968 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21968; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/55320; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21972 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21972; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/LT-00; + base:work\#ref-IDOrganisation base:organisation\/68140; + base:work\#ref-IDOrganisation2 base:organisation\/68140; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21976 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21976; + base:work\#Profession base:Profession-Manager; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/61010; + base:work\#ref-IDOrganisation2 base:organisation\/61010; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21980 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21980; + base:work\#Profession base:Profession-Founder; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/70128; + base:work\#ref-IDOrganisation2 base:organisation\/56530; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21984 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21984; + base:work\#Profession base:Profession-Director; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70132; + base:work\#ref-IDOrganisation2 base:organisation\/68140; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21988 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21988; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21992 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21992; + base:work\#Profession base:Profession-Founder; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70136; + base:work\#ref-IDOrganisation2 base:organisation\/68060; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/21996 a base:work; + base:work\#DateStart_Fuzzy "1923-1924"; + base:work\#DateStart_Max "1924-03-30"^^xsd:date; + base:work\#DateStart_Min "1923-11-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 21996; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/66750; + base:work\#ref-IDOrganisation2 base:organisation\/66750; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/22 a base:work; + base:work\#DateEnd_Fuzzy "December 1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Start 1877, End between 10. June 1878 and the end of 1878"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/220 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 220; + base:work\#Profession base:Profession-Actor; + base:work\#comment "often acting in the plays of Henrik Ibsen"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/147; + base:work\#ref-IDPerson base:person\/NazAll-00 . + +base:work\/22000 a base:work; + base:work\#DateStart_Fuzzy "1925-08-01"; + base:work\#DateStart_Max "1925-08-30"^^xsd:date; + base:work\#DateStart_Min "1925-08-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22000; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/70140; + base:work\#ref-IDOrganisation2 base:organisation\/49610; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/22004 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22004; + base:work\#Profession base:Profession-Manager; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70144; + base:work\#ref-IDOrganisation2 base:organisation\/67200; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/22008 a base:work; + base:work\#DateStart_Fuzzy "1926-1927"; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22008; + base:work\#Profession base:Profession-Manager; + base:work\#Profession3 base:Profession-; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/2201 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2201; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22012 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22012; + base:work\#Profession base:Profession-Director; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70148; + base:work\#ref-IDOrganisation2 base:organisation\/58450; + base:work\#ref-IDPerson base:person\/ElkMen-1567 . + +base:work\/22016 a base:work; + base:work\#DateStart_Fuzzy "1895-1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22016; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70152; + base:work\#ref-IDOrganisation2 base:organisation\/68350; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22020 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22020; + base:work\#Profession base:Profession-Founder; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70156; + base:work\#ref-IDOrganisation2 base:organisation\/53880; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22024 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22024; + base:work\#Profession base:Profession-Author; + base:work\#Profession3 base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70160; + base:work\#ref-IDOrganisation2 base:organisation\/53880; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22028 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22028; + base:work\#Profession base:Profession-Author; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70164; + base:work\#ref-IDOrganisation2 base:organisation\/53820; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22032 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22032; + base:work\#Profession base:Profession-Journalist; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70168; + base:work\#ref-IDOrganisation2 base:organisation\/71828; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22036 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22036; + base:work\#Profession base:Profession-Journalist; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70172; + base:work\#ref-IDOrganisation2 base:organisation\/71832; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/2204 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2204; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22040 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22040; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70176; + base:work\#ref-IDOrganisation2 base:organisation\/61140; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22044 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22044; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70180; + base:work\#ref-IDOrganisation2 base:organisation\/71836; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22048 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22048; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70184; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22052 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22052; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70188; + base:work\#ref-IDOrganisation2 base:organisation\/56690; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22056 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22056; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70192; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22060 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22060; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69300; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22064 a base:work; + base:work\#DateStart_Fuzzy "1902-1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22064; + base:work\#Profession base:Profession-Director; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70196; + base:work\#ref-IDOrganisation2 base:organisation\/61390; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22068 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22068; + base:work\#Profession base:Profession-Author; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70200; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/2207 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2207; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22072 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22072; + base:work\#Profession base:Profession-Translator; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22076 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22076; + base:work\#Profession base:Profession-Translator; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/EntJoe-1574 . + +base:work\/22080 a base:work; + base:work\#DateStart_Fuzzy "1885-86"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22080; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69560; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22084 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Musical Organization"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22084; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70204; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22088 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22088; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22092 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22092; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22096 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22096; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/221 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 221; + base:work\#Profession base:Profession-Actor; + base:work\#comment "contract with Metro Pictures"; + base:work\#ref-IDOrganisation base:organisation\/164; + base:work\#ref-IDPerson base:person\/NazAll-00 . + +base:work\/2210 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2210; + base:work\#ref-IDLocation base:location\/IT-Tur-00; + base:work\#ref-IDOrganisation base:organisation\/311; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22100 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22100; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22104 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22104; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70208; + base:work\#ref-IDOrganisation2 base:organisation\/71840; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22108 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22108; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22112 a base:work; + base:work\#DateStart_Fuzzy "1911-1912"; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22112; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70212; + base:work\#ref-IDOrganisation2 base:organisation\/54680; + base:work\#ref-IDPerson base:person\/EpsFan-1579 . + +base:work\/22116 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22116; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22120 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22120; + base:work\#Profession base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22124 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22124; + base:work\#Profession base:Profession-Author; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22128 a base:work; + base:work\#DateStart_Fuzzy "1924 (June-September)"; + base:work\#DateStart_Max "1924-09-30"^^xsd:date; + base:work\#DateStart_Min "1924-06-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22128; + base:work\#Profession base:Profession-Author; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/70216; + base:work\#ref-IDOrganisation2 base:organisation\/71844; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/2213 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2213; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22132 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22132; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70220; + base:work\#ref-IDOrganisation2 base:organisation\/55850; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22136 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22136; + base:work\#Profession base:Profession-Author; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70224; + base:work\#ref-IDOrganisation2 base:organisation\/68190; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22140 a base:work; + base:work\#DateStart_Fuzzy "1967"; + base:work\#DateStart_Max "1967-12-31"^^xsd:date; + base:work\#DateStart_Min "1967-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22140; + base:work\#Profession base:Profession-Author; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/ISR-00; + base:work\#ref-IDOrganisation base:organisation\/70228; + base:work\#ref-IDPerson base:person\/FeiRac-1622 . + +base:work\/22144 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22144; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/52830; + base:work\#ref-IDOrganisation2 base:organisation\/52830; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22148 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22148; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22152 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22152; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22156 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22156; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70232; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/2216 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2216; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22160 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22160; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70236; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22164 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22164; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70240; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22168 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22168; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22172 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22172; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22176 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22176; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22180 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22180; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70092; + base:work\#ref-IDOrganisation2 base:organisation\/66570; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22184 a base:work; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22184; + base:work\#Profession base:Profession-Author; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/GilLou-1764 . + +base:work\/22188 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22188; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/53640; + base:work\#ref-IDOrganisation2 base:organisation\/53640; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/2219 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2219; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22192 a base:work; + base:work\#DateStart_Fuzzy "1888-1889"; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22192; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70244; + base:work\#ref-IDOrganisation2 base:organisation\/53590; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22196 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22196; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/Rom-DiJeSt-35; + base:work\#ref-IDOrganisation base:organisation\/70248; + base:work\#ref-IDOrganisation2 base:organisation\/71848; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/222 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 222; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/165; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22200 a base:work; + base:work\#DateStart_Fuzzy "1889-1891"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22200; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70252; + base:work\#ref-IDOrganisation2 base:organisation\/58880; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22204 a base:work; + base:work\#DateStart_Fuzzy "1891-1892"; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22204; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDOrganisation base:organisation\/70256; + base:work\#ref-IDOrganisation2 base:organisation\/51420; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22208 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22208; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70260; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22212 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22212; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22216 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22216; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70264; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/2222 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2222; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22220 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22220; + base:work\#Profession base:Profession-Director; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70264; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22224 a base:work; + base:work\#DateStart_Fuzzy "1921-1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22224; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22228 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22228; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70268; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22232 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22232; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/49990; + base:work\#ref-IDOrganisation2 base:organisation\/49990; + base:work\#ref-IDPerson base:person\/GolIts-1826 . + +base:work\/22236 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22236; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70272; + base:work\#ref-IDOrganisation2 base:organisation\/57450; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22240 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22240; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70276; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22244 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22244; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70280; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22248 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22248; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70284; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/2225 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2225; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22252 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22252; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22256 a base:work; + base:work\#DateStart_Fuzzy "1925-6-1"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22256; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70288; + base:work\#ref-IDOrganisation2 base:organisation\/57430; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22260 a base:work; + base:work\#DateStart_Fuzzy "1926-07-01"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22260; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/70292; + base:work\#ref-IDOrganisation2 base:organisation\/57720; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22264 a base:work; + base:work\#DateStart_Fuzzy "1928-09-01"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22264; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70296; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/22268 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22268; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70300; + base:work\#ref-IDOrganisation2 base:organisation\/57420; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22272 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22272; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70304; + base:work\#ref-IDOrganisation2 base:organisation\/58420; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22276 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22276; + base:work\#Profession base:Profession-Founder; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/52800; + base:work\#ref-IDOrganisation2 base:organisation\/52800; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/2228 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2228; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/MC-MtCarlo-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22280 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22280; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22284 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22284; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDOrganisation base:organisation\/70308; + base:work\#ref-IDOrganisation2 base:organisation\/62450; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22288 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22288; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22292 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22292; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22296 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22296; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/49480; + base:work\#ref-IDOrganisation2 base:organisation\/49480; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/223 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 223; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mein-00; + base:work\#ref-IDOrganisation base:organisation\/166; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22300 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22300; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22304 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22304; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22308 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22308; + base:work\#Profession base:Profession-Founder; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68090; + base:work\#ref-IDOrganisation2 base:organisation\/68090; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/2231 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2231; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22312 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22312; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70312; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/22316 a base:work; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22316; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22320 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22320; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69832; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22324 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22324; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70316; + base:work\#ref-IDOrganisation2 base:organisation\/54170; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22328 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22328; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70320; + base:work\#ref-IDOrganisation2 base:organisation\/58430; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22332 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22332; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/70324; + base:work\#ref-IDOrganisation2 base:organisation\/53450; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22336 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22336; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDOrganisation base:organisation\/70124; + base:work\#ref-IDOrganisation2 base:organisation\/62420; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/2234 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2234; + base:work\#comment "tours all around music centres"; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/ResEdo-00 . + +base:work\/22340 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22340; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDOrganisation base:organisation\/70328; + base:work\#ref-IDOrganisation2 base:organisation\/62410; + base:work\#ref-IDPerson base:person\/GreCha-1897 . + +base:work\/22344 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22344; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70332; + base:work\#ref-IDOrganisation2 base:organisation\/58870; + base:work\#ref-IDPerson base:person\/GroJos-1913 . + +base:work\/22348 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22348; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70336; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/GroJos-1913 . + +base:work\/22352 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22352; + base:work\#Profession base:Profession-Author; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/GroJos-1913 . + +base:work\/22356 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22356; + base:work\#Profession base:Profession-Author; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/69880; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/GroJos-1913 . + +base:work\/22360 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22360; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70340; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/GroJos-1913 . + +base:work\/22364 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22364; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/70344; + base:work\#ref-IDPerson base:person\/HadEst-1958 . + +base:work\/22368 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22368; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/54360; + base:work\#ref-IDOrganisation2 base:organisation\/54360; + base:work\#ref-IDPerson base:person\/HadEst-1958 . + +base:work\/2237 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2237; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDOrganisation base:organisation\/482; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22372 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22372; + base:work\#Profession base:Profession-Author; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDOrganisation base:organisation\/70348; + base:work\#ref-IDOrganisation2 base:organisation\/71856; + base:work\#ref-IDPerson base:person\/HadEst-1958 . + +base:work\/22376 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22376; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-23; + base:work\#ref-IDOrganisation base:organisation\/70352; + base:work\#ref-IDOrganisation2 base:organisation\/71860; + base:work\#ref-IDPerson base:person\/HeySam-1997 . + +base:work\/22380 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22380; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69920; + base:work\#ref-IDOrganisation2 base:organisation\/56550; + base:work\#ref-IDPerson base:person\/HeySam-1997 . + +base:work\/22384 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22384; + base:work\#Profession base:Profession-Composer; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/Bessar-00; + base:work\#ref-IDOrganisation base:organisation\/70356; + base:work\#ref-IDOrganisation2 base:organisation\/53540; + base:work\#ref-IDPerson base:person\/HeySam-1997 . + +base:work\/22388 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22388; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70360; + base:work\#ref-IDOrganisation2 base:organisation\/58430; + base:work\#ref-IDPerson base:person\/HeySam-1997 . + +base:work\/22392 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22392; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70364; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/HurCha-2035 . + +base:work\/22396 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22396; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/HurCha-2035 . + +base:work\/224 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 224; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/2240 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2240; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22400 a base:work; + base:work\#DateStart_Fuzzy "1888-1890"; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22400; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HurCha-2035 . + +base:work\/22404 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22404; + base:work\#Profession base:Profession-Singer; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70368; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22408 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22408; + base:work\#Profession base:Profession-Singer; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70372; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22412 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22412; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/70376; + base:work\#ref-IDOrganisation2 base:organisation\/56680; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22416 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22416; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/ROU-Bot-00; + base:work\#ref-IDOrganisation base:organisation\/70380; + base:work\#ref-IDOrganisation2 base:organisation\/56090; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22420 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22420; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDOrganisation base:organisation\/70364; + base:work\#ref-IDOrganisation2 base:organisation\/55840; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22424 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22424; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22428 a base:work; + base:work\#DateStart_Fuzzy "1890-1-1"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22428; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/54290; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/2243 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2243; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/483; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22432 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22432; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22436 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22436; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/57520; + base:work\#ref-IDOrganisation2 base:organisation\/57520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22440 a base:work; + base:work\#DateStart_Fuzzy "1921-28"; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22440; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDOrganisation2 base:organisation\/284; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22444 a base:work; + base:work\#DateStart_Fuzzy "1929-30"; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22444; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22448 a base:work; + base:work\#DateStart_Fuzzy "1931-02-01"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22448; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22452 a base:work; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22452; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDOrganisation2 base:organisation\/66330; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/22456 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22456; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDPerson base:person\/KhaKha-2107 . + +base:work\/2246 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2246; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22460 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22460; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/69820; + base:work\#ref-IDOrganisation2 base:organisation\/62730; + base:work\#ref-IDPerson base:person\/KhaKha-2107 . + +base:work\/22464 a base:work; + base:work\#DateStart_Fuzzy "1881-1882"; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22464; + base:work\#Profession base:Profession-Director; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70388; + base:work\#ref-IDOrganisation2 base:organisation\/68240; + base:work\#ref-IDPerson base:person\/KhaKha-2107 . + +base:work\/22472 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22472; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "He had the same wandering ways with his parents, until he had made Paris his place of rest."; + base:work\#ref-IDOrganisation base:organisation\/70392; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomIsr-2131 . + +base:work\/22476 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22476; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/49000; + base:work\#ref-IDOrganisation2 base:organisation\/49000; + base:work\#ref-IDPerson base:person\/KomLea-2132 . + +base:work\/22480 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22480; + base:work\#Profession base:Profession-Manager; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/70400; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomLea-2132 . + +base:work\/22484 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22484; + base:work\#Profession base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70400; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomLea-2132 . + +base:work\/22488 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22488; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70400; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomLea-2132 . + +base:work\/2249 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2249; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22492 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22492; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/68060; + base:work\#ref-IDOrganisation2 base:organisation\/68060; + base:work\#ref-IDPerson base:person\/KomMax-2133 . + +base:work\/22496 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22496; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70400; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomMax-2133 . + +base:work\/225 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 225; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22500 a base:work; + base:work\#DateStart_Fuzzy "1941"; + base:work\#DateStart_Max "1941-12-31"^^xsd:date; + base:work\#DateStart_Min "1941-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22500; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/70400; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/KomMax-2133 . + +base:work\/22504 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22504; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/KopLou-2137 . + +base:work\/22508 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22508; + base:work\#Profession base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDPerson base:person\/KopLou-2137 . + +base:work\/22512 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22512; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70404; + base:work\#ref-IDPerson base:person\/KopLou-2137 . + +base:work\/22516 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22516; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/KopLou-2137 . + +base:work\/2252 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2252; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22520 a base:work; + base:work\#DateStart_Fuzzy "26-1-1894"; + base:work\#DateStart_Max "1894-01-26"^^xsd:date; + base:work\#DateStart_Min "1894-01-26"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22520; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/LatIze-927 . + +base:work\/22524 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22524; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22528 a base:work; + base:work\#DateStart_Fuzzy "1916-1918"; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22528; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/70020; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22532 a base:work; + base:work\#DateStart_Fuzzy "1918-1919"; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22532; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDOrganisation base:organisation\/70408; + base:work\#ref-IDOrganisation2 base:organisation\/50130; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22536 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22536; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70412; + base:work\#ref-IDOrganisation2 base:organisation\/53880; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22540 a base:work; + base:work\#DateStart_Fuzzy "1919-1920"; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22540; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70408; + base:work\#ref-IDOrganisation2 base:organisation\/50130; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22544 a base:work; + base:work\#DateStart_Fuzzy "1921-1922"; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22544; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/57520; + base:work\#ref-IDOrganisation2 base:organisation\/57520; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22548 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22548; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70416; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/2255 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2255; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/JeaRes-00 . + +base:work\/22552 a base:work; + base:work\#DateStart_Fuzzy "1923-1924"; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22552; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70420; + base:work\#ref-IDOrganisation2 base:organisation\/56140; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22556 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22556; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/51100; + base:work\#ref-IDOrganisation2 base:organisation\/51100; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22560 a base:work; + base:work\#DateStart_Fuzzy "1931"; + base:work\#DateStart_Max "1931-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22560; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59620; + base:work\#ref-IDOrganisation2 base:organisation\/59620; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22564 a base:work; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22564; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70424; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22568 a base:work; + base:work\#DateStart_Fuzzy "1932-1933"; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22568; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70052; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/MerWol-2448 . + +base:work\/22572 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22572; + base:work\#Profession base:Profession-Composer; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22576 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22576; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70428; + base:work\#ref-IDOrganisation2 base:organisation\/70428; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/2258 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2258; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1875-1880s"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/ResJos-00 . + +base:work\/22580 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22580; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70432; + base:work\#ref-IDOrganisation2 base:organisation\/54960; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22584 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22584; + base:work\#Profession base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22588 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22588; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70436; + base:work\#ref-IDOrganisation2 base:organisation\/71864; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22592 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22592; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70440; + base:work\#ref-IDOrganisation2 base:organisation\/52690; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22596 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22596; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/70444; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/226 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 226; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22600 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22600; + base:work\#Profession base:Profession-Composer; + base:work\#ref-IDPerson base:person\/MonLaz-2502 . + +base:work\/22604 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22604; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22608 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22608; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/69820; + base:work\#ref-IDOrganisation2 base:organisation\/62730; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/2261 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2261; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she sang together with her brothers"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/ResJos-00 . + +base:work\/22612 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22612; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/69280; + base:work\#ref-IDOrganisation2 base:organisation\/71868; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22616 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22616; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22620 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22620; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22624 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22624; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22628 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22628; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22632 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22632; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22636 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22636; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/2264 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2264; + base:work\#comment "At the end of the opera seasons, Josephine returned to Warsaw where she performed for charities, as her mother had. She gave any income that she made in Poland to charity."; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/ResJos-00 . + +base:work\/22640 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22640; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22644 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22644; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22648 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22648; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22652 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22652; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22656 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22656; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70452; + base:work\#ref-IDOrganisation2 base:organisation\/56670; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22660 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22660; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22664 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22664; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/22668 a base:work; + base:work\#DateStart_Fuzzy "1931-1932"; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22668; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70456; + base:work\#ref-IDPerson base:person\/NadSon-840 . + +base:work\/2267 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2267; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22672 a base:work; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22672; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70460; + base:work\#ref-IDOrganisation2 base:organisation\/66580; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22676 a base:work; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22676; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDOrganisation2 base:organisation\/1080; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22680 a base:work; + base:work\#DateStart_Fuzzy "1896-07-01"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22680; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22684 a base:work; + base:work\#DateStart_Fuzzy "1896-07-01"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22684; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22688 a base:work; + base:work\#DateStart_Fuzzy "1896-07-01"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22688; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22692 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22692; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/54290; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22696 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22696; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/227 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 227; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Darm-00; + base:work\#ref-IDOrganisation base:organisation\/167; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/2270 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2270; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22700 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22700; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22704 a base:work; + base:work\#DateStart_Fuzzy "1898-1899"; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22704; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/ZA-Joburg; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22708 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22708; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22712 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22712; + base:work\#Profession base:Profession-Director; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/2796; + base:work\#ref-IDOrganisation2 base:organisation\/2796; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22716 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22716; + base:work\#Profession base:Profession-Founder; + base:work\#Profession3 base:Profession-; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22720 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22720; + base:work\#Profession base:Profession-Founder; + base:work\#Profession3 base:Profession-; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22724 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22724; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22728 a base:work; + base:work\#DateStart_Fuzzy "1912-1919"; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22728; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/2273 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2273; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22732 a base:work; + base:work\#DateStart_Fuzzy "1929-30"; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22732; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/57240; + base:work\#ref-IDOrganisation2 base:organisation\/57240; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/22736 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22736; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/53650; + base:work\#ref-IDOrganisation2 base:organisation\/53650; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22740 a base:work; + base:work\#DateStart_Fuzzy "1904-1906"; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22740; + base:work\#Profession base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70468; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22744 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22744; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/62400; + base:work\#ref-IDOrganisation2 base:organisation\/62400; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22748 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22748; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22752 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22752; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/54960; + base:work\#ref-IDOrganisation2 base:organisation\/54960; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22756 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22756; + base:work\#Profession base:Profession-Singer; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/2276 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2276; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22760 a base:work; + base:work\#DateStart_Fuzzy "1912-1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22760; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70208; + base:work\#ref-IDOrganisation2 base:organisation\/70576; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22764 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22764; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22768 a base:work; + base:work\#DateStart_Fuzzy "1917-1918"; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22768; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70472; + base:work\#ref-IDOrganisation2 base:organisation\/58660; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22772 a base:work; + base:work\#DateStart_Fuzzy "1918-1919"; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22772; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59800; + base:work\#ref-IDOrganisation2 base:organisation\/71872; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22776 a base:work; + base:work\#DateStart_Fuzzy "1919-1920"; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22776; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70476; + base:work\#ref-IDOrganisation2 base:organisation\/52960; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22780 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22780; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22784 a base:work; + base:work\#DateStart_Fuzzy "1921-1922"; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22784; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDOrganisation2 base:organisation\/2801; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22788 a base:work; + base:work\#DateStart_Fuzzy "1922-1924"; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22788; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/2279 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2279; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22792 a base:work; + base:work\#DateStart_Fuzzy "1924-1925"; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22792; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/69450; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22796 a base:work; + base:work\#DateStart_Fuzzy "1926-1927"; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22796; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/57520; + base:work\#ref-IDOrganisation2 base:organisation\/57520; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/228 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 228; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22800 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22800; + base:work\#Profession base:Profession-Actor; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70092; + base:work\#ref-IDOrganisation2 base:organisation\/59620; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22804 a base:work; + base:work\#DateStart_Fuzzy "1927-1928"; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22804; + base:work\#Profession base:Profession-Actor; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDOrganisation base:organisation\/70480; + base:work\#ref-IDOrganisation2 base:organisation\/66550; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22808 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22808; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/22812 a base:work; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22812; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70484; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22816 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-04"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22816; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69856; + base:work\#ref-IDOrganisation2 base:organisation\/71812; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/2282 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2282; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22820 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-04"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22820; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69230; + base:work\#ref-IDOrganisation2 base:organisation\/71876; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22824 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22824; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70488; + base:work\#ref-IDOrganisation2 base:organisation\/71880; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22828 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22828; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDOrganisation base:organisation\/52440; + base:work\#ref-IDOrganisation2 base:organisation\/52440; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22832 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22832; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/54970; + base:work\#ref-IDOrganisation2 base:organisation\/54970; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22836 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22836; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70492; + base:work\#ref-IDOrganisation2 base:organisation\/71884; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22840 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22840; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70496; + base:work\#ref-IDOrganisation2 base:organisation\/71888; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22844 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22844; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70500; + base:work\#ref-IDOrganisation2 base:organisation\/71892; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22848 a base:work; + base:work\#DateStart_Fuzzy "from 1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22848; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70504; + base:work\#ref-IDOrganisation2 base:organisation\/71896; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/2285 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2285; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDOrganisation base:organisation\/120; + base:work\#ref-IDPerson base:person\/StaAgn-00 . + +base:work\/22852 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22852; + base:work\#Profession base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70508; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22856 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22856; + base:work\#Profession base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/52800; + base:work\#ref-IDOrganisation2 base:organisation\/52800; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/2286 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2286; + base:work\#Profession base:Profession-Singer; + base:work\#comment "her uncle gave her the job, she left Dresden because of his political trouble"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/22860 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22860; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/68140; + base:work\#ref-IDOrganisation2 base:organisation\/68140; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22864 a base:work; + base:work\#DateStart_Fuzzy "1915-01-01"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22864; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70512; + base:work\#ref-IDOrganisation2 base:organisation\/52750; + base:work\#ref-IDPerson base:person\/NomHer-2572 . + +base:work\/22868 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22868; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70516; + base:work\#ref-IDOrganisation2 base:organisation\/49610; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22872 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22872; + base:work\#Profession base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/49940; + base:work\#ref-IDOrganisation2 base:organisation\/49940; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22876 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22876; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/56190; + base:work\#ref-IDOrganisation2 base:organisation\/56190; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22880 a base:work; + base:work\#DateStart_Fuzzy "1906-1908"; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22880; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70316; + base:work\#ref-IDOrganisation2 base:organisation\/54170; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22884 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22884; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70520; + base:work\#ref-IDOrganisation2 base:organisation\/54180; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22888 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22888; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70524; + base:work\#ref-IDOrganisation2 base:organisation\/59070; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/2289 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateStart_Fuzzy "1848"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2289; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/22892 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22892; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70124; + base:work\#ref-IDOrganisation2 base:organisation\/62420; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22896 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22896; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDOrganisation base:organisation\/70528; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/229 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 229; + base:work\#Profession base:Profession-Singer; + base:work\#comment "because of invitation of König Ludwig II, after he heard him in Darmstadt, he sang 700 times in Munich, also in all Wagner operas, UA Meistersinger von Nürnberg"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/168; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/22900 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22900; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/Bel-00; + base:work\#ref-IDOrganisation base:organisation\/70532; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22904 a base:work; + base:work\#DateStart_Fuzzy "1913-1919"; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22904; + base:work\#Profession base:Profession-Director; + base:work\#comment "9"; + base:work\#ref-IDOrganisation base:organisation\/70536; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22908 a base:work; + base:work\#DateStart_Fuzzy "1919-1920"; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22908; + base:work\#Profession base:Profession-Director; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22912 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22912; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70540; + base:work\#ref-IDOrganisation2 base:organisation\/71900; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22916 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22916; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/52720; + base:work\#ref-IDOrganisation2 base:organisation\/71904; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/2292 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2292; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/22920 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22920; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDOrganisation base:organisation\/70544; + base:work\#ref-IDOrganisation2 base:organisation\/71908; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22924 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22924; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDOrganisation base:organisation\/69600; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22928 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22928; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDOrganisation base:organisation\/69490; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22932 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22932; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDOrganisation base:organisation\/70548; + base:work\#ref-IDPerson base:person\/NozItz-2579 . + +base:work\/22936 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22936; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70552; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22940 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22940; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70556; + base:work\#ref-IDOrganisation2 base:organisation\/54920; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22944 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22944; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70560; + base:work\#ref-IDOrganisation2 base:organisation\/71892; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22948 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22948; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70564; + base:work\#ref-IDOrganisation2 base:organisation\/71812; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/2295 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2295; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1853 appointment as Kammersängerin. 1862 resignation from the stage, but again on stage as an actress two years later"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/22952 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22952; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70568; + base:work\#ref-IDOrganisation2 base:organisation\/52520; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22956 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22956; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70572; + base:work\#ref-IDOrganisation2 base:organisation\/59860; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22960 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22960; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70576; + base:work\#ref-IDOrganisation2 base:organisation\/70576; + base:work\#ref-IDPerson base:person\/ReiBin-2748 . + +base:work\/22964 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22964; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70580; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22968 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22968; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/69310; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22972 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22972; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/70584; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22976 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22976; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/67600; + base:work\#ref-IDOrganisation2 base:organisation\/67600; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/2298 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2298; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/254; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/22980 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22980; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/70588; + base:work\#ref-IDOrganisation2 base:organisation\/49610; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22984 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22984; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/70592; + base:work\#ref-IDOrganisation2 base:organisation\/62400; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22988 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22988; + base:work\#Profession base:Profession-Author; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22992 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 22992; + base:work\#Profession base:Profession-Founder; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/68140; + base:work\#ref-IDOrganisation2 base:organisation\/68140; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/22996 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 22996; + base:work\#Profession base:Profession-Founder; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation base:organisation\/70596; + base:work\#ref-IDOrganisation2 base:organisation\/58890; + base:work\#ref-IDPerson base:person\/RivMor-2764 . + +base:work\/23 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-07-31"^^xsd:date; + base:work\#DateStart_Min "1879-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23; + base:work\#Profession base:Profession-Actor; + base:work\#comment "summer 1879"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/558; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/230 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 230; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/169; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/23000 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23000; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70600; + base:work\#ref-IDOrganisation2 base:organisation\/58830; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23004 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23004; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70604; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23008 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#Employment "Circus"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23008; + base:work\#Profession base:Profession-Director; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70608; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/2301 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2301; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/486; + base:work\#ref-IDPerson base:person\/WagJoh-00 . + +base:work\/23012 a base:work; + base:work\#DateStart_Fuzzy "1892-1893"; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23012; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/TR-Const-00; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23016 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23016; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/Egy-DiJeSt-145; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23020 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23020; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70612; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23024 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23024; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2796; + base:work\#ref-IDOrganisation2 base:organisation\/2796; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23028 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23028; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/55700; + base:work\#ref-IDOrganisation2 base:organisation\/55700; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/2303 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2303; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/488; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23032 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23032; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70616; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/23036 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23036; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/57700; + base:work\#ref-IDOrganisation2 base:organisation\/57700; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23040 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23040; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70620; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23044 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23044; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70624; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23048 a base:work; + base:work\#DateStart_Fuzzy "1921-1925"; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23048; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23052 a base:work; + base:work\#DateStart_Fuzzy "1921-1925"; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23052; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23056 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23056; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/70628; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/2306 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2306; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23060 a base:work; + base:work\#DateStart_Fuzzy "1925-1926"; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23060; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/70632; + base:work\#ref-IDOrganisation2 base:organisation\/56010; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23064 a base:work; + base:work\#DateStart_Fuzzy "1926-1927"; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23064; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/70636; + base:work\#ref-IDOrganisation2 base:organisation\/56420; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23068 a base:work; + base:work\#DateStart_Fuzzy "1927-1928"; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23068; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70640; + base:work\#ref-IDOrganisation2 base:organisation\/54340; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23072 a base:work; + base:work\#DateStart_Fuzzy "1928-1929"; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23072; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-151; + base:work\#ref-IDOrganisation base:organisation\/70644; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23076 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23076; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDOrganisation2 base:organisation\/2801; + base:work\#ref-IDPerson base:person\/SeiLeo-2882 . + +base:work\/23080 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23080; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70648; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23084 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23084; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70648; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23088 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23088; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-16; + base:work\#ref-IDOrganisation base:organisation\/70652; + base:work\#ref-IDOrganisation2 base:organisation\/71868; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/2309 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2309; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23092 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23092; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23096 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23096; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70656; + base:work\#ref-IDOrganisation2 base:organisation\/67370; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/231 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 231; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/23100 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23100; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70660; + base:work\#ref-IDOrganisation2 base:organisation\/66970; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23104 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23104; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23108 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23108; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/54290; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23112 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23112; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23116 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23116; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70664; + base:work\#ref-IDOrganisation2 base:organisation\/67440; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/2312 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2312; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDOrganisation base:organisation\/93; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23120 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23120; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23124 a base:work; + base:work\#DateStart_Fuzzy "1897-1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23124; + base:work\#Profession base:Profession-Director; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/ShlAdo-2932 . + +base:work\/23128 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23128; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/70668; + base:work\#ref-IDPerson base:person\/ShrAdo-2943 . + +base:work\/23132 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23132; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70672; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/ShrAdo-2943 . + +base:work\/23136 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23136; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/56520; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/ShrAdo-2943 . + +base:work\/23140 a base:work; + base:work\#DateStart_Fuzzy "1906-1907"; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23140; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/56520; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/ShrAdo-2943 . + +base:work\/23144 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23144; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70676; + base:work\#ref-IDOrganisation2 base:organisation\/66340; + base:work\#ref-IDPerson base:person\/ShrAdo-2943 . + +base:work\/23148 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23148; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/SimSim-2979 . + +base:work\/2315 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2315; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23152 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23152; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SimSim-2979 . + +base:work\/23156 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23156; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/70680; + base:work\#ref-IDPerson base:person\/SimSim-2979 . + +base:work\/23160 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23160; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/SimSim-2979 . + +base:work\/23164 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23164; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/SimSim-2979 . + +base:work\/23168 a base:work; + base:work\#Employment "Musical Organization"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23168; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/70684; + base:work\#ref-IDOrganisation2 base:organisation\/66650; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23172 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23172; + base:work\#Profession base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/60430; + base:work\#ref-IDOrganisation2 base:organisation\/60430; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23176 a base:work; + base:work\#DateStart_Fuzzy "1887-1888"; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23176; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDOrganisation2 base:organisation\/1080; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/2318 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2318; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23180 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23180; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23184 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23184; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/70688; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23188 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23188; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/70688; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23192 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23192; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70692; + base:work\#ref-IDOrganisation2 base:organisation\/55000; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23196 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23196; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/232 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 232; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/23200 a base:work; + base:work\#DateStart_Fuzzy "since 1920"; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23200; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/SimMos-720 . + +base:work\/23204 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23204; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69090; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23208 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23208; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69360; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/2321 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2321; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/WalGus-00 . + +base:work\/23212 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23212; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70696; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23216 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23216; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70700; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23220 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23220; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69580; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23224 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23224; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70704; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23228 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23228; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/62810; + base:work\#ref-IDOrganisation2 base:organisation\/62810; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23232 a base:work; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23232; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70708; + base:work\#ref-IDOrganisation2 base:organisation\/55000; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23236 a base:work; + base:work\#DateStart_Fuzzy "1926-1930"; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23236; + base:work\#Profession base:Profession-; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70092; + base:work\#ref-IDOrganisation2 base:organisation\/59620; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/2324 a base:work; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2324; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she sing together with her father"; + base:work\#ref-IDLocation base:location\/SK-Brat-00; + base:work\#ref-IDPerson base:person\/WalMin-00 . + +base:work\/23240 a base:work; + base:work\#DateStart_Fuzzy "1930-1931"; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23240; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/57240; + base:work\#ref-IDOrganisation2 base:organisation\/57240; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23244 a base:work; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23244; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23248 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23248; + base:work\#Profession base:Profession-; + base:work\#ref-IDOrganisation base:organisation\/70712; + base:work\#ref-IDPerson base:person\/SinAbr-2985 . + +base:work\/23252 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23252; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70716; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23256 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23256; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70720; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23260 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23260; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70720; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23264 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23264; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70720; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23268 a base:work; + base:work\#DateStart_Fuzzy "1915-1917"; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23268; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/70724; + base:work\#ref-IDOrganisation2 base:organisation\/66500; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/2327 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2327; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she sing together with her father"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/WalMin-00 . + +base:work\/23272 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23272; + base:work\#Profession base:Profession-Director; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/EN-Chels-00; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23276 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23276; + base:work\#Profession base:Profession-Director; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23280 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23280; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23284 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23284; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23288 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23288; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23292 a base:work; + base:work\#DateStart_Fuzzy "1927-1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23292; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/23296 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23296; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/SinFis-2987 . + +base:work\/233 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 233; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/NacFra-00 . + +base:work\/2330 a base:work; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2330; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23300 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23300; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/49470; + base:work\#ref-IDOrganisation2 base:organisation\/49470; + base:work\#ref-IDPerson base:person\/SpeBet-786 . + +base:work\/23304 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23304; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SpeBet-786 . + +base:work\/23308 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23308; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/49470; + base:work\#ref-IDOrganisation2 base:organisation\/49470; + base:work\#ref-IDPerson base:person\/SpeLeo-781 . + +base:work\/23312 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23312; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SpeLeo-781 . + +base:work\/23316 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23316; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70728; + base:work\#ref-IDOrganisation2 base:organisation\/62720; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23320 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23320; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDOrganisation base:organisation\/70728; + base:work\#ref-IDOrganisation2 base:organisation\/62720; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23324 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23324; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-16; + base:work\#ref-IDOrganisation base:organisation\/70732; + base:work\#ref-IDOrganisation2 base:organisation\/71868; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23328 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23328; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/2333 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2333; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDOrganisation base:organisation\/100; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23332 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23332; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Pol-DiJeSt-17; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23336 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23336; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23340 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23340; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23344 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23344; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23348 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23348; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23352 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23352; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23356 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23356; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/2336 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2336; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Hermann Levi engaged him in München."; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/479; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23360 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23360; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70740; + base:work\#ref-IDOrganisation2 base:organisation\/52630; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23364 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23364; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70020; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23368 a base:work; + base:work\#DateStart_Fuzzy "1890-07-02"; + base:work\#DateStart_Max "1890-02-07"^^xsd:date; + base:work\#DateStart_Min "1890-02-07"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23368; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/55100; + base:work\#ref-IDOrganisation2 base:organisation\/55100; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23372 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23372; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23376 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23376; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CA-00; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23380 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23380; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/70720; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23384 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23384; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70720; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/23388 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23388; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23392 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23392; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23396 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23396; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/234 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 234; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Musician; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/23400 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1990-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23400; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70744; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23404 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23404; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70736; + base:work\#ref-IDOrganisation2 base:organisation\/70736; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23408 a base:work; + base:work\#DateStart_Fuzzy "Until 1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23408; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23412 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23412; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70068; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23416 a base:work; + base:work\#DateStart_Fuzzy "1890-2-1"; + base:work\#DateStart_Max "1891-02-28"^^xsd:date; + base:work\#DateStart_Min "1890-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23416; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/TanBer-748 . + +base:work\/23420 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23420; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/54960; + base:work\#ref-IDOrganisation2 base:organisation\/54960; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23424 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23424; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/70124; + base:work\#ref-IDOrganisation2 base:organisation\/62420; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23428 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23428; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/70748; + base:work\#ref-IDOrganisation2 base:organisation\/56960; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23432 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23432; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/70752; + base:work\#ref-IDOrganisation2 base:organisation\/50470; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23436 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23436; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/70756; + base:work\#ref-IDOrganisation2 base:organisation\/62280; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23440 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23440; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDOrganisation base:organisation\/70760; + base:work\#ref-IDOrganisation2 base:organisation\/56540; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23444 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23444; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDOrganisation base:organisation\/70316; + base:work\#ref-IDOrganisation2 base:organisation\/54170; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23448 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23448; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23452 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23452; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70764; + base:work\#ref-IDOrganisation2 base:organisation\/58910; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23456 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23456; + base:work\#Profession base:Profession-Director; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70768; + base:work\#ref-IDOrganisation2 base:organisation\/60930; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23460 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23460; + base:work\#Profession base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDOrganisation base:organisation\/68100; + base:work\#ref-IDOrganisation2 base:organisation\/71912; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23464 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23464; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70772; + base:work\#ref-IDOrganisation2 base:organisation\/67500; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23468 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23468; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23472 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23472; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70776; + base:work\#ref-IDOrganisation2 base:organisation\/66720; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23476 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23476; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70780; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23480 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23480; + base:work\#Profession base:Profession-Director; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70784; + base:work\#ref-IDOrganisation2 base:organisation\/57660; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23484 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23484; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/49520; + base:work\#ref-IDOrganisation2 base:organisation\/49520; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23488 a base:work; + base:work\#DateStart_Fuzzy "1925-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23488; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23492 a base:work; + base:work\#DateStart_Fuzzy "1925-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23492; + base:work\#Profession base:Profession-; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/53910; + base:work\#ref-IDOrganisation2 base:organisation\/53910; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23496 a base:work; + base:work\#DateStart_Fuzzy "1925-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23496; + base:work\#Profession base:Profession-Director; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/57020; + base:work\#ref-IDOrganisation2 base:organisation\/57020; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/235 a base:work; + base:work\#Employment "Assistant"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 235; + base:work\#comment "Assistant of Hans Richter at the first Bayreuther Festspiele"; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/23500 a base:work; + base:work\#DateStart_Fuzzy "1928-29"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23500; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/66690; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23504 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23504; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23508 a base:work; + base:work\#DateStart_Fuzzy "1930-1931"; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23508; + base:work\#Profession base:Profession-Actor; + base:work\#comment "22"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/57240; + base:work\#ref-IDOrganisation2 base:organisation\/57240; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23512 a base:work; + base:work\#DateStart_Fuzzy "1931-1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23512; + base:work\#Profession base:Profession-Actor; + base:work\#comment "23"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-52; + base:work\#ref-IDOrganisation base:organisation\/61400; + base:work\#ref-IDOrganisation2 base:organisation\/61400; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23516 a base:work; + base:work\#DateStart_Fuzzy "1932-33"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23516; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-52; + base:work\#ref-IDOrganisation base:organisation\/61400; + base:work\#ref-IDOrganisation2 base:organisation\/61400; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23520 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23520; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70788; + base:work\#ref-IDOrganisation2 base:organisation\/66340; + base:work\#ref-IDPerson base:person\/TeiAbr-3061 . + +base:work\/23524 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23524; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70792; + base:work\#ref-IDOrganisation2 base:organisation\/50580; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23528 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23528; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/70796; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23532 a base:work; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23532; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70800; + base:work\#ref-IDOrganisation2 base:organisation\/62670; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23536 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23536; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/67240; + base:work\#ref-IDOrganisation2 base:organisation\/67240; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23540 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23540; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70804; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23544 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23544; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDOrganisation base:organisation\/70808; + base:work\#ref-IDOrganisation2 base:organisation\/53640; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23548 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23548; + base:work\#Profession base:Profession-; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDOrganisation base:organisation\/68100; + base:work\#ref-IDOrganisation2 base:organisation\/71912; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23552 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23552; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23556 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23556; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23560 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23560; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/23564 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23564; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70812; + base:work\#ref-IDOrganisation2 base:organisation\/49140; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23568 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23568; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDOrganisation base:organisation\/70816; + base:work\#ref-IDOrganisation2 base:organisation\/52850; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23572 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23572; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDOrganisation base:organisation\/70820; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23576 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23576; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70824; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23580 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23580; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23584 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23584; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23588 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23588; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23592 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23592; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23596 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23596; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70828; + base:work\#ref-IDOrganisation2 base:organisation\/71916; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/236 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 236; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/119; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/23600 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23600; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/53820; + base:work\#ref-IDOrganisation2 base:organisation\/53820; + base:work\#ref-IDPerson base:person\/TorSam-3082 . + +base:work\/23604 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23604; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/TsvLou-814 . + +base:work\/23608 a base:work; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23608; + base:work\#Profession base:Profession-Prompter; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/54290; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/TsvLou-814 . + +base:work\/23612 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23612; + base:work\#Profession base:Profession-Prompter; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/TsvLou-814 . + +base:work\/23616 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23616; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70832; + base:work\#ref-IDOrganisation2 base:organisation\/67720; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23620 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23620; + base:work\#Profession base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70836; + base:work\#ref-IDOrganisation2 base:organisation\/67540; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23624 a base:work; + base:work\#DateStart_Fuzzy "1889-1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23624; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23628 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23628; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDOrganisation base:organisation\/70824; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23632 a base:work; + base:work\#DateStart_Fuzzy "1894-1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23632; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23636 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23636; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23640 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23640; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDOrganisation2 base:organisation\/1080; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23644 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23644; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23648 a base:work; + base:work\#DateStart_Fuzzy "1905-1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23648; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23652 a base:work; + base:work\#DateStart_Fuzzy "1905-1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23652; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23656 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23656; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23660 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23660; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23664 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23664; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69150; + base:work\#ref-IDOrganisation2 base:organisation\/53640; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23668 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23668; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23672 a base:work; + base:work\#DateStart_Fuzzy "1912-1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23672; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23676 a base:work; + base:work\#DateStart_Fuzzy "1912-1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23676; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23680 a base:work; + base:work\#DateStart_Fuzzy "1912-1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23680; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23684 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23684; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23688 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23688; + base:work\#Profession base:Profession-; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/60940; + base:work\#ref-IDOrganisation2 base:organisation\/60940; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/2369 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2369; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23692 a base:work; + base:work\#DateStart_Fuzzy "1918-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23692; + base:work\#Profession base:Profession-Actor; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/23696 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23696; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/237 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 237; + base:work\#comment "UA of his first opera Agnes Bernauer, promoted by Franz Liszt"; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/23700 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23700; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70668; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23704 a base:work; + base:work\#Employment "Amateur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23704; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70840; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23708 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Musical Organization"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23708; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70844; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23712 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23712; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23716 a base:work; + base:work\#DateStart_Fuzzy "1896-1899"; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23716; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70296; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/2372 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2372; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23720 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23720; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23724 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23724; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/70848; + base:work\#ref-IDOrganisation2 base:organisation\/67250; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23728 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23728; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23732 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23732; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23736 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23736; + base:work\#Profession base:Profession-Founder; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23740 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23740; + base:work\#Profession base:Profession-Founder; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70852; + base:work\#ref-IDOrganisation2 base:organisation\/53640; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23744 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23744; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/67250; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23748 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23748; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70860; + base:work\#ref-IDOrganisation2 base:organisation\/58910; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/2375 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2375; + base:work\#ref-IDLocation base:location\/LV-Libau-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23752 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23752; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/69840; + base:work\#ref-IDOrganisation2 base:organisation\/68280; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23756 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23756; + base:work\#Profession base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23760 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23760; + base:work\#Profession base:Profession-Director; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/51430; + base:work\#ref-IDOrganisation2 base:organisation\/51430; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23764 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23764; + base:work\#Profession base:Profession-Director; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23768 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23768; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/70864; + base:work\#ref-IDOrganisation2 base:organisation\/53510; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23772 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23772; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23776 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23776; + base:work\#Profession base:Profession-; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/70048; + base:work\#ref-IDOrganisation2 base:organisation\/66720; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/2378 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2378; + base:work\#ref-IDLocation base:location\/LV-Mitau-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23780 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23780; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/67250; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/23784 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23784; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70868; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/VakRoz-3138 . + +base:work\/23788 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23788; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/VakRoz-3138 . + +base:work\/23792 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23792; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/VakRoz-3138 . + +base:work\/23796 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23796; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/VakRoz-3138 . + +base:work\/238 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 238; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDOrganisation base:organisation\/172; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/23800 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23800; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/Lat-DiJeSt-140; + base:work\#ref-IDPerson base:person\/VaySop-3159 . + +base:work\/23804 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23804; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/70872; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/VaySop-3159 . + +base:work\/23808 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23808; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/70876; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/VaySop-3159 . + +base:work\/2381 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2381; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23812 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23812; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/70068; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23816 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23816; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-Bow-00; + base:work\#ref-IDOrganisation base:organisation\/70340; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23820 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23820; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70880; + base:work\#ref-IDOrganisation2 base:organisation\/48930; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23824 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23824; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70284; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23828 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23828; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23832 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23832; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23836 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23836; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70884; + base:work\#ref-IDOrganisation2 base:organisation\/57430; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/2384 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2384; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23840 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23840; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70888; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23844 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23844; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23848 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23848; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/WalEll-3202 . + +base:work\/23852 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23852; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23856 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23856; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70892; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23860 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23860; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70896; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23864 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23864; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23868 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23868; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/2387 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2387; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23872 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23872; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23876 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23876; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/WalHym-3204 . + +base:work\/23880 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23880; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70900; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23884 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23884; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70904; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23888 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23888; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23892 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23892; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23896 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23896; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BE-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/239 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 239; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/171; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/2390 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2390; + base:work\#ref-IDLocation base:location\/CH-Zur-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23900 a base:work; + base:work\#DateEnd_Fuzzy "between 1887 and 1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1887 and 1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23900; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-Leeds-00; + base:work\#ref-IDOrganisation base:organisation\/1077; + base:work\#ref-IDOrganisation2 base:organisation\/62220; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23916 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23916; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23920 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23920; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69984; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23924 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23924; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70612; + base:work\#ref-IDOrganisation2 base:organisation\/54330; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23928 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23928; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/2393 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2393; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23932 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23932; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23936 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23936; + base:work\#Profession base:Profession-Director; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23940 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23940; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23944 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23944; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/ARG-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23948 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23948; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23952 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23952; + base:work\#Profession base:Profession-Director; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23956 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23956; + base:work\#Profession base:Profession-Director; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1077; + base:work\#ref-IDOrganisation2 base:organisation\/62220; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/2396 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2396; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/WalRao-00 . + +base:work\/23960 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23960; + base:work\#Profession base:Profession-Director; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation base:organisation\/54350; + base:work\#ref-IDOrganisation2 base:organisation\/54350; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23964 a base:work; + base:work\#Employment "Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23964; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDOrganisation base:organisation\/70908; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/23968 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23968; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/23972 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23972; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70912; + base:work\#ref-IDOrganisation2 base:organisation\/62040; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/23976 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23976; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/23980 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23980; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/50120; + base:work\#ref-IDOrganisation2 base:organisation\/50120; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/23984 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23984; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70916; + base:work\#ref-IDOrganisation2 base:organisation\/63200; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/23988 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23988; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/WeiSol-3229 . + +base:work\/2399 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2399; + base:work\#comment "his father died and he must earn money for the family, so he became chief-conductor at Carltheater"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/23992 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 23992; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/61790; + base:work\#ref-IDOrganisation2 base:organisation\/61790; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/23996 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 23996; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70920; + base:work\#ref-IDOrganisation2 base:organisation\/58250; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-07-31"^^xsd:date; + base:work\#DateStart_Min "1879-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/67; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/240 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 240; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/171; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/24000 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24000; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24004 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24004; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70924; + base:work\#ref-IDOrganisation2 base:organisation\/61420; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24008 a base:work; + base:work\#DateEnd_Fuzzy "before 1885"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24008; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDOrganisation base:organisation\/60410; + base:work\#ref-IDOrganisation2 base:organisation\/60410; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24012 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24012; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70928; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24016 a base:work; + base:work\#DateEnd_Fuzzy "before 1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883 or 1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24016; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/2402 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2402; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24020 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24020; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70924; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24024 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24024; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-Krak-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24028 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24028; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/54290; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24032 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24032; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/70932; + base:work\#ref-IDOrganisation2 base:organisation\/71820; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24036 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24036; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/HU-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24040 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24040; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24044 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after 1891"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24044; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24048 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24048; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/2405 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2405; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24052 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after 1891"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24052; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24056 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after 1891"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24056; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24060 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24060; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24064 a base:work; + base:work\#DateStart_Fuzzy "1929-30"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24064; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/70936; + base:work\#ref-IDOrganisation2 base:organisation\/58650; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/24068 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24068; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/56190; + base:work\#ref-IDOrganisation2 base:organisation\/56190; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24072 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24072; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDOrganisation base:organisation\/70940; + base:work\#ref-IDOrganisation2 base:organisation\/68220; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24076 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24076; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/49610; + base:work\#ref-IDOrganisation2 base:organisation\/49610; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/2408 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2408; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24080 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24080; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDOrganisation base:organisation\/70944; + base:work\#ref-IDOrganisation2 base:organisation\/58000; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24084 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24084; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/70948; + base:work\#ref-IDOrganisation2 base:organisation\/56160; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24088 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24088; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/70952; + base:work\#ref-IDOrganisation2 base:organisation\/58880; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24092 a base:work; + base:work\#DateStart_Fuzzy "1914-1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24092; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24096 a base:work; + base:work\#DateStart_Fuzzy "1921-1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24096; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70956; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/241 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 241; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/24100 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24100; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70960; + base:work\#ref-IDOrganisation2 base:organisation\/56810; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24104 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24104; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDOrganisation base:organisation\/57560; + base:work\#ref-IDOrganisation2 base:organisation\/57560; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/24108 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24108; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/70964; + base:work\#ref-IDOrganisation2 base:organisation\/56160; + base:work\#ref-IDPerson base:person\/WeiSim-3237 . + +base:work\/2411 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2411; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24112 a base:work; + base:work\#DateStart_Fuzzy "probably in 1882 oder 1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24112; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70744; + base:work\#ref-IDOrganisation2 base:organisation\/71975; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24116 a base:work; + base:work\#DateStart_Fuzzy "probably 1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24116; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24120 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24120; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70968; + base:work\#ref-IDOrganisation2 base:organisation\/1062; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24124 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24124; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24128 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24128; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24132 a base:work; + base:work\#DateStart_Fuzzy "between 1891 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24132; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70904; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24136 a base:work; + base:work\#DateStart_Fuzzy "between 1891 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24136; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/2414 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2414; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/490; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24140 a base:work; + base:work\#DateStart_Fuzzy "1900-1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-03"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24140; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24144 a base:work; + base:work\#DateStart_Fuzzy "between 1909 and 1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24144; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24148 a base:work; + base:work\#DateStart_Fuzzy "between 1909 and 1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24148; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24152 a base:work; + base:work\#DateStart_Fuzzy "after March 1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24152; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24156 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24156; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24160 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24160; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24164 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24164; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24168 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24168; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/2417 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2417; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/491; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24172 a base:work; + base:work\#DateStart_Fuzzy "1911-1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24172; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24176 a base:work; + base:work\#DateStart_Fuzzy "Summer 1912"; + base:work\#DateStart_Max "1912-09-23"^^xsd:date; + base:work\#DateStart_Min "1912-06-24"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24176; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70208; + base:work\#ref-IDOrganisation2 base:organisation\/71840; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24180 a base:work; + base:work\#DateStart_Fuzzy "1912-1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24180; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70972; + base:work\#ref-IDOrganisation2 base:organisation\/56550; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24188 a base:work; + base:work\#DateStart_Fuzzy "Beginning of 1915"; + base:work\#DateStart_Max "1915-04-30"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24188; + base:work\#Profession base:Profession-Director; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/50570; + base:work\#ref-IDOrganisation2 base:organisation\/50570; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24192 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24192; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Author; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70980; + base:work\#ref-IDOrganisation2 base:organisation\/59880; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24196 a base:work; + base:work\#DateStart_Fuzzy "March 1917"; + base:work\#DateStart_Max "1917-03-31"^^xsd:date; + base:work\#DateStart_Min "1917-03-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24196; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDOrganisation base:organisation\/70984; + base:work\#ref-IDOrganisation2 base:organisation\/65910; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/242 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 242; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/2420 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2420; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/492; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24200 a base:work; + base:work\#DateStart_Fuzzy "1921-1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24200; + base:work\#Profession base:Profession-Director; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/57520; + base:work\#ref-IDOrganisation2 base:organisation\/57520; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24204 a base:work; + base:work\#DateStart_Fuzzy "1922-1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24204; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDOrganisation2 base:organisation\/1080; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24208 a base:work; + base:work\#DateStart_Fuzzy "1923-1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24208; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/68070; + base:work\#ref-IDOrganisation2 base:organisation\/68070; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/2421 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2421; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24212 a base:work; + base:work\#DateStart_Fuzzy "1923-1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24212; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/70972; + base:work\#ref-IDOrganisation2 base:organisation\/56550; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24216 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24216; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/SU-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24220 a base:work; + base:work\#DateStart_Fuzzy "April 1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-04-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24220; + base:work\#Profession base:Profession-Director; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation base:organisation\/49570; + base:work\#ref-IDOrganisation2 base:organisation\/49570; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24224 a base:work; + base:work\#DateStart_Fuzzy "September 1928"; + base:work\#DateStart_Max "1928-09-30"^^xsd:date; + base:work\#DateStart_Min "1928-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24224; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24228 a base:work; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24228; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDOrganisation2 base:organisation\/66330; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/24232 a base:work; + base:work\#DateStart_Fuzzy "1917-20"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24232; + base:work\#Profession base:Profession-Singer; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/70988; + base:work\#ref-IDOrganisation2 base:organisation\/56390; + base:work\#ref-IDPerson base:person\/ZayDav-3358 . + +base:work\/24236 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24236; + base:work\#Profession base:Profession-Singer; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/Lit-DiJeSt-111; + base:work\#ref-IDPerson base:person\/ZayDav-3358 . + +base:work\/2424 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2424; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24240 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24240; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/70992; + base:work\#ref-IDOrganisation2 base:organisation\/56320; + base:work\#ref-IDPerson base:person\/ZayDav-3358 . + +base:work\/24244 a base:work; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24244; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ZayDav-3358 . + +base:work\/24248 a base:work; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24248; + base:work\#ref-IDLocation base:location\/Lit-DiJeSt-74; + base:work\#ref-IDOrganisation base:organisation\/70996; + base:work\#ref-IDOrganisation2 base:organisation\/71920; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24252 a base:work; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-12-31"^^xsd:date; + base:work\#DateStart_Min "1873-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24252; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/Lit-DiJeSt-111; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24256 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24256; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24260 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24260; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24264 a base:work; + base:work\#DateStart_Fuzzy "9th February 1894"; + base:work\#DateStart_Max "1894-02-09"^^xsd:date; + base:work\#DateStart_Min "1894-02-09"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24264; + base:work\#Profession base:Profession-Author; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24268 a base:work; + base:work\#DateStart_Fuzzy "24th October 1890"; + base:work\#DateStart_Max "1890-10-24"^^xsd:date; + base:work\#DateStart_Min "1890-10-24"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24268; + base:work\#Profession base:Profession-Author; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70904; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/2427 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2427; + base:work\#comment "1931 Kroll-Oper went bankrupt"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/ZemAle-00 . + +base:work\/24272 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24272; + base:work\#Profession base:Profession-; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/ZeiMos-3363 . + +base:work\/24276 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24276; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/71000; + base:work\#ref-IDOrganisation2 base:organisation\/50090; + base:work\#ref-IDPerson base:person\/ZeyZey-3378 . + +base:work\/24280 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24280; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ZeyZey-3378 . + +base:work\/24284 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24284; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24288 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24288; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/71004; + base:work\#ref-IDOrganisation2 base:organisation\/61480; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24292 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24292; + base:work\#Profession base:Profession-Singer; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24296 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24296; + base:work\#Profession base:Profession-Singer; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/243 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 243; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/24300 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24300; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69824; + base:work\#ref-IDOrganisation2 base:organisation\/71860; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24304 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24304; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/69840; + base:work\#ref-IDOrganisation2 base:organisation\/68280; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24308 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24308; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/71008; + base:work\#ref-IDOrganisation2 base:organisation\/58430; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24312 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24312; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/71012; + base:work\#ref-IDOrganisation2 base:organisation\/62410; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24316 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24316; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/69660; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/2432 a base:work; + base:work\#DateEnd_Fuzzy "1938"; + base:work\#DateEnd_Max "1938-12-31"^^xsd:date; + base:work\#DateEnd_Min "1938-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1938"; + base:work\#DateStart_Max "1938-12-31"^^xsd:date; + base:work\#DateStart_Min "1938-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2432; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tournee in France, Belgium and Holland in 1938 and again in 1950"; + base:work\#ref-IDLocation base:location\/FR-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/24320 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24320; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/70508; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24324 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24324; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69150; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24328 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24328; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/71016; + base:work\#ref-IDOrganisation2 base:organisation\/56540; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24332 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24332; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71020; + base:work\#ref-IDOrganisation2 base:organisation\/61660; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24336 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24336; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDOrganisation base:organisation\/67210; + base:work\#ref-IDOrganisation2 base:organisation\/67210; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24340 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24340; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/51430; + base:work\#ref-IDOrganisation2 base:organisation\/51430; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24344 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24344; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/71024; + base:work\#ref-IDOrganisation2 base:organisation\/62900; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24348 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24348; + base:work\#Profession base:Profession-Actor; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/71028; + base:work\#ref-IDOrganisation2 base:organisation\/67500; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/2435 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2435; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/24352 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24352; + base:work\#Profession base:Profession-Actor; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24356 a base:work; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24356; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71032; + base:work\#ref-IDOrganisation2 base:organisation\/66700; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24360 a base:work; + base:work\#DateStart_Fuzzy "1927-28"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24360; + base:work\#Profession base:Profession-Actor; + base:work\#comment "22"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24364 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24364; + base:work\#Profession base:Profession-Actor; + base:work\#comment "23"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-52; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/ZheLey-3381 . + +base:work\/24368 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24368; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDPerson base:person\/ZhiVla-3383 . + +base:work\/24372 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24372; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/ZhiVla-3383 . + +base:work\/24376 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24376; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/2438 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2438; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/446; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/24380 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24380; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24384 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24384; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24388 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24388; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24392 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24392; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24396 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24396; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/244 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 244; + base:work\#comment "first conducter"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/24400 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24400; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24404 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24404; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24408 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24408; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-52; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24412 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24412; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDOrganisation2 base:organisation\/56000; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24416 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24416; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-52; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDOrganisation2 base:organisation\/575; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/2442 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2442; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Rost-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24420 a base:work; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24420; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDOrganisation2 base:organisation\/2071; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24424 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24424; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24428 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24428; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71036; + base:work\#ref-IDOrganisation2 base:organisation\/49480; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24432 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24432; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24436 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24436; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24440 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24440; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24444 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24444; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/ZibEla-3385 . + +base:work\/24448 a base:work; + base:work\#DateEnd_Fuzzy "between 1893 and 1894"; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24448; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/71040; + base:work\#ref-IDOrganisation2 base:organisation\/51180; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/2445 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2445; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BrauSch-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24452 a base:work; + base:work\#DateStart_Fuzzy "probably 1893 or 1894"; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24452; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/71044; + base:work\#ref-IDOrganisation2 base:organisation\/54290; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/24456 a base:work; + base:work\#DateStart_Fuzzy "1894-1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24456; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/24460 a base:work; + base:work\#DateEnd_Fuzzy "probably in between 1897 and 1906"; + base:work\#DateStart_Fuzzy "probably in between 1897 and 1906"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24460; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/24464 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24464; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/24468 a base:work; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24468; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDOrganisation base:organisation\/71048; + base:work\#ref-IDOrganisation2 base:organisation\/53230; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/24472 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24472; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDPerson base:person\/ZieRos-3391 . + +base:work\/24476 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24476; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/71052; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/ZieRos-3391 . + +base:work\/2448 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2448; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Schwer-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24480 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24480; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-126; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24484 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24484; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDOrganisation base:organisation\/71056; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24488 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24488; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-126; + base:work\#ref-IDOrganisation base:organisation\/66890; + base:work\#ref-IDOrganisation2 base:organisation\/66890; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24492 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24492; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-126; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24496 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24496; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/Uni-DiJeSt-151; + base:work\#ref-IDOrganisation base:organisation\/71060; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/245 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 245; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/24500 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24500; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70284; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24504 a base:work; + base:work\#DateStart_Fuzzy "1903-1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24504; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71064; + base:work\#ref-IDOrganisation2 base:organisation\/48930; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24508 a base:work; + base:work\#DateStart_Fuzzy "1905-1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24508; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61130; + base:work\#ref-IDOrganisation2 base:organisation\/61130; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/2451 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2451; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24512 a base:work; + base:work\#DateStart_Fuzzy "1908-1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24512; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/60430; + base:work\#ref-IDOrganisation2 base:organisation\/60430; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24516 a base:work; + base:work\#DateStart_Fuzzy "1923-1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24516; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24520 a base:work; + base:work\#DateStart_Fuzzy "1924-1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24520; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/58920; + base:work\#ref-IDOrganisation2 base:organisation\/58920; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24524 a base:work; + base:work\#DateStart_Fuzzy "1925-1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24524; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61400; + base:work\#ref-IDOrganisation2 base:organisation\/61400; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24528 a base:work; + base:work\#DateStart_Fuzzy "1927-1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24528; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24532 a base:work; + base:work\#DateStart_Fuzzy "1928-1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24532; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/55710; + base:work\#ref-IDOrganisation2 base:organisation\/55710; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/24536 a base:work; + base:work\#DateStart_Fuzzy "1929-1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24536; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/USA-Newa-00; + base:work\#ref-IDPerson base:person\/ZigWil-3393 . + +base:work\/2454 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2454; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24540 a base:work; + base:work\#Employment "Education (Theatre related)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24540; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "0"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/71068; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24544 a base:work; + base:work\#Employment "Printed Media"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24544; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDOrganisation base:organisation\/59340; + base:work\#ref-IDOrganisation2 base:organisation\/59340; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24548 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24548; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDOrganisation base:organisation\/71072; + base:work\#ref-IDOrganisation2 base:organisation\/63210; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24552 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24552; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71076; + base:work\#ref-IDOrganisation2 base:organisation\/56960; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24556 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24556; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDOrganisation base:organisation\/55320; + base:work\#ref-IDOrganisation2 base:organisation\/55320; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24560 a base:work; + base:work\#DateStart_Fuzzy "1908-1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24560; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24564 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24564; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/71080; + base:work\#ref-IDOrganisation2 base:organisation\/68290; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24568 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24568; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDOrganisation base:organisation\/71084; + base:work\#ref-IDOrganisation2 base:organisation\/68060; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/2457 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2457; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24572 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24572; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDOrganisation base:organisation\/71088; + base:work\#ref-IDOrganisation2 base:organisation\/67210; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24576 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24576; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-2; + base:work\#ref-IDOrganisation base:organisation\/71088; + base:work\#ref-IDOrganisation2 base:organisation\/67210; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24580 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24580; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDOrganisation base:organisation\/71088; + base:work\#ref-IDOrganisation2 base:organisation\/67210; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24584 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24584; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24588 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24588; + base:work\#Profession base:Profession-Founder; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/71092; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24592 a base:work; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24592; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/ZilWol-3397 . + +base:work\/24596 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-03"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24596; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/71096; + base:work\#ref-IDOrganisation2 base:organisation\/58720; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/246 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 246; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "Leader of the Königliche Akademie der Tonkunst in München"; + base:work\#ref-IDOrganisation base:organisation\/170; + base:work\#ref-IDPerson base:person\/MotFel-00 . + +base:work\/2460 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2460; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24600 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24600; + base:work\#Profession base:Profession-Actor; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/EN-Glouc-00; + base:work\#ref-IDOrganisation base:organisation\/52850; + base:work\#ref-IDOrganisation2 base:organisation\/52850; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24604 a base:work; + base:work\#Employment "Company on Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24604; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDOrganisation base:organisation\/69400; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24608 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24608; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDOrganisation base:organisation\/71100; + base:work\#ref-IDOrganisation2 base:organisation\/66890; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24612 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24612; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDOrganisation base:organisation\/71104; + base:work\#ref-IDOrganisation2 base:organisation\/53460; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24616 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24616; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDOrganisation base:organisation\/69380; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24620 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24620; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/51020; + base:work\#ref-IDOrganisation2 base:organisation\/51020; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24624 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24624; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/71108; + base:work\#ref-IDOrganisation2 base:organisation\/54380; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/24628 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24628; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/71112; + base:work\#ref-IDOrganisation2 base:organisation\/56160; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/2463 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2463; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24632 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24632; + base:work\#Profession base:Profession-Other; + base:work\#Profession3 base:Profession-; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/52450; + base:work\#ref-IDOrganisation2 base:organisation\/52450; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24636 a base:work; + base:work\#Employment "Kleinkunst"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24636; + base:work\#Profession base:Profession-Director; + base:work\#Profession3 base:Profession-; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/71116; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24640 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24640; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDOrganisation base:organisation\/71120; + base:work\#ref-IDOrganisation2 base:organisation\/62440; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24644 a base:work; + base:work\#Employment "Theatre"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24644; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDOrganisation2 base:organisation\/66410; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24648 a base:work; + base:work\#Employment "Society/Union"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24648; + base:work\#Profession base:Profession-Founder; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/71124; + base:work\#ref-IDOrganisation2 base:organisation\/71912; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24652 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24652; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/71128; + base:work\#ref-IDOrganisation2 base:organisation\/50110; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/24656 a base:work; + base:work\#Employment "Traveling Company"; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24656; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/71132; + base:work\#ref-IDOrganisation2 base:organisation\/49150; + base:work\#ref-IDPerson base:person\/ZinYos-3409 . + +base:work\/2466 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2466; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24660 a base:work; + base:work\#DateEnd_Fuzzy "before 1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24660; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71136; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24664 a base:work; + base:work\#DateEnd_Fuzzy "before 1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24664; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71140; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24668 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24668; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71144; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24672 a base:work; + base:work\#DateEnd_Fuzzy "before 1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24672; + base:work\#Profession base:Profession-; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71148; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24676 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24676; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24680 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24680; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDOrganisation2 base:organisation\/71924; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24684 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24684; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-22; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDOrganisation2 base:organisation\/71924; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24688 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24688; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/Mol-DiJeSt-73; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2469 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2469; + base:work\#Profession base:Profession-Singer; + base:work\#comment "After 1870"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/HaeNat-00 . + +base:work\/24692 a base:work; + base:work\#DateStart_Fuzzy "probably between 1879 and 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24692; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-137; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24696 a base:work; + base:work\#DateStart_Fuzzy "probably between 1879 and 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24696; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-30; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24700 a base:work; + base:work\#DateStart_Fuzzy "probably between 1879 and 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24700; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-25; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24704 a base:work; + base:work\#DateStart_Fuzzy "probably between 1879 and 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24704; + base:work\#Profession base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-27; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24708 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24708; + base:work\#Profession base:Profession-Actor; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-122; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDOrganisation2 base:organisation\/71924; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24712 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24712; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-88; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24716 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24716; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-79; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2472 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2472; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/TicJos-00 . + +base:work\/24720 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24720; + base:work\#Profession base:Profession-Actor; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-132; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24724 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24724; + base:work\#Profession base:Profession-Actor; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-27; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24728 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24728; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/Lat-DiJeSt-140; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24732 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24732; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24736 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24736; + base:work\#Profession base:Profession-Actor; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-69; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24740 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24740; + base:work\#Profession base:Profession-Actor; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/Bel-DiJeSt-2; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24744 a base:work; + base:work\#DateStart_Fuzzy "probably 1881 or 1882"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24744; + base:work\#Profession base:Profession-Actor; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-149; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDOrganisation2 base:organisation\/71924; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24748 a base:work; + base:work\#DateStart_Fuzzy "probably 1881 or 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24748; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2475 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2475; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/453; + base:work\#ref-IDPerson base:person\/TicJos-00 . + +base:work\/24752 a base:work; + base:work\#DateStart_Fuzzy "probably 1881 or 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24752; + base:work\#Profession base:Profession-Actor; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-19; + base:work\#ref-IDOrganisation base:organisation\/69250; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24756 a base:work; + base:work\#DateStart_Fuzzy "probably 1881 or 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 24756; + base:work\#Profession base:Profession-Actor; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/Rus-DiJeSt-147; + base:work\#ref-IDOrganisation base:organisation\/71156; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24760 a base:work; + base:work\#DateStart_Fuzzy "probably 1881 or 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24760; + base:work\#Profession base:Profession-Actor; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/Lat-DiJeSt-140; + base:work\#ref-IDOrganisation base:organisation\/69650; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24764 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24764; + base:work\#Profession base:Profession-Actor; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/69650; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24768 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24768; + base:work\#Profession base:Profession-Actor; + base:work\#comment "22"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/71160; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24772 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24772; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/69480; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24776 a base:work; + base:work\#DateStart_Fuzzy "probably  1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24776; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2478 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2478; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/494; + base:work\#ref-IDPerson base:person\/TicJos-00 . + +base:work\/24780 a base:work; + base:work\#DateStart_Fuzzy "probably  1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24780; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24784 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24784; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/71164; + base:work\#ref-IDOrganisation2 base:organisation\/58060; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24788 a base:work; + base:work\#DateStart_Fuzzy "between 1889 and 1892"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24788; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24792 a base:work; + base:work\#DateStart_Fuzzy "between 1889 and 1892"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24792; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24796 a base:work; + base:work\#DateStart_Fuzzy "between 1889 and 1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24796; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24800 a base:work; + base:work\#DateStart_Fuzzy "between 1889 and 1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24800; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24804 a base:work; + base:work\#DateStart_Fuzzy "April 1892"; + base:work\#DateStart_Max "1892-04-30"^^xsd:date; + base:work\#DateStart_Min "1892-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24804; + base:work\#Profession base:Profession-; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24808 a base:work; + base:work\#DateStart_Fuzzy "between 1895 and 1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24808; + base:work\#Profession base:Profession-; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24812 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24812; + base:work\#Profession base:Profession-Founder; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24816 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24816; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24824 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24824; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDOrganisation2 base:organisation\/284; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24828 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24828; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/59300; + base:work\#ref-IDOrganisation2 base:organisation\/59300; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24832 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24832; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70464; + base:work\#ref-IDOrganisation2 base:organisation\/60920; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24836 a base:work; + base:work\#DateStart_Fuzzy "22nd February 1925"; + base:work\#DateStart_Max "1925-02-22"^^xsd:date; + base:work\#DateStart_Min "1925-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24836; + base:work\#Profession base:Profession-Actor; + base:work\#comment "His last performance"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/268; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24840 a base:work; + base:work\#DateStart_Fuzzy "between 1914 and 1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24840; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/69390; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/24844 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24844; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/Mol-DiJeSt-73; + base:work\#ref-IDOrganisation base:organisation\/69768; + base:work\#ref-IDOrganisation2 base:organisation\/59130; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24848 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24848; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/71168; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24852 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24852; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/71172; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24856 a base:work; + base:work\#DateStart_Fuzzy "3rd June 1889"; + base:work\#DateStart_Max "1889-06-03"^^xsd:date; + base:work\#DateStart_Min "1889-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24856; + base:work\#Profession base:Profession-Director; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24860 a base:work; + base:work\#DateStart_Fuzzy "24th October 1890"; + base:work\#DateStart_Max "1890-10-24"^^xsd:date; + base:work\#DateStart_Min "1890-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24860; + base:work\#Profession base:Profession-Director; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24864 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24864; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/67090; + base:work\#ref-IDOrganisation2 base:organisation\/67090; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24868 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24868; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/61220; + base:work\#ref-IDOrganisation2 base:organisation\/61220; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24872 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24872; + base:work\#Profession base:Profession-Actor; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24876 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1900-01-02"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24876; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70904; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24880 a base:work; + base:work\#DateStart_Fuzzy "15th October 1902"; + base:work\#DateStart_Max "1902-10-15"^^xsd:date; + base:work\#DateStart_Min "1902-10-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24880; + base:work\#Profession base:Profession-Author; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDOrganisation2 base:organisation\/65730; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24884 a base:work; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24884; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/69200; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24888 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24888; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24892 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 24892; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24896 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24896; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24900 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24900; + base:work\#Profession base:Profession-Actor; + base:work\#comment "3"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24904 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24904; + base:work\#Profession base:Profession-Actor; + base:work\#comment "4"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24908 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24908; + base:work\#Profession base:Profession-Actor; + base:work\#comment "5"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24912 a base:work; + base:work\#DateStart_Fuzzy "between 1908 and 1909"; + base:work\#DateStart_Max "1909-07-01"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24912; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70200; + base:work\#ref-IDOrganisation2 base:organisation\/70200; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24916 a base:work; + base:work\#DateStart_Fuzzy "1906-1909"; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 24916; + base:work\#Profession base:Profession-Actor; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/60880; + base:work\#ref-IDOrganisation2 base:organisation\/60880; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/24924 a base:work; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24924; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-19; + base:work\#ref-IDOrganisation base:organisation\/71180; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24928 a base:work; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24928; + base:work\#Profession base:Profession-Author; + base:work\#comment "2"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-19; + base:work\#ref-IDOrganisation base:organisation\/69240; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24932 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24932; + base:work\#Profession base:Profession-Author; + base:work\#comment "3"; + base:work\#ref-IDOrganisation base:organisation\/69330; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24936 a base:work; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24936; + base:work\#Profession base:Profession-Author; + base:work\#comment "4"; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24940 a base:work; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24940; + base:work\#Profession base:Profession-Author; + base:work\#comment "5"; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24944 a base:work; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24944; + base:work\#Profession base:Profession-; + base:work\#comment "6"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-19; + base:work\#ref-IDOrganisation base:organisation\/71184; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24948 a base:work; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24948; + base:work\#Profession base:Profession-Author; + base:work\#comment "7"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24952 a base:work; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24952; + base:work\#Profession base:Profession-Author; + base:work\#comment "8"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/69330; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24956 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24956; + base:work\#Profession base:Profession-Author; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/71188; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24960 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24960; + base:work\#Profession base:Profession-Author; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-29; + base:work\#ref-IDOrganisation base:organisation\/69620; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24964 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24964; + base:work\#Profession base:Profession-Founder; + base:work\#comment "11"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/71192; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24968 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24968; + base:work\#Profession base:Profession-Director; + base:work\#comment "12"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/71196; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24972 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-10-31"^^xsd:date; + base:work\#DateStart_Min "1876-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24972; + base:work\#Profession base:Profession-Founder; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24976 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24976; + base:work\#Profession base:Profession-Actor; + base:work\#comment "14"; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDOrganisation base:organisation\/71200; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24980 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-10-31"^^xsd:date; + base:work\#DateStart_Min "1876-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24980; + base:work\#Profession base:Profession-Director; + base:work\#comment "15"; + base:work\#ref-IDLocation base:location\/ROU-Bot-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24984 a base:work; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-10-31"^^xsd:date; + base:work\#DateStart_Min "1876-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24984; + base:work\#Profession base:Profession-Author; + base:work\#comment "16"; + base:work\#ref-IDLocation base:location\/ROU-Bot-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24988 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24988; + base:work\#Profession base:Profession-Director; + base:work\#comment "17"; + base:work\#ref-IDLocation base:location\/Rom-DiJeSt-35; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24992 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24992; + base:work\#Profession base:Profession-Director; + base:work\#comment "18"; + base:work\#ref-IDLocation base:location\/ROU-Brail-00; + base:work\#ref-IDOrganisation base:organisation\/71204; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/24996 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 24996; + base:work\#Profession base:Profession-Director; + base:work\#comment "19"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/71052; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Company of Helena Modjeska +"""; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/25000 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25000; + base:work\#Profession base:Profession-Director; + base:work\#comment "20"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/71208; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25004 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25004; + base:work\#Profession base:Profession-Director; + base:work\#comment "21"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/70036; + base:work\#ref-IDOrganisation2 base:organisation\/68870; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25008 a base:work; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25008; + base:work\#Profession base:Profession-Founder; + base:work\#comment "22"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71212; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25012 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25012; + base:work\#Profession base:Profession-Director; + base:work\#comment "23"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71216; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25016 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-05-31"^^xsd:date; + base:work\#DateStart_Min "1879-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25016; + base:work\#Profession base:Profession-Director; + base:work\#comment "24"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71220; + base:work\#ref-IDOrganisation2 base:organisation\/58250; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25020 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25020; + base:work\#Profession base:Profession-Manager; + base:work\#comment "25"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25024 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25024; + base:work\#Profession base:Profession-Manager; + base:work\#comment "26"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25028 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25028; + base:work\#Profession base:Profession-Director; + base:work\#comment "27"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-113; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25032 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25032; + base:work\#Profession base:Profession-Founder; + base:work\#comment "28"; + base:work\#ref-IDLocation base:location\/Mol-DiJeSt-73; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25036 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25036; + base:work\#Profession base:Profession-Director; + base:work\#comment "29"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25040 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25040; + base:work\#Profession base:Profession-Director; + base:work\#comment "30"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-30; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25044 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25044; + base:work\#Profession base:Profession-Director; + base:work\#comment "31"; + base:work\#ref-IDLocation base:location\/UA-Krem-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25048 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25048; + base:work\#Profession base:Profession-Director; + base:work\#comment "32"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25052 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25052; + base:work\#Profession base:Profession-Director; + base:work\#comment "33"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25056 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25056; + base:work\#Profession base:Profession-Director; + base:work\#comment "34"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-25; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25060 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25060; + base:work\#Profession base:Profession-Director; + base:work\#comment "35"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25064 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Min "1880-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25064; + base:work\#Profession base:Profession-Director; + base:work\#comment "36"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25068 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-07-31"^^xsd:date; + base:work\#DateStart_Min "1880-06-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25068; + base:work\#Profession base:Profession-Director; + base:work\#comment "37"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25072 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25072; + base:work\#Profession base:Profession-Director; + base:work\#comment "38"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25076 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-09-16"^^xsd:date; + base:work\#DateStart_Min "1880-08-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25076; + base:work\#Profession base:Profession-Director; + base:work\#comment "39"; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation base:organisation\/71228; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25080 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25080; + base:work\#Profession base:Profession-Director; + base:work\#comment "40"; + base:work\#ref-IDLocation base:location\/Ukr-DiJeSt-57; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25084 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25084; + base:work\#Profession base:Profession-Director; + base:work\#comment "41"; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25088 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25088; + base:work\#Profession base:Profession-Director; + base:work\#comment "42"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25092 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-10-31"^^xsd:date; + base:work\#DateStart_Min "1881-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25092; + base:work\#Profession base:Profession-Director; + base:work\#comment "43"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25096 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-10-31"^^xsd:date; + base:work\#DateStart_Min "1881-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25096; + base:work\#Profession base:Profession-Director; + base:work\#comment "44"; + base:work\#ref-IDLocation base:location\/Lat-DiJeSt-140; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25100 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-10-31"^^xsd:date; + base:work\#DateStart_Min "1881-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25100; + base:work\#Profession base:Profession-Director; + base:work\#comment "45"; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25104 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25104; + base:work\#Profession base:Profession-Director; + base:work\#comment "46"; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/71224; + base:work\#ref-IDOrganisation2 base:organisation\/71224; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25108 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25108; + base:work\#Profession base:Profession-Director; + base:work\#comment "47"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25112 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-01-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25112; + base:work\#Profession base:Profession-Director; + base:work\#comment "48"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/71232; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25116 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Min "1883-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25116; + base:work\#Profession base:Profession-Director; + base:work\#comment "49"; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/58250; + base:work\#ref-IDOrganisation2 base:organisation\/58250; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25120 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25120; + base:work\#Profession base:Profession-Director; + base:work\#comment "50"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/71236; + base:work\#ref-IDOrganisation2 base:organisation\/53140; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25124 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25124; + base:work\#Profession base:Profession-Director; + base:work\#comment "51"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25128 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25128; + base:work\#Profession base:Profession-Director; + base:work\#comment "52"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71240; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25132 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25132; + base:work\#Profession base:Profession-Director; + base:work\#comment "53"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/70904; + base:work\#ref-IDOrganisation2 base:organisation\/62050; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25136 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25136; + base:work\#Profession base:Profession-Director; + base:work\#comment "54"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25140 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25140; + base:work\#Profession base:Profession-Director; + base:work\#comment "55"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/67090; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25144 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25144; + base:work\#Profession base:Profession-Director; + base:work\#comment "56"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25148 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-07-31"^^xsd:date; + base:work\#DateStart_Min "1887-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25148; + base:work\#Profession base:Profession-Author; + base:work\#comment "57"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71244; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25152 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25152; + base:work\#Profession base:Profession-Founder; + base:work\#comment "58"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71248; + base:work\#ref-IDOrganisation2 base:organisation\/57650; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25156 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25156; + base:work\#Profession base:Profession-; + base:work\#comment "59"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71248; + base:work\#ref-IDOrganisation2 base:organisation\/57640; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25160 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-07-31"^^xsd:date; + base:work\#DateStart_Min "1888-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25160; + base:work\#Profession base:Profession-Author; + base:work\#comment "60"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDOrganisation2 base:organisation\/331; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25164 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-07-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25164; + base:work\#Profession base:Profession-Author; + base:work\#comment "61"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/71252; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25168 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25168; + base:work\#Profession base:Profession-Founder; + base:work\#comment "62"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/71256; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25172 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-10-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25172; + base:work\#Profession base:Profession-Author; + base:work\#comment "63"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25176 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-10-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25176; + base:work\#Profession base:Profession-Author; + base:work\#comment "64"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25180 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1891-01-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25180; + base:work\#Profession base:Profession-Manager; + base:work\#comment "65"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25184 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25184; + base:work\#Profession base:Profession-Director; + base:work\#comment "66"; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/71260; + base:work\#ref-IDOrganisation2 base:organisation\/54410; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25188 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25188; + base:work\#Profession base:Profession-Director; + base:work\#comment "67"; + base:work\#ref-IDLocation base:location\/Rom-DiJeSt-35; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25192 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25192; + base:work\#Profession base:Profession-Author; + base:work\#comment "68"; + base:work\#ref-IDLocation base:location\/ROU-Brail-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25196 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25196; + base:work\#comment "69"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25200 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25200; + base:work\#Profession base:Profession-; + base:work\#comment "70"; + base:work\#ref-IDLocation base:location\/PL-Krak-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25204 a base:work; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25204; + base:work\#Profession base:Profession-Director; + base:work\#comment "71"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25208 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25208; + base:work\#comment "72"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25212 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25212; + base:work\#Profession base:Profession-Author; + base:work\#comment "73"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/71264; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25216 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25216; + base:work\#Profession base:Profession-Author; + base:work\#comment "74"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDOrganisation2 base:organisation\/469; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25220 a base:work; + base:work\#DateStart_Fuzzy "1903-12-31"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25220; + base:work\#Profession3 base:Profession-; + base:work\#comment "Grand Theatre"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/469; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/25224 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25224; + base:work\#Profession base:Profession-Actor; + base:work\#comment "9"; + base:work\#ref-IDLocation base:location\/SE-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/25228 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25228; + base:work\#Profession base:Profession-Actor; + base:work\#comment "10"; + base:work\#ref-IDLocation base:location\/NOR-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/25232 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25232; + base:work\#Profession base:Profession-Actor; + base:work\#comment "13"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/BelMor-1243 . + +base:work\/25236 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25236; + base:work\#ref-IDLocation base:location\/TR-Const-00; + base:work\#ref-IDPerson base:person\/BenBen-1256 . + +base:work\/25240 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25240; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/25244 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25244; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/69840; + base:work\#ref-IDOrganisation2 base:organisation\/68280; + base:work\#ref-IDPerson base:person\/BezIse-1292 . + +base:work\/25248 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25248; + base:work\#ref-IDLocation base:location\/JPN-00; + base:work\#ref-IDOrganisation base:organisation\/70108; + base:work\#ref-IDOrganisation2 base:organisation\/54320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/25252 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25252; + base:work\#ref-IDLocation base:location\/CN-00; + base:work\#ref-IDOrganisation base:organisation\/70108; + base:work\#ref-IDOrganisation2 base:organisation\/54320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/25256 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25256; + base:work\#ref-IDLocation base:location\/IN-00; + base:work\#ref-IDOrganisation base:organisation\/70108; + base:work\#ref-IDOrganisation2 base:organisation\/54320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/25260 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25260; + base:work\#ref-IDLocation base:location\/EG-00; + base:work\#ref-IDOrganisation base:organisation\/70108; + base:work\#ref-IDOrganisation2 base:organisation\/54320; + base:work\#ref-IDPerson base:person\/DavDav-3821 . + +base:work\/25264 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25264; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDOrganisation base:organisation\/70272; + base:work\#ref-IDOrganisation2 base:organisation\/57450; + base:work\#ref-IDPerson base:person\/GolSam-1821 . + +base:work\/25268 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25268; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25272 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25272; + base:work\#ref-IDLocation base:location\/Bukow-00; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25276 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25276; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25280 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25280; + base:work\#ref-IDLocation base:location\/TR-Const-00; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25284 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25284; + base:work\#ref-IDLocation base:location\/Egy-DiJeSt-145; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25288 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25288; + base:work\#ref-IDLocation base:location\/EG-Cairo-00; + base:work\#ref-IDOrganisation base:organisation\/70384; + base:work\#ref-IDOrganisation2 base:organisation\/56520; + base:work\#ref-IDPerson base:person\/JuvKal-2061 . + +base:work\/25292 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25292; + base:work\#ref-IDLocation base:location\/EG-Cairo-00; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/25296 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25296; + base:work\#ref-IDLocation base:location\/Bukow-00; + base:work\#ref-IDPerson base:person\/NatCha-745 . + +base:work\/25300 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25300; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDOrganisation base:organisation\/70040; + base:work\#ref-IDOrganisation2 base:organisation\/66690; + base:work\#ref-IDPerson base:person\/NerEst-2555 . + +base:work\/25304 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25304; + base:work\#ref-IDLocation base:location\/TR-Ist-00; + base:work\#ref-IDPerson base:person\/RosAdo-2777 . + +base:work\/25308 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25308; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/TanAvr-729 . + +base:work\/25312 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25312; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/TimAdo-3076 . + +base:work\/25316 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25316; + base:work\#ref-IDLocation base:location\/PL-Galz-00; + base:work\#ref-IDPerson base:person\/VakFan-3136 . + +base:work\/25320 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25320; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/67250; + base:work\#ref-IDPerson base:person\/VakMor-3137 . + +base:work\/25324 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25324; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25328 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25328; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BG-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25332 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25332; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SRB-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25336 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25336; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/TR-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25340 a base:work; + base:work\#DateEnd_Fuzzy "before 1902"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "after June 1889"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25340; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EG-00; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDOrganisation2 base:organisation\/68230; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25344 a base:work; + base:work\#DateStart_Fuzzy "after 1901"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25344; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25348 a base:work; + base:work\#DateStart_Fuzzy "probably 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25348; + base:work\#ref-IDLocation base:location\/UA-Polt-00; + base:work\#ref-IDOrganisation base:organisation\/71152; + base:work\#ref-IDOrganisation2 base:organisation\/71924; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25354 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25354; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/52800; + base:work\#ref-IDPerson base:person\/GolSam-1829 . + +base:work\/25358 a base:work; + base:work\#DateStart_Fuzzy "July 1903"; + base:work\#DateStart_Max "1903-07-31"^^xsd:date; + base:work\#DateStart_Min "1903-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25358; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDOrganisation base:organisation\/71950; + base:work\#ref-IDOrganisation2 base:organisation\/71936; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25363 a base:work; + base:work\#DateStart_Fuzzy "After 24th September 1905"; + base:work\#DateStart_Max "1905-09-24"^^xsd:date; + base:work\#DateStart_Min "1905-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25363; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-BFN-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25368 a base:work; + base:work\#DateStart_Fuzzy "After 24th September 1905"; + base:work\#DateStart_Max "1905-09-24"^^xsd:date; + base:work\#DateStart_Min "1905-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25368; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Outd-00; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25373 a base:work; + base:work\#DateStart_Fuzzy "3rd May 1907"; + base:work\#DateStart_Max "1907-05-03"^^xsd:date; + base:work\#DateStart_Min "1907-05-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25373; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Joburg; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDOrganisation2 base:organisation\/71960; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25378 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "17th September 1909"; + base:work\#DateStart_Max "1909-09-17"^^xsd:date; + base:work\#DateStart_Min "1909-09-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25378; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Joburg; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDOrganisation2 base:organisation\/71960; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25388 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25388; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDOrganisation base:organisation\/71955; + base:work\#ref-IDOrganisation2 base:organisation\/71932; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25403 a base:work; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25403; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDOrganisation base:organisation\/71944; + base:work\#ref-IDOrganisation2 base:organisation\/71936; + base:work\#ref-IDPerson base:person\/WalSau-3206 . + +base:work\/25413 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25413; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/25418 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25418; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/BerRud-1262 . + +base:work\/25421 a base:work; + base:work\#DateEnd_Fuzzy "December 1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25421; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/25423 a base:work; + base:work\#DateStart_Max "1866-10-27"^^xsd:date; + base:work\#DateStart_Min "1866-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25423; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Cast-00; + base:work\#ref-IDOrganisation base:organisation\/4141; + base:work\#ref-IDPerson base:person\/EusArt-00 . + +base:work\/25438 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#IDWork 25438; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Pol-DiJeSt-105; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25443 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#IDWork 25443; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Pol-DiJeSt-105; + base:work\#ref-IDOrganisation base:organisation\/70856; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25448 a base:work; + base:work\#DateEnd_Max "1930-02-04"^^xsd:date; + base:work\#DateEnd_Min "1930-02-04"^^xsd:date; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-02-04"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25448; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Pabst Theatre // Lawndale Jewish Theatre Company (Chicago)  he died after a performance at that theatre"; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25458 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25458; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SE-Livo-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25463 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25463; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/LV-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25468 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25468; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25473 a base:work; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 25473; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UA-00; + base:work\#ref-IDOrganisation base:organisation\/70448; + base:work\#ref-IDPerson base:person\/WeiJos-3230 . + +base:work\/25478 a base:work; + base:work\#DateStart_Fuzzy "1912-1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25478; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/240; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25483 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25483; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25488 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25488; + base:work\#ref-IDLocation base:location\/UA-Yekat-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25493 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25493; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25498 a base:work; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25498; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25503 a base:work; + base:work\#DateStart_Fuzzy "beginning of 1917"; + base:work\#DateStart_Max "1917-04-30"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25503; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25508 a base:work; + base:work\#DateStart_Fuzzy "1930-1931"; + base:work\#DateStart_Max "1931-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25508; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25513 a base:work; + base:work\#DateStart_Fuzzy "1931-1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25513; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25518 a base:work; + base:work\#DateStart_Fuzzy "1931-1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25518; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25523 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25523; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/YouBer-3320 . + +base:work\/25524 a base:work; + base:work\#DateStart_Fuzzy "1832"; + base:work\#DateStart_Max "1832-12-31"^^xsd:date; + base:work\#DateStart_Min "1832-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25524; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25529 a base:work; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25529; + base:work\#Profession base:Profession-Musician; + base:work\#comment "Gewandhaus"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25534 a base:work; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25534; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Wzbrg-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25539 a base:work; + base:work\#DateEnd_Fuzzy "July 1855"; + base:work\#DateEnd_Max "1855-07-31"^^xsd:date; + base:work\#DateEnd_Min "1855-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1855"; + base:work\#DateStart_Max "1855-03-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25539; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Composer; + base:work\#ref-IDLocation base:location\/CA-Lond-00; + base:work\#ref-IDOrganisation base:organisation\/713; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25544 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Max "1859-11-30"^^xsd:date; + base:work\#DateStart_Min "1859-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25544; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25549 a base:work; + base:work\#DateStart_Fuzzy "March 1861"; + base:work\#DateStart_Max "1861-03-31"^^xsd:date; + base:work\#DateStart_Min "1861-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25549; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25554 a base:work; + base:work\#DateStart_Max "1865-06-10"^^xsd:date; + base:work\#DateStart_Min "1865-06-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25554; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/168; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25559 a base:work; + base:work\#DateStart_Max "1868-06-21"^^xsd:date; + base:work\#DateStart_Min "1868-06-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25559; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/168; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25564 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Max "1869-09-22"^^xsd:date; + base:work\#DateStart_Min "1869-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25564; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/168; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25569 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1872"; + base:work\#DateStart_Max "1872-05-31"^^xsd:date; + base:work\#DateStart_Min "1872-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25569; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25574 a base:work; + base:work\#DateEnd_Max "1876-08-17"^^xsd:date; + base:work\#DateEnd_Min "1876-08-17"^^xsd:date; + base:work\#DateStart_Max "1876-08-13"^^xsd:date; + base:work\#DateStart_Min "1876-08-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25574; + base:work\#Profession base:Profession-Composer; + base:work\#Profession2 base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25579 a base:work; + base:work\#DateStart_Fuzzy "January 1882"; + base:work\#DateStart_Max "1882-01-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25579; + base:work\#Profession base:Profession-Composer; + base:work\#Profession2 base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25584 a base:work; + base:work\#DateStart_Max "1882-07-26"^^xsd:date; + base:work\#DateStart_Min "1882-07-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25584; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Composer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25585 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25585; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25590 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25590; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25604 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25604; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25609 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25609; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25614 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25614; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25619 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25619; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25624 a base:work; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-12-31"^^xsd:date; + base:work\#DateStart_Min "1873-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25624; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/25644 a base:work; + base:work\#DateStart_Fuzzy "probably 1893 or 1894"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25644; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/25649 a base:work; + base:work\#DateEnd_Fuzzy "probably in between 1900 and 1926"; + base:work\#DateStart_Fuzzy "probably in between 1900 and 1926"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25649; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/54570; + base:work\#ref-IDPerson base:person\/ZibFri-3386 . + +base:work\/2565 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2565; + base:work\#Profession base:Profession-Magician; + base:work\#comment "with Adelaid Herrmann"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/498; + base:work\#ref-IDPerson base:person\/HerLeo-00 . + +base:work\/25654 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25654; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25659 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25659; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25664 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25664; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25669 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25669; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25674 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25674; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25679 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25679; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/2568 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2568; + base:work\#Profession base:Profession-Magician; + base:work\#comment "Independently with his show"; + base:work\#ref-IDPerson base:person\/HerLeo-00 . + +base:work\/25684 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25684; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25689 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25689; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25694 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25694; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25699 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25699; + base:work\#ref-IDPerson base:person\/ZilKar-3399 . + +base:work\/25704 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25704; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1530; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25709 a base:work; + base:work\#DateEnd_Fuzzy "between 1850 and 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1850-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1850 and 1852"; + base:work\#DateStart_Max "1852-05-31"^^xsd:date; + base:work\#DateStart_Min "1850-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25709; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour through the USA with over 150 concerts, including Cuba and Canada."; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2571 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2571; + base:work\#Profession base:Profession-Magician; + base:work\#comment "Vaudeville, booked by Jesse L. Lasky"; + base:work\#ref-IDPerson base:person\/HerLeo-00 . + +base:work\/25714 a base:work; + base:work\#DateEnd_Fuzzy "between 1850 and 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1850-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1850 and 1852"; + base:work\#DateStart_Max "1852-05-31"^^xsd:date; + base:work\#DateStart_Min "1850-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25714; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour through the USA with over 150 concerts, including Cuba and Canada."; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25719 a base:work; + base:work\#DateEnd_Fuzzy "1836"; + base:work\#DateEnd_Max "1836-12-31"^^xsd:date; + base:work\#DateEnd_Min "1836-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1830"; + base:work\#DateStart_Max "1830-09-30"^^xsd:date; + base:work\#DateStart_Min "1830-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25719; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "She made her stage debut on 27 November 1930 as a minor role."; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/196; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25724 a base:work; + base:work\#DateStart_Fuzzy "between 1902 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25724; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25729 a base:work; + base:work\#DateStart_Fuzzy "between 1902 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25729; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25734 a base:work; + base:work\#DateStart_Fuzzy "between 1902 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25734; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/60920; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25739 a base:work; + base:work\#DateStart_Fuzzy "between 1909 and 1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25739; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2574 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-03-31"^^xsd:date; + base:work\#DateStart_Min "1879-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2574; + base:work\#Profession base:Profession-Singer; + base:work\#comment "debut at the NY 5. Avenue Theater"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/CorBla-00 . + +base:work\/25744 a base:work; + base:work\#DateStart_Fuzzy "between 1879 and 1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25744; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25749 a base:work; + base:work\#DateStart_Fuzzy "30th August 1917"; + base:work\#DateStart_Max "1917-08-30"^^xsd:date; + base:work\#DateStart_Min "1917-08-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25749; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/54570; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25754 a base:work; + base:work\#DateStart_Fuzzy "between 1918 and September 1919"; + base:work\#DateStart_Max "1919-09-30"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25754; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/25759 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25759; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/AdlJac-706 . + +base:work\/2577 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2577; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CA-00; + base:work\#ref-IDOrganisation base:organisation\/501; + base:work\#ref-IDPerson base:person\/CorBla-00 . + +base:work\/25774 a base:work; + base:work\#DateEnd_Fuzzy "1841"; + base:work\#DateEnd_Max "1841-07-31"^^xsd:date; + base:work\#DateEnd_Min "1841-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-01-01"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25774; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Jenny Lind transitioned from an apprentice to a salaried professional actress at the Royal Theatre, with an annual salary of 700 Riksdaler Banco. She went to Paris in July 1841."; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/196; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25779 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25779; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/Scandinavia; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25782 a base:work; + base:work\#DateEnd_Fuzzy "between July and December 1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-07-06"^^xsd:date; + base:work\#DateStart_Fuzzy "between July and December 1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-07-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25782; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25784 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-03-11"^^xsd:date; + base:work\#DateEnd_Min "1845-03-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-15"^^xsd:date; + base:work\#DateStart_Min "1844-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25784; + base:work\#Profession base:Profession-Singer; + base:work\#comment "with Meyerbeer"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25785 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-03-15"^^xsd:date; + base:work\#DateEnd_Min "1845-03-13"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-03-13"^^xsd:date; + base:work\#DateStart_Min "1845-03-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25785; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Farewell Concert in Berlin"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/473; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25787 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-03-19"^^xsd:date; + base:work\#DateEnd_Min "1845-03-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-03-19"^^xsd:date; + base:work\#DateStart_Min "1845-03-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25787; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25789 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-05-06"^^xsd:date; + base:work\#DateEnd_Min "1845-05-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-03-29"^^xsd:date; + base:work\#DateStart_Min "1845-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25789; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25794 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-06-26"^^xsd:date; + base:work\#DateEnd_Min "1845-06-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-05-16"^^xsd:date; + base:work\#DateStart_Min "1845-05-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25794; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25795 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-08-26"^^xsd:date; + base:work\#DateEnd_Min "1845-08-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-08-26"^^xsd:date; + base:work\#DateStart_Min "1845-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25795; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Kobl-00; + base:work\#ref-IDOrganisation base:organisation\/72112; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25799 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-09-15"^^xsd:date; + base:work\#DateEnd_Min "1845-09-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-08-29"^^xsd:date; + base:work\#DateStart_Min "1845-08-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25799; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2580 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2580; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDOrganisation base:organisation\/501; + base:work\#ref-IDPerson base:person\/CorBla-00 . + +base:work\/25804 a base:work; + base:work\#DateStart_Fuzzy "5th September 1898"; + base:work\#DateStart_Max "1898-09-05"^^xsd:date; + base:work\#DateStart_Min "1898-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25804; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/331; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/25809 a base:work; + base:work\#DateStart_Fuzzy "28th October 1898"; + base:work\#DateStart_Max "1898-10-28"^^xsd:date; + base:work\#DateStart_Min "1898-10-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25809; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Author; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/25812 a base:work; + base:work\#DateStart_Fuzzy "probably between 1907 and 1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25812; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/25814 a base:work; + base:work\#DateStart_Fuzzy "probably between 1907 and 1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25814; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/LT-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/25819 a base:work; + base:work\#DateStart_Fuzzy "probably between 1907 and 1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25819; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/2583 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2583; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDOrganisation base:organisation\/501; + base:work\#ref-IDPerson base:person\/CorBla-00 . + +base:work\/25859 a base:work; + base:work\#DateStart_Fuzzy "June 1909"; + base:work\#DateStart_Max "1909-06-30"^^xsd:date; + base:work\#DateStart_Min "1909-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25859; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/563; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/2586 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2586; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/500; + base:work\#ref-IDPerson base:person\/CorBla-00 . + +base:work\/25869 a base:work; + base:work\#DateEnd_Fuzzy "1st July 1909"; + base:work\#DateEnd_Max "1909-07-01"^^xsd:date; + base:work\#DateEnd_Min "1909-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1st July 1909"; + base:work\#DateStart_Max "1909-07-01"^^xsd:date; + base:work\#DateStart_Min "1909-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25869; + base:work\#Profession base:Profession-Actor; + base:work\#comment "He died during the first rehearsal"; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDPerson base:person\/FeiSig-714 . + +base:work\/25874 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-10-16"^^xsd:date; + base:work\#DateEnd_Min "1845-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-09-24"^^xsd:date; + base:work\#DateStart_Min "1845-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25874; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25879 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-11-01"^^xsd:date; + base:work\#DateEnd_Min "1845-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-11-01"^^xsd:date; + base:work\#DateStart_Min "1845-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25879; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Potsd-00; + base:work\#ref-IDOrganisation base:organisation\/72117; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25884 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-04-02"^^xsd:date; + base:work\#DateEnd_Min "1846-04-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-11-09"^^xsd:date; + base:work\#DateStart_Min "1845-11-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25884; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/299; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25889 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-10-10"^^xsd:date; + base:work\#DateEnd_Min "1846-10-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-09-25"^^xsd:date; + base:work\#DateStart_Min "1846-09-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25889; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2589 a base:work; + base:work\#Employment """Pupil +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2589; + base:work\#ref-IDLocation base:location\/HU-Pest-00; + base:work\#ref-IDOrganisation base:organisation\/143; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/25894 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-06-02"^^xsd:date; + base:work\#DateEnd_Min "1846-06-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-05-31"^^xsd:date; + base:work\#DateStart_Min "1846-05-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25894; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Aach-00; + base:work\#ref-IDOrganisation base:organisation\/72122; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25904 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-04-29"^^xsd:date; + base:work\#DateEnd_Min "1846-04-29"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-04-29"^^xsd:date; + base:work\#DateStart_Min "1846-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25904; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25905 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-05-21"^^xsd:date; + base:work\#DateEnd_Min "1846-05-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-04-22"^^xsd:date; + base:work\#DateStart_Min "1846-04-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25905; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25909 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-07-19"^^xsd:date; + base:work\#DateEnd_Min "1846-07-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-03-02"^^xsd:date; + base:work\#DateStart_Min "1846-03-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25909; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25914 a base:work; + base:work\#DateEnd_Fuzzy "Late January 1846"; + base:work\#DateEnd_Max "1846-01-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-15"^^xsd:date; + base:work\#DateStart_Fuzzy "Late January 1846"; + base:work\#DateStart_Max "1846-01-31"^^xsd:date; + base:work\#DateStart_Min "1846-01-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 25914; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDOrganisation base:organisation\/120; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25919 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-10-19"^^xsd:date; + base:work\#DateEnd_Min "1846-10-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-10-13"^^xsd:date; + base:work\#DateStart_Min "1846-10-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25919; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Darm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2592 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2592; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Invitation by Anna de la Grange"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/25924 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-06"^^xsd:date; + base:work\#DateEnd_Min "1846-12-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-12-06"^^xsd:date; + base:work\#DateStart_Min "1846-12-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25924; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25929 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-05"^^xsd:date; + base:work\#DateEnd_Min "1846-12-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-12-05"^^xsd:date; + base:work\#DateStart_Min "1846-12-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25929; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Heidelb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25934 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-11-28"^^xsd:date; + base:work\#DateEnd_Min "1846-11-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-11-24"^^xsd:date; + base:work\#DateStart_Min "1846-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25934; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25939 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-11-22"^^xsd:date; + base:work\#DateEnd_Min "1846-11-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-11-11"^^xsd:date; + base:work\#DateStart_Min "1846-11-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25939; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDOrganisation base:organisation\/548; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25944 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-11-08"^^xsd:date; + base:work\#DateEnd_Min "1846-11-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-10-23"^^xsd:date; + base:work\#DateStart_Min "1846-10-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25944; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2595 a base:work; + base:work\#Employment "Pupil"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2595; + base:work\#comment "Heinrich Proch"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/25954 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-07-28"^^xsd:date; + base:work\#DateEnd_Min "1846-07-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-06-22"^^xsd:date; + base:work\#DateStart_Min "1846-06-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25954; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25959 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-06-11"^^xsd:date; + base:work\#DateEnd_Min "1846-06-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-06-03"^^xsd:date; + base:work\#DateStart_Min "1846-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25959; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25969 a base:work; + base:work\#DateEnd_Max "1848-12-15"^^xsd:date; + base:work\#DateEnd_Min "1848-12-15"^^xsd:date; + base:work\#DateStart_Max "1848-12-15"^^xsd:date; + base:work\#DateStart_Min "1848-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25969; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25970 a base:work; + base:work\#DateEnd_Max "1848-04-12"^^xsd:date; + base:work\#DateEnd_Min "1848-04-12"^^xsd:date; + base:work\#DateStart_Max "1847-12-03"^^xsd:date; + base:work\#DateStart_Min "1847-12-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25970; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25975 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-25"^^xsd:date; + base:work\#DateEnd_Min "1847-09-25"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-23"^^xsd:date; + base:work\#DateStart_Min "1847-09-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25975; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Norw-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25976 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1848-09-11"^^xsd:date; + base:work\#DateEnd_Min "1847-09-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-08-28"^^xsd:date; + base:work\#DateStart_Min "1847-08-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25976; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25979 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-08-26"^^xsd:date; + base:work\#DateEnd_Min "1847-08-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-08-26"^^xsd:date; + base:work\#DateStart_Min "1847-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25979; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Birm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2598 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2598; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Debutee at the berlin court theater"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/254; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/25984 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-08-21"^^xsd:date; + base:work\#DateEnd_Min "1847-08-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-05-04"^^xsd:date; + base:work\#DateStart_Min "1847-05-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 25984; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25989 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-04-08"^^xsd:date; + base:work\#DateEnd_Min "1847-04-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-01-07"^^xsd:date; + base:work\#DateStart_Min "1847-01-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 25989; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/25995 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-13"^^xsd:date; + base:work\#DateEnd_Min "1846-12-13"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-12-13"^^xsd:date; + base:work\#DateStart_Min "1846-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 25995; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Augsb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/559; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/260 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 260; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source 1842-1845"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26000 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-11"^^xsd:date; + base:work\#DateEnd_Min "1846-12-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-12-09"^^xsd:date; + base:work\#DateStart_Min "1846-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26000; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26004 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-10-20"^^xsd:date; + base:work\#DateEnd_Min "1847-10-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-10-20"^^xsd:date; + base:work\#DateStart_Min "1847-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26004; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26009 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-10-18"^^xsd:date; + base:work\#DateEnd_Min "1847-10-18"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-10-12"^^xsd:date; + base:work\#DateStart_Min "1847-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26009; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2601 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2601; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26014 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-10-02"^^xsd:date; + base:work\#DateEnd_Min "1847-10-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-10-01"^^xsd:date; + base:work\#DateStart_Min "1847-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26014; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Exet-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26019 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-30"^^xsd:date; + base:work\#DateEnd_Min "1847-09-30"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-30"^^xsd:date; + base:work\#DateStart_Min "1847-09-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26019; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Bris-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26024 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-28"^^xsd:date; + base:work\#DateEnd_Min "1847-09-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-28"^^xsd:date; + base:work\#DateStart_Min "1847-09-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26024; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Bath-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26029 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-27"^^xsd:date; + base:work\#DateEnd_Min "1847-09-27"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-27"^^xsd:date; + base:work\#DateStart_Min "1847-09-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26029; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Bris-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26034 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-20"^^xsd:date; + base:work\#DateEnd_Min "1847-09-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-20"^^xsd:date; + base:work\#DateStart_Min "1847-09-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26034; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26039 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-18"^^xsd:date; + base:work\#DateEnd_Min "1847-09-18"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-18"^^xsd:date; + base:work\#DateStart_Min "1847-09-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26039; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-Perth-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2604 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2604; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26044 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-17"^^xsd:date; + base:work\#DateEnd_Min "1847-09-17"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-17"^^xsd:date; + base:work\#DateStart_Min "1847-09-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26044; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26049 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-09-16"^^xsd:date; + base:work\#DateEnd_Min "1847-09-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-09-16"^^xsd:date; + base:work\#DateStart_Min "1847-09-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26049; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26054 a base:work; + base:work\#DateEnd_Max "1848-11-03"^^xsd:date; + base:work\#DateEnd_Min "1848-11-03"^^xsd:date; + base:work\#DateStart_Max "1848-10-30"^^xsd:date; + base:work\#DateStart_Min "1848-10-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26054; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Bright-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26059 a base:work; + base:work\#DateEnd_Max "1848-10-27"^^xsd:date; + base:work\#DateEnd_Min "1848-10-27"^^xsd:date; + base:work\#DateStart_Max "1848-10-27"^^xsd:date; + base:work\#DateStart_Min "1848-10-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26059; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Birm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26064 a base:work; + base:work\#DateEnd_Max "1848-10-24"^^xsd:date; + base:work\#DateEnd_Min "1848-10-27"^^xsd:date; + base:work\#DateStart_Max "1848-10-10"^^xsd:date; + base:work\#DateStart_Min "1848-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26064; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IE-Dubl-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26069 a base:work; + base:work\#DateEnd_Max "1848-10-06"^^xsd:date; + base:work\#DateEnd_Min "1848-10-06"^^xsd:date; + base:work\#DateStart_Max "1848-10-02"^^xsd:date; + base:work\#DateStart_Min "1848-10-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26069; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2607 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2607; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26074 a base:work; + base:work\#DateEnd_Max "1848-09-28"^^xsd:date; + base:work\#DateEnd_Min "1848-09-28"^^xsd:date; + base:work\#DateStart_Max "1848-09-25"^^xsd:date; + base:work\#DateStart_Min "1848-09-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26074; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26084 a base:work; + base:work\#DateEnd_Max "1849-01-23"^^xsd:date; + base:work\#DateEnd_Min "1849-01-23"^^xsd:date; + base:work\#DateStart_Max "1849-01-22"^^xsd:date; + base:work\#DateStart_Min "1849-01-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26084; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Norw-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26089 a base:work; + base:work\#DateEnd_Max "1849-01-06"^^xsd:date; + base:work\#DateEnd_Min "1849-01-06"^^xsd:date; + base:work\#DateStart_Max "1849-01-06"^^xsd:date; + base:work\#DateStart_Min "1849-01-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26089; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/261 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 261; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source 1847-1849"; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2610 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2610; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ROU-Jassy-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26104 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26104; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/CiaCes-00 . + +base:work\/26109 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26109; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/768; + base:work\#ref-IDPerson base:person\/CiaCes-00 . + +base:work\/26114 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26114; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72249; + base:work\#ref-IDPerson base:person\/CiaCes-00 . + +base:work\/26119 a base:work; + base:work\#DateStart_Min "1879-07-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26119; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/965; + base:work\#ref-IDPerson base:person\/CiaCes-00 . + +base:work\/26124 a base:work; + base:work\#DateEnd_Max "1848-09-05"^^xsd:date; + base:work\#DateEnd_Min "1848-09-05"^^xsd:date; + base:work\#DateStart_Max "1848-09-05"^^xsd:date; + base:work\#DateStart_Min "1848-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26124; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Birm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26129 a base:work; + base:work\#DateEnd_Max "1848-09-07"^^xsd:date; + base:work\#DateEnd_Min "1848-09-07"^^xsd:date; + base:work\#DateStart_Max "1848-09-07"^^xsd:date; + base:work\#DateStart_Min "1848-09-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26129; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2613 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2613; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26134 a base:work; + base:work\#DateEnd_Max "1848-09-11"^^xsd:date; + base:work\#DateEnd_Min "1848-09-11"^^xsd:date; + base:work\#DateStart_Max "1848-09-09"^^xsd:date; + base:work\#DateStart_Min "1848-09-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26134; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26139 a base:work; + base:work\#DateEnd_Max "1848-09-14"^^xsd:date; + base:work\#DateEnd_Min "1848-09-14"^^xsd:date; + base:work\#DateStart_Max "1848-09-14"^^xsd:date; + base:work\#DateStart_Min "1848-09-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26139; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Hull-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26144 a base:work; + base:work\#DateEnd_Max "1848-09-18"^^xsd:date; + base:work\#DateEnd_Min "1848-09-18"^^xsd:date; + base:work\#DateStart_Max "1848-09-18"^^xsd:date; + base:work\#DateStart_Min "1848-09-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26144; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-York-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26149 a base:work; + base:work\#DateEnd_Max "1848-09-20"^^xsd:date; + base:work\#DateEnd_Min "1848-09-20"^^xsd:date; + base:work\#DateStart_Max "1848-09-20"^^xsd:date; + base:work\#DateStart_Min "1848-09-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26149; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GB-NewCast-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26154 a base:work; + base:work\#DateEnd_Max "1848-09-23"^^xsd:date; + base:work\#DateEnd_Min "1848-09-23"^^xsd:date; + base:work\#DateStart_Max "1848-09-23"^^xsd:date; + base:work\#DateStart_Min "1848-09-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26154; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26159 a base:work; + base:work\#DateEnd_Max "1848-11-13"^^xsd:date; + base:work\#DateEnd_Min "1848-11-13"^^xsd:date; + base:work\#DateStart_Max "1848-11-13"^^xsd:date; + base:work\#DateStart_Min "1848-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26159; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Exet-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2616 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2616; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26164 a base:work; + base:work\#DateEnd_Max "1848-11-10"^^xsd:date; + base:work\#DateEnd_Min "1848-11-10"^^xsd:date; + base:work\#DateStart_Max "1848-11-10"^^xsd:date; + base:work\#DateStart_Min "1848-11-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26164; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Bris-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26169 a base:work; + base:work\#DateEnd_Max "1848-11-08"^^xsd:date; + base:work\#DateEnd_Min "1848-11-08"^^xsd:date; + base:work\#DateStart_Max "1848-11-08"^^xsd:date; + base:work\#DateStart_Min "1848-11-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26169; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Southh-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26174 a base:work; + base:work\#DateEnd_Max "1848-11-16"^^xsd:date; + base:work\#DateEnd_Min "1848-11-16"^^xsd:date; + base:work\#DateStart_Max "1848-11-16"^^xsd:date; + base:work\#DateStart_Min "1848-11-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26174; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Bath-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26179 a base:work; + base:work\#DateEnd_Max "1849-05-10"^^xsd:date; + base:work\#DateEnd_Min "1849-05-10"^^xsd:date; + base:work\#DateStart_Max "1849-04-26"^^xsd:date; + base:work\#DateStart_Min "1849-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26179; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26184 a base:work; + base:work\#DateEnd_Max "1848-12-28"^^xsd:date; + base:work\#DateEnd_Min "1848-12-28"^^xsd:date; + base:work\#DateStart_Max "1848-12-28"^^xsd:date; + base:work\#DateStart_Min "1848-12-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26184; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Birm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2619 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2619; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26194 a base:work; + base:work\#DateEnd_Max "1848-12-21"^^xsd:date; + base:work\#DateEnd_Min "1848-12-21"^^xsd:date; + base:work\#DateStart_Max "1848-12-19"^^xsd:date; + base:work\#DateStart_Min "1848-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26194; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26195 a base:work; + base:work\#DateEnd_Max "1848-12-04"^^xsd:date; + base:work\#DateEnd_Min "1848-12-04"^^xsd:date; + base:work\#DateStart_Max "1848-12-04"^^xsd:date; + base:work\#DateStart_Min "1848-12-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26195; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Leeds-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26199 a base:work; + base:work\#DateEnd_Max "1848-12-01"^^xsd:date; + base:work\#DateEnd_Min "1848-12-01"^^xsd:date; + base:work\#DateStart_Max "1848-12-01"^^xsd:date; + base:work\#DateStart_Min "1848-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26199; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Oxf-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/262 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 262; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source 1850-1852 Stadttheater Breslau"; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDOrganisation base:organisation\/181; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26204 a base:work; + base:work\#DateEnd_Max "1848-11-27"^^xsd:date; + base:work\#DateEnd_Min "1848-11-27"^^xsd:date; + base:work\#DateStart_Max "1848-11-27"^^xsd:date; + base:work\#DateStart_Min "1848-11-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26204; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Glouc-01; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26209 a base:work; + base:work\#DateEnd_Max "1848-11-23"^^xsd:date; + base:work\#DateEnd_Min "1848-11-23"^^xsd:date; + base:work\#DateStart_Max "1848-11-23"^^xsd:date; + base:work\#DateStart_Min "1848-11-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26209; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Chelt-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26210 a base:work; + base:work\#DateEnd_Max "1848-11-18"^^xsd:date; + base:work\#DateEnd_Min "1848-11-18"^^xsd:date; + base:work\#DateStart_Max "1848-11-18"^^xsd:date; + base:work\#DateStart_Min "1848-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26210; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Bris-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26214 a base:work; + base:work\#DateEnd_Max "1849-01-29"^^xsd:date; + base:work\#DateEnd_Min "1849-01-29"^^xsd:date; + base:work\#DateStart_Max "1849-01-29"^^xsd:date; + base:work\#DateStart_Min "1849-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26214; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Raise money for Mr. Balfe"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26219 a base:work; + base:work\#DateEnd_Max "1849-02-21"^^xsd:date; + base:work\#DateEnd_Min "1849-02-21"^^xsd:date; + base:work\#DateStart_Max "1849-02-21"^^xsd:date; + base:work\#DateStart_Min "1849-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26219; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Raise money for Mrs/Miss Dulcken"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2622 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2622; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26224 a base:work; + base:work\#DateEnd_Max "1849-02-13"^^xsd:date; + base:work\#DateEnd_Min "1849-02-13"^^xsd:date; + base:work\#DateStart_Max "1849-02-13"^^xsd:date; + base:work\#DateStart_Min "1849-02-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26224; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Hudd-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26229 a base:work; + base:work\#DateEnd_Max "1849-02-08"^^xsd:date; + base:work\#DateEnd_Min "1849-02-08"^^xsd:date; + base:work\#DateStart_Max "1849-02-08"^^xsd:date; + base:work\#DateStart_Min "1849-02-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26229; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Birm-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26234 a base:work; + base:work\#DateEnd_Max "1849-02-06"^^xsd:date; + base:work\#DateEnd_Min "1849-02-06"^^xsd:date; + base:work\#DateStart_Max "1849-02-06"^^xsd:date; + base:work\#DateStart_Min "1849-02-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26234; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26239 a base:work; + base:work\#DateEnd_Max "1849-02-02"^^xsd:date; + base:work\#DateEnd_Min "1849-02-02"^^xsd:date; + base:work\#DateStart_Max "1849-02-02"^^xsd:date; + base:work\#DateStart_Min "1849-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26239; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Worce-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2625 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2625; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Flor-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26264 a base:work; + base:work\#DateEnd_Max "1849-02-15"^^xsd:date; + base:work\#DateEnd_Min "1849-02-15"^^xsd:date; + base:work\#DateStart_Max "1849-02-15"^^xsd:date; + base:work\#DateStart_Min "1849-02-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26264; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26269 a base:work; + base:work\#DateEnd_Max "1849-02-26"^^xsd:date; + base:work\#DateEnd_Min "1849-02-26"^^xsd:date; + base:work\#DateStart_Max "1849-02-26"^^xsd:date; + base:work\#DateStart_Min "1849-02-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26269; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Shrews-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26274 a base:work; + base:work\#DateEnd_Max "1849-02-27"^^xsd:date; + base:work\#DateEnd_Min "1849-02-27"^^xsd:date; + base:work\#DateStart_Max "1849-02-27"^^xsd:date; + base:work\#DateStart_Min "1849-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26274; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Chest-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26279 a base:work; + base:work\#DateEnd_Max "1849-03-01"^^xsd:date; + base:work\#DateEnd_Min "1849-03-01"^^xsd:date; + base:work\#DateStart_Max "1849-03-01"^^xsd:date; + base:work\#DateStart_Min "1849-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26279; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Derb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2628 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2628; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Genoa-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26284 a base:work; + base:work\#DateEnd_Max "1849-03-06"^^xsd:date; + base:work\#DateEnd_Min "1849-03-06"^^xsd:date; + base:work\#DateStart_Max "1849-03-06"^^xsd:date; + base:work\#DateStart_Min "1849-03-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26284; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Wakef-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26289 a base:work; + base:work\#DateEnd_Max "1849-03-08"^^xsd:date; + base:work\#DateEnd_Min "1849-03-08"^^xsd:date; + base:work\#DateStart_Max "1849-03-08"^^xsd:date; + base:work\#DateStart_Min "1849-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26289; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Sheff-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26294 a base:work; + base:work\#DateEnd_Max "1849-03-09"^^xsd:date; + base:work\#DateEnd_Min "1849-03-09"^^xsd:date; + base:work\#DateStart_Max "1849-03-09"^^xsd:date; + base:work\#DateStart_Min "1849-03-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26294; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Nottingh-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26299 a base:work; + base:work\#DateEnd_Max "1849-03-29"^^xsd:date; + base:work\#DateEnd_Min "1849-03-29"^^xsd:date; + base:work\#DateStart_Max "1849-03-29"^^xsd:date; + base:work\#DateStart_Min "1849-03-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26299; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/263 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 263; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source 1854"; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26304 a base:work; + base:work\#DateEnd_Max "1849-03-12"^^xsd:date; + base:work\#DateEnd_Min "1849-03-12"^^xsd:date; + base:work\#DateStart_Max "1849-03-12"^^xsd:date; + base:work\#DateStart_Min "1849-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26304; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Cambr-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26309 a base:work; + base:work\#DateEnd_Max "1849-03-27"^^xsd:date; + base:work\#DateEnd_Min "1849-03-27"^^xsd:date; + base:work\#DateStart_Max "1849-03-27"^^xsd:date; + base:work\#DateStart_Min "1849-03-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26309; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2631 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2631; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26314 a base:work; + base:work\#DateEnd_Max "1849-03-23"^^xsd:date; + base:work\#DateEnd_Min "1849-03-23"^^xsd:date; + base:work\#DateStart_Max "1849-03-23"^^xsd:date; + base:work\#DateStart_Min "1849-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26314; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-Plym-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26319 a base:work; + base:work\#DateEnd_Max "1850-08-19"^^xsd:date; + base:work\#DateEnd_Min "1850-08-19"^^xsd:date; + base:work\#DateStart_Max "1850-08-16"^^xsd:date; + base:work\#DateStart_Min "1850-08-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26319; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26324 a base:work; + base:work\#DateEnd_Max "1850-02-20"^^xsd:date; + base:work\#DateEnd_Min "1850-02-20"^^xsd:date; + base:work\#DateStart_Max "1850-02-20"^^xsd:date; + base:work\#DateStart_Min "1850-02-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26324; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26329 a base:work; + base:work\#DateEnd_Max "1850-02-12"^^xsd:date; + base:work\#DateEnd_Min "1850-02-12"^^xsd:date; + base:work\#DateStart_Max "1850-02-12"^^xsd:date; + base:work\#DateStart_Min "1850-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26329; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Oldb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26334 a base:work; + base:work\#DateEnd_Max "1850-02-07"^^xsd:date; + base:work\#DateEnd_Min "1850-02-07"^^xsd:date; + base:work\#DateStart_Max "1850-02-07"^^xsd:date; + base:work\#DateStart_Min "1850-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26334; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26339 a base:work; + base:work\#DateEnd_Max "1850-02-04"^^xsd:date; + base:work\#DateEnd_Min "1850-02-04"^^xsd:date; + base:work\#DateStart_Max "1850-02-02"^^xsd:date; + base:work\#DateStart_Min "1850-02-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26339; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Goett-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2634 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2634; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26344 a base:work; + base:work\#DateEnd_Max "1850-02-13"^^xsd:date; + base:work\#DateEnd_Min "1850-02-13"^^xsd:date; + base:work\#DateStart_Max "1850-01-29"^^xsd:date; + base:work\#DateStart_Min "1850-01-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26344; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26354 a base:work; + base:work\#DateEnd_Max "1849-12-19"^^xsd:date; + base:work\#DateEnd_Min "1849-12-19"^^xsd:date; + base:work\#DateStart_Max "1849-12-19"^^xsd:date; + base:work\#DateStart_Min "1849-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26354; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26359 a base:work; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-11-01"^^xsd:date; + base:work\#DateStart_Max "1849-11-30"^^xsd:date; + base:work\#DateStart_Min "1849-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26359; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26364 a base:work; + base:work\#DateEnd_Max "1850-04-26"^^xsd:date; + base:work\#DateEnd_Min "1850-04-26"^^xsd:date; + base:work\#DateStart_Max "1850-04-26"^^xsd:date; + base:work\#DateStart_Min "1850-04-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26364; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Lueb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26369 a base:work; + base:work\#DateEnd_Max "1850-02-25"^^xsd:date; + base:work\#DateEnd_Min "1850-02-25"^^xsd:date; + base:work\#DateStart_Max "1850-02-25"^^xsd:date; + base:work\#DateStart_Min "1850-02-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26369; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2637 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2637; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26374 a base:work; + base:work\#DateEnd_Max "1850-02-27"^^xsd:date; + base:work\#DateEnd_Min "1850-02-27"^^xsd:date; + base:work\#DateStart_Max "1850-02-27"^^xsd:date; + base:work\#DateStart_Min "1850-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26374; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Braunsch-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26379 a base:work; + base:work\#DateEnd_Max "1850-03-18"^^xsd:date; + base:work\#DateEnd_Min "1850-03-18"^^xsd:date; + base:work\#DateStart_Max "1850-03-07"^^xsd:date; + base:work\#DateStart_Min "1850-03-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26379; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26389 a base:work; + base:work\#DateEnd_Max "1850-03-15"^^xsd:date; + base:work\#DateEnd_Min "1850-03-15"^^xsd:date; + base:work\#DateStart_Max "1850-03-15"^^xsd:date; + base:work\#DateStart_Min "1850-03-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26389; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26394 a base:work; + base:work\#DateEnd_Max "1850-03-23"^^xsd:date; + base:work\#DateEnd_Min "1850-03-23"^^xsd:date; + base:work\#DateStart_Max "1850-03-21"^^xsd:date; + base:work\#DateStart_Min "1850-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26394; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26399 a base:work; + base:work\#DateEnd_Max "1850-03-26"^^xsd:date; + base:work\#DateEnd_Min "1850-03-26"^^xsd:date; + base:work\#DateStart_Max "1850-03-26"^^xsd:date; + base:work\#DateStart_Min "1850-03-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26399; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Lueb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/264 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 264; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2640 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2640; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26404 a base:work; + base:work\#DateEnd_Max "1840-04-01"^^xsd:date; + base:work\#DateEnd_Min "1850-04-01"^^xsd:date; + base:work\#DateStart_Max "1850-04-01"^^xsd:date; + base:work\#DateStart_Min "1850-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26404; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Lueb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26409 a base:work; + base:work\#DateEnd_Max "1850-04-20"^^xsd:date; + base:work\#DateEnd_Min "1840-04-20"^^xsd:date; + base:work\#DateStart_Max "1850-04-20"^^xsd:date; + base:work\#DateStart_Min "1850-04-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26409; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Lueb-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26414 a base:work; + base:work\#DateEnd_Max "1850-06-07"^^xsd:date; + base:work\#DateEnd_Min "1850-06-07"^^xsd:date; + base:work\#DateStart_Max "1850-05-24"^^xsd:date; + base:work\#DateStart_Min "1850-05-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26414; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/196; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26419 a base:work; + base:work\#DateEnd_Max "1850-06-30"^^xsd:date; + base:work\#DateEnd_Min "1850-06-01"^^xsd:date; + base:work\#DateStart_Max "1850-06-30"^^xsd:date; + base:work\#DateStart_Min "1850-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26419; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26424 a base:work; + base:work\#DateEnd_Max "1850-07-04"^^xsd:date; + base:work\#DateEnd_Min "1850-07-04"^^xsd:date; + base:work\#DateStart_Max "1850-07-04"^^xsd:date; + base:work\#DateStart_Min "1850-07-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26424; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26429 a base:work; + base:work\#DateEnd_Max "1850-08-06"^^xsd:date; + base:work\#DateEnd_Min "1850-08-06"^^xsd:date; + base:work\#DateStart_Max "1850-08-06"^^xsd:date; + base:work\#DateStart_Min "1850-08-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26429; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BadBad-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2643 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2643; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26434 a base:work; + base:work\#DateEnd_Max "1850-08-19"^^xsd:date; + base:work\#DateEnd_Min "1850-08-19"^^xsd:date; + base:work\#DateStart_Max "1850-08-16"^^xsd:date; + base:work\#DateStart_Min "1850-08-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26434; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26439 a base:work; + base:work\#DateEnd_Fuzzy "between September and October 1850"; + base:work\#DateEnd_Max "1850-10-22"^^xsd:date; + base:work\#DateEnd_Min "1850-10-02"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and October 1850"; + base:work\#DateStart_Max "1850-09-27"^^xsd:date; + base:work\#DateStart_Min "1850-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26439; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26444 a base:work; + base:work\#DateEnd_Fuzzy "between October-November 1850"; + base:work\#DateEnd_Max "1850-11-08"^^xsd:date; + base:work\#DateEnd_Min "1850-10-22"^^xsd:date; + base:work\#DateStart_Fuzzy "between October-November 1850"; + base:work\#DateStart_Max "1850-10-22"^^xsd:date; + base:work\#DateStart_Min "1850-10-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26444; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26449 a base:work; + base:work\#DateEnd_Fuzzy "between November and December 1850"; + base:work\#DateEnd_Max "1850-12-05"^^xsd:date; + base:work\#DateEnd_Min "1850-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between November and December 1850"; + base:work\#DateStart_Max "1850-11-30"^^xsd:date; + base:work\#DateStart_Min "1850-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26449; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2645 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2645; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/CsiRos-00 . + +base:work\/26454 a base:work; + base:work\#DateEnd_Fuzzy "December 1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26454; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26459 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26459; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2646 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2646; + base:work\#comment "Pieces in German are performed in Warsaw, not very successfully"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26464 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26464; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26474 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26474; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26479 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26479; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26480 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26480; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26484 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26484; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2649 a base:work; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2649; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26494 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26494; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26499 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26499; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/265 a base:work; + base:work\#DateEnd_Fuzzy "1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 265; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/183; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26504 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26504; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NL-Rott-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26509 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26509; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NLD-Leid-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26514 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26514; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NLD-Utre-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26519 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26519; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NL-DHaag-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2652 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2652; + base:work\#Profession base:Profession-Director; + base:work\#comment "Tour through Romania"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDOrganisation base:organisation\/502; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26520 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26520; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NLD-Haarl-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26524 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26524; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NLD-Dordr-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26529 a base:work; + base:work\#DateEnd_Fuzzy "between March and May 1855"; + base:work\#DateEnd_Max "1855-05-31"^^xsd:date; + base:work\#DateEnd_Min "1855-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between March and May 1855"; + base:work\#DateStart_Max "1855-05-31"^^xsd:date; + base:work\#DateStart_Min "1855-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26529; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NLD-Friesl-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26534 a base:work; + base:work\#DateEnd_Fuzzy "June 1855"; + base:work\#DateEnd_Max "1855-06-30"^^xsd:date; + base:work\#DateEnd_Min "1855-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1855"; + base:work\#DateStart_Max "1855-06-30"^^xsd:date; + base:work\#DateStart_Min "1855-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26534; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ddorf-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26539 a base:work; + base:work\#DateEnd_Fuzzy "between December 1855 and June 1856"; + base:work\#DateEnd_Max "1856-06-30"^^xsd:date; + base:work\#DateEnd_Min "1855-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1855 and June 1856"; + base:work\#DateStart_Max "1856-06-30"^^xsd:date; + base:work\#DateStart_Min "1855-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26539; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26544 a base:work; + base:work\#DateEnd_Fuzzy "between December 1855 and June 1856"; + base:work\#DateEnd_Max "1856-06-30"^^xsd:date; + base:work\#DateEnd_Min "1855-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1855 and June 1856"; + base:work\#DateStart_Max "1856-06-30"^^xsd:date; + base:work\#DateStart_Min "1855-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26544; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26549 a base:work; + base:work\#DateEnd_Fuzzy "between December 1855 and June 1856"; + base:work\#DateEnd_Max "1856-06-30"^^xsd:date; + base:work\#DateEnd_Min "1855-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1855 and June 1856"; + base:work\#DateStart_Max "1856-06-30"^^xsd:date; + base:work\#DateStart_Min "1855-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26549; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Wales-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2655 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2655; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/502; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26551 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26551; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26555 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26555; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26559 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26559; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26564 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26564; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26565 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26565; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Posen-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26570 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26570; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Danz-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26574 a base:work; + base:work\#DateEnd_Fuzzy "between 1857 and 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1857 and 1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26574; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Hall-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26579 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26579; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2658 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2658; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/502; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26581 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1861 and 1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26581; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26582 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1861 and 1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26582; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26584 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1863"; + base:work\#DateEnd_Max "1863-12-21"^^xsd:date; + base:work\#DateEnd_Min "1863-09-22"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall 1863"; + base:work\#DateStart_Max "1863-12-21"^^xsd:date; + base:work\#DateStart_Min "1863-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26584; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26589 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1863"; + base:work\#DateEnd_Max "1863-12-21"^^xsd:date; + base:work\#DateEnd_Min "1863-09-22"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall 1863"; + base:work\#DateStart_Max "1863-12-21"^^xsd:date; + base:work\#DateStart_Min "1863-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26589; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26594 a base:work; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Max "1865-01-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26594; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26599 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26599; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Cans-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/266 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 266; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26604 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26604; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Hertf-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26609 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26609; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/2661 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2661; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDOrganisation base:organisation\/502; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26614 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26614; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26617 a base:work; + base:work\#DateEnd_Fuzzy "between 1870 and 1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1870 and 1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26617; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ddorf-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26619 a base:work; + base:work\#DateEnd_Fuzzy "between 1870 and 1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1870 and 1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26619; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26624 a base:work; + base:work\#DateEnd_Fuzzy "between May and July 1863"; + base:work\#DateEnd_Max "1863-07-31"^^xsd:date; + base:work\#DateEnd_Min "1863-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between May and July 1863"; + base:work\#DateStart_Max "1863-07-31"^^xsd:date; + base:work\#DateStart_Min "1863-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26624; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Hall-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26629 a base:work; + base:work\#DateEnd_Fuzzy "May 1873"; + base:work\#DateEnd_Max "1873-05-31"^^xsd:date; + base:work\#DateEnd_Min "1873-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1873"; + base:work\#DateStart_Max "1873-05-31"^^xsd:date; + base:work\#DateStart_Min "1873-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26629; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26634 a base:work; + base:work\#DateEnd_Max "1883-07-23"^^xsd:date; + base:work\#DateEnd_Min "1883-07-23"^^xsd:date; + base:work\#DateStart_Max "1883-07-23"^^xsd:date; + base:work\#DateStart_Min "1883-07-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26634; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Last public appearance"; + base:work\#ref-IDLocation base:location\/UK-Malv-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/26639 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1860"; + base:work\#DateEnd_Max "1860-09-21"^^xsd:date; + base:work\#DateEnd_Min "1860-06-22"^^xsd:date; + base:work\#DateStart_Max "1857-08-15"^^xsd:date; + base:work\#DateStart_Min "1857-08-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26639; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2664 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2664; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/RU-Berdi-00; + base:work\#ref-IDOrganisation base:organisation\/502; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26644 a base:work; + base:work\#DateEnd_Fuzzy "The season of 1860/1861"; + base:work\#DateEnd_Max "1861-08-31"^^xsd:date; + base:work\#DateEnd_Min "1861-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "The season of 1860/1861"; + base:work\#DateStart_Max "1860-10-31"^^xsd:date; + base:work\#DateStart_Min "1860-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26644; + base:work\#Profession base:Profession-Actor; + base:work\#comment "The Season of 1860/1861"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2726; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26649 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1861"; + base:work\#DateStart_Max "1861-10-31"^^xsd:date; + base:work\#DateStart_Min "1861-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26649; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26654 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1861 and 1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26654; + base:work\#Profession base:Profession-Actor; + base:work\#comment "With Edwin Forrest"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26659 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 26659; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "As an Actor from 1870 until 1875"; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/176; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26664 a base:work; + base:work\#DateEnd_Max "1874-05-30"^^xsd:date; + base:work\#DateEnd_Min "1874-05-30"^^xsd:date; + base:work\#DateStart_Max "1874-05-04"^^xsd:date; + base:work\#DateStart_Min "1874-05-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26664; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26669 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1874"; + base:work\#DateEnd_Max "1874-12-21"^^xsd:date; + base:work\#DateEnd_Min "1874-09-22"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall 1874"; + base:work\#DateStart_Max "1874-12-21"^^xsd:date; + base:work\#DateStart_Min "1874-09-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26669; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2667 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2667; + base:work\#comment "Delegate to the World Zionist Congress"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/26674 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1875"; + base:work\#DateEnd_Max "1875-09-21"^^xsd:date; + base:work\#DateEnd_Min "1875-06-22"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26674; + base:work\#Profession base:Profession-Actor; + base:work\#comment "He toured San Francisco und remained there"; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/176; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26679 a base:work; + base:work\#DateEnd_Fuzzy "January 1877"; + base:work\#DateEnd_Max "1877-01-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1877"; + base:work\#DateStart_Max "1877-01-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26679; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26684 a base:work; + base:work\#DateEnd_Fuzzy "February 1876"; + base:work\#DateEnd_Max "1876-02-29"^^xsd:date; + base:work\#DateEnd_Min "1876-02-09"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1876"; + base:work\#DateStart_Max "1876-02-09"^^xsd:date; + base:work\#DateStart_Min "1876-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26684; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26689 a base:work; + base:work\#DateEnd_Max "1875-12-12"^^xsd:date; + base:work\#DateEnd_Min "1875-12-12"^^xsd:date; + base:work\#DateStart_Max "1875-12-12"^^xsd:date; + base:work\#DateStart_Min "1875-12-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26689; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26694 a base:work; + base:work\#DateEnd_Max "1881-05-21"^^xsd:date; + base:work\#DateEnd_Min "1881-05-21"^^xsd:date; + base:work\#DateStart_Max "1881-04-18"^^xsd:date; + base:work\#DateStart_Min "1881-04-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/425; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26699 a base:work; + base:work\#DateEnd_Fuzzy "March 1880"; + base:work\#DateEnd_Max "1880-03-31"^^xsd:date; + base:work\#DateEnd_Min "1880-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1880"; + base:work\#DateStart_Max "1880-03-31"^^xsd:date; + base:work\#DateStart_Min "1880-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26699; + base:work\#Profession base:Profession-Actor; + base:work\#comment "benefit"; + base:work\#ref-IDLocation base:location\/IE-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/267 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 267; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2670 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2670; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/KamAvr-00 . + +base:work\/26704 a base:work; + base:work\#DateEnd_Max "1884-09-29"^^xsd:date; + base:work\#DateEnd_Min "1884-09-29"^^xsd:date; + base:work\#DateStart_Max "1884-09-29"^^xsd:date; + base:work\#DateStart_Min "1884-09-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26704; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/260; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26709 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "November 1863"; + base:work\#DateStart_Max "1863-11-30"^^xsd:date; + base:work\#DateStart_Min "1863-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26709; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1071; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26714 a base:work; + base:work\#DateEnd_Max "1874-09-19"^^xsd:date; + base:work\#DateEnd_Min "1874-09-19"^^xsd:date; + base:work\#DateStart_Max "1874-08-10"^^xsd:date; + base:work\#DateStart_Min "1874-08-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26714; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26719 a base:work; + base:work\#DateEnd_Fuzzy "Christmas 1875"; + base:work\#DateEnd_Max "1875-12-26"^^xsd:date; + base:work\#DateEnd_Min "1875-12-24"^^xsd:date; + base:work\#DateStart_Fuzzy "Christmas 1875"; + base:work\#DateStart_Max "1875-12-26"^^xsd:date; + base:work\#DateStart_Min "1875-12-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26719; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/1996; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26720 a base:work; + base:work\#DateEnd_Fuzzy "between February and March 1876"; + base:work\#DateEnd_Max "1876-03-31"^^xsd:date; + base:work\#DateEnd_Min "1876-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between February and March 1876"; + base:work\#DateStart_Max "1876-03-31"^^xsd:date; + base:work\#DateStart_Min "1876-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26720; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26724 a base:work; + base:work\#DateEnd_Fuzzy "between March and April 1876"; + base:work\#DateEnd_Max "1876-04-02"^^xsd:date; + base:work\#DateEnd_Min "1876-03-27"^^xsd:date; + base:work\#DateStart_Max "1876-03-27"^^xsd:date; + base:work\#DateStart_Min "1876-03-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26724; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26729 a base:work; + base:work\#DateEnd_Fuzzy "February 1877"; + base:work\#DateEnd_Max "1877-02-28"^^xsd:date; + base:work\#DateEnd_Min "1877-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1877"; + base:work\#DateStart_Max "1877-02-28"^^xsd:date; + base:work\#DateStart_Min "1877-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26729; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/150; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2673 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2673; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Touring the Russian Empire. Companies organized by the Kaminskis"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/KamAvr-00 . + +base:work\/26734 a base:work; + base:work\#DateEnd_Max "1876-04-27"^^xsd:date; + base:work\#DateEnd_Min "1876-04-27"^^xsd:date; + base:work\#DateStart_Max "1876-04-02"^^xsd:date; + base:work\#DateStart_Min "1876-04-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26734; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26739 a base:work; + base:work\#DateEnd_Max "1878-01-17"^^xsd:date; + base:work\#DateEnd_Min "1878-01-17"^^xsd:date; + base:work\#DateStart_Max "1878-01-17"^^xsd:date; + base:work\#DateStart_Min "1878-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26739; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/180; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26744 a base:work; + base:work\#DateEnd_Max "1878-06-03"^^xsd:date; + base:work\#DateEnd_Min "1878-06-03"^^xsd:date; + base:work\#DateStart_Max "1878-06-03"^^xsd:date; + base:work\#DateStart_Min "1878-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26744; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26749 a base:work; + base:work\#DateEnd_Max "1878-09-05"^^xsd:date; + base:work\#DateEnd_Min "1878-09-05"^^xsd:date; + base:work\#DateStart_Max "1878-09-05"^^xsd:date; + base:work\#DateStart_Min "1878-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26749; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26754 a base:work; + base:work\#DateEnd_Fuzzy "between January and February 1878"; + base:work\#DateEnd_Max "1878-02-07"^^xsd:date; + base:work\#DateEnd_Min "1878-01-21"^^xsd:date; + base:work\#DateStart_Max "1878-01-21"^^xsd:date; + base:work\#DateStart_Min "1878-01-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26754; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/5597; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26759 a base:work; + base:work\#DateEnd_Fuzzy "between February and March 1878"; + base:work\#DateEnd_Max "1878-03-13"^^xsd:date; + base:work\#DateEnd_Min "1878-02-07"^^xsd:date; + base:work\#DateStart_Max "1878-02-07"^^xsd:date; + base:work\#DateStart_Min "1878-02-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26759; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2676 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2676; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour through the Russian Empire"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/503; + base:work\#ref-IDPerson base:person\/KamAvr-00 . + +base:work\/26760 a base:work; + base:work\#DateEnd_Fuzzy "for three weeks"; + base:work\#DateEnd_Max "1878-05-18"^^xsd:date; + base:work\#DateEnd_Min "1878-05-12"^^xsd:date; + base:work\#DateStart_Max "1878-04-22"^^xsd:date; + base:work\#DateStart_Min "1878-04-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26760; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26764 a base:work; + base:work\#DateEnd_Fuzzy "for one week"; + base:work\#DateEnd_Max "1878-03-23"^^xsd:date; + base:work\#DateEnd_Min "1878-03-20"^^xsd:date; + base:work\#DateStart_Max "1878-03-13"^^xsd:date; + base:work\#DateStart_Min "1878-03-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26764; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26769 a base:work; + base:work\#DateEnd_Max "1878-05-24"^^xsd:date; + base:work\#DateEnd_Min "1878-05-24"^^xsd:date; + base:work\#DateStart_Max "1878-05-22"^^xsd:date; + base:work\#DateStart_Min "1878-05-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26769; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26774 a base:work; + base:work\#DateEnd_Fuzzy "between December 1878 and January 1879"; + base:work\#DateEnd_Max "1879-01-31"^^xsd:date; + base:work\#DateEnd_Min "1878-12-16"^^xsd:date; + base:work\#DateStart_Max "1878-12-16"^^xsd:date; + base:work\#DateStart_Min "1878-12-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26774; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26779 a base:work; + base:work\#DateEnd_Fuzzy "between February and October 1879"; + base:work\#DateEnd_Max "1879-10-31"^^xsd:date; + base:work\#DateEnd_Min "1879-02-03"^^xsd:date; + base:work\#DateStart_Max "1879-02-03"^^xsd:date; + base:work\#DateStart_Min "1879-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26784 a base:work; + base:work\#DateEnd_Fuzzy "befor summer 1879"; + base:work\#DateEnd_Max "1879-09-21"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "befor summer 1879"; + base:work\#DateStart_Max "1879-09-21"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26784; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26789 a base:work; + base:work\#DateEnd_Fuzzy "November 1879"; + base:work\#DateEnd_Max "1879-11-30"^^xsd:date; + base:work\#DateEnd_Min "1879-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1879"; + base:work\#DateStart_Max "1879-11-30"^^xsd:date; + base:work\#DateStart_Min "1879-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26789; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2679 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2679; + base:work\#Profession base:Profession-Manager; + base:work\#comment "Several successful tours, managed by her husband"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/KamAvr-00 . + +base:work\/26794 a base:work; + base:work\#DateEnd_Fuzzy "Chrismas 1879"; + base:work\#DateEnd_Max "1879-12-26"^^xsd:date; + base:work\#DateEnd_Min "1879-12-24"^^xsd:date; + base:work\#DateStart_Fuzzy "Chrismas 1879"; + base:work\#DateStart_Max "1879-12-26"^^xsd:date; + base:work\#DateStart_Min "1879-12-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26799 a base:work; + base:work\#DateEnd_Fuzzy "The first three months of 1880"; + base:work\#DateEnd_Max "1880-03-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "The first three months of 1880"; + base:work\#DateStart_Max "1880-03-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26799; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Texas-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/268 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 268; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/26800 a base:work; + base:work\#DateEnd_Fuzzy "The first three months of 1880"; + base:work\#DateEnd_Max "1880-03-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "The first three months of 1880"; + base:work\#DateStart_Max "1880-03-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26800; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Omah-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26804 a base:work; + base:work\#DateEnd_Max "1880-05-31"^^xsd:date; + base:work\#DateEnd_Min "1880-05-31"^^xsd:date; + base:work\#DateStart_Max "1880-05-31"^^xsd:date; + base:work\#DateStart_Min "1880-05-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26804; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/233; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26810 a base:work; + base:work\#DateEnd_Fuzzy "between September and November 1881"; + base:work\#DateEnd_Max "1881-11-15"^^xsd:date; + base:work\#DateEnd_Min "1881-09-05"^^xsd:date; + base:work\#DateStart_Max "1881-09-05"^^xsd:date; + base:work\#DateStart_Min "1881-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26810; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Utic-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26814 a base:work; + base:work\#DateEnd_Max "1880-12-11"^^xsd:date; + base:work\#DateEnd_Min "1880-12-11"^^xsd:date; + base:work\#DateStart_Max "1880-11-15"^^xsd:date; + base:work\#DateStart_Min "1880-11-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26814; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26816 a base:work; + base:work\#DateEnd_Max "1881-04-02"^^xsd:date; + base:work\#DateEnd_Min "1881-04-02"^^xsd:date; + base:work\#DateStart_Max "1880-12-11"^^xsd:date; + base:work\#DateStart_Min "1880-12-11"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26816; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26819 a base:work; + base:work\#DateEnd_Fuzzy "between September and November 1881"; + base:work\#DateEnd_Max "1881-11-15"^^xsd:date; + base:work\#DateEnd_Min "1881-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26819; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2682 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2682; + base:work\#Profession base:Profession-Other; + base:work\#comment "Seamstress as a young women"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/KamEst-00 . + +base:work\/26824 a base:work; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-12-31"^^xsd:date; + base:work\#DateStart_Max "1881-11-14"^^xsd:date; + base:work\#DateStart_Min "1881-11-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26824; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2280; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26829 a base:work; + base:work\#DateEnd_Max "1882-05-30"^^xsd:date; + base:work\#DateEnd_Min "1882-05-30"^^xsd:date; + base:work\#DateStart_Max "1882-01-01"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26829; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26834 a base:work; + base:work\#DateEnd_Max "1882-05-31"^^xsd:date; + base:work\#DateEnd_Min "1882-05-31"^^xsd:date; + base:work\#DateStart_Max "1882-05-31"^^xsd:date; + base:work\#DateStart_Min "1882-05-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26834; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2801; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26839 a base:work; + base:work\#DateEnd_Fuzzy "between September and November 1882"; + base:work\#DateEnd_Max "1882-11-13"^^xsd:date; + base:work\#DateEnd_Min "1882-09-04"^^xsd:date; + base:work\#DateStart_Max "1882-09-04"^^xsd:date; + base:work\#DateStart_Min "1882-09-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26839; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26844 a base:work; + base:work\#DateEnd_Max "1882-12-09"^^xsd:date; + base:work\#DateEnd_Min "1882-12-09"^^xsd:date; + base:work\#DateStart_Max "1883-11-13"^^xsd:date; + base:work\#DateStart_Min "1882-11-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26844; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2280; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26849 a base:work; + base:work\#DateEnd_Fuzzy "between December 1882 and April 1883"; + base:work\#DateEnd_Max "1883-04-09"^^xsd:date; + base:work\#DateEnd_Min "1882-12-09"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1882 and April 1883"; + base:work\#DateStart_Max "1883-04-09"^^xsd:date; + base:work\#DateStart_Min "1882-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26849; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2685 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2685; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Touring the Russian Empire"; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/KamEst-00 . + +base:work\/26854 a base:work; + base:work\#DateEnd_Fuzzy "between December 1882 and April 1883"; + base:work\#DateEnd_Max "1883-04-09"^^xsd:date; + base:work\#DateEnd_Min "1882-12-09"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1882 and April 1883"; + base:work\#DateStart_Max "1883-04-09"^^xsd:date; + base:work\#DateStart_Min "1882-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26854; + base:work\#Profession base:Profession-Actor; + base:work\#comment "New England"; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26859 a base:work; + base:work\#DateEnd_Fuzzy "between December 1882 and April 1883"; + base:work\#DateEnd_Max "1883-04-09"^^xsd:date; + base:work\#DateEnd_Min "1882-12-09"^^xsd:date; + base:work\#DateStart_Fuzzy "between December 1882 and April 1883"; + base:work\#DateStart_Max "1883-04-09"^^xsd:date; + base:work\#DateStart_Min "1882-12-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26859; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26864 a base:work; + base:work\#DateEnd_Max "1883-04-23"^^xsd:date; + base:work\#DateEnd_Min "1883-04-23"^^xsd:date; + base:work\#DateStart_Max "1883-04-09"^^xsd:date; + base:work\#DateStart_Min "1883-04-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26864; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26869 a base:work; + base:work\#DateEnd_Max "1883-05-04"^^xsd:date; + base:work\#DateEnd_Min "1883-05-04"^^xsd:date; + base:work\#DateStart_Max "1883-04-29"^^xsd:date; + base:work\#DateStart_Min "1883-04-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 26869; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation base:organisation\/5260; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26874 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-23"^^xsd:date; + base:work\#DateEnd_Min "1883-08-20"^^xsd:date; + base:work\#DateStart_Max "1883-08-20"^^xsd:date; + base:work\#DateStart_Min "1883-08-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26874; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26879 a base:work; + base:work\#DateEnd_Fuzzy "Christmas 1883"; + base:work\#DateEnd_Max "1883-12-26"^^xsd:date; + base:work\#DateEnd_Min "1883-12-24"^^xsd:date; + base:work\#DateStart_Fuzzy "Christmas 1883"; + base:work\#DateStart_Max "1883-12-26"^^xsd:date; + base:work\#DateStart_Min "1883-12-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26879; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/2688 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2688; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDOrganisation base:organisation\/503; + base:work\#ref-IDPerson base:person\/KamEst-00 . + +base:work\/26880 a base:work; + base:work\#DateEnd_Fuzzy "between September and November 1882"; + base:work\#DateEnd_Max "1882-11-13"^^xsd:date; + base:work\#DateEnd_Min "1882-09-04"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November 1882"; + base:work\#DateStart_Max "1882-11-13"^^xsd:date; + base:work\#DateStart_Min "1882-09-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26880; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26884 a base:work; + base:work\#DateEnd_Fuzzy "between September and November 1882"; + base:work\#DateEnd_Max "1882-11-13"^^xsd:date; + base:work\#DateEnd_Min "1882-09-04"^^xsd:date; + base:work\#DateStart_Fuzzy "between September and November 1882"; + base:work\#DateStart_Max "1882-11-13"^^xsd:date; + base:work\#DateStart_Min "1882-09-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26884; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26889 a base:work; + base:work\#DateEnd_Fuzzy "Early January 1884"; + base:work\#DateEnd_Max "1884-01-15"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Early January 1884"; + base:work\#DateStart_Max "1884-01-15"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26889; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26894 a base:work; + base:work\#DateEnd_Max "1883-03-29"^^xsd:date; + base:work\#DateEnd_Min "1883-03-29"^^xsd:date; + base:work\#DateStart_Max "1883-03-03"^^xsd:date; + base:work\#DateStart_Min "1883-03-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26894; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/178; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/26899 a base:work; + base:work\#DateEnd_Max "1883-04-05"^^xsd:date; + base:work\#DateEnd_Min "1883-04-05"^^xsd:date; + base:work\#DateStart_Max "1883-04-05"^^xsd:date; + base:work\#DateStart_Min "1883-04-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26899; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Novelty Theater"; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDPerson base:person\/MccJoh-00 . + +base:work\/269 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 269; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2691 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2691; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Several successful tours, managed by her husband"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/KamEst-00 . + +base:work\/26932 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26932; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26937 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26937; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-Ebersd-00; + base:work\#ref-IDOrganisation base:organisation\/72137; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2694 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2694; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Alongside her mother"; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/26942 a base:work; + base:work\#DateEnd_Max "1843-08-09"^^xsd:date; + base:work\#DateStart_Min "1843-08-09"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26942; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/451; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26947 a base:work; + base:work\#DateEnd_Fuzzy "August 1843"; + base:work\#DateEnd_Max "1843-08-31"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1843"; + base:work\#DateStart_Min "1843-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26947; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/543; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26952 a base:work; + base:work\#DateEnd_Max "1843-09-06"^^xsd:date; + base:work\#DateStart_Min "1843-09-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26952; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-Potsd-00; + base:work\#ref-IDOrganisation base:organisation\/72142; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26957 a base:work; + base:work\#DateEnd_Fuzzy "Probably October 1843"; + base:work\#DateEnd_Max "1843-10-31"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably October 1843"; + base:work\#DateStart_Min "1843-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26957; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26962 a base:work; + base:work\#DateEnd_Max "1844-03-30"^^xsd:date; + base:work\#DateStart_Min "1844-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26962; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/72147; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26967 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26967; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/459; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2697 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2697; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Kaminska organized a succession of dramatic companies, Translator"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/26972 a base:work; + base:work\#DateEnd_Fuzzy "August 1845"; + base:work\#DateEnd_Max "1845-08-31"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1845"; + base:work\#DateStart_Min "1845-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26972; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-Bonn-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26977 a base:work; + base:work\#DateEnd_Max "1846-10-10"^^xsd:date; + base:work\#DateStart_Min "1846-10-10"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26977; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/247; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26982 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26982; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26987 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 26987; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-Paris-01; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26992 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26992; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-Arr-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/26997 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 26997; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BE-Ghe-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/579; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/270 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 270; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2700 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2700; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/506; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27002 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27002; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27007 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27007; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BE-Antw-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27012 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27012; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-Aach-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27017 a base:work; + base:work\#DateEnd_Fuzzy "December 1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1851"; + base:work\#DateStart_Max "1851-08-31"^^xsd:date; + base:work\#DateStart_Min "1851-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27017; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-Bord-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27022 a base:work; + base:work\#DateEnd_Fuzzy "January 1852"; + base:work\#DateEnd_Max "1852-01-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Max "1851-12-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27022; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/147; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27027 a base:work; + base:work\#DateEnd_Fuzzy "May 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1852-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1852"; + base:work\#DateStart_Max "1852-01-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27027; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "East Coast Tour with ensemble"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2703 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2703; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Lod-00; + base:work\#ref-IDOrganisation base:organisation\/505; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27032 a base:work; + base:work\#DateEnd_Fuzzy "May 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1852-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1852"; + base:work\#DateStart_Max "1852-01-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27032; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "East Coast Tour with ensemble"; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27037 a base:work; + base:work\#DateEnd_Fuzzy "May 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1852-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1852"; + base:work\#DateStart_Max "1852-01-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27037; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "East Coast Tour with ensemble"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27042 a base:work; + base:work\#DateEnd_Fuzzy "May 1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1852-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1852"; + base:work\#DateStart_Max "1852-01-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27042; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "East Coast Tour with ensemble"; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27047 a base:work; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-05-01"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27047; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "With ensemble"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/147; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27052 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27052; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27057 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27057; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2706 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2706; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDOrganisation base:organisation\/505; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27062 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27062; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27067 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27067; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/238; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27072 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27072; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/UAS-Charls-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27077 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27077; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-SouthCarolina; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27082 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27082; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Georgia; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27087 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27087; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Alabama-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2709 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2709; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/505; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27092 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27092; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27097 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27097; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Miss; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/271 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 271; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/27102 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27102; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27107 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1852"; + base:work\#DateEnd_Max "1852-03-20"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1852"; + base:work\#DateStart_Min "1852-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27107; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27112 a base:work; + base:work\#DateEnd_Max "1853-06-16"^^xsd:date; + base:work\#DateStart_Min "1853-05-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27112; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/259; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27117 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27117; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2712 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2712; + base:work\#comment "Western Europe"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDOrganisation base:organisation\/508; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27122 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27122; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Marysv-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27127 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27127; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-GrVall-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27132 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27132; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NevCity-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27137 a base:work; + base:work\#DateEnd_Fuzzy "Probably September 1855"; + base:work\#DateEnd_Max "1855-09-30"^^xsd:date; + base:work\#DateEnd_Min "1855-09-01"^^xsd:date; + base:work\#DateStart_Max "1855-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27137; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Sid-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27142 a base:work; + base:work\#DateEnd_Fuzzy "November 1855"; + base:work\#DateEnd_Max "1855-11-30"^^xsd:date; + base:work\#DateEnd_Min "1855-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1855"; + base:work\#DateStart_Max "1855-09-30"^^xsd:date; + base:work\#DateStart_Min "1855-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27142; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27147 a base:work; + base:work\#DateEnd_Fuzzy "November 1855"; + base:work\#DateEnd_Max "1855-11-30"^^xsd:date; + base:work\#DateEnd_Min "1855-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably September 1855"; + base:work\#DateStart_Max "1855-09-30"^^xsd:date; + base:work\#DateStart_Min "1855-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27147; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Geel-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2715 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2715; + base:work\#ref-IDLocation base:location\/ISR-00; + base:work\#ref-IDOrganisation base:organisation\/508; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27152 a base:work; + base:work\#DateEnd_Fuzzy "December 1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1855"; + base:work\#DateStart_Max "1855-11-30"^^xsd:date; + base:work\#DateStart_Min "1855-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27152; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Adel-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27157 a base:work; + base:work\#DateEnd_Fuzzy "February 1856"; + base:work\#DateEnd_Max "1856-02-29"^^xsd:date; + base:work\#DateEnd_Min "1856-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1856"; + base:work\#DateStart_Max "1856-01-31"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27157; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Sid-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27162 a base:work; + base:work\#DateEnd_Max "1856-02-16"^^xsd:date; + base:work\#DateStart_Max "1856-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27162; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Bal-00; + base:work\#ref-IDOrganisation base:organisation\/72152; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27167 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27167; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27172 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27172; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Bendi-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27177 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27177; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/AUS-Castle-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2718 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2718; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDOrganisation base:organisation\/508; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27182 a base:work; + base:work\#DateEnd_Fuzzy "August 1856"; + base:work\#DateEnd_Max "1856-08-31"^^xsd:date; + base:work\#DateEnd_Min "1856-08-01"^^xsd:date; + base:work\#DateStart_Max "1856-08-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27182; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/259; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27187 a base:work; + base:work\#DateEnd_Fuzzy "Oktober 1856"; + base:work\#DateEnd_Max "1856-10-31"^^xsd:date; + base:work\#DateEnd_Min "1856-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1856"; + base:work\#DateStart_Max "1856-09-30"^^xsd:date; + base:work\#DateStart_Min "1856-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27187; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27192 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27192; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27197 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27197; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/272 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 272; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/27202 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27202; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27207 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27207; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2721 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2721; + base:work\#ref-IDLocation base:location\/NorthAmerica; + base:work\#ref-IDOrganisation base:organisation\/508; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27212 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27212; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27217 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27217; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27227 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27227; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27232 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27232; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27237 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27237; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2724 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2724; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDOrganisation base:organisation\/508; + base:work\#ref-IDPerson base:person\/KamIda-00 . + +base:work\/27242 a base:work; + base:work\#DateEnd_Fuzzy "May 1857"; + base:work\#DateEnd_Max "1857-05-31"^^xsd:date; + base:work\#DateEnd_Min "1857-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27242; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27247 a base:work; + base:work\#DateEnd_Fuzzy "Probably 29.7.1857"; + base:work\#DateEnd_Max "1857-07-29"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably 29.7.1857"; + base:work\#DateStart_Min "1857-07-29"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27247; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/CA-Ham-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27252 a base:work; + base:work\#DateEnd_Fuzzy "Probably 1857 31.07.1857"; + base:work\#DateEnd_Max "1857-07-31"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably 1857 31.07.1857"; + base:work\#DateStart_Min "1857-07-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27252; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27257 a base:work; + base:work\#DateEnd_Fuzzy "August 1857"; + base:work\#DateEnd_Max "1857-08-31"^^xsd:date; + base:work\#DateEnd_Min "1857-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27257; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27262 a base:work; + base:work\#DateEnd_Fuzzy "August 1857"; + base:work\#DateEnd_Max "1857-08-31"^^xsd:date; + base:work\#DateEnd_Min "1857-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27262; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NewEngl-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27267 a base:work; + base:work\#DateEnd_Fuzzy "August 1857"; + base:work\#DateEnd_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27267; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2727 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2727; + base:work\#ref-IDOrganisation base:organisation\/503; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27272 a base:work; + base:work\#DateEnd_Fuzzy "December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27272; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27277 a base:work; + base:work\#DateEnd_Fuzzy "December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27277; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27282 a base:work; + base:work\#DateEnd_Fuzzy "December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27282; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27287 a base:work; + base:work\#DateEnd_Fuzzy "December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1857"; + base:work\#DateStart_Max "1857-08-31"^^xsd:date; + base:work\#DateStart_Min "1857-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27287; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27292 a base:work; + base:work\#DateEnd_Fuzzy "Probably December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably December 1857"; + base:work\#DateStart_Min "1857-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27292; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/72157; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27297 a base:work; + base:work\#DateEnd_Fuzzy "Probably 1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably 1858"; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27297; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/577; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/273 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 273; + base:work\#ref-IDLocation base:location\/GER-Altenb-00; + base:work\#ref-IDOrganisation base:organisation\/184; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2730 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2730; + base:work\#comment "In Russian Theater"; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27302 a base:work; + base:work\#DateEnd_Fuzzy "November 1858"; + base:work\#DateEnd_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27302; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/IE-Dubl-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27307 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27307; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/IE-Cork-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27312 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27312; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/IE-Lime-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27317 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27317; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27322 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27322; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27327 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27327; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/UK-Sheff-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2733 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2733; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/515; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27332 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27332; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/EN-Nottingh-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27337 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27337; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/EN-Leic-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27342 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27342; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/EN-Wolver-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27347 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27347; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/EN-Worce-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27352 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27352; + base:work\#Profession base:Profession-Other; + base:work\#comment "Tour"; + base:work\#ref-IDLocation base:location\/EN-York-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27357 a base:work; + base:work\#DateEnd_Fuzzy "Till 4.10.1859"; + base:work\#DateEnd_Max "1859-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1858"; + base:work\#DateStart_Max "1858-11-30"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27357; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/72162; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/2736 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2736; + base:work\#Profession base:Profession-Director; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/507; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27362 a base:work; + base:work\#DateEnd_Max "1859-12-15"^^xsd:date; + base:work\#DateStart_Min "1859-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27362; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27367 a base:work; + base:work\#DateEnd_Fuzzy "April 1860"; + base:work\#DateEnd_Max "1860-04-30"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1859"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27367; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-EastCoast; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27372 a base:work; + base:work\#DateEnd_Fuzzy "April 1860"; + base:work\#DateEnd_Max "1860-04-30"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1859"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27372; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-Midwestern; + base:work\#ref-IDPerson base:person\/MonLol-00 . + +base:work\/27374 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateStart_Fuzzy "1856"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27374; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FaiBoo-00 . + +base:work\/27379 a base:work; + base:work\#DateEnd_Fuzzy "May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1891-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1891"; + base:work\#DateStart_Max "1891-04-30"^^xsd:date; + base:work\#DateStart_Min "1891-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27379; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/1116; + base:work\#ref-IDPerson base:person\/MilGeo-00 . + +base:work\/27384 a base:work; + base:work\#DateEnd_Fuzzy "1817"; + base:work\#DateEnd_Max "1817-12-31"^^xsd:date; + base:work\#DateEnd_Min "1817-03-08"^^xsd:date; + base:work\#DateStart_Max "1817-02-12"^^xsd:date; + base:work\#DateStart_Min "1817-02-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27384; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1191; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27389 a base:work; + base:work\#DateEnd_Fuzzy "between 1817 and 13. Jan. 1821"; + base:work\#DateEnd_Max "1821-01-13"^^xsd:date; + base:work\#DateEnd_Min "1817-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1817 and 13. Jan. 1821"; + base:work\#DateStart_Max "1821-01-13"^^xsd:date; + base:work\#DateStart_Min "1817-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27389; + base:work\#Profession base:Profession-Actor; + base:work\#comment "was in the Theatre Royal Drury Lane London"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/2739 a base:work; + base:work\#DateEnd_Fuzzy "1938"; + base:work\#DateEnd_Max "1938-12-31"^^xsd:date; + base:work\#DateEnd_Min "1938-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2739; + base:work\#comment "Collaborations with companies in Poland (e.g. Vilner Trupe) and Yiddish companies abroad."; + base:work\#ref-IDOrganisation base:organisation\/510; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27394 a base:work; + base:work\#DateEnd_Fuzzy "1813"; + base:work\#DateEnd_Max "1813-12-31"^^xsd:date; + base:work\#DateEnd_Min "1813-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1813"; + base:work\#DateStart_Max "1813-12-31"^^xsd:date; + base:work\#DateStart_Min "1813-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27394; + base:work\#Profession base:Profession-Actor; + base:work\#comment "as an amateur in a wretched little theatre in Pancras Street, Tottenham Court Road."; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27399 a base:work; + base:work\#DateEnd_Max "1813-12-13"^^xsd:date; + base:work\#DateEnd_Min "1813-12-13"^^xsd:date; + base:work\#DateStart_Max "1813-12-13"^^xsd:date; + base:work\#DateStart_Min "1813-12-13"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27399; + base:work\#Profession base:Profession-Actor; + base:work\#comment "under the management of Mr. Penley"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/274 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 274; + base:work\#ref-IDLocation base:location\/GER-Bernb-00; + base:work\#ref-IDOrganisation base:organisation\/185; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/27404 a base:work; + base:work\#DateEnd_Fuzzy "between 1813 and 1814"; + base:work\#DateEnd_Max "1814-12-31"^^xsd:date; + base:work\#DateEnd_Min "1813-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1813 and 1814"; + base:work\#DateStart_Max "1814-12-31"^^xsd:date; + base:work\#DateStart_Min "1813-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27404; + base:work\#Profession base:Profession-Actor; + base:work\#comment "was in the theatre in Deptford"; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27409 a base:work; + base:work\#DateEnd_Fuzzy "1814"; + base:work\#DateEnd_Max "1814-12-31"^^xsd:date; + base:work\#DateEnd_Min "1814-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1814"; + base:work\#DateStart_Max "1814-12-31"^^xsd:date; + base:work\#DateStart_Min "1814-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27409; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BE-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27414 a base:work; + base:work\#DateEnd_Fuzzy "1814"; + base:work\#DateEnd_Max "1814-12-31"^^xsd:date; + base:work\#DateEnd_Min "1814-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1814"; + base:work\#DateStart_Max "1814-12-31"^^xsd:date; + base:work\#DateStart_Min "1814-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NL-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27419 a base:work; + base:work\#DateEnd_Fuzzy "summer 1815"; + base:work\#DateEnd_Max "1815-09-22"^^xsd:date; + base:work\#DateEnd_Min "1815-06-22"^^xsd:date; + base:work\#DateStart_Fuzzy "summer 1815"; + base:work\#DateStart_Max "1815-09-22"^^xsd:date; + base:work\#DateStart_Min "1815-06-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27419; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Worthing"; + base:work\#ref-IDLocation base:location\/EN-Worth-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/2742 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2742; + base:work\#comment "Reestablished Varshever Yiddisher Kunst-teater"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDOrganisation base:organisation\/507; + base:work\#ref-IDPerson base:person\/TurZyg-00 . + +base:work\/27424 a base:work; + base:work\#DateEnd_Fuzzy "until season 1815/16"; + base:work\#DateEnd_Max "1816-09-30"^^xsd:date; + base:work\#DateEnd_Min "1816-01-01"^^xsd:date; + base:work\#DateStart_Max "1815-10-18"^^xsd:date; + base:work\#DateStart_Min "1815-10-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27424; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27429 a base:work; + base:work\#DateEnd_Fuzzy "between 1816 and 1817"; + base:work\#DateEnd_Max "1817-12-31"^^xsd:date; + base:work\#DateEnd_Min "1816-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1816"; + base:work\#DateStart_Max "1816-12-31"^^xsd:date; + base:work\#DateStart_Min "1816-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27429; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Worthing"; + base:work\#ref-IDLocation base:location\/EN-Worth-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27434 a base:work; + base:work\#DateEnd_Fuzzy "1837"; + base:work\#DateEnd_Max "1837-12-31"^^xsd:date; + base:work\#DateEnd_Min "1837-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1836"; + base:work\#DateStart_Max "1836-12-31"^^xsd:date; + base:work\#DateStart_Min "1836-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27434; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27439 a base:work; + base:work\#DateStart_Fuzzy "1831"; + base:work\#DateStart_Max "1831-12-31"^^xsd:date; + base:work\#DateStart_Min "1831-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27439; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/72167; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27444 a base:work; + base:work\#DateEnd_Max "1852-11-19"^^xsd:date; + base:work\#DateEnd_Min "1852-11-19"^^xsd:date; + base:work\#DateStart_Max "1852-11-19"^^xsd:date; + base:work\#DateStart_Min "1852-11-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27444; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/737; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/2745 a base:work; + base:work\#Employment "Pupil, in theater training"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2745; + base:work\#ref-IDLocation base:location\/CZ-Mora-00; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27454 a base:work; + base:work\#DateEnd_Max "1821-07-06"^^xsd:date; + base:work\#DateEnd_Min "1821-07-06"^^xsd:date; + base:work\#DateStart_Max "1821-07-06"^^xsd:date; + base:work\#DateStart_Min "1821-07-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27454; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Richm-01; + base:work\#ref-IDOrganisation base:organisation\/4956; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27459 a base:work; + base:work\#DateEnd_Max "1821-10-05"^^xsd:date; + base:work\#DateEnd_Min "1821-10-05"^^xsd:date; + base:work\#DateStart_Max "1821-10-05"^^xsd:date; + base:work\#DateStart_Min "1821-10-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27459; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27464 a base:work; + base:work\#DateEnd_Fuzzy "1823"; + base:work\#DateEnd_Max "1823-12-31"^^xsd:date; + base:work\#DateEnd_Min "1823-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1823"; + base:work\#DateStart_Max "1823-12-31"^^xsd:date; + base:work\#DateStart_Min "1823-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27464; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27469 a base:work; + base:work\#DateEnd_Fuzzy "1825"; + base:work\#DateEnd_Max "1825-12-31"^^xsd:date; + base:work\#DateEnd_Min "1825-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1825"; + base:work\#DateStart_Max "1825-12-31"^^xsd:date; + base:work\#DateStart_Min "1825-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27469; + base:work\#Profession base:Profession-Actor; + base:work\#comment "at Drury Lane"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27474 a base:work; + base:work\#DateEnd_Fuzzy "1826"; + base:work\#DateEnd_Max "1826-12-31"^^xsd:date; + base:work\#DateEnd_Min "1826-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1826"; + base:work\#DateStart_Max "1826-12-31"^^xsd:date; + base:work\#DateStart_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27474; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NL-Rott-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/27479 a base:work; + base:work\#DateEnd_Fuzzy "1826"; + base:work\#DateEnd_Max "1826-12-31"^^xsd:date; + base:work\#DateEnd_Min "1826-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1826"; + base:work\#DateStart_Max "1826-12-31"^^xsd:date; + base:work\#DateStart_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27479; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/Boojun-00 . + +base:work\/2748 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2748; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Amateur Yiddish theater"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27484 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27484; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ES-Cerv-00; + base:work\#ref-IDOrganisation base:organisation\/72259; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27489 a base:work; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Min "1918-08-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 27489; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/72264; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27494 a base:work; + base:work\#DateStart_Max "1919-07-01"^^xsd:date; + base:work\#DateStart_Min "1919-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27494; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72269; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27495 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27495; + base:work\#Profession base:Profession-Other; + base:work\#comment "Playwright"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2940; + base:work\#ref-IDOrganisation2 base:organisation\/4848; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27499 a base:work; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27499; + base:work\#Profession base:Profession-Other; + base:work\#comment "Playwright"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2940; + base:work\#ref-IDOrganisation2 base:organisation\/4848; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/275 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 275; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/27504 a base:work; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-12-31"^^xsd:date; + base:work\#DateStart_Max "1923-09-01"^^xsd:date; + base:work\#DateStart_Min "1923-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27504; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72274; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27505 a base:work; + base:work\#DateStart_Max "1923-09-01"^^xsd:date; + base:work\#DateStart_Min "1923-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27505; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72279; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27509 a base:work; + base:work\#DateStart_Max "1923-09-01"^^xsd:date; + base:work\#DateStart_Min "1923-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27509; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72284; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/2751 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2751; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/513; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27514 a base:work; + base:work\#DateStart_Fuzzy "First half of 1931"; + base:work\#DateStart_Max "1931-06-30"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27514; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72289; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27519 a base:work; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27519; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/72294; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27524 a base:work; + base:work\#DateEnd_Fuzzy "January of 1939"; + base:work\#DateEnd_Max "1939-01-31"^^xsd:date; + base:work\#DateEnd_Min "1939-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27524; + base:work\#Profession base:Profession-Other; + base:work\#comment """From +May 1935 till February 1936, he was imprisoned in El Puerto de Santamaría. He +was expelled from PSUC in 1949. He was imprisoned in 1957 and died in Burgos penalty."""; + base:work\#ref-IDLocation base:location\/ES-Catal-00; + base:work\#ref-IDOrganisation base:organisation\/72299; + base:work\#ref-IDPerson base:person\/CamJua-00 . + +base:work\/27529 a base:work; + base:work\#DateStart_Max "1898-02-24"^^xsd:date; + base:work\#DateStart_Min "1898-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27529; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/753; + base:work\#ref-IDOrganisation2 base:organisation\/72189; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/27534 a base:work; + base:work\#DateStart_Max "1898-02-24"^^xsd:date; + base:work\#DateStart_Min "1898-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27534; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-Lapl-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDOrganisation2 base:organisation\/72189; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/27539 a base:work; + base:work\#DateStart_Max "1898-02-24"^^xsd:date; + base:work\#DateStart_Min "1898-02-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27539; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/3330; + base:work\#ref-IDOrganisation2 base:organisation\/72189; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/2754 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2754; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Under the director Dovid Herman"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/514; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27544 a base:work; + base:work\#DateStart_Max "1907-06-03"^^xsd:date; + base:work\#DateStart_Min "1906-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27544; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/27549 a base:work; + base:work\#DateStart_Max "1907-12-30"^^xsd:date; + base:work\#DateStart_Min "1907-12-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27549; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/27554 a base:work; + base:work\#DateStart_Max "1908-06-15"^^xsd:date; + base:work\#DateStart_Min "1908-06-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27554; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDPerson base:person\/FonAgu-00 . + +base:work\/27559 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27559; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4176; + base:work\#ref-IDPerson base:person\/FreEnr-00 . + +base:work\/27564 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27564; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation2 base:organisation\/72194; + base:work\#ref-IDPerson base:person\/FreEnr-00 . + +base:work\/27569 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27569; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/2757 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2757; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment "Tour through German-occupied Europe"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDOrganisation base:organisation\/503; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27570 a base:work; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27570; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27574 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27574; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3330; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27575 a base:work; + base:work\#DateEnd_Max "1896-11-11"^^xsd:date; + base:work\#DateEnd_Min "1896-11-11"^^xsd:date; + base:work\#DateStart_Max "1896-02-27"^^xsd:date; + base:work\#DateStart_Min "1896-02-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27575; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27580 a base:work; + base:work\#DateStart_Max "1897-03-12"^^xsd:date; + base:work\#DateStart_Min "1897-03-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27580; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27581 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27581; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72209; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27586 a base:work; + base:work\#DateStart_Max "1897-10-18"^^xsd:date; + base:work\#DateStart_Min "1897-10-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27586; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2925; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27589 a base:work; + base:work\#DateEnd_Max "1897-11-07"^^xsd:date; + base:work\#DateEnd_Min "1897-11-07"^^xsd:date; + base:work\#DateStart_Max "1897-11-05"^^xsd:date; + base:work\#DateStart_Min "1897-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27589; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27594 a base:work; + base:work\#DateEnd_Max "1897-11-28"^^xsd:date; + base:work\#DateEnd_Min "1897-11-28"^^xsd:date; + base:work\#DateStart_Max "1897-11-20"^^xsd:date; + base:work\#DateStart_Min "1897-11-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27594; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27597 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27597; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-Mendo-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27599 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27599; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CL-Santiago-00; + base:work\#ref-IDOrganisation base:organisation\/3705; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/276 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 276; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDPerson base:person\/MamEmm-00 . + +base:work\/2760 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2760; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "Dos Baveglekhe Dramatishe Teater and Di Yunge Bine"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/515; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27600 a base:work; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27600; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PE-Lima-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27604 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-06"^^xsd:date; + base:work\#DateStart_Max "1898-01-05"^^xsd:date; + base:work\#DateStart_Min "1898-01-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27604; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/4105; + base:work\#ref-IDOrganisation2 base:organisation\/72214; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27605 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27605; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CL-Santiago-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27609 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27609; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27614 a base:work; + base:work\#DateEnd_Fuzzy "January 1903"; + base:work\#DateEnd_Max "1903-01-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-31"^^xsd:date; + base:work\#DateStart_Max "1902-09-01"^^xsd:date; + base:work\#DateStart_Min "1902-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27614; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27619 a base:work; + base:work\#DateStart_Max "1904-10-20"^^xsd:date; + base:work\#DateStart_Min "1904-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27619; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27624 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-01-01"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27624; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3365; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27629 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27629; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/2763 a base:work; + base:work\#Employment "Artistic director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2763; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/512; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27634 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27634; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Flor de durazno (film)"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3085; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27639 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#DateStart_Max "1918-08-05"^^xsd:date; + base:work\#DateStart_Min "1918-08-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27639; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72309; + base:work\#ref-IDOrganisation2 base:organisation\/4852; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27644 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27644; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27649 a base:work; + base:work\#DateEnd_Fuzzy "1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1871-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27649; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/72304; + base:work\#ref-IDOrganisation2 base:organisation\/72199; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27654 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 27654; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72204; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27656 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27656; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/2766 a base:work; + base:work\#Employment "Artistic director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2766; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/516; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27660 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27660; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4151; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27661 a base:work; + base:work\#DateStart_Max "1893-08-26"^^xsd:date; + base:work\#DateStart_Min "1893-08-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27661; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/754; + base:work\#ref-IDPerson base:person\/GalMar-00 . + +base:work\/27684 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27684; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/72177; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/27689 a base:work; + base:work\#DateEnd_Fuzzy "1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27689; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/395; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/2769 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#Employment "Artistic director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2769; + base:work\#ref-IDOrganisation base:organisation\/517; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27694 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27694; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/72182; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/27699 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1907"; + base:work\#DateStart_Max "1907-08-31"^^xsd:date; + base:work\#DateStart_Min "1907-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27699; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/491; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/277 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 277; + base:work\#Profession base:Profession-Composer; + base:work\#Profession2 base:Profession-Conductor; + base:work\#Profession3 base:Profession-Director; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/27704 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27704; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/438; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/27709 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27709; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/BodArt-00 . + +base:work\/27714 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27714; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72329; + base:work\#ref-IDPerson base:person\/GeaMig-00 . + +base:work\/27719 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27719; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3325; + base:work\#ref-IDPerson base:person\/GeaMig-00 . + +base:work\/2772 a base:work; + base:work\#DateEnd_Fuzzy "1947"; + base:work\#DateEnd_Max "1947-12-31"^^xsd:date; + base:work\#DateEnd_Min "1947-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2772; + base:work\#comment "Tour throughout Europe, visiting displaced person camps"; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/TurJon-00 . + +base:work\/27724 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27724; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDPerson base:person\/GeaMig-00 . + +base:work\/27729 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27729; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDPerson base:person\/GeaMig-00 . + +base:work\/27734 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27734; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72334; + base:work\#ref-IDPerson base:person\/GeaMig-00 . + +base:work\/27739 a base:work; + base:work\#DateEnd_Max "1943-09-01"^^xsd:date; + base:work\#DateEnd_Min "1943-09-01"^^xsd:date; + base:work\#DateStart_Max "1907-08-01"^^xsd:date; + base:work\#DateStart_Min "1907-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27739; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4876; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27744 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27744; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27749 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27749; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/950; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/2775 a base:work; + base:work\#Employment "Pupil"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2775; + base:work\#comment "Theater and film schools"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/TurMar-00 . + +base:work\/27754 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27754; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72254; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27759 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-11-30"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27759; + base:work\#Profession base:Profession-Other; + base:work\#comment "Secreatry"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2965; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27764 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27764; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72339; + base:work\#ref-IDOrganisation2 base:organisation\/72219; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27769 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27769; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72344; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27774 a base:work; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27774; + base:work\#Profession base:Profession-Other; + base:work\#comment "Member"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3135; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27779 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27779; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72339; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/2778 a base:work; + base:work\#DateEnd_Fuzzy "1939"; + base:work\#DateEnd_Max "1939-12-31"^^xsd:date; + base:work\#DateEnd_Min "1939-01-01"^^xsd:date; + base:work\#Employment "Warsaw"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2778; + base:work\#comment "Warsaw Yiddish daily"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/TurMar-00 . + +base:work\/27784 a base:work; + base:work\#DateEnd_Fuzzy "1965"; + base:work\#DateEnd_Max "1965-12-31"^^xsd:date; + base:work\#DateEnd_Min "1965-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-11-01"^^xsd:date; + base:work\#IDWork 27784; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27789 a base:work; + base:work\#DateEnd_Max "1930-09-06"^^xsd:date; + base:work\#DateEnd_Min "1930-09-06"^^xsd:date; + base:work\#DateStart_Max "1928-06-08"^^xsd:date; + base:work\#DateStart_Min "1928-06-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27789; + base:work\#Profession base:Profession-Other; + base:work\#comment "Deputy"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72224; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27794 a base:work; + base:work\#DateStart_Fuzzy "1955"; + base:work\#DateStart_Max "1955-12-31"^^xsd:date; + base:work\#DateStart_Min "1955-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27794; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72349; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27799 a base:work; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27799; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72354; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/278 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 278; + base:work\#ref-IDLocation base:location\/CZ-Olo-00; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/27804 a base:work; + base:work\#DateStart_Max "1955-12-19"^^xsd:date; + base:work\#DateStart_Min "1955-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27804; + base:work\#Profession base:Profession-Other; + base:work\#comment "President"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72229; + base:work\#ref-IDPerson base:person\/GiuRob-00 . + +base:work\/27806 a base:work; + base:work\#DateEnd_Fuzzy "1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27806; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27809 a base:work; + base:work\#DateEnd_Fuzzy "1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1937-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27809; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/2781 a base:work; + base:work\#Employment "Pupil, Worker"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2781; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDOrganisation base:organisation\/522; + base:work\#ref-IDPerson base:person\/TurYit-00 . + +base:work\/27814 a base:work; + base:work\#DateEnd_Fuzzy "1956"; + base:work\#DateEnd_Max "1956-12-31"^^xsd:date; + base:work\#DateEnd_Min "1956-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1956"; + base:work\#DateStart_Max "1956-12-31"^^xsd:date; + base:work\#DateStart_Min "1956-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27814; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27815 a base:work; + base:work\#DateEnd_Fuzzy "1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27815; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72319; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27816 a base:work; + base:work\#DateEnd_Fuzzy "1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1937-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27816; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72319; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27819 a base:work; + base:work\#DateEnd_Fuzzy "1956"; + base:work\#DateEnd_Max "1956-12-31"^^xsd:date; + base:work\#DateEnd_Min "1956-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1956"; + base:work\#DateStart_Max "1956-12-31"^^xsd:date; + base:work\#DateStart_Min "1956-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27819; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72359; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27824 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27824; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Founder; + base:work\#comment """His novels Barrio gris y Oro bajo were +both adapted into films. He wrote the script for Oro bajo (1954) and obtained +the prize Premio Cóndor de Plata. Barrio gris obtained a +golden medal from the Comisión Nacional de Cultura de Argentina."""; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27829 a base:work; + base:work\#DateStart_Fuzzy "1950"; + base:work\#DateStart_Max "1950-12-31"^^xsd:date; + base:work\#DateStart_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27829; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27834 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27834; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "Collaborator"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/636; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/27839 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 27839; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "Collaborator"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72364; + base:work\#ref-IDPerson base:person\/BasJoa-00 . + +base:work\/2784 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2784; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/523; + base:work\#ref-IDPerson base:person\/TurYit-00 . + +base:work\/27844 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27844; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27849 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27849; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27854 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27854; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72369; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27859 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27859; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Compañía de Florencio Parravicini- Pablo Podestá y Orfilia Rico"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3265; + base:work\#ref-IDOrganisation2 base:organisation\/4852; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27864 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27864; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72234; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27869 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27869; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Elenco Nacional encabezado por Casaux"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4780; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/2787 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2787; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/524; + base:work\#ref-IDPerson base:person\/TurYit-00 . + +base:work\/27874 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27874; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72239; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27879 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27879; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/72244; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27884 a base:work; + base:work\#DateEnd_Fuzzy "1944"; + base:work\#DateEnd_Max "1944-12-31"^^xsd:date; + base:work\#DateEnd_Min "1944-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1934"; + base:work\#DateStart_Max "1934-12-31"^^xsd:date; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27884; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3085; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27889 a base:work; + base:work\#DateStart_Fuzzy "1939"; + base:work\#DateStart_Max "1939-12-31"^^xsd:date; + base:work\#DateStart_Min "1939-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27889; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3085; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27894 a base:work; + base:work\#IDWork 27894; + base:work\#ref-IDPerson base:person\/BaoMig-00 . + +base:work\/27899 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27899; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72374; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/279 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 279; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/2790 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2790; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/525; + base:work\#ref-IDPerson base:person\/TurYit-00 . + +base:work\/27904 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27904; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27909 a base:work; + base:work\#DateEnd_Max "1874-10-12"^^xsd:date; + base:work\#DateEnd_Min "1874-10-12"^^xsd:date; + base:work\#DateStart_Max "1864-10-12"^^xsd:date; + base:work\#DateStart_Min "1868-10-12"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27909; + base:work\#ref-IDLocation base:location\/ARG-Tucum-00; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27914 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27914; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-Tucum-00; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27919 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27919; + base:work\#Profession base:Profession-Other; + base:work\#comment "Inspector Nacional de Educación"; + base:work\#ref-IDLocation base:location\/ARG-Tucum-00; + base:work\#ref-IDOrganisation base:organisation\/3220; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27922 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27922; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4176; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27926 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27926; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72379; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27929 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27929; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72254; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/2793 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2793; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Different Yiddish theaters"; + base:work\#ref-IDLocation base:location\/PL-00; + base:work\#ref-IDPerson base:person\/TurYit-00 . + +base:work\/27934 a base:work; + base:work\#DateEnd_Max "1929-06-27"^^xsd:date; + base:work\#DateEnd_Min "1929-06-27"^^xsd:date; + base:work\#DateStart_Max "1885-01-14"^^xsd:date; + base:work\#DateStart_Min "1885-01-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27934; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/72389; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27939 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27939; + base:work\#Profession base:Profession-Author; + base:work\#comment "\"La monja\" (play)"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27944 a base:work; + base:work\#DateStart_Max "1923-07-06"^^xsd:date; + base:work\#DateStart_Min "1923-07-06"^^xsd:date; + base:work\#IDWork 27944; + base:work\#Profession base:Profession-Author; + base:work\#comment "\"La divisa punzó\" (play)"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3335; + base:work\#ref-IDPerson base:person\/GroPau-00 . + +base:work\/27949 a base:work; + base:work\#DateEnd_Fuzzy "1957"; + base:work\#DateEnd_Max "1957-12-31"^^xsd:date; + base:work\#DateEnd_Min "1957-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1953"; + base:work\#DateStart_Max "1953-12-31"^^xsd:date; + base:work\#DateStart_Min "1953-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27949; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/3290; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27953 a base:work; + base:work\#DateStart_Fuzzy "1931"; + base:work\#DateStart_Max "1931-01-01"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27953; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72419; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27958 a base:work; + base:work\#DateStart_Max "1937-02-22"^^xsd:date; + base:work\#DateStart_Min "1937-02-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27958; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72424; + base:work\#ref-IDOrganisation2 base:organisation\/3290; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/2796 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2796; + base:work\#Profession base:Profession-Singer; + base:work\#comment """first appearance, +sang under his pseudonym Paolo Alberti"""; + base:work\#ref-IDLocation base:location\/IT-Vares-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/27963 a base:work; + base:work\#DateStart_Max "1937-03-01"^^xsd:date; + base:work\#DateStart_Min "1937-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27963; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72429; + base:work\#ref-IDOrganisation2 base:organisation\/3290; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27968 a base:work; + base:work\#DateEnd_Fuzzy "1957"; + base:work\#DateEnd_Max "1957-12-31"^^xsd:date; + base:work\#DateEnd_Min "1957-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-01-01"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27968; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72414; + base:work\#ref-IDOrganisation2 base:organisation\/3290; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27973 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27973; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72394; + base:work\#ref-IDOrganisation2 base:organisation\/72394; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27978 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27978; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72399; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27983 a base:work; + base:work\#DateStart_Fuzzy "1962"; + base:work\#DateStart_Max "1962-01-01"^^xsd:date; + base:work\#DateStart_Min "1962-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27983; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72404; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/27988 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 27988; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/72409; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/2799 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2799; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/27993 a base:work; + base:work\#IDWork 27993; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDPerson base:person\/SanMan-00 . + +base:work\/28 a base:work; + base:work\#DateEnd_Max "1911-04-30"^^xsd:date; + base:work\#DateEnd_Min "1911-04-30"^^xsd:date; + base:work\#DateStart_Min "2017-04-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 28; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/569; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/280 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 280; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/28003 a base:work; + base:work\#DateEnd_Fuzzy "Probably between 1910 and 1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably between 1910 and 1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28003; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/69804; + base:work\#ref-IDPerson base:person\/AdlSam-740 . + +base:work\/28008 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#IDWork 28008; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/69984; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28013 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28013; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/CL-00; + base:work\#ref-IDPerson base:person\/ArnMar-1177 . + +base:work\/28018 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 28018; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ZA-00; + base:work\#ref-IDPerson base:person\/AxeMin-1205 . + +base:work\/2802 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2802; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28023 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 28023; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BE-00; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/28028 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 28028; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CSL-00; + base:work\#ref-IDPerson base:person\/BelAdo-1246 . + +base:work\/28033 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#IDWork 28033; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/405; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28038 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1905"; + base:work\#DateStart_Max "1905-06-30"^^xsd:date; + base:work\#DateStart_Min "1905-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28038; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72439; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28043 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28043; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28048 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28048; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72454; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/2805 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2805; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28053 a base:work; + base:work\#DateEnd_Fuzzy "1930"; + base:work\#DateEnd_Max "1930-12-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1925"; + base:work\#DateStart_Max "1925-09-30"^^xsd:date; + base:work\#DateStart_Min "1925-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28053; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/384; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28058 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1925"; + base:work\#DateStart_Max "1925-09-30"^^xsd:date; + base:work\#DateStart_Min "1925-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28058; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72459; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28063 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28063; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/404; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28068 a base:work; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28068; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72464; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28073 a base:work; + base:work\#DateStart_Fuzzy "Probably 1941"; + base:work\#DateStart_Max "1941-12-31"^^xsd:date; + base:work\#DateStart_Min "1941-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28073; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "Fordham University"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/72473; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28078 a base:work; + base:work\#DateStart_Fuzzy "Probably 1941"; + base:work\#DateStart_Max "1941-12-31"^^xsd:date; + base:work\#DateStart_Min "1941-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28078; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "New York Hunter College"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/72478; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/2808 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2808; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28080 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28080; + base:work\#Profession base:Profession-Other; + base:work\#comment "Editor"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/72488; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28085 a base:work; + base:work\#DateEnd_Fuzzy "1904-1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904-1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28085; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72439; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28090 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28090; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72439; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28095 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28095; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/281 a base:work; + base:work\#DateEnd_Fuzzy "May 1888"; + base:work\#DateEnd_Max "1888-05-31"^^xsd:date; + base:work\#DateEnd_Min "1888-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 281; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/28100 a base:work; + base:work\#DateEnd_Fuzzy "1921-1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-12-31"^^xsd:date; + base:work\#DateStart_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28100; + base:work\#Profession base:Profession-Author; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72449; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28105 a base:work; + base:work\#DateEnd_Fuzzy "1924-1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28105; + base:work\#Profession base:Profession-Manager; + base:work\#comment "Director of the Theatre Department"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72469; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/2811 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2811; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28110 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28110; + base:work\#Profession base:Profession-Manager; + base:work\#comment "Director of the Theatre Department"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72187; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28115 a base:work; + base:work\#DateEnd_Fuzzy "1935"; + base:work\#DateEnd_Max "1935-12-31"^^xsd:date; + base:work\#DateEnd_Min "1935-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28115; + base:work\#Profession base:Profession-Manager; + base:work\#comment "Director of the Theatre Department"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72187; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28120 a base:work; + base:work\#DateEnd_Fuzzy "1935"; + base:work\#DateEnd_Max "1935-12-31"^^xsd:date; + base:work\#DateEnd_Min "1935-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28120; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72187; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/28125 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28125; + base:work\#Profession base:Profession-Author; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72469; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/2814 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2814; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28150 a base:work; + base:work\#DateStart_Fuzzy "Between 6th August 1889 and 5th August 1890"; + base:work\#DateStart_Max "1890-08-05"^^xsd:date; + base:work\#DateStart_Min "1889-08-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28150; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-SchwedtOd-00; + base:work\#ref-IDOrganisation base:organisation\/72483; + base:work\#ref-IDPerson base:person\/BerJul-00 . + +base:work\/2817 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2817; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28180 a base:work; + base:work\#DateStart_Fuzzy "Probably between 1897 and 1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#IDWork 28180; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/BodRob-00 . + +base:work\/28185 a base:work; + base:work\#DateStart_Fuzzy "30th March 1920"; + base:work\#DateStart_Max "1920-03-30"^^xsd:date; + base:work\#DateStart_Min "1920-03-30"^^xsd:date; + base:work\#IDWork 28185; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Author; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/72543; + base:work\#ref-IDPerson base:person\/BodRob-00 . + +base:work\/28190 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#IDWork 28190; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Author; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/73193; + base:work\#ref-IDPerson base:person\/BodRob-00 . + +base:work\/28195 a base:work; + base:work\#IDWork 28195; + base:work\#ref-IDPerson base:person\/BodRob-00 . + +base:work\/282 a base:work; + base:work\#DateEnd_Max "1907-11-24"^^xsd:date; + base:work\#DateEnd_Min "1907-11-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 282; + base:work\#Profession base:Profession-Director; + base:work\#comment "first training with the orchester 23th december 1907"; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/2820 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2820; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28200 a base:work; + base:work\#IDWork 28200; + base:work\#ref-IDPerson base:person\/BodRob-00 . + +base:work\/2823 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2823; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/2826 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 2826; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28270 a base:work; + base:work\#DateEnd_Fuzzy "Between 1909 and 1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1909 and 1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#IDWork 28270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28275 a base:work; + base:work\#DateEnd_Fuzzy "Probably before June 1905"; + base:work\#DateEnd_Max "1905-06-30"^^xsd:date; + base:work\#DateEnd_Min "1905-06-01"^^xsd:date; + base:work\#IDWork 28275; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28280 a base:work; + base:work\#DateEnd_Fuzzy "Probably before June 1905"; + base:work\#DateEnd_Max "1905-06-30"^^xsd:date; + base:work\#DateEnd_Min "1905-06-01"^^xsd:date; + base:work\#IDWork 28280; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/375; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28285 a base:work; + base:work\#DateEnd_Fuzzy "Probably before 1905"; + base:work\#IDWork 28285; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PL-Bresl-00; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/2829 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2829; + base:work\#Profession base:Profession-Singer; + base:work\#comment "together with his wife"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28290 a base:work; + base:work\#DateEnd_Fuzzy "Probably before June 1905"; + base:work\#DateEnd_Max "1905-06-30"^^xsd:date; + base:work\#DateEnd_Min "1905-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#IDWork 28290; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-Bresl-00; + base:work\#ref-IDOrganisation base:organisation\/72493; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28295 a base:work; + base:work\#DateEnd_Fuzzy "Probably before June 1905"; + base:work\#DateEnd_Max "1905-06-30"^^xsd:date; + base:work\#DateEnd_Min "1905-06-01"^^xsd:date; + base:work\#IDWork 28295; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PL-Bresl-00; + base:work\#ref-IDOrganisation base:organisation\/72498; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/283 a base:work; + base:work\#DateEnd_Max "1911-02-21"^^xsd:date; + base:work\#DateEnd_Min "1911-02-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 283; + base:work\#comment "offered managerial post, declined"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/MahGus-00 . + +base:work\/28300 a base:work; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28300; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/384; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/28305 a base:work; + base:work\#IDWork 28305; + base:work\#ref-IDPerson base:person\/BarVic-00 . + +base:work\/2832 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2832; + base:work\#Profession base:Profession-Singer; + base:work\#comment "together with his wife"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/KalPau-00 . + +base:work\/28325 a base:work; + base:work\#DateEnd_Fuzzy "Between 1915 and 1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1915 and 1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#IDWork 28325; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/72508; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28330 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#IDWork 28330; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/252; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28335 a base:work; + base:work\#DateEnd_Fuzzy "Between 1922 and 1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1922 and 1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#IDWork 28335; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28340 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#IDWork 28340; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72503; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28345 a base:work; + base:work\#DateEnd_Fuzzy "Between 1927 and 1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1927 and 1931"; + base:work\#DateStart_Max "1931-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#IDWork 28345; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/GER-Darm-00; + base:work\#ref-IDOrganisation base:organisation\/72513; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/2835 a base:work; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2835; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/528; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28350 a base:work; + base:work\#DateEnd_Fuzzy "Between 1931 and 1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1931 and 1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#IDWork 28350; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/72518; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28355 a base:work; + base:work\#DateEnd_Fuzzy "Between 1933 and 1937"; + base:work\#DateEnd_Max "1937-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1933 and 1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#IDWork 28355; + base:work\#ref-IDLocation base:location\/CH-Zur-00; + base:work\#ref-IDOrganisation base:organisation\/72523; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28360 a base:work; + base:work\#DateEnd_Fuzzy "Between 1933 and 1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1933 and 1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#IDWork 28360; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28365 a base:work; + base:work\#DateEnd_Fuzzy "Between 1936 and 1947"; + base:work\#DateEnd_Max "1947-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1936 and 1947"; + base:work\#DateStart_Max "1947-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#IDWork 28365; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/TR-00; + base:work\#ref-IDOrganisation base:organisation\/72528; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28370 a base:work; + base:work\#DateEnd_Fuzzy "Between 1947 and 1959"; + base:work\#DateEnd_Max "1959-12-31"^^xsd:date; + base:work\#DateEnd_Min "1947-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Between 1947 and 1959"; + base:work\#DateStart_Max "1959-12-31"^^xsd:date; + base:work\#DateStart_Min "1947-01-01"^^xsd:date; + base:work\#IDWork 28370; + base:work\#Profession base:Profession-Impresario; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/EN-00; + base:work\#ref-IDOrganisation base:organisation\/72533; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28375 a base:work; + base:work\#DateEnd_Fuzzy "1948"; + base:work\#DateEnd_Max "1948-12-31"^^xsd:date; + base:work\#DateEnd_Min "1948-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1948"; + base:work\#DateStart_Max "1948-12-31"^^xsd:date; + base:work\#DateStart_Min "1948-01-01"^^xsd:date; + base:work\#IDWork 28375; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/72538; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/2838 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2838; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Modena-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28380 a base:work; + base:work\#DateEnd_Fuzzy "1952"; + base:work\#DateEnd_Max "1952-12-31"^^xsd:date; + base:work\#DateEnd_Min "1952-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1952"; + base:work\#DateStart_Max "1952-12-31"^^xsd:date; + base:work\#DateStart_Min "1952-01-01"^^xsd:date; + base:work\#IDWork 28380; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/TR-Ank-00; + base:work\#ref-IDOrganisation base:organisation\/72528; + base:work\#ref-IDPerson base:person\/EbeCar-00 . + +base:work\/28385 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#IDWork 28385; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/72548; + base:work\#ref-IDPerson base:person\/AntAnd-00 . + +base:work\/28390 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#IDWork 28390; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/72553; + base:work\#ref-IDPerson base:person\/AntAnd-00 . + +base:work\/28395 a base:work; + base:work\#IDWork 28395; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/TR-Ist-00; + base:work\#ref-IDOrganisation base:organisation\/72558; + base:work\#ref-IDPerson base:person\/AntAnd-00 . + +base:work\/284 a base:work; + base:work\#DateEnd_Fuzzy "1836"; + base:work\#DateEnd_Max "1836-12-31"^^xsd:date; + base:work\#DateEnd_Min "1836-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 284; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDOrganisation base:organisation\/186; + base:work\#ref-IDPerson base:person\/LoeMar-00 . + +base:work\/28404 a base:work; + base:work\#DateEnd_Fuzzy "1914-03-21/1914-06-20"; + base:work\#DateEnd_Max "1914-06-20"^^xsd:date; + base:work\#DateEnd_Min "1914-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1914-03-21/1914-06-20"; + base:work\#DateStart_Max "1914-06-20"^^xsd:date; + base:work\#DateStart_Min "1914-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28404; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28405 a base:work; + base:work\#DateStart_Fuzzy "1918"; + base:work\#DateStart_Max "1918-12-31"^^xsd:date; + base:work\#DateStart_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28405; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/301; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2841 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2841; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Cagli-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28414 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28414; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/57570; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28415 a base:work; + base:work\#DateEnd_Fuzzy "June 1924"; + base:work\#DateEnd_Max "1924-06-30"^^xsd:date; + base:work\#DateEnd_Min "1924-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924-04-14"; + base:work\#DateStart_Max "1924-04-14"^^xsd:date; + base:work\#DateStart_Min "1924-04-14"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28415; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/136; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28420 a base:work; + base:work\#DateEnd_Fuzzy "January 1924"; + base:work\#DateEnd_Max "1924-01-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1923-11-19"; + base:work\#DateStart_Max "1923-11-19"^^xsd:date; + base:work\#DateStart_Min "1923-11-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28420; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/136; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28425 a base:work; + base:work\#DateEnd_Fuzzy "1946-12-14"; + base:work\#DateEnd_Max "1946-12-14"^^xsd:date; + base:work\#DateEnd_Min "1946-12-14"^^xsd:date; + base:work\#DateStart_Fuzzy "1946-11-18"; + base:work\#DateStart_Max "1946-11-18"^^xsd:date; + base:work\#DateStart_Min "1946-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28425; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/577; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28430 a base:work; + base:work\#DateEnd_Fuzzy "March 1921"; + base:work\#DateEnd_Max "1921-03-31"^^xsd:date; + base:work\#DateEnd_Min "1921-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920-11-17"; + base:work\#DateStart_Max "1920-11-17"^^xsd:date; + base:work\#DateStart_Min "1920-11-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73063; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28435 a base:work; + base:work\#DateEnd_Fuzzy "1922-01-07"; + base:work\#DateEnd_Max "1922-01-07"^^xsd:date; + base:work\#DateEnd_Min "1922-01-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1921-12-20"; + base:work\#DateStart_Max "1921-12-20"^^xsd:date; + base:work\#DateStart_Min "1921-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28435; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73068; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2844 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2844; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Pavia-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28440 a base:work; + base:work\#DateEnd_Fuzzy "February 1923"; + base:work\#DateEnd_Max "1923-02-28"^^xsd:date; + base:work\#DateEnd_Min "1923-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1922-12-20"; + base:work\#DateStart_Max "1922-12-20"^^xsd:date; + base:work\#DateStart_Min "1922-12-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28440; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73073; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28445 a base:work; + base:work\#DateEnd_Fuzzy "April 1924"; + base:work\#DateEnd_Max "1924-04-30"^^xsd:date; + base:work\#DateEnd_Min "1924-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924-03-17"; + base:work\#DateStart_Max "1924-03-17"^^xsd:date; + base:work\#DateStart_Min "1924-03-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28445; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73078; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28450 a base:work; + base:work\#DateEnd_Fuzzy "March 1926"; + base:work\#DateEnd_Max "1926-03-31"^^xsd:date; + base:work\#DateEnd_Min "1926-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926-01-25"; + base:work\#DateStart_Max "1926-01-25"^^xsd:date; + base:work\#DateStart_Min "1926-01-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28450; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73083; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28455 a base:work; + base:work\#DateEnd_Fuzzy "April 1926"; + base:work\#DateEnd_Max "1926-04-30"^^xsd:date; + base:work\#DateEnd_Min "1926-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926-03-23"; + base:work\#DateStart_Max "1926-03-23"^^xsd:date; + base:work\#DateStart_Min "1926-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28455; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73088; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28460 a base:work; + base:work\#DateEnd_Fuzzy "November 1927"; + base:work\#DateEnd_Max "1927-11-30"^^xsd:date; + base:work\#DateEnd_Min "1927-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1927"; + base:work\#DateStart_Max "1927-11-30"^^xsd:date; + base:work\#DateStart_Min "1927-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28460; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73093; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28465 a base:work; + base:work\#DateEnd_Fuzzy "January 1930"; + base:work\#DateEnd_Max "1930-01-31"^^xsd:date; + base:work\#DateEnd_Min "1930-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929-09-16"; + base:work\#DateStart_Max "1929-09-16"^^xsd:date; + base:work\#DateStart_Min "1929-09-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28465; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73138; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2847 a base:work; + base:work\#DateEnd_Fuzzy "1836"; + base:work\#DateEnd_Max "1836-12-31"^^xsd:date; + base:work\#DateEnd_Min "1836-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1835"; + base:work\#DateStart_Max "1835-12-31"^^xsd:date; + base:work\#DateStart_Min "1835-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2847; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Vero-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28470 a base:work; + base:work\#DateEnd_Fuzzy "February 1933"; + base:work\#DateEnd_Max "1933-02-28"^^xsd:date; + base:work\#DateEnd_Min "1933-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933-01-31"; + base:work\#DateStart_Max "1933-01-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28470; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73143; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28475 a base:work; + base:work\#DateEnd_Fuzzy "1934-09-29"; + base:work\#DateEnd_Max "1934-09-29"^^xsd:date; + base:work\#DateStart_Fuzzy "1934-09-19"; + base:work\#DateStart_Max "1934-09-19"^^xsd:date; + base:work\#DateStart_Min "1934-09-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28475; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73148; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28480 a base:work; + base:work\#DateEnd_Fuzzy "1934-10-20"; + base:work\#DateEnd_Max "1934-10-20"^^xsd:date; + base:work\#DateEnd_Min "1934-10-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1934-10-01"; + base:work\#DateStart_Max "1934-10-01"^^xsd:date; + base:work\#DateStart_Min "1934-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28480; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73153; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28485 a base:work; + base:work\#DateEnd_Fuzzy "1946-10-05"; + base:work\#DateEnd_Max "1946-10-05"^^xsd:date; + base:work\#DateEnd_Min "1946-10-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1946-09-05"; + base:work\#DateStart_Max "1946-09-05"^^xsd:date; + base:work\#DateStart_Min "1946-09-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28485; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73158; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28490 a base:work; + base:work\#DateEnd_Fuzzy "1946-10-19"; + base:work\#DateEnd_Max "1946-10-19"^^xsd:date; + base:work\#DateEnd_Min "1946-10-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1946-10-07"; + base:work\#DateStart_Max "1946-10-07"^^xsd:date; + base:work\#DateStart_Min "1946-10-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28490; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73163; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28495 a base:work; + base:work\#DateEnd_Fuzzy "1946-11-16"; + base:work\#DateEnd_Max "1946-11-16"^^xsd:date; + base:work\#DateEnd_Min "1946-11-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1946-10-21"; + base:work\#DateStart_Max "1946-10-21"^^xsd:date; + base:work\#DateStart_Min "1946-10-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28495; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73168; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/285 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 285; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/LoeMar-00 . + +base:work\/2850 a base:work; + base:work\#DateEnd_Fuzzy "1838"; + base:work\#DateEnd_Max "1838-12-01"^^xsd:date; + base:work\#DateEnd_Min "1838-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1836 tDe1838"; + base:work\#DateStart_Max "1836-05-31"^^xsd:date; + base:work\#DateStart_Min "1836-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2850; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28500 a base:work; + base:work\#DateEnd_Fuzzy "1946-12-14"; + base:work\#DateEnd_Max "1946-12-14"^^xsd:date; + base:work\#DateEnd_Min "1946-12-14"^^xsd:date; + base:work\#DateStart_Fuzzy "1946-11-18"; + base:work\#DateStart_Max "1946-11-18"^^xsd:date; + base:work\#DateStart_Min "1946-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28500; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73173; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28505 a base:work; + base:work\#DateEnd_Fuzzy "1958-03-09"; + base:work\#DateEnd_Max "1958-03-09"^^xsd:date; + base:work\#DateEnd_Min "1958-03-09"^^xsd:date; + base:work\#DateStart_Fuzzy "1958-02-03"; + base:work\#DateStart_Max "1958-02-03"^^xsd:date; + base:work\#DateStart_Min "1958-02-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28505; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73178; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28510 a base:work; + base:work\#DateEnd_Fuzzy "November 1930"; + base:work\#DateEnd_Max "1930-11-30"^^xsd:date; + base:work\#DateEnd_Min "1930-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1930-10-06"; + base:work\#DateStart_Max "1930-10-06"^^xsd:date; + base:work\#DateStart_Min "1930-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73138; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28515 a base:work; + base:work\#DateEnd_Fuzzy "1961-05-13"; + base:work\#DateEnd_Max "1961-05-13"^^xsd:date; + base:work\#DateEnd_Min "1961-05-13"^^xsd:date; + base:work\#DateStart_Fuzzy "1961-01-23"; + base:work\#DateStart_Max "1961-01-23"^^xsd:date; + base:work\#DateStart_Min "1961-01-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28515; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73188; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28525 a base:work; + base:work\#DateEnd_Fuzzy "May 1930"; + base:work\#DateEnd_Max "1930-05-31"^^xsd:date; + base:work\#DateEnd_Min "1930-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1930-04-21"; + base:work\#DateStart_Max "1930-04-21"^^xsd:date; + base:work\#DateStart_Min "1930-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28525; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73138; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/2853 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1839"; + base:work\#DateStart_Max "1839-12-31"^^xsd:date; + base:work\#DateStart_Min "1839-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2853; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28530 a base:work; + base:work\#DateEnd_Fuzzy "March 1931"; + base:work\#DateEnd_Max "1931-03-31"^^xsd:date; + base:work\#DateEnd_Min "1931-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1931-01-26"; + base:work\#DateStart_Max "1931-01-26"^^xsd:date; + base:work\#DateStart_Min "1931-01-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28530; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73138; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28535 a base:work; + base:work\#DateEnd_Fuzzy "May 1936"; + base:work\#DateEnd_Max "1936-05-31"^^xsd:date; + base:work\#DateEnd_Min "1936-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936-03-30"; + base:work\#DateStart_Max "1936-03-30"^^xsd:date; + base:work\#DateStart_Min "1936-03-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28535; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73138; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28540 a base:work; + base:work\#DateEnd_Fuzzy "1961-01-21"; + base:work\#DateEnd_Max "1961-01-21"^^xsd:date; + base:work\#DateEnd_Min "1961-01-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1959-11-05"; + base:work\#DateStart_Max "1959-11-05"^^xsd:date; + base:work\#DateStart_Min "1959-11-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28540; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73183; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28543 a base:work; + base:work\#DateEnd_Fuzzy "July 1928"; + base:work\#DateEnd_Max "1928-07-31"^^xsd:date; + base:work\#DateEnd_Min "1928-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928-05-28"; + base:work\#DateStart_Max "1928-05-28"^^xsd:date; + base:work\#DateStart_Min "1928-05-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28543; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/73133; + base:work\#ref-IDPerson base:person\/BenJac-1252 . + +base:work\/28545 a base:work; + base:work\#DateEnd_Fuzzy "1967-12-17"; + base:work\#DateEnd_Max "1967-12-17"^^xsd:date; + base:work\#DateEnd_Min "1967-12-17"^^xsd:date; + base:work\#DateStart_Fuzzy "1967-10-19"; + base:work\#DateStart_Max "1967-10-19"^^xsd:date; + base:work\#DateStart_Min "1967-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28545; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/kamida-00 . + +base:work\/28550 a base:work; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 28550; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28555 a base:work; + base:work\#DateEnd_Fuzzy "1842"; + base:work\#DateEnd_Max "1842-12-31"^^xsd:date; + base:work\#DateEnd_Min "1842-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28555; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/2856 a base:work; + base:work\#DateStart_Fuzzy "1840"; + base:work\#DateStart_Max "1840-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2856; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-CasMon-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28560 a base:work; + base:work\#DateEnd_Fuzzy "1835"; + base:work\#DateEnd_Max "1835-12-31"^^xsd:date; + base:work\#DateEnd_Min "1835-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1834"; + base:work\#DateStart_Max "1834-12-31"^^xsd:date; + base:work\#DateStart_Min "1834-01-01"^^xsd:date; + base:work\#IDWork 28560; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28565 a base:work; + base:work\#DateStart_Fuzzy "Autumn 1837"; + base:work\#DateStart_Max "1837-12-23"^^xsd:date; + base:work\#DateStart_Min "1837-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28565; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28570 a base:work; + base:work\#DateStart_Fuzzy "Autumn 1837"; + base:work\#DateStart_Max "1837-12-23"^^xsd:date; + base:work\#DateStart_Min "1837-09-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 28570; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28575 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1839"; + base:work\#DateStart_Max "1839-12-31"^^xsd:date; + base:work\#DateStart_Min "1839-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 28575; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Bergam-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28580 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 28580; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28585 a base:work; + base:work\#IDWork 28585; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4251; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/28589 a base:work; + base:work\#IDWork 28589; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/2859 a base:work; + base:work\#DateStart_Fuzzy "1841"; + base:work\#DateStart_Max "1841-12-31"^^xsd:date; + base:work\#DateStart_Min "1841-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2859; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Flor-00; + base:work\#ref-IDOrganisation base:organisation\/323; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/28592 a base:work; + base:work\#IDWork 28592; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/286 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-12-31"^^xsd:date; + base:work\#DateEnd_Min "1845-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 286; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDOrganisation base:organisation\/84; + base:work\#ref-IDPerson base:person\/LoeMar-00 . + +base:work\/2862 a base:work; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2862; + base:work\#Profession base:Profession-Singer; + base:work\#comment "In the summer of 1844 she fell ill with tuberculosis but recovered."; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDOrganisation base:organisation\/139; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2865 a base:work; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2865; + base:work\#Profession base:Profession-Singer; + base:work\#comment "In the summer of 1844 she fell ill with tuberculosis but recovered."; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDOrganisation base:organisation\/307; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2868 a base:work; + base:work\#DateStart_Fuzzy "1845"; + base:work\#DateStart_Max "1845-12-31"^^xsd:date; + base:work\#DateStart_Min "1845-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2868; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/287 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 287; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/LoeMar-00 . + +base:work\/2871 a base:work; + base:work\#DateEnd_Fuzzy "May 1848"; + base:work\#DateEnd_Max "1848-05-31"^^xsd:date; + base:work\#DateEnd_Min "1848-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1846 "; + base:work\#DateStart_Max "1846-04-30"^^xsd:date; + base:work\#DateStart_Min "1846-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2871; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDOrganisation base:organisation\/529; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2874 a base:work; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2874; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDOrganisation base:organisation\/482; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2877 a base:work; + base:work\#DateStart_Fuzzy "May 1851 till July 1853"; + base:work\#DateStart_Max "1853-07-01"^^xsd:date; + base:work\#DateStart_Min "1851-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2877; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/288 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 288; + base:work\#Profession base:Profession-Actor; + base:work\#comment "toured with The Diamond Express and appeared at the Royal Variety Performance"; + base:work\#ref-IDOrganisation base:organisation\/187; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2880 a base:work; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2880; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Fermo-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2883 a base:work; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2883; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2886 a base:work; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2886; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Modena-00; + base:work\#ref-IDPerson base:person\/BraTer-00 . + +base:work\/2889 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2889; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDOrganisation base:organisation\/530; + base:work\#ref-IDPerson base:person\/BraTer-01 . + +base:work\/289 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 289; + base:work\#comment "Appearance"; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2892 a base:work; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2892; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/531; + base:work\#ref-IDPerson base:person\/BraTer-01 . + +base:work\/2895 a base:work; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2895; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Tur-00; + base:work\#ref-IDPerson base:person\/BraTer-01 . + +base:work\/2898 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2898; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ancona-00; + base:work\#ref-IDPerson base:person\/BraTer-01 . + +base:work\/29 a base:work; + base:work\#DateEnd_Fuzzy "October 1912"; + base:work\#DateEnd_Max "1912-10-31"^^xsd:date; + base:work\#DateEnd_Min "1912-10-01"^^xsd:date; + base:work\#DateStart_Min "2030-09-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 29; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/570; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/290 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 290; + base:work\#comment "Appearance"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2904 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2904; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/581; + base:work\#ref-IDPerson base:person\/BorRap-00 . + +base:work\/2907 a base:work; + base:work\#DateEnd_Max "1877-11-17"^^xsd:date; + base:work\#DateEnd_Min "1877-11-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2907; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/582; + base:work\#ref-IDPerson base:person\/BorRap-00 . + +base:work\/291 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 291; + base:work\#comment "Appearance"; + base:work\#ref-IDOrganisation base:organisation\/189; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2910 a base:work; + base:work\#DateEnd_Max "1879-03-08"^^xsd:date; + base:work\#DateEnd_Min "1879-03-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2910; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Journalist; + base:work\#Profession3 base:Profession-; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/583; + base:work\#ref-IDPerson base:person\/BorRap-00 . + +base:work\/2913 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2913; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2916 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2916; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/585; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2919 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2919; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/586; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/292 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 292; + base:work\#Profession base:Profession-Actor; + base:work\#comment "singing Molly Darling"; + base:work\#ref-IDLocation base:location\/IE-Belf-00; + base:work\#ref-IDOrganisation base:organisation\/194; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2928 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2928; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/293 a base:work; + base:work\#Employment "Performer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 293; + base:work\#ref-IDOrganisation base:organisation\/195; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2937 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2937; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/294 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 294; + base:work\#Profession base:Profession-Actor; + base:work\#comment "member of the Ada Rehan Company"; + base:work\#ref-IDOrganisation base:organisation\/190; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2940 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2940; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2943 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2943; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2946 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Motherhood"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2946; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2949 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2949; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/587; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/295 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 295; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/154; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2952 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2952; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/588; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/296 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 296; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/557; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2964 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2964; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/589; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2967 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2967; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/297 a base:work; + base:work\#Employment "Opera performer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 297; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/191; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2970 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/765; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2973 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2973; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Founder; + base:work\#comment "Starts a company in the Teatro da Rua dos Condes"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/591; + base:work\#ref-IDOrganisation2 base:organisation\/3015; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2976 a base:work; + base:work\#DateEnd_Fuzzy "1896 - 1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "just for 3 Months between 1896 and 1897"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2976; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/594; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/298 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 298; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/576; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2982 a base:work; + base:work\#DateEnd_Fuzzy "December 1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1897"; + base:work\#DateStart_Max "1897-05-31"^^xsd:date; + base:work\#DateStart_Min "1897-05-01"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2982; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2985 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 2985; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2988 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1899"; + base:work\#DateStart_Max "1900-03-31"^^xsd:date; + base:work\#DateStart_Min "1899-11-21"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2988; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/PT-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/299 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 299; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/192; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/2991 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2991; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2994 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2994; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/2997 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 2997; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/593; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/30 a base:work; + base:work\#DateStart_Min "2024-02-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 30; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/300 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 300; + base:work\#Profession base:Profession-Actor; + base:work\#comment "with Daniel Frohman’s acting group"; + base:work\#ref-IDOrganisation base:organisation\/154; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/3003 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "2024-09-17"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3003; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/592; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3006 a base:work; + base:work\#DateEnd_Fuzzy "1922 (probably)"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#Employment "Entrepreneur"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3006; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/3660; + base:work\#ref-IDOrganisation2 base:organisation\/917; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3009 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1908"; + base:work\#DateStart_Max "1908-11-30"^^xsd:date; + base:work\#DateStart_Min "1908-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3009; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/589; + base:work\#ref-IDOrganisation2 base:organisation\/4110; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/301 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 301; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Desdemona in Othello"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDPerson base:person\/LofCis-00 . + +base:work\/3012 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3012; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3015 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3015; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3018 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3018; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/596; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3021 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1912"; + base:work\#DateStart_Max "1913-03-22"^^xsd:date; + base:work\#DateStart_Min "1912-12-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3021; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3024 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3024; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3027 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3027; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/3030 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1922"; + base:work\#DateStart_Max "1922-12-31"^^xsd:date; + base:work\#DateStart_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3030; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/598; + base:work\#ref-IDPerson base:person\/SimLuc-00 . + +base:work\/304 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-07-05"^^xsd:date; + base:work\#DateEnd_Min "1844-07-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-07-01"^^xsd:date; + base:work\#DateStart_Min "1842-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 304; + base:work\#Profession base:Profession-Singer; + base:work\#comment "with an annual salary of 700 Riksdaler Banco"; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/196; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/305 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-12-31"^^xsd:date; + base:work\#DateEnd_Min "1847-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1840"; + base:work\#DateStart_Max "1840-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 305; + base:work\#Profession base:Profession-Singer; + base:work\#comment "member of the Royal Swedish Music Academy in Stockholm and appointment as court singer"; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDOrganisation base:organisation\/197; + base:work\#ref-IDOrganisation2 base:organisation\/196; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/307 a base:work; + base:work\#DateEnd_Fuzzy "Last week in Nov. 1844"; + base:work\#DateEnd_Max "1844-11-30"^^xsd:date; + base:work\#DateEnd_Min "1844-11-24"^^xsd:date; + base:work\#DateStart_Fuzzy "Last week in Nov. 1844"; + base:work\#DateStart_Max "1844-11-30"^^xsd:date; + base:work\#DateStart_Min "1844-11-24"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 307; + base:work\#Profession base:Profession-Singer; + base:work\#comment "with Meyerbeer; Private performance, debut at the Royal House of Berlin"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/309 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-08-24"^^xsd:date; + base:work\#DateEnd_Min "1848-08-24"^^xsd:date; + base:work\#DateStart_Fuzzy "1848"; + base:work\#DateStart_Max "1848-05-04"^^xsd:date; + base:work\#DateStart_Min "1848-05-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 309; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/31 a base:work; + base:work\#DateEnd_Fuzzy "May 1915"; + base:work\#DateEnd_Max "1915-05-31"^^xsd:date; + base:work\#DateEnd_Min "1915-05-01"^^xsd:date; + base:work\#DateStart_Min "2024-12-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 31; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/571; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/310 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-05-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-09-01"^^xsd:date; + base:work\#DateStart_Min "1850-08-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 310; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour through the USA with over 150 concerts, including Cuba and Canada. USA-Tour was organised by P.T. Barnum. Lind left England on 21 August 1850 and arrived on 1 September 1850 in New York."; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/LinJen-00 . + +base:work\/3102 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3102; + base:work\#Profession base:Profession-Singer; + base:work\#comment """he left Paris Opera when Gailhard left. during his time there he didn't go on tour anytime. Studies at Konservatorium in Paris because of recommendation of the director of the Paris Opera Pierre Gailhard, later studies at Pariser Konservatorium with Edmond Duvernoy his debut in Paris 1880 he sang together with Nellie Melba. +"""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/AffAgu-00 . + +base:work\/3105 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3105; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/AffAgu-00 . + +base:work\/3108 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3108; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/AffAgu-00 . + +base:work\/311 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 311; + base:work\#Profession base:Profession-Composer; + base:work\#Profession2 base:Profession-MusicDirector; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/544; + base:work\#ref-IDPerson base:person\/LinPau-00 . + +base:work\/3111 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3111; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDPerson base:person\/AffAgu-00 . + +base:work\/3114 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3114; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3117 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3117; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/250; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/312 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 312; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/69; + base:work\#ref-IDPerson base:person\/LinPau-00 . + +base:work\/3120 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3120; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/608; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3123 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3123; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3126 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3126; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/455; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3129 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3129; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/400; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/313 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 313; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/545; + base:work\#ref-IDPerson base:person\/LinPau-00 . + +base:work\/3132 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3132; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/609; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3135 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3135; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDOrganisation base:organisation\/610; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3138 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3138; + base:work\#comment "with the Oskar-Braun-Operettengesellschaft"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/611; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/314 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 314; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/LewAug-00 . + +base:work\/3141 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3141; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BraOsk-00 . + +base:work\/3144 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3144; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Debut on December 14, 1888 "; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/484; + base:work\#ref-IDPerson base:person\/DarHar-00 . + +base:work\/3147 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3147; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Summer tour of the Great Opera Houses of Europe."; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/DarHar-00 . + +base:work\/315 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 315; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/LewAug-00 . + +base:work\/3150 a base:work; + base:work\#DateStart_Min "1890-12-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3150; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/DarHar-00 . + +base:work\/3153 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3153; + base:work\#comment "Studies at Lobkowicz Konservatorium in Wien with Mathilde Marchesi de Castrone"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/612; + base:work\#ref-IDPerson base:person\/DarHar-00 . + +base:work\/3156 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3156; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/546; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3159 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3159; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/351; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/316 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 316; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/LewAug-00 . + +base:work\/3162 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3162; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3165 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3165; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3168 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3168; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/613; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/317 a base:work; + base:work\#Employment "Intendant"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 317; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDOrganisation base:organisation\/198; + base:work\#ref-IDPerson base:person\/LewAug-00 . + +base:work\/3171 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3171; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She sang together with Enrico Caruso in UA of La Fanciulla del West in New York at Metropolitan Opera."; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/614; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3174 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3174; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/615; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3177 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3177; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/318 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 318; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDOrganisation base:organisation\/548; + base:work\#ref-IDPerson base:person\/LewAug-00 . + +base:work\/3180 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3180; + base:work\#ref-IDLocation base:location\/YU-00; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3183 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3183; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/DesEma-00 . + +base:work\/3186 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3186; + base:work\#Profession base:Profession-Composer; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/617; + base:work\#ref-IDPerson base:person\/MacAug-00 . + +base:work\/3189 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3189; + base:work\#Profession base:Profession-Composer; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/618; + base:work\#ref-IDPerson base:person\/MacAug-00 . + +base:work\/319 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 319; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#comment "1905-1908 or 10, “Leamy Ladies” troupe (named for their manager, Edward Leamy), touring Europe as well as performing with the Barnum&Bailey Circus in the U.S"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/LeiLil-00 . + +base:work\/3192 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3192; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/619; + base:work\#ref-IDPerson base:person\/MacAug-00 . + +base:work\/32 a base:work; + base:work\#DateEnd_Fuzzy "June 1916"; + base:work\#DateEnd_Max "1916-06-30"^^xsd:date; + base:work\#DateEnd_Min "1916-06-01"^^xsd:date; + base:work\#DateStart_Min "2025-05-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 32; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/572; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/320 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 320; + base:work\#comment "1911- around 1914. she worked in vaudeville"; + base:work\#ref-IDPerson base:person\/LeiLil-00 . + +base:work\/321 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 321; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDOrganisation base:organisation\/199; + base:work\#ref-IDPerson base:person\/LeiLil-00 . + +base:work\/322 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 322; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/323 a base:work; + base:work\#DateEnd_Fuzzy "1873"; + base:work\#DateEnd_Max "1873-12-31"^^xsd:date; + base:work\#DateEnd_Min "1873-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 323; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/324 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 324; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/183; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/325 a base:work; + base:work\#DateEnd_Max "1876-08-17"^^xsd:date; + base:work\#DateEnd_Min "1876-08-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 325; + base:work\#Profession base:Profession-Singer; + base:work\#comment "UA Ring des Nibelungen"; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/326 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 326; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDOrganisation base:organisation\/181; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/327 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 327; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/328 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 328; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest until 1901"; + base:work\#ref-IDOrganisation base:organisation\/200; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/329 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 329; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/LehMar-00 . + +base:work\/33 a base:work; + base:work\#DateEnd_Fuzzy "May 1917"; + base:work\#DateEnd_Max "1917-05-31"^^xsd:date; + base:work\#DateEnd_Min "1917-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 33; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/572; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/330 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 330; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/3306 a base:work; + base:work\#DateEnd_Fuzzy "1955"; + base:work\#DateEnd_Max "1955-12-31"^^xsd:date; + base:work\#DateEnd_Min "1955-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Writer and Dramaturg"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3306; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Author; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/636; + base:work\#ref-IDPerson base:person\/JesOlg-00 . + +base:work\/3309 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3309; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/3175; + base:work\#ref-IDPerson base:person\/JesOlg-00 . + +base:work\/331 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 331; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Danz-00; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/3312 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Writer"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3312; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "Approval of her book Jazmín del país as ideal for schools. First edition of the book in 1929. Approval was later"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/635; + base:work\#ref-IDPerson base:person\/JesOlg-00 . + +base:work\/332 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 332; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/333 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 333; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/3336 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3336; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDOrganisation2 base:organisation\/4021; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3339 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3339; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/650; + base:work\#ref-IDOrganisation2 base:organisation\/4021; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/334 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 334; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/3342 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3342; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Artistic society directed by Vale in Teatro da Trindade and later in Teatro Dona Amélia and Teatro da Rua dos Condes"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/651; + base:work\#ref-IDOrganisation2 base:organisation\/4021; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3345 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3345; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDOrganisation2 base:organisation\/669; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3348 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3348; + base:work\#Profession base:Profession-Actor; + base:work\#comment "First tour in Brazil "; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/335 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 335; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/LehLill-00 . + +base:work\/3351 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3351; + base:work\#Profession base:Profession-Actor; + base:work\#comment "First tour in Brazil "; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3354 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3354; + base:work\#Profession base:Profession-Actor; + base:work\#comment "First tour in Brazil "; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3357 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3357; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-00; + base:work\#ref-IDOrganisation base:organisation\/670; + base:work\#ref-IDOrganisation2 base:organisation\/670; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/336 a base:work; + base:work\#DateEnd_Max "1839-12-15"^^xsd:date; + base:work\#DateEnd_Min "1839-12-15"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 336; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/125; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3360 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3360; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/653; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3363 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3363; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/671; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3366 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3366; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3369 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3369; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/653; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/337 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 337; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3372 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3372; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation base:organisation\/654; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3375 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3375; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Stays in Brazil after that working with Pascoal Segreto Company. Starts to work as playwriter with the Brazilian writer Cardoso Meneses."; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/647; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3378 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3378; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/653; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/338 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 338; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3381 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3381; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/656; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3384 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3384; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3387 a base:work; + base:work\#DateEnd_Fuzzy "1916"; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3387; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Luíz Galhardo Theater Company. With this company he made a tour in Brazil (1916)"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/662; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/339 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 339; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3390 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3390; + base:work\#Profession base:Profession-Other; + base:work\#comment "President of the theatrical workers union"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/658; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3393 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3393; + base:work\#comment "Sociedade Teatral Ltd.. Hired by Antônio de Macedo"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3396 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3396; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Colaborated with Antônio de Macedo"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3399 a base:work; + base:work\#DateStart_Fuzzy "1920s"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3399; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Colaborated with Antônio de Macedo"; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/34 a base:work; + base:work\#DateEnd_Fuzzy "October 1917"; + base:work\#DateEnd_Max "1917-10-31"^^xsd:date; + base:work\#DateEnd_Min "1917-10-01"^^xsd:date; + base:work\#DateStart_Min "2013-10-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 34; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/573; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/340 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 340; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3402 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3402; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Colaborated with Antônio de Macedo"; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3405 a base:work; + base:work\#DateStart_Fuzzy "1920s"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3405; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation base:organisation\/660; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3408 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3408; + base:work\#comment "He works with José Clímaco’s company in Éden Teatro and with Companhia Portuguesa de Revistas of Jorge Grave in Politeama"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/657; + base:work\#ref-IDOrganisation2 base:organisation\/661; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/341 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 341; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/202; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3411 a base:work; + base:work\#DateStart_Fuzzy "1930s"; + base:work\#DateStart_Max "1939-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3411; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Grande Companhia de Opereta"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/668; + base:work\#ref-IDOrganisation2 base:organisation\/4026; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3414 a base:work; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3414; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Last travel to Brazil"; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/1480; + base:work\#ref-IDOrganisation2 base:organisation\/663; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3417 a base:work; + base:work\#DateStart_Fuzzy "1935"; + base:work\#DateStart_Max "1935-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3417; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDOrganisation2 base:organisation\/664; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/342 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 342; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/204; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3420 a base:work; + base:work\#DateStart_Fuzzy "1940s"; + base:work\#DateStart_Max "1949-12-31"^^xsd:date; + base:work\#DateStart_Min "1940-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3420; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/666; + base:work\#ref-IDOrganisation2 base:organisation\/665; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3423 a base:work; + base:work\#DateEnd_Fuzzy "Early 1952"; + base:work\#DateEnd_Max "1850-03-31"^^xsd:date; + base:work\#DateEnd_Min "1952-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Mid 1920s"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3423; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/668; + base:work\#ref-IDOrganisation2 base:organisation\/667; + base:work\#ref-IDPerson base:person\/LeaCar-00 . + +base:work\/3426 a base:work; + base:work\#DateStart_Fuzzy "17th January 1844"; + base:work\#DateStart_Max "1844-01-17"^^xsd:date; + base:work\#DateStart_Min "1844-01-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3426; + base:work\#Profession base:Profession-Singer; + base:work\#comment "with the Companhia Lyrica Italiana"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/4011; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3429 a base:work; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 3429; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/622; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/343 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 343; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3432 a base:work; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3432; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "She stoped to work at the theatre and started to work as a private singer teacher at home."; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3435 a base:work; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3435; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/672; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3438 a base:work; + base:work\#DateEnd_Fuzzy "1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3438; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/673; + base:work\#ref-IDOrganisation2 base:organisation\/674; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/344 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 344; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/203; + base:work\#ref-IDPerson base:person\/KupCae-00 . + +base:work\/3441 a base:work; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3441; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/675; + base:work\#ref-IDOrganisation2 base:organisation\/674; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3444 a base:work; + base:work\#DateStart_Fuzzy "January 1868"; + base:work\#DateStart_Max "1868-01-31"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3444; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDOrganisation base:organisation\/676; + base:work\#ref-IDOrganisation2 base:organisation\/631; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3447 a base:work; + base:work\#DateStart_Fuzzy "February 1870"; + base:work\#DateStart_Max "1870-02-28"^^xsd:date; + base:work\#DateStart_Min "1870-02-01"^^xsd:date; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3447; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDOrganisation base:organisation\/587; + base:work\#ref-IDOrganisation2 base:organisation\/678; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/345 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 345; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/205; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3450 a base:work; + base:work\#DateStart_Fuzzy "May 1869"; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3450; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "With Sociedade Particular do Ginásio do Comércio (at this time her husband's theater company returned to the city of Rio Grande and the actress was no longer part of the company) after June she worked in the Alves Meira Theatre Company."; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDOrganisation base:organisation\/587; + base:work\#ref-IDOrganisation2 base:organisation\/674; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3453 a base:work; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3453; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment """(at this year, the company also performed in Pelotas city) +She and Bartholomeu Magalhães gone to Rio Grande to work at the Raymundo’s Company also called as Sociedade Dramática Empresária. They were based on Teatro Sete de Setembro."""; + base:work\#ref-IDLocation base:location\/BR-RioGra-0; + base:work\#ref-IDOrganisation base:organisation\/676; + base:work\#ref-IDOrganisation2 base:organisation\/680; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3456 a base:work; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 3456; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDOrganisation2 base:organisation\/680; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3459 a base:work; + base:work\#DateStart_Fuzzy "probably in 1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3459; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She worked in different theatres of the city and different companies. "; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/346 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 346; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/207; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3462 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3462; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/681; + base:work\#ref-IDOrganisation2 base:organisation\/682; + base:work\#ref-IDPerson base:person\/CanAug-00 . + +base:work\/3465 a base:work; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3465; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/653; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/347 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 347; + base:work\#Profession base:Profession-Singer; + base:work\#comment "shortly after her arrival she already broke the contract"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3471 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3471; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3474 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3474; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/585; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3477 a base:work; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3477; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She worked with the José Antônio do Vale’s dramatic company"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/685; + base:work\#ref-IDOrganisation2 base:organisation\/684; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/348 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 348; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3480 a base:work; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3480; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/686; + base:work\#ref-IDOrganisation2 base:organisation\/691; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3483 a base:work; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3483; + base:work\#Profession base:Profession-Actor; + base:work\#comment "With the Associação Dramática Empresária. There are newspaper reports that state that the actress moved from Rio de Janeiro in 1878, but it is not clear where she went, why, and when exactly she returned."; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3486 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3486; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3489 a base:work; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3489; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/606; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/349 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 349; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/208; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3492 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3492; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/688; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3495 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3495; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/586; + base:work\#ref-IDOrganisation2 base:organisation\/670; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3498 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3498; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Fortal-00; + base:work\#ref-IDOrganisation base:organisation\/688; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/35 a base:work; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 35; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/WilAur-00 . + +base:work\/350 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 350; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/209; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3501 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3501; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Take part of a theatrical society the Compania Dramática in the Teatro São Luiz"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/588; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3504 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3504; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Niter-00; + base:work\#ref-IDOrganisation base:organisation\/689; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3507 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3507; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/690; + base:work\#ref-IDOrganisation2 base:organisation\/647; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/351 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 351; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/210; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3510 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/681; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3516 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3516; + base:work\#Profession base:Profession-Director; + base:work\#comment "She worked as director with Lima Penante in the Manuela Lucci theater company"; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/627; + base:work\#ref-IDOrganisation2 base:organisation\/688; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3519 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3519; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Impresario; + base:work\#comment "Last time that she worked with her theatre company with Lima Penante"; + base:work\#ref-IDLocation base:location\/BR-Manaus-00; + base:work\#ref-IDOrganisation2 base:organisation\/688; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/352 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 352; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/211; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3522 a base:work; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3522; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She worked with the Eden-Teatro company"; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/681; + base:work\#ref-IDOrganisation2 base:organisation\/657; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3525 a base:work; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3525; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/BR-MinGer-00; + base:work\#ref-IDOrganisation2 base:organisation\/691; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3528 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3528; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Founder; + base:work\#comment "She started her own company."; + base:work\#ref-IDLocation base:location\/BR-Pira-00; + base:work\#ref-IDOrganisation2 base:organisation\/692; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/353 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 353; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/83; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/3531 a base:work; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Wax flower store owner"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3531; + base:work\#comment "She stopped with the theatrical business and opened a wax flower store on the old Rua do Comercio in the city of São Paulo"; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/693; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/3534 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3534; + base:work\#Profession base:Profession-Other; + base:work\#comment "He moved to the country site of São Paulo where he lived until returning to Porto. Tobacco store owner"; + base:work\#ref-IDLocation base:location\/BR-Moc-00; + base:work\#ref-IDPerson base:person\/BalHel-00 . + +base:work\/354 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 354; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/212; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/355 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 355; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/KroSel-00 . + +base:work\/356 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 356; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/HU-Oedb-00; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/357 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 357; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/214; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/358 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 358; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/216; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/359 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 359; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/217; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/36 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 36; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/WilAur-00 . + +base:work\/360 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 360; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/218; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/3600 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3600; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/714; + base:work\#ref-IDPerson base:person\/IbuJ-00 . + +base:work\/3603 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3603; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/696; + base:work\#ref-IDPerson base:person\/IbuJ-00 . + +base:work\/3606 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 3606; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/715; + base:work\#ref-IDPerson base:person\/VelMel-00 . + +base:work\/3609 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3609; + base:work\#Profession base:Profession-Musician; + base:work\#Profession2 base:Profession-Conductor; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/716; + base:work\#ref-IDPerson base:person\/VelMel-00 . + +base:work\/361 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 361; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/219; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/3612 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1830 and 1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1830-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 3612; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/717; + base:work\#ref-IDPerson base:person\/RemJea-00 . + +base:work\/3615 a base:work; + base:work\#DateEnd_Fuzzy "between 1853 and 1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 3615; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/460; + base:work\#ref-IDPerson base:person\/RemJea-00 . + +base:work\/3618 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3618; + base:work\#Profession base:Profession-Other; + base:work\#comment "as a Conductor"; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/718; + base:work\#ref-IDPerson base:person\/RemJea-00 . + +base:work\/362 a base:work; + base:work\#DateEnd_Fuzzy "1864"; + base:work\#DateEnd_Max "1864-12-31"^^xsd:date; + base:work\#DateEnd_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 362; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/220; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/363 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 363; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/221; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/364 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 364; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/220; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/365 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 365; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDOrganisation base:organisation\/120; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/366 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 366; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/367 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 367; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/KreMar-00 . + +base:work\/3677 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3677; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/264; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/368 a base:work; + base:work\#Employment "Opera singer (soprano)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 368; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/222; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3680 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3680; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/577; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/3683 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3683; + base:work\#ref-IDOrganisation base:organisation\/265; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/3686 a base:work; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3686; + base:work\#comment "Vaudeville Star"; + base:work\#ref-IDOrganisation base:organisation\/721; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/3689 a base:work; + base:work\#Employment "Study and as performer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3689; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/730; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/369 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 369; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/223; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3692 a base:work; + base:work\#Employment "Performer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3692; + base:work\#comment "provincial theatres in Romania"; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/3695 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3695; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Other; + base:work\#comment "1900 World Fair in Paris, and then took his own productions to Berlin, Vienna, Budapest and London."; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/3698 a base:work; + base:work\#Employment "worked for film production companies"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3698; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/731; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/37 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 37; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/488; + base:work\#ref-IDPerson base:person\/WilAur-00 . + +base:work\/370 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 370; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/224; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3701 a base:work; + base:work\#Employment "worked for film production company"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3701; + base:work\#comment "Wrote and directed three films: Das Gespenst von Clyde, In Nacht und Eis, and Das Mirakel."; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/732; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/3704 a base:work; + base:work\#Employment "Filming"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3704; + base:work\#comment "made one more film, Der Excentric-Club for Projektions-AG Union (PAGU)"; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/3707 a base:work; + base:work\#Employment "Filming"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3707; + base:work\#comment "The Money God"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/733; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/371 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 371; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/220; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3710 a base:work; + base:work\#Employment "Filming"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3710; + base:work\#comment "Ontmaskerd ('Unmasked')"; + base:work\#ref-IDLocation base:location\/NL-00; + base:work\#ref-IDPerson base:person\/MimMis-00 . + +base:work\/3713 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3713; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/3716 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3716; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Tour in Europe, especially in Warsaw, Poland Yiddish theatres in Europe"""; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/3719 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3719; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She concentrated on the English-lenguage stage"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/372 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 372; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/225; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3722 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3722; + base:work\#Profession base:Profession-Actor; + base:work\#comment "The Benny Goodman Story"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/3725 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3725; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Last stage appearance, Isaac Beshevis Singer‘s In My Father‘s Court"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/3728 a base:work; + base:work\#DateEnd_Fuzzy "1819 (during six weeks)"; + base:work\#DateEnd_Max "1819-12-31"^^xsd:date; + base:work\#DateEnd_Min "1819-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1819 (during six weeks)"; + base:work\#DateStart_Max "1819-12-31"^^xsd:date; + base:work\#DateStart_Min "1819-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3728; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Worked with Sir Henry Irving"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/369; + base:work\#ref-IDOrganisation2 base:organisation\/4624; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/373 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 373; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/221; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3731 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Summer 1822"; + base:work\#DateStart_Max "1822-09-23"^^xsd:date; + base:work\#DateStart_Min "1822-06-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3731; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Circuit in England, Ireland and Scotland"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/369; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3737 a base:work; + base:work\#DateEnd_Fuzzy "1825"; + base:work\#DateEnd_Max "1825-12-31"^^xsd:date; + base:work\#DateEnd_Min "1825-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1823"; + base:work\#DateStart_Max "1823-12-31"^^xsd:date; + base:work\#DateStart_Min "1823-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3737; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Theatre with the manager Mr. Robert William Elliston"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/374 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 374; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/226; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3740 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "December 1825"; + base:work\#DateStart_Max "1825-12-31"^^xsd:date; + base:work\#DateStart_Min "1825-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3740; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Stamford Circuit theatres at Newark and Grantham"; + base:work\#ref-IDLocation base:location\/UK-Stamf-00; + base:work\#ref-IDOrganisation base:organisation\/270; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3743 a base:work; + base:work\#DateEnd_Fuzzy "1828"; + base:work\#DateEnd_Max "1828-12-31"^^xsd:date; + base:work\#DateEnd_Min "1828-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1827"; + base:work\#DateStart_Max "1827-09-30"^^xsd:date; + base:work\#DateStart_Min "1827-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3743; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3746 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "December 1825"; + base:work\#DateStart_Max "1825-12-31"^^xsd:date; + base:work\#DateStart_Min "1825-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3746; + base:work\#ref-IDLocation base:location\/UK-Granth-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3749 a base:work; + base:work\#DateEnd_Fuzzy "1834"; + base:work\#DateEnd_Max "1834-12-31"^^xsd:date; + base:work\#DateEnd_Min "1834-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1828"; + base:work\#DateStart_Max "1828-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3749; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Tour around South and West of US"; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/375 a base:work; + base:work\#DateEnd_Fuzzy "January 1867"; + base:work\#DateEnd_Max "1867-01-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 375; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/227; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3752 a base:work; + base:work\#DateEnd_Fuzzy "1838"; + base:work\#DateEnd_Max "1838-12-31"^^xsd:date; + base:work\#DateEnd_Min "1838-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3752; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Varied experience in New York, performing in three or four theatres."; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3755 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1840"; + base:work\#DateStart_Max "1840-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3755; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/3758 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "Winter 1840"; + base:work\#DateStart_Max "1840-12-31"^^xsd:date; + base:work\#DateStart_Min "1840-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3758; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Winter 1840. Due to non-payment of salaries for the season at the Park Theatre, they created a company and occupied the Franklin Theatre"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/734; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/376 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 376; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/228; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3761 a base:work; + base:work\#DateStart_Fuzzy "March 1828"; + base:work\#DateStart_Max "1828-03-31"^^xsd:date; + base:work\#DateStart_Min "1828-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3761; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Made her New York debut in The Spoiled Child at the Bowery Theatre"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/238; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3764 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3764; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3767 a base:work; + base:work\#DateEnd_Fuzzy "1830"; + base:work\#DateEnd_Max "1830-12-31"^^xsd:date; + base:work\#DateEnd_Min "1830-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1828"; + base:work\#DateStart_Max "1828-03-31"^^xsd:date; + base:work\#DateStart_Min "1828-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3767; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Tour in diferente cities in the US Including Bowery Theatre (NY) and Chestnut Street Theatre in Philadelphia."""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/238; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/377 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 377; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/229; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3770 a base:work; + base:work\#DateEnd_Fuzzy "1830"; + base:work\#DateEnd_Max "1830-12-31"^^xsd:date; + base:work\#DateEnd_Min "1830-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1828"; + base:work\#DateStart_Max "1828-03-31"^^xsd:date; + base:work\#DateStart_Min "1828-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3770; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Tour in diferente cities in the US Including Bowery Theatre (NY) and Chestnut Street Theatre in Philadelphia."""; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/736; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3773 a base:work; + base:work\#DateEnd_Fuzzy "1832"; + base:work\#DateEnd_Max "1832-12-31"^^xsd:date; + base:work\#DateEnd_Min "1832-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "November 1830"; + base:work\#DateStart_Max "1830-11-30"^^xsd:date; + base:work\#DateStart_Min "1830-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3773; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Tour with the hole family in Jamaica She went with the company to Jamaica in a partnership with Mr. Jones."""; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3776 a base:work; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3776; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Member of the stock company in the Bowery Theatre"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/238; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3779 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3779; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/737; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/378 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 378; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Augsb-00; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3782 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3782; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3785 a base:work; + base:work\#DateStart_Fuzzy "1838"; + base:work\#DateStart_Max "1838-12-31"^^xsd:date; + base:work\#DateStart_Min "1838-01-01"^^xsd:date; + base:work\#Employment "Apprenticeship"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3785; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3788 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3788; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/379 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 379; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bernb-00; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3791 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3791; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3794 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3794; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3797 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3797; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/38 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 38; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDOrganisation base:organisation\/84; + base:work\#ref-IDPerson base:person\/WilAur-00 . + +base:work\/380 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 380; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Lueb-00; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3800 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3800; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3803 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3803; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She worked there when the Park was closed"; + base:work\#ref-IDOrganisation base:organisation\/738; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3806 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3806; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She worked there when the Park was closed"; + base:work\#ref-IDOrganisation base:organisation\/739; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3809 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3809; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/740; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/381 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 381; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3812 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3812; + base:work\#Profession base:Profession-Actor; + base:work\#comment "After the married with John Drew"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3815 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3815; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3818 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3818; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/382 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 382; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Freib-00; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3821 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3821; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3824 a base:work; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-03-31"^^xsd:date; + base:work\#DateStart_Min "1857-03-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3824; + base:work\#Profession base:Profession-Actor; + base:work\#comment "with Mr. Bower‘s Company"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3827 a base:work; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3827; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/383 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 383; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/230; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3830 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3830; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/3833 a base:work; + base:work\#DateEnd_Max "1872-04-21"^^xsd:date; + base:work\#DateEnd_Min "1872-04-21"^^xsd:date; + base:work\#DateStart_Min "1872-04-21"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3833; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3836 a base:work; + base:work\#DateEnd_Max "1878-12-05"^^xsd:date; + base:work\#DateEnd_Min "1878-12-05"^^xsd:date; + base:work\#DateStart_Min "1878-12-05"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3836; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3839 a base:work; + base:work\#DateEnd_Max "1880-04-27"^^xsd:date; + base:work\#DateEnd_Min "1880-04-27"^^xsd:date; + base:work\#DateStart_Min "1880-04-27"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3839; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/384 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 384; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/231; + base:work\#ref-IDPerson base:person\/KreEli-00 . + +base:work\/3842 a base:work; + base:work\#DateEnd_Min "1879-01-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-31"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3842; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3845 a base:work; + base:work\#DateEnd_Min "1879-05-01"^^xsd:date; + base:work\#DateStart_Min "1879-05-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3845; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3848 a base:work; + base:work\#DateEnd_Max "1879-05-30"^^xsd:date; + base:work\#DateEnd_Min "1879-05-30"^^xsd:date; + base:work\#DateStart_Min "1879-05-30"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3848; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/385 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 385; + base:work\#Profession base:Profession-Actor; + base:work\#comment "debut"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/419; + base:work\#ref-IDPerson base:person\/KemFra-00 . + +base:work\/3851 a base:work; + base:work\#DateEnd_Max "1879-09-19"^^xsd:date; + base:work\#DateEnd_Min "1879-09-19"^^xsd:date; + base:work\#DateStart_Min "1879-09-19"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3851; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3854 a base:work; + base:work\#DateEnd_Max "1879-12-28"^^xsd:date; + base:work\#DateEnd_Min "1879-12-28"^^xsd:date; + base:work\#DateStart_Min "1879-12-28"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3854; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3857 a base:work; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-04-25"^^xsd:date; + base:work\#DateStart_Min "1880-04-25"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3857; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/386 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 386; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/3860 a base:work; + base:work\#DateEnd_Max "1882-01-07"^^xsd:date; + base:work\#DateEnd_Min "1882-01-07"^^xsd:date; + base:work\#DateStart_Min "1882-01-07"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3860; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3863 a base:work; + base:work\#DateEnd_Max "1888-02-03"^^xsd:date; + base:work\#DateEnd_Min "1888-02-03"^^xsd:date; + base:work\#DateStart_Min "1888-02-03"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3863; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3866 a base:work; + base:work\#DateEnd_Max "1888-04-19"^^xsd:date; + base:work\#DateEnd_Min "1888-04-19"^^xsd:date; + base:work\#DateStart_Min "1888-04-19"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3866; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3869 a base:work; + base:work\#DateEnd_Max "1890-08-15"^^xsd:date; + base:work\#DateEnd_Min "1890-08-15"^^xsd:date; + base:work\#DateStart_Min "1890-08-15"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3869; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/387 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 387; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/232; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/3872 a base:work; + base:work\#DateEnd_Fuzzy "0"; + base:work\#DateEnd_Max "2000-12-31"^^xsd:date; + base:work\#DateEnd_Min "2000-01-01"^^xsd:date; + base:work\#DateStart_Min "1879-05-28"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3872; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3875 a base:work; + base:work\#DateEnd_Max "1879-09-17"^^xsd:date; + base:work\#DateEnd_Min "1879-09-17"^^xsd:date; + base:work\#DateStart_Min "1879-09-17"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3875; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3878 a base:work; + base:work\#DateEnd_Min "1879-11-30"^^xsd:date; + base:work\#DateStart_Min "1879-11-30"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3878; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/388 a base:work; + base:work\#DateEnd_Max "1853-11-22"^^xsd:date; + base:work\#DateEnd_Min "1853-11-22"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 388; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/233; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/3881 a base:work; + base:work\#DateEnd_Max "1880-04-22"^^xsd:date; + base:work\#DateEnd_Min "1880-04-22"^^xsd:date; + base:work\#DateStart_Min "1880-04-22"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3881; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3884 a base:work; + base:work\#DateEnd_Max "1881-12-20"^^xsd:date; + base:work\#DateEnd_Min "1881-12-20"^^xsd:date; + base:work\#DateStart_Min "1881-12-20"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3884; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3887 a base:work; + base:work\#DateEnd_Max "1888-04-17"^^xsd:date; + base:work\#DateEnd_Min "1888-04-17"^^xsd:date; + base:work\#DateStart_Min "1888-04-17"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3887; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/389 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 389; + base:work\#Profession base:Profession-Manager; + base:work\#comment """First women ever in this position +"""; + base:work\#ref-IDOrganisation base:organisation\/234; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/3890 a base:work; + base:work\#DateEnd_Max "1890-08-12"^^xsd:date; + base:work\#DateEnd_Min "1890-08-12"^^xsd:date; + base:work\#DateStart_Min "1890-08-12"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3890; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3893 a base:work; + base:work\#DateEnd_Max "1891-02-13"^^xsd:date; + base:work\#DateEnd_Min "1891-02-13"^^xsd:date; + base:work\#DateStart_Min "1891-02-13"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3893; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3896 a base:work; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-04-20"^^xsd:date; + base:work\#DateStart_Min "1880-04-20"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3896; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3899 a base:work; + base:work\#DateEnd_Max "1881-12-15"^^xsd:date; + base:work\#DateEnd_Min "1881-12-15"^^xsd:date; + base:work\#DateStart_Min "1881-12-15"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3899; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/390 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 390; + base:work\#Profession base:Profession-Manager; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/191; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/3902 a base:work; + base:work\#DateEnd_Max "1888-04-14"^^xsd:date; + base:work\#DateEnd_Min "1888-04-14"^^xsd:date; + base:work\#DateStart_Min "1888-04-14"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3902; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3905 a base:work; + base:work\#DateEnd_Max "1890-08-09"^^xsd:date; + base:work\#DateEnd_Min "1890-08-09"^^xsd:date; + base:work\#DateStart_Min "1890-08-09"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3905; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3908 a base:work; + base:work\#DateEnd_Min "1880-04-30"^^xsd:date; + base:work\#DateStart_Min "1880-04-30"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3908; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/391 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 391; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Became a traveling actress in the 1860s (due to financial difficulties)"; + base:work\#ref-IDPerson base:person\/KeeLau-00 . + +base:work\/392 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 392; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/235; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3929 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3929; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/JagFer-01\+ . + +base:work\/393 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 393; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/236; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3932 a base:work; + base:work\#DateEnd_Min "2018-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3932; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3935 a base:work; + base:work\#DateEnd_Min "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3935; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/3938 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3938; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/327; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/394 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 394; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/237; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3947 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3947; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father Rafael and sister Carmella"; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/620; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/395 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 395; + base:work\#Profession base:Profession-Actor; + base:work\#comment """Yankev Ber Gimpel (Theatregroup of Max Gimpel), later becoming prima donna +Actress"""; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/396 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 396; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Di Vilde Kenigin, La Belle Hélène"; + base:work\#ref-IDOrganisation base:organisation\/213; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3968 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-08-31"^^xsd:date; + base:work\#DateStart_Min "1843-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3968; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/621; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/397 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 397; + base:work\#Profession base:Profession-Actor; + base:work\#comment "her first English part (title role of Fédora, by Victorien Sardou"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/191; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3971 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3971; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3974 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3974; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3977 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3977; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/398 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 398; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/244; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/3980 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3980; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3983 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3983; + base:work\#Profession base:Profession-Singer; + base:work\#comment "She worked with her father and sister"; + base:work\#ref-IDLocation base:location\/PRY-Assunc-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3986 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 3986; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/622; + base:work\#ref-IDOrganisation2 base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3989 a base:work; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3989; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDOrganisation base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3992 a base:work; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3992; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3995 a base:work; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3995; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Manaus-00; + base:work\#ref-IDOrganisation base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/3998 a base:work; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 3998; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/604; + base:work\#ref-IDOrganisation2 base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/73; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/400 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 400; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Adolph Zukor"; + base:work\#ref-IDOrganisation base:organisation\/239; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/4001 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4001; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDOrganisation base:organisation\/624; + base:work\#ref-IDOrganisation2 base:organisation\/632; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4004 a base:work; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4004; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/625; + base:work\#ref-IDOrganisation2 base:organisation\/632; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/401 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 401; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/240; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/4010 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4010; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDOrganisation base:organisation\/624; + base:work\#ref-IDOrganisation2 base:organisation\/631; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4013 a base:work; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4013; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/625; + base:work\#ref-IDOrganisation2 base:organisation\/632; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4016 a base:work; + base:work\#DateStart_Fuzzy "1860s"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4016; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4019 a base:work; + base:work\#DateStart_Fuzzy "1860s"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4019; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/402 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 402; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/241; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/4022 a base:work; + base:work\#DateStart_Fuzzy "1860s"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4022; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4025 a base:work; + base:work\#DateStart_Fuzzy "1860s"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4025; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Manaus-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4028 a base:work; + base:work\#DateStart_Fuzzy "1860s"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4028; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Fortal-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/403 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 403; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/242; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/4031 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4031; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bahia-00; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4034 a base:work; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4034; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/626; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4037 a base:work; + base:work\#DateEnd_Fuzzy "188"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4037; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/627; + base:work\#ref-IDOrganisation2 base:organisation\/632; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/404 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 404; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Last stage appearance. She recited the final scene of Louis Untermeyer's poem Heine's Death"; + base:work\#ref-IDOrganisation base:organisation\/243; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/4040 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4040; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/632; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4043 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4043; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Impresario; + base:work\#Profession3 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/628; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/405 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 405; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Movies: In 1923, she performed in Jitta’s Atonement, adapted by George Bernard Shaw from the work of Siegfried Trebitsch."; + base:work\#ref-IDPerson base:person\/KalBer-00 . + +base:work\/406 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 406; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/245; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/407 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 407; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SI-Marb-00; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4070 a base:work; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4070; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation2 base:organisation\/633; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4073 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4073; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-Bel-00; + base:work\#ref-IDOrganisation base:organisation\/627; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4076 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4076; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-Manaus-00; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4079 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4079; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-Fortal-00; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/408 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 408; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/246; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4082 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4082; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-SaoLuis-00; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4085 a base:work; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4085; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation2 base:organisation\/634; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4088 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4088; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/629; + base:work\#ref-IDOrganisation2 base:organisation\/687; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/409 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 409; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Mein-00; + base:work\#ref-IDOrganisation base:organisation\/166; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4091 a base:work; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4091; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation2 base:organisation\/630; + base:work\#ref-IDPerson base:person\/LucMan-00 . + +base:work\/4094 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4094; + base:work\#ref-IDLocation base:location\/UK-Bright-00; + base:work\#ref-IDOrganisation base:organisation\/741; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4097 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-08-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4097; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation base:organisation\/742; + base:work\#ref-IDOrganisation2 base:organisation\/743; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/410 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 410; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Invitation of Ernst von Possart)(Privat plays for König Ludwig II"; + base:work\#ref-IDOrganisation base:organisation\/247; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4100 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4100; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation2 base:organisation\/743; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4103 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4103; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation2 base:organisation\/743; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4106 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4106; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/SCT-Glasg-00; + base:work\#ref-IDOrganisation2 base:organisation\/744; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4109 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4109; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDOrganisation2 base:organisation\/744; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/411 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 411; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4112 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4112; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/SCT-Aberd-00; + base:work\#ref-IDOrganisation2 base:organisation\/744; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4115 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4115; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/745; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4118 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4118; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDOrganisation2 base:organisation\/746; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/412 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 412; + base:work\#Profession base:Profession-Actor; + base:work\#comment "he followed Ludwig Barnay, who founded this theatre, but broke with him and got a theatre ban for breach of contract, than he went to USA (for tour or for longer?"; + base:work\#ref-IDOrganisation base:organisation\/248; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4121 a base:work; + base:work\#DateEnd_Fuzzy "1888-11-07"; + base:work\#DateEnd_Max "1888-11-07"^^xsd:date; + base:work\#DateEnd_Min "1888-11-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4121; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDOrganisation2 base:organisation\/746; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4124 a base:work; + base:work\#DateEnd_Max "1888-11-07"^^xsd:date; + base:work\#DateEnd_Min "1888-11-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-10-07"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4124; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/747; + base:work\#ref-IDOrganisation2 base:organisation\/748; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4127 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4127; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/748; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/413 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 413; + base:work\#Profession base:Profession-Actor; + base:work\#comment "under the direction of Adolph L’Arronge"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4130 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4130; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/746; + base:work\#ref-IDOrganisation2 base:organisation\/4800; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4133 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4133; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-EntrRios-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4136 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 4136; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation2 base:organisation\/751; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4139 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4139; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/414 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 414; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Invitation of the director Max Burkhardt, appointment to “Imperial and Royal Court Actor”, for this he got a contract of twelve years"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4142 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4142; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Kimber-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4145 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4145; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Cpt-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4148 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4148; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Joburg; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/415 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 415; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4151 a base:work; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4151; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ZA-Durb-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4154 a base:work; + base:work\#DateStart_Fuzzy "from 1892"; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4154; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/SriLanka-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4157 a base:work; + base:work\#DateStart_Fuzzy "from 1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4157; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/IN-Chenn-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/416 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 416; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4160 a base:work; + base:work\#DateStart_Fuzzy "from 1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4160; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/IN-Mumb-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4163 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4163; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/UK-Ldn-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4166 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4166; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4169 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4169; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/753; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/417 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 417; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4172 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4172; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4175 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4175; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/CL-Valpa-00; + base:work\#ref-IDOrganisation base:organisation\/754; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4178 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-03-09"^^xsd:date; + base:work\#DateEnd_Min "1902-03-09"^^xsd:date; + base:work\#DateStart_Min "1902-02-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4178; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PE-Lima-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/418 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 418; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/KaiJos-00 . + +base:work\/4181 a base:work; + base:work\#DateStart_Min "1902-04-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4181; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4184 a base:work; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4184; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/CL-Valpa-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4187 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4187; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/755; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4190 a base:work; + base:work\#DateStart_Min "1905-08-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4190; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/756; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4193 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4193; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CL-Valpa-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4196 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4196; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Manager; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/757; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4199 a base:work; + base:work\#DateStart_Min "1908-04-25"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4199; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/420 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 420; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Member of the Corps de ballet"; + base:work\#ref-IDOrganisation base:organisation\/393; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/4202 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4202; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-Rosario-00; + base:work\#ref-IDOrganisation base:organisation\/747; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4205 a base:work; + base:work\#DateStart_Min "1908-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4205; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/750; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4208 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4208; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-Rosario-00; + base:work\#ref-IDOrganisation base:organisation\/747; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/421 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 421; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/249; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/4211 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-09-03"^^xsd:date; + base:work\#DateStart_Min "1910-09-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4211; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4214 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-08-31"^^xsd:date; + base:work\#DateEnd_Min "1910-09-03"^^xsd:date; + base:work\#DateStart_Min "1910-09-02"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4214; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/4217 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4217; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/758; + base:work\#ref-IDOrganisation2 base:organisation\/4784; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/422 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 422; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/250; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/4220 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4220; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4872; + base:work\#ref-IDOrganisation2 base:organisation\/4872; + base:work\#ref-IDPerson base:person\/BroFra-00 . + +base:work\/423 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 423; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/251; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/424 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 424; + base:work\#Profession base:Profession-Actor; + base:work\#comment "dismissal due to the theatre’s financial problems"; + base:work\#ref-IDOrganisation base:organisation\/252; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/425 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 425; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/253; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/426 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 426; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/180; + base:work\#ref-IDPerson base:person\/JanFan-00 . + +base:work\/427 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 427; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/428 a base:work; + base:work\#DateEnd_Min "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 428; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4289 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4289; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Minho-00; + base:work\#ref-IDOrganisation base:organisation\/760; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/429 a base:work; + base:work\#DateEnd_Min "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 429; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4292 a base:work; + base:work\#DateEnd_Fuzzy "1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-12-01"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4292; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/626; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4295 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4295; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-PortAleg-00; + base:work\#ref-IDOrganisation base:organisation\/4016; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4298 a base:work; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4298; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/665; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/430 a base:work; + base:work\#DateEnd_Min "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 430; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4301 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4301; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/626; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4304 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4304; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/626; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4307 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4307; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/624; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/431 a base:work; + base:work\#DateEnd_Max "1878-09-11"^^xsd:date; + base:work\#DateEnd_Min "1878-09-11"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 431; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4310 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4313 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4313; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4316 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4316; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Pelot-00; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4319 a base:work; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4319; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/690; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/432 a base:work; + base:work\#DateEnd_Max "1878-09-11"^^xsd:date; + base:work\#DateEnd_Min "1878-09-11"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 432; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4322 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4322; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4325 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4325; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/4328 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4328; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/653; + base:work\#ref-IDPerson base:person\/FurCoe-00 . + +base:work\/433 a base:work; + base:work\#DateEnd_Min "1882-08-31"^^xsd:date; + base:work\#DateStart_Min "1882-07-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 433; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/434 a base:work; + base:work\#DateEnd_Max "1878-12-19"^^xsd:date; + base:work\#DateEnd_Min "1878-12-19"^^xsd:date; + base:work\#DateStart_Min "1878-12-19"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 434; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Invitation on the recommendation of Richard Wagner"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/435 a base:work; + base:work\#DateEnd_Min "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 435; + base:work\#Profession base:Profession-Singer; + base:work\#comment "privat performances for King Ludwig II"; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDOrganisation base:organisation\/126; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/436 a base:work; + base:work\#DateEnd_Min "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 436; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest engagement"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4364 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4364; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/437 a base:work; + base:work\#DateEnd_Min "1882-08-31"^^xsd:date; + base:work\#DateStart_Min "1882-07-26"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 437; + base:work\#Profession base:Profession-Singer; + base:work\#comment "one of the three first Parsifal"; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/4370 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4370; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/770; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4373 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4373; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/773; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4376 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4376; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/776; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/438 a base:work; + base:work\#DateEnd_Min "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 438; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest engagement"; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/439 a base:work; + base:work\#DateEnd_Min "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 439; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest engagement"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/363; + base:work\#ref-IDPerson base:person\/JagFer-01 . + +base:work\/44 a base:work; + base:work\#DateEnd_Fuzzy "1836"; + base:work\#DateEnd_Max "1836-12-31"^^xsd:date; + base:work\#DateEnd_Min "1836-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1834"; + base:work\#DateStart_Max "1834-01-31"^^xsd:date; + base:work\#DateStart_Min "1834-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 44; + base:work\#Profession base:Profession-MusicDirector; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDOrganisation base:organisation\/88; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/440 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 440; + base:work\#Profession base:Profession-Singer; + base:work\#comment "engaged by Felix Mottl"; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDOrganisation base:organisation\/92; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/441 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 441; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest performance"; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/442 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 442; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest performance"; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDOrganisation base:organisation\/93; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/4424 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-12-31"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "7th January 1885"; + base:work\#DateStart_Max "1885-01-07"^^xsd:date; + base:work\#DateStart_Min "1885-01-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4424; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/761; + base:work\#ref-IDOrganisation2 base:organisation\/800; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4427 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1929-07-31"^^xsd:date; + base:work\#DateEnd_Min "1929-07-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4427; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/443 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 443; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest performance"; + base:work\#ref-IDOrganisation base:organisation\/255; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/4439 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1929-07-31"^^xsd:date; + base:work\#DateEnd_Min "1929-07-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4439; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/812; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/444 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 444; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/247; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/445 a base:work; + base:work\#DateEnd_Fuzzy "1942"; + base:work\#DateEnd_Max "1942-12-31"^^xsd:date; + base:work\#DateEnd_Min "1942-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 445; + base:work\#Profession base:Profession-Singer; + base:work\#comment "secretary"; + base:work\#ref-IDOrganisation base:organisation\/256; + base:work\#ref-IDPerson base:person\/JagFer-00 . + +base:work\/446 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 446; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/JagEls-00 . + +base:work\/4463 a base:work; + base:work\#DateEnd_Fuzzy "1862"; + base:work\#DateEnd_Max "1862-12-31"^^xsd:date; + base:work\#DateEnd_Min "1862-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4463; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/824; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/4469 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4469; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/824; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/447 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 447; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Mein-00; + base:work\#ref-IDOrganisation base:organisation\/166; + base:work\#ref-IDPerson base:person\/JagEls-00 . + +base:work\/448 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 448; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/JagEls-00 . + +base:work\/449 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 449; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/45 a base:work; + base:work\#DateEnd_Fuzzy "August 1837"; + base:work\#DateEnd_Max "1937-08-31"^^xsd:date; + base:work\#DateEnd_Min "1837-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1837"; + base:work\#DateStart_Max "1837-04-30"^^xsd:date; + base:work\#DateStart_Min "1837-04-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 45; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/PRU-Koen-00; + base:work\#ref-IDOrganisation base:organisation\/89; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/450 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 450; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/258; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/451 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 451; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/238; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/452 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 452; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/259; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/453 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 453; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/233; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/454 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 454; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/260; + base:work\#ref-IDPerson base:person\/HerAgn-00 . + +base:work\/456 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 456; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Jacob Adler’s Yiddish troupe"; + base:work\#ref-IDOrganisation base:organisation\/163; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/457 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 457; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Jewish Theatres"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/458 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 458; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Goldfaden's ill-fated Paris troupe."; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/459 a base:work; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 459; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/560; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/46 a base:work; + base:work\#DateStart_Fuzzy "August 1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 46; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Composer; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/90; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/460 a base:work; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 460; + base:work\#comment "Debut"; + base:work\#ref-IDOrganisation base:organisation\/574; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4601 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4601; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/815; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/4604 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4604; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/4607 a base:work; + base:work\#DateEnd_Fuzzy "1851"; + base:work\#DateEnd_Max "1851-12-31"^^xsd:date; + base:work\#DateEnd_Min "1851-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4607; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/818; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/461 a base:work; + base:work\#Employment "Singer and Actress"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 461; + base:work\#comment "From 1897, Held enjoyed several successes on Broadway, including A Parisian Model (1906–1907)."; + base:work\#ref-IDOrganisation base:organisation\/262; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/462 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 462; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/263; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4625 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4625; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/839; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/4628 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-12-31"^^xsd:date; + base:work\#DateStart_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4628; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/842; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/463 a base:work; + base:work\#Employment "Troupe"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 463; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/163; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/464 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 464; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Goldfaden's ill-fated Paris troupe"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/465 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 465; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/262; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4658 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4658; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/860; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/466 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 466; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#comment "Appearing continuously Ziegfeld-Productions, 1900-1912."; + base:work\#ref-IDOrganisation base:organisation\/263; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4661 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4661; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/863; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4667 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4667; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/467 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 467; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/578; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4670 a base:work; + base:work\#DateEnd_Fuzzy "(he stayed util at least three years)"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 4670; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Technician; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/592; + base:work\#ref-IDOrganisation2 base:organisation\/866; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4676 a base:work; + base:work\#DateEnd_Fuzzy "between 1854 and 1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4676; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-Cogn-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/468 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 468; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/153; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/469 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 469; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/576; + base:work\#ref-IDPerson base:person\/HelAnn-00 . + +base:work\/4694 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/762; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4697 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4697; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/782; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/47 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#DateStart_Max "1842-10-20"^^xsd:date; + base:work\#DateStart_Min "1842-10-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 47; + base:work\#Profession base:Profession-MusicDirector; + base:work\#Profession2 base:Profession-Composer; + base:work\#comment "UA Fliegender Holländer"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/WagRic-00 . + +base:work\/470 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 470; + base:work\#ref-IDLocation base:location\/UA-Od-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4700 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4700; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/686; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4703 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4703; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/785; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4709 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4709; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/788; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/471 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 471; + base:work\#ref-IDLocation base:location\/UA-Chark-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4712 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4712; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/791; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4715 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4715; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/4718 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4718; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/797; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/472 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 472; + base:work\#ref-IDLocation base:location\/BY-Minsk-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4727 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4727; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/761; + base:work\#ref-IDOrganisation2 base:organisation\/800; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/473 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 473; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4730 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-07-31"^^xsd:date; + base:work\#DateStart_Min "1884-07-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4730; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/803; + base:work\#ref-IDOrganisation2 base:organisation\/806; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/474 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 474; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4742 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4742; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/BauRos-00 . + +base:work\/475 a base:work; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 475; + base:work\#ref-IDLocation base:location\/RU-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4754 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4754; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/591; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/476 a base:work; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 476; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4766 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4766; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/824; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/4769 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4769; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/827; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/477 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 477; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4775 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4775; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/833; + base:work\#ref-IDPerson base:person\/DouEmi-00 . + +base:work\/478 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 478; + base:work\#ref-IDLocation base:location\/UK-Liv-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4787 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-10-31"^^xsd:date; + base:work\#DateStart_Min "1886-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4787; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/479 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 479; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4790 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4790; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/765; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4793 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4793; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Technician; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation2 base:organisation\/765; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4796 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4796; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation2 base:organisation\/845; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4799 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4799; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/785; + base:work\#ref-IDOrganisation2 base:organisation\/764; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/48 a base:work; + base:work\#DateStart_Fuzzy "1835"; + base:work\#DateStart_Max "1835-12-31"^^xsd:date; + base:work\#DateStart_Min "1835-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 48; + base:work\#Profession base:Profession-Musician; + base:work\#comment "first public appearance"; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/480 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 480; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDPerson base:person\/GolAbr-00 . + +base:work\/4802 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1892"; + base:work\#DateStart_Max "1892-12-31"^^xsd:date; + base:work\#DateStart_Min "1892-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4802; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/851; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4805 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4805; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-00; + base:work\#ref-IDOrganisation2 base:organisation\/854; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4808 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4808; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/857; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/481 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 481; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/266; + base:work\#ref-IDPerson base:person\/GluAlm-00 . + +base:work\/4811 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4811; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/591; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/482 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 482; + base:work\#Profession base:Profession-Singer; + base:work\#comment "or 1913"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/GluAlm-00 . + +base:work\/4820 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4820; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4829 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4829; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/584; + base:work\#ref-IDOrganisation2 base:organisation\/872; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/483 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 483; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Last recital"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/268; + base:work\#ref-IDPerson base:person\/GluAlm-00 . + +base:work\/4832 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4832; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4835 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4835; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/589; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4838 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4838; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/875; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/484 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 484; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "1833- around 1840. rising up to the première danseuse"; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4841 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4841; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4844 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4844; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/878; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4847 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4847; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/656; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/485 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 485; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDOrganisation base:organisation\/270; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4850 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4850; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/881; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4853 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4853; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/878; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4856 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4856; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/887; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4859 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-12-31"^^xsd:date; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4859; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/486 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 486; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "touring the provinces of England with her husband George"; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4862 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1916"; + base:work\#DateStart_Max "1916-12-31"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4862; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4865 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4865; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4868 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4868; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/597; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/487 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 487; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "1850- maybe 1856. appearing together with George as a dance act, Chicago and Midwest"; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4871 a base:work; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4871; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/890; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4874 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4874; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Technician; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4877 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-12-31"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4877; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/893; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/488 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 488; + base:work\#Profession base:Profession-Actor; + base:work\#comment "acting company of John Ellsler"; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4880 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4880; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/896; + base:work\#ref-IDOrganisation2 base:organisation\/763; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4883 a base:work; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4883; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/899; + base:work\#ref-IDOrganisation2 base:organisation\/763; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4886 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1924-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4886; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDOrganisation2 base:organisation\/905; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4889 a base:work; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4889; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/671; + base:work\#ref-IDOrganisation2 base:organisation\/908; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/489 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 489; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/274; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4892 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1925"; + base:work\#DateStart_Max "1925-12-31"^^xsd:date; + base:work\#DateStart_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4892; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4895 a base:work; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4895; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/896; + base:work\#ref-IDOrganisation2 base:organisation\/914; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4898 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4898; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDOrganisation2 base:organisation\/917; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/49 a base:work; + base:work\#DateStart_Fuzzy "18th August 1836"; + base:work\#DateStart_Max "1836-08-18"^^xsd:date; + base:work\#DateStart_Min "1836-08-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 49; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/BE-Lieg-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/490 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 490; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Gilbert’s New York debut in Finesse at the Olympic Theatre"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4901 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4901; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/920; + base:work\#ref-IDOrganisation2 base:organisation\/923; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4904 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4904; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/926; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/491 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 491; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Gilbert’s New York debut in Finesse"; + base:work\#ref-IDOrganisation base:organisation\/271; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4916 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4916; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4919 a base:work; + base:work\#DateEnd_Fuzzy "1933"; + base:work\#DateEnd_Max "1933-12-31"^^xsd:date; + base:work\#DateEnd_Min "1933-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1929"; + base:work\#DateStart_Max "1929-12-31"^^xsd:date; + base:work\#DateStart_Min "1929-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4919; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/590; + base:work\#ref-IDOrganisation2 base:organisation\/932; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/492 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 492; + base:work\#Profession base:Profession-Actor; + base:work\#comment "touring the U.S., Germany, France and England"; + base:work\#ref-IDOrganisation base:organisation\/154; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4922 a base:work; + base:work\#DateStart_Fuzzy "1934"; + base:work\#DateStart_Max "1934-12-31"^^xsd:date; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4922; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/671; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4925 a base:work; + base:work\#DateStart_Fuzzy "1935"; + base:work\#DateStart_Max "1935-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4925; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4928 a base:work; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4928; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation2 base:organisation\/935; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/493 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 493; + base:work\#Profession base:Profession-Actor; + base:work\#comment "when Daly was without a theatre"; + base:work\#ref-IDOrganisation base:organisation\/134; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4931 a base:work; + base:work\#DateStart_Fuzzy "1937"; + base:work\#DateStart_Max "1937-12-31"^^xsd:date; + base:work\#DateStart_Min "1937-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4931; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/657; + base:work\#ref-IDOrganisation2 base:organisation\/938; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4934 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1939"; + base:work\#DateStart_Max "1939-12-31"^^xsd:date; + base:work\#DateStart_Min "1939-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4934; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/671; + base:work\#ref-IDOrganisation2 base:organisation\/941; + base:work\#ref-IDPerson base:person\/PinAnt-00 . + +base:work\/4937 a base:work; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4937; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/IT-Genoa-00; + base:work\#ref-IDOrganisation2 base:organisation\/944; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/494 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 494; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/273; + base:work\#ref-IDPerson base:person\/GilAnn-00 . + +base:work\/4940 a base:work; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4940; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDOrganisation2 base:organisation\/947; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4943 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4943; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/766; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4946 a base:work; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4946; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDOrganisation base:organisation\/950; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4949 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4949; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDOrganisation base:organisation\/953; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/495 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 495; + base:work\#Profession base:Profession-Actor; + base:work\#comment "debut in 1908, playing a boy in J. Gordin's Mirele Efrosplaying a boy in J. Gordin's play Mirele Efros. The theatre is unknown. "; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/4952 a base:work; + base:work\#DateEnd_Fuzzy "1873"; + base:work\#DateEnd_Max "1873-12-31"^^xsd:date; + base:work\#DateEnd_Min "1873-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4952; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/959; + base:work\#ref-IDOrganisation2 base:organisation\/962; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4955 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4955; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#Profession3 base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/965; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4958 a base:work; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4958; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/968; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/496 a base:work; + base:work\#DateEnd_Fuzzy "1950"; + base:work\#DateEnd_Max "1950-12-31"^^xsd:date; + base:work\#DateEnd_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 496; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/275; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/4961 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4961; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Impresario; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4964 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4964; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-Rosario-00; + base:work\#ref-IDOrganisation base:organisation\/971; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/4967 a base:work; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4967; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/ARG-Tucum-00; + base:work\#ref-IDPerson base:person\/RafPab-00 . + +base:work\/497 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 497; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Yiddish theatre companies (David Kessler, Boris Thomashefsky)"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/GerBer-00 . + +base:work\/4970 a base:work; + base:work\#DateEnd_Fuzzy "1842"; + base:work\#DateEnd_Max "1842-12-31"^^xsd:date; + base:work\#DateEnd_Min "1842-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1841"; + base:work\#DateStart_Max "1841-12-31"^^xsd:date; + base:work\#DateStart_Min "1841-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-Linz-00; + base:work\#ref-IDOrganisation base:organisation\/974; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4973 a base:work; + base:work\#DateEnd_Fuzzy "1843"; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4973; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIENeu-00; + base:work\#ref-IDOrganisation base:organisation\/977; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4976 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4976; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CZ-Olo-00; + base:work\#ref-IDOrganisation base:organisation\/980; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4979 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-12-31"^^xsd:date; + base:work\#DateEnd_Min "1845-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4979; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDOrganisation base:organisation\/983; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/498 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Opera singer (leading soprano)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 498; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/4982 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1846"; + base:work\#DateStart_Max "1846-12-31"^^xsd:date; + base:work\#DateStart_Min "1846-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4982; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/986; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4985 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4985; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/986; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4988 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4988; + base:work\#Profession base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/499 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 499; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/268; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/4991 a base:work; + base:work\#DateEnd_Max "1858-09-15"^^xsd:date; + base:work\#DateEnd_Min "1858-09-15"^^xsd:date; + base:work\#DateStart_Max "1852-02-09"^^xsd:date; + base:work\#DateStart_Min "1852-02-09"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4991; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-Timis-00; + base:work\#ref-IDOrganisation base:organisation\/992; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4994 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Max "1858-09-15"^^xsd:date; + base:work\#DateStart_Min "1858-09-15"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4994; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDOrganisation base:organisation\/995; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/4997 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Max "1858-09-15"^^xsd:date; + base:work\#DateStart_Min "1858-09-15"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 4997; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-03-22"^^xsd:date; + base:work\#DateEnd_Min "1897-03-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/500 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 500; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/276; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/5000 a base:work; + base:work\#DateEnd_Max "1862-08-12"^^xsd:date; + base:work\#DateEnd_Min "1862-08-12"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1859-12-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5000; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-Timis-00; + base:work\#ref-IDOrganisation base:organisation\/992; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5003 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#DateStart_Max "1862-08-12"^^xsd:date; + base:work\#DateStart_Min "1862-08-12"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5003; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1001; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5006 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5006; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#Profession3 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1004; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5009 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-01-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5009; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/1007; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/501 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Artistic Director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 501; + base:work\#ref-IDOrganisation base:organisation\/276; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/5012 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5012; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/1010; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5015 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-10-31"^^xsd:date; + base:work\#DateStart_Min "1873-10-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5015; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/HU-Pest-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5018 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5018; + base:work\#Profession base:Profession-Manager; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1013; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/502 a base:work; + base:work\#DateEnd_Fuzzy "1931"; + base:work\#DateEnd_Max "1931-12-31"^^xsd:date; + base:work\#DateEnd_Min "1931-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 502; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/277; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/5021 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5021; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/992; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5024 a base:work; + base:work\#DateEnd_Fuzzy "between 01.02.1883 and 31.12.1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5024; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/AT-Rudolf-00; + base:work\#ref-IDOrganisation base:organisation\/1019; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5027 a base:work; + base:work\#DateEnd_Max "1883-02-01"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-09-30"^^xsd:date; + base:work\#DateStart_Min "1882-09-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5027; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/503 a base:work; + base:work\#DateEnd_Fuzzy "1934"; + base:work\#DateEnd_Max "1934-12-31"^^xsd:date; + base:work\#DateEnd_Min "1934-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 503; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/5030 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5030; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1025; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5033 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5033; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1028; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5036 a base:work; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5036; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5039 a base:work; + base:work\#DateEnd_Fuzzy "between 02.01.1887 and 30.12.1888"; + base:work\#DateEnd_Max "1888-12-30"^^xsd:date; + base:work\#DateEnd_Min "1887-01-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5039; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/1031; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/504 a base:work; + base:work\#DateEnd_Fuzzy "1939"; + base:work\#DateEnd_Max "1939-12-31"^^xsd:date; + base:work\#DateEnd_Min "1939-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 504; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDOrganisation base:organisation\/124; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/5042 a base:work; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5042; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/5048 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5048; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/1034; + base:work\#ref-IDPerson base:person\/StrFri-00 . + +base:work\/505 a base:work; + base:work\#DateEnd_Fuzzy "1939"; + base:work\#DateEnd_Max "1939-12-31"^^xsd:date; + base:work\#DateEnd_Min "1939-01-01"^^xsd:date; + base:work\#Employment "Teacher"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 505; + base:work\#ref-IDOrganisation base:organisation\/278; + base:work\#ref-IDPerson base:person\/GarMar-00 . + +base:work\/506 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 506; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/GalGeo-00 . + +base:work\/507 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 507; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/GalGeo-00 . + +base:work\/508 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 508; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/393; + base:work\#ref-IDPerson base:person\/GalGeo-00 . + +base:work\/509 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-12-31"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 509; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/363; + base:work\#ref-IDPerson base:person\/GalCae-00 . + +base:work\/5096 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5096; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/719; + base:work\#ref-IDOrganisation2 base:organisation\/1040; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5099 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5099; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/1046; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/51 a base:work; + base:work\#DateStart_Fuzzy "December 1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 51; + base:work\#Profession base:Profession-Singer; + base:work\#comment "First time as singer"; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/510 a base:work; + base:work\#DateEnd_Fuzzy "1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1871-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/280; + base:work\#ref-IDPerson base:person\/GalCae-00 . + +base:work\/5102 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5102; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/720; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5105 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5105; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/720; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5108 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5108; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/722; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/511 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 511; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/281; + base:work\#ref-IDPerson base:person\/GalCae-00 . + +base:work\/5111 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5111; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5114 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5114; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/761; + base:work\#ref-IDOrganisation2 base:organisation\/800; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5117 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5117; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-00; + base:work\#ref-IDOrganisation2 base:organisation\/724; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/512 a base:work; + base:work\#DateEnd_Max "1898-02-17"^^xsd:date; + base:work\#DateEnd_Min "1898-02-17"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 512; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/GalCae-00 . + +base:work\/5120 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5120; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/800; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5123 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5123; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/800; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5126 a base:work; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5126; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/1046; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5129 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5129; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/785; + base:work\#ref-IDOrganisation2 base:organisation\/1046; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/513 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 513; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5132 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5132; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/649; + base:work\#ref-IDOrganisation2 base:organisation\/1049; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5135 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1898 (probably)"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5135; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PT-Porto-00; + base:work\#ref-IDOrganisation base:organisation\/1052; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5138 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5138; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/726; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/514 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 514; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-NeuStrel-00; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5141 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5141; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/727; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5144 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5144; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/728; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5147 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Itinerant; + base:work\#IDWork 5147; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-Petro-00; + base:work\#ref-IDOrganisation base:organisation\/1055; + base:work\#ref-IDOrganisation2 base:organisation\/1058; + base:work\#ref-IDPerson base:person\/VilRos-00 . + +base:work\/5148 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1853 and 01.01.1858"; + base:work\#DateEnd_Max "1858-01-01"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5148; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1062; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/515 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 515; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5151 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1853 and 01.01.1858"; + base:work\#DateEnd_Max "1858-01-01"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5151; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1065; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5154 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1858 and 11.11.1861"; + base:work\#DateEnd_Max "1861-11-11"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5154; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-NeuStrel-00; + base:work\#ref-IDOrganisation base:organisation\/1068; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5157 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1861 and 11.11.1861"; + base:work\#DateEnd_Max "1861-11-11"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5157; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/PRU-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/516 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 516; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5160 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1861 and 11.11.1861"; + base:work\#DateEnd_Max "1861-11-11"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5160; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5163 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-15"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5163; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NorthAmerica; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5166 a base:work; + base:work\#DateEnd_Fuzzy "between 15.01.1861 and 31.12.1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5166; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1071; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5169 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-02-17"^^xsd:date; + base:work\#DateEnd_Min "1868-02-17"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-02-17"^^xsd:date; + base:work\#DateStart_Min "1868-02-17"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5169; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/517 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 517; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5172 a base:work; + base:work\#DateEnd_Fuzzy "April 1868"; + base:work\#DateEnd_Max "1868-04-30"^^xsd:date; + base:work\#DateEnd_Min "1868-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-04-30"^^xsd:date; + base:work\#DateStart_Min "1868-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5172; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1074; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5175 a base:work; + base:work\#DateEnd_Fuzzy "between August 1869 and June 1870"; + base:work\#DateEnd_Max "1870-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-08-31"^^xsd:date; + base:work\#DateStart_Min "1869-08-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5175; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5178 a base:work; + base:work\#DateEnd_Fuzzy "June 1870"; + base:work\#DateEnd_Max "1870-06-30"^^xsd:date; + base:work\#DateEnd_Min "1870-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-06-30"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5178; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/518 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-31"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 518; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/GalCar-00 . + +base:work\/5181 a base:work; + base:work\#DateEnd_Fuzzy "between June 1870 and December 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-06-30"^^xsd:date; + base:work\#DateStart_Min "1870-06-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5181; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5184 a base:work; + base:work\#DateEnd_Fuzzy "December 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5184; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-Adel-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5187 a base:work; + base:work\#DateEnd_Fuzzy "December 1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5187; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NZ-Auck-00; + base:work\#ref-IDOrganisation base:organisation\/1077; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/519 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1817"; + base:work\#DateStart_Max "1817-12-31"^^xsd:date; + base:work\#DateStart_Min "1817-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 519; + base:work\#Profession base:Profession-Actor; + base:work\#comment "debut in David Garrick’s Lilliput"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5190 a base:work; + base:work\#DateEnd_Fuzzy "January 1871"; + base:work\#DateEnd_Max "1871-01-31"^^xsd:date; + base:work\#DateEnd_Min "1871-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-01-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5190; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5193 a base:work; + base:work\#DateEnd_Fuzzy "1871"; + base:work\#DateEnd_Max "1871-12-31"^^xsd:date; + base:work\#DateEnd_Min "1871-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5193; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Honul-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5196 a base:work; + base:work\#DateEnd_Fuzzy "between 21.06.1872 and 22.09.1872"; + base:work\#DateEnd_Max "1872-09-22"^^xsd:date; + base:work\#DateEnd_Min "1872-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5196; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5199 a base:work; + base:work\#DateEnd_Fuzzy "between 21.06.1872 and 22.091872"; + base:work\#DateEnd_Max "1872-09-22"^^xsd:date; + base:work\#DateEnd_Min "1872-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-12-31"^^xsd:date; + base:work\#DateStart_Min "1871-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5199; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/520 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1817"; + base:work\#DateStart_Max "1817-12-31"^^xsd:date; + base:work\#DateStart_Min "1817-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 520; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5202 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-09-22"^^xsd:date; + base:work\#DateStart_Min "1872-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5202; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5205 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-08-31"^^xsd:date; + base:work\#DateStart_Min "1873-08-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5205; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/EN-MANCH-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5208 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5208; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/521 a base:work; + base:work\#DateEnd_Fuzzy "June 1833"; + base:work\#DateEnd_Max "1833-06-30"^^xsd:date; + base:work\#DateEnd_Min "1833-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1833"; + base:work\#DateStart_Max "1833-06-30"^^xsd:date; + base:work\#DateStart_Min "1833-06-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 521; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5211 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5211; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5214 a base:work; + base:work\#DateEnd_Fuzzy "between January 1878 and April 1879"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5214; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5217 a base:work; + base:work\#DateEnd_Fuzzy "between January 1878 and April 1879"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5217; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/522 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 522; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "She taught women, who later become celebrity actresses; Fisher would later disparage their talents to the press"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5220 a base:work; + base:work\#DateEnd_Fuzzy "between January 1878 and April 1879"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5220; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5223 a base:work; + base:work\#DateEnd_Fuzzy "between January 1878 and April 1879"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5223; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5226 a base:work; + base:work\#DateEnd_Fuzzy "between January 1878 and April 1879"; + base:work\#DateEnd_Max "1879-04-30"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5226; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5229 a base:work; + base:work\#DateEnd_Fuzzy "between 01.05.1879 and 18.04.1880"; + base:work\#DateEnd_Max "1880-04-18"^^xsd:date; + base:work\#DateEnd_Min "1879-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-05-31"^^xsd:date; + base:work\#DateStart_Min "1879-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5229; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1086; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5232 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-04-19"^^xsd:date; + base:work\#DateEnd_Min "1880-04-19"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-04-19"^^xsd:date; + base:work\#DateStart_Min "1880-04-19"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5232; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1089; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5235 a base:work; + base:work\#DateEnd_Fuzzy "June 1880"; + base:work\#DateEnd_Max "1880-06-30"^^xsd:date; + base:work\#DateEnd_Min "1880-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-06-30"^^xsd:date; + base:work\#DateStart_Min "1880-06-01"^^xsd:date; + base:work\#Employment "other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5235; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1080; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5238 a base:work; + base:work\#DateEnd_Fuzzy "between January 1880 and July 1880"; + base:work\#DateEnd_Max "1880-07-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-07-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5238; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1095; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/524 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1877 or 1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 524; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Union Square Company of Mrs. John Drew and Augustin Daly"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/284; + base:work\#ref-IDOrganisation2 base:organisation\/4636; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5241 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-09-30"^^xsd:date; + base:work\#DateStart_Min "1880-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5241; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5244 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5244; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AU-Brisb-00; + base:work\#ref-IDOrganisation base:organisation\/1104; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5247 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5247; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/525 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 525; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Last performance (August in Daly’s Company)"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation2 base:organisation\/4640; + base:work\#ref-IDPerson base:person\/FisCla-00 . + +base:work\/5250 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5250; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Goulb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5253 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5253; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Wagg-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5256 a base:work; + base:work\#DateEnd_Fuzzy "November 1880"; + base:work\#DateEnd_Max "1880-11-30"^^xsd:date; + base:work\#DateEnd_Min "1880-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5256; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Albu-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5259 a base:work; + base:work\#DateEnd_Fuzzy "December 1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-11-30"^^xsd:date; + base:work\#DateStart_Min "1880-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5259; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/526 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 526; + base:work\#Profession base:Profession-Dancer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5262 a base:work; + base:work\#DateEnd_Fuzzy "December 1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5262; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Inv-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5265 a base:work; + base:work\#DateEnd_Fuzzy "February 1881"; + base:work\#DateEnd_Max "1881-02-28"^^xsd:date; + base:work\#DateEnd_Min "1881-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5265; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Dune-00; + base:work\#ref-IDOrganisation base:organisation\/1107; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5268 a base:work; + base:work\#DateEnd_Fuzzy "March 1881"; + base:work\#DateEnd_Max "1881-03-31"^^xsd:date; + base:work\#DateEnd_Min "1881-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1881"; + base:work\#DateStart_Max "1881-03-31"^^xsd:date; + base:work\#DateStart_Min "1881-03-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5268; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Tima-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/527 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 527; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDOrganisation base:organisation\/529; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5271 a base:work; + base:work\#DateEnd_Fuzzy "April 1881"; + base:work\#DateEnd_Max "1881-04-30"^^xsd:date; + base:work\#DateEnd_Min "1881-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1881"; + base:work\#DateStart_Max "1881-03-31"^^xsd:date; + base:work\#DateStart_Min "1881-03-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5271; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5274 a base:work; + base:work\#DateEnd_Fuzzy "between 01.04.1881 and 26.04.1881"; + base:work\#DateEnd_Max "1881-04-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-04-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5274; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5277 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5277; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Wang-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/528 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 528; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5280 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5280; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Nap-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5283 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5283; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Gisb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5286 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5286; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Auck-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5289 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5289; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Nap-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/529 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 529; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/IT-Rom-00; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5292 a base:work; + base:work\#DateEnd_Fuzzy "between 26.04.1881 and 26.06.1881"; + base:work\#DateEnd_Max "1881-06-26"^^xsd:date; + base:work\#DateEnd_Min "1881-04-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-26"^^xsd:date; + base:work\#DateStart_Min "1881-04-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5292; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Wang-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5298 a base:work; + base:work\#DateEnd_Fuzzy "between 26.06.1881 and 28.06.1881"; + base:work\#DateEnd_Max "1881-06-28"^^xsd:date; + base:work\#DateEnd_Min "1881-06-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-06-28"^^xsd:date; + base:work\#DateStart_Min "1881-06-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5298; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Haw-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/53 a base:work; + base:work\#DateStart_Fuzzy "8th May 1839"; + base:work\#DateStart_Max "1839-05-08"^^xsd:date; + base:work\#DateStart_Min "1839-05-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 53; + base:work\#Profession base:Profession-Singer; + base:work\#comment "first time as an opera singer"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/530 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 530; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5301 a base:work; + base:work\#DateEnd_Fuzzy "between 28.06.1881 amd 30.09.1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-06-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-06-28"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5301; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-NewPly-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5304 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5304; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-ChrCh-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5307 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5307; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Nels-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/531 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 531; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5310 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5310; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-ChristChurch-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5313 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5313; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Lytt-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5316 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5316; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Tima-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5319 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5319; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Oam-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/532 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 532; + base:work\#ref-IDLocation base:location\/BE-BRU-00; + base:work\#ref-IDPerson base:person\/FerAma-00 . + +base:work\/5322 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5322; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Dune-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5325 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5325; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/NZ-Bluff-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5328 a base:work; + base:work\#DateEnd_Fuzzy "between July 01.07.1881 and September 30.09.1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5328; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Hob-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/533 a base:work; + base:work\#DateEnd_Fuzzy "1826"; + base:work\#DateEnd_Max "1826-12-31"^^xsd:date; + base:work\#DateEnd_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 533; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "ballett de corps"; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/ElsHer-00 . + +base:work\/5331 a base:work; + base:work\#DateEnd_Fuzzy "between July 1881 and September 1881"; + base:work\#DateEnd_Max "1881-09-30"^^xsd:date; + base:work\#DateEnd_Min "1881-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-09-30"^^xsd:date; + base:work\#DateStart_Min "1881-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5331; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Launc-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5334 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-11-02"^^xsd:date; + base:work\#DateEnd_Min "1881-11-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-10-31"^^xsd:date; + base:work\#DateStart_Min "1881-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5334; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5337 a base:work; + base:work\#DateEnd_Fuzzy "between 05.11.1881 and 30.11.1881"; + base:work\#DateEnd_Max "1881-11-30"^^xsd:date; + base:work\#DateEnd_Min "1881-11-05"^^xsd:date; + base:work\#DateStart_Max "1881-11-05"^^xsd:date; + base:work\#DateStart_Min "1881-11-05"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5337; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Adel-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/534 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 534; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/ElsHer-00 . + +base:work\/5340 a base:work; + base:work\#DateEnd_Fuzzy "between 05.11.1881 and 30.11.1881"; + base:work\#DateEnd_Max "1881-11-30"^^xsd:date; + base:work\#DateEnd_Min "1881-11-05"^^xsd:date; + base:work\#DateStart_Fuzzy "between 05.11.1881 and 30.11.1881"; + base:work\#DateStart_Max "1881-11-30"^^xsd:date; + base:work\#DateStart_Min "1881-11-05"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5340; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/LK-Colomb-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5343 a base:work; + base:work\#DateEnd_Fuzzy "Nov.-Dec.1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Nov.-Dec. 1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5343; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Chenn-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5346 a base:work; + base:work\#DateEnd_Fuzzy "March 1882"; + base:work\#DateEnd_Max "1882-03-31"^^xsd:date; + base:work\#DateEnd_Min "1882-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-12-18"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5346; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Calc-00; + base:work\#ref-IDOrganisation base:organisation\/1113; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5349 a base:work; + base:work\#DateEnd_Fuzzy "between 01.04.1882 and 08.04.1882"; + base:work\#DateEnd_Max "1882-04-08"^^xsd:date; + base:work\#DateEnd_Min "1882-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-03-31"^^xsd:date; + base:work\#DateStart_Min "1882-03-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5349; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Mumb-00; + base:work\#ref-IDOrganisation base:organisation\/188; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/535 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 535; + base:work\#Profession base:Profession-Singer; + base:work\#comment "also some little opera parts"; + base:work\#ref-IDOrganisation base:organisation\/285; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5352 a base:work; + base:work\#DateEnd_Fuzzy "between 01.06.1882 and 03.06.1882"; + base:work\#DateEnd_Max "1882-06-03"^^xsd:date; + base:work\#DateEnd_Min "1882-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-05-31"^^xsd:date; + base:work\#DateStart_Min "1882-04-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5352; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/1116; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5355 a base:work; + base:work\#DateEnd_Fuzzy "between 03.06.1882 and 30.06.1882"; + base:work\#DateEnd_Max "1882-06-30"^^xsd:date; + base:work\#DateEnd_Min "1882-06-03"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-06-30"^^xsd:date; + base:work\#DateStart_Min "1882-06-03"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5355; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5358 a base:work; + base:work\#DateEnd_Fuzzy "between 23.06.1882 and 30.06.1882"; + base:work\#DateEnd_Max "1882-06-30"^^xsd:date; + base:work\#DateEnd_Min "1882-06-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-06-30"^^xsd:date; + base:work\#DateStart_Min "1882-06-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5358; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-Canton-00; + base:work\#ref-IDOrganisation base:organisation\/1119; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/536 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 536; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/286; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5361 a base:work; + base:work\#DateEnd_Fuzzy "between 01.07.1882 and 20.07.1882"; + base:work\#DateEnd_Max "1882-07-20"^^xsd:date; + base:work\#DateEnd_Min "1882-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-07-20"^^xsd:date; + base:work\#DateStart_Min "1882-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5361; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5364 a base:work; + base:work\#DateEnd_Fuzzy "between 01.08.1882 and 24.08.1882"; + base:work\#DateEnd_Max "1882-08-24"^^xsd:date; + base:work\#DateEnd_Min "1882-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-07-20"^^xsd:date; + base:work\#DateStart_Min "1882-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5364; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/1122; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5367 a base:work; + base:work\#DateEnd_Fuzzy "between September 1882 and November 1882"; + base:work\#DateEnd_Max "1882-11-30"^^xsd:date; + base:work\#DateEnd_Min "1882-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-09-30"^^xsd:date; + base:work\#DateStart_Min "1882-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5367; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/LK-Colomb-00; + base:work\#ref-IDOrganisation base:organisation\/1125; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/537 a base:work; + base:work\#DateEnd_Fuzzy "1826"; + base:work\#DateEnd_Max "1826-12-31"^^xsd:date; + base:work\#DateEnd_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 537; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/287; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5370 a base:work; + base:work\#DateEnd_Fuzzy "November 1882"; + base:work\#DateEnd_Max "1882-11-30"^^xsd:date; + base:work\#DateEnd_Min "1882-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-11-30"^^xsd:date; + base:work\#DateStart_Min "1882-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5370; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/LK-Kandy-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5373 a base:work; + base:work\#DateEnd_Fuzzy "between November 1882 and December 1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-11-30"^^xsd:date; + base:work\#DateStart_Min "1882-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5373; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Calc-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5376 a base:work; + base:work\#DateEnd_Fuzzy "between November 1882 and December 1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5376; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/LK-NewEll-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5379 a base:work; + base:work\#DateEnd_Fuzzy "between January 1883 and February 1883"; + base:work\#DateEnd_Max "1883-02-28"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5379; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/LK-Colomb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/538 a base:work; + base:work\#DateEnd_Fuzzy "1827"; + base:work\#DateEnd_Max "1827-12-31"^^xsd:date; + base:work\#DateEnd_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 538; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source: 1829, invited by Louis Duport, there administrator in Vienna for Domenico Barbaja"; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5382 a base:work; + base:work\#DateEnd_Fuzzy "between January 1883 and February 1883"; + base:work\#DateEnd_Max "1883-02-28"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-11-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5382; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Mumb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5385 a base:work; + base:work\#DateEnd_Fuzzy "February 1883"; + base:work\#DateEnd_Max "1883-02-28"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-02-28"^^xsd:date; + base:work\#DateStart_Min "1883-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5385; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/IN-Chenn-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5388 a base:work; + base:work\#DateEnd_Fuzzy "February 1883"; + base:work\#DateEnd_Max "1883-02-28"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-02-28"^^xsd:date; + base:work\#DateStart_Min "1883-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5388; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/MM-Yang-00; + base:work\#ref-IDOrganisation base:organisation\/1128; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/539 a base:work; + base:work\#DateEnd_Fuzzy "1830"; + base:work\#DateEnd_Max "1830-12-31"^^xsd:date; + base:work\#DateEnd_Min "1830-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 539; + base:work\#Profession base:Profession-Singer; + base:work\#comment "other source: 1829-1831, played together with Franz Wild, got an acting training there."; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDOrganisation base:organisation\/84; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5391 a base:work; + base:work\#DateEnd_Fuzzy "February 1883"; + base:work\#DateEnd_Max "1883-02-28"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-02-28"^^xsd:date; + base:work\#DateStart_Min "1883-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5391; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/MM-Mawl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5394 a base:work; + base:work\#DateEnd_Fuzzy "between 01.02.1883 and 15.03.1883"; + base:work\#DateEnd_Max "1883-03-15"^^xsd:date; + base:work\#DateEnd_Min "1883-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-03-15"^^xsd:date; + base:work\#DateStart_Min "1883-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5394; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5397 a base:work; + base:work\#DateEnd_Fuzzy "between 01.03.1883 and 28.03.1883"; + base:work\#DateEnd_Max "1883-03-28"^^xsd:date; + base:work\#DateEnd_Min "1883-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-03-28"^^xsd:date; + base:work\#DateStart_Min "1883-03-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5397; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-PortDarw-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/54 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "8th October 1839"; + base:work\#DateStart_Max "1839-10-08"^^xsd:date; + base:work\#DateStart_Min "1839-10-08"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 54; + base:work\#Profession base:Profession-Singer; + base:work\#comment "her later husband hired her"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/540 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 540; + base:work\#comment "together with Wilhemine Schröder-Devrient"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5400 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-04-05"^^xsd:date; + base:work\#DateEnd_Min "1883-04-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-04"^^xsd:date; + base:work\#DateStart_Min "1883-04-04"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5400; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Cook-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5403 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-05"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5403; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Townsv-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5406 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5406; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Chart-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5409 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5409; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Macky-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/541 a base:work; + base:work\#DateEnd_Fuzzy "1832"; + base:work\#DateEnd_Max "1832-12-31"^^xsd:date; + base:work\#DateEnd_Min "1832-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 541; + base:work\#Profession base:Profession-Singer; + base:work\#comment "under director Ringelhardt"; + base:work\#ref-IDOrganisation base:organisation\/288; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5412 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5412; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Rockh-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5415 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5415; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Maryb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5418 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5418; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Gymp-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/542 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 542; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Aach-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5421 a base:work; + base:work\#DateEnd_Fuzzy "between 11.04.1883 and 30.04.1883"; + base:work\#DateEnd_Max "1883-04-30"^^xsd:date; + base:work\#DateEnd_Min "1883-04-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-04-30"^^xsd:date; + base:work\#DateStart_Min "1883-04-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5421; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AU-Brisb-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5424 a base:work; + base:work\#DateEnd_Fuzzy "between July 1883 and October 1883"; + base:work\#DateEnd_Max "1883-10-31"^^xsd:date; + base:work\#DateEnd_Min "1883-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-10-31"^^xsd:date; + base:work\#DateStart_Min "1883-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5424; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Syd-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5427 a base:work; + base:work\#DateEnd_Fuzzy "between 01.10.1883 and 02.11.1883"; + base:work\#DateEnd_Max "1883-11-02"^^xsd:date; + base:work\#DateEnd_Min "1883-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-11-02"^^xsd:date; + base:work\#DateStart_Min "1883-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5427; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/1131; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/543 a base:work; + base:work\#DateEnd_Fuzzy "1835"; + base:work\#DateEnd_Max "1835-12-31"^^xsd:date; + base:work\#DateEnd_Min "1835-01-01"^^xsd:date; + base:work\#Employment """opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 543; + base:work\#Profession base:Profession-Singer; + base:work\#comment "he followed director Ringelhard"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/109; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5430 a base:work; + base:work\#DateEnd_Fuzzy "between 01.10.1883 and 02.11.1883"; + base:work\#DateEnd_Max "1883-12-23"^^xsd:date; + base:work\#DateEnd_Min "1883-11-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-23"^^xsd:date; + base:work\#DateStart_Min "1883-11-02"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5430; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AUS-Tasm-00; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5433 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-01-21"^^xsd:date; + base:work\#DateEnd_Min "1884-01-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-23"^^xsd:date; + base:work\#DateStart_Min "1883-12-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5433; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Honul-00; + base:work\#ref-IDOrganisation base:organisation\/1134; + base:work\#ref-IDOrganisation2 base:organisation\/1101; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5436 a base:work; + base:work\#DateEnd_Fuzzy "between 28.01.1884 and 31.12.1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-28"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5436; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5439 a base:work; + base:work\#DateEnd_Fuzzy "between 28.01.1884 and 31.12.1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5439; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/544 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 544; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5442 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-02-14"^^xsd:date; + base:work\#DateEnd_Min "1885-02-14"^^xsd:date; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-02-14"^^xsd:date; + base:work\#DateStart_Min "1885-02-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5442; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/554; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5445 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5445; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/5448 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5448; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1071; + base:work\#ref-IDPerson base:person\/BanDan-00 . + +base:work\/545 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 545; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mainz-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5451 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5451; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/CA-Daws-00; + base:work\#ref-IDOrganisation base:organisation\/1098; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5454 a base:work; + base:work\#DateEnd_Fuzzy "October 1902"; + base:work\#DateEnd_Max "1902-10-31"^^xsd:date; + base:work\#DateEnd_Min "1902-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-08-31"^^xsd:date; + base:work\#DateStart_Min "1900-08-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5454; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/CA-Daws-00; + base:work\#ref-IDOrganisation base:organisation\/315; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5457 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5457; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/546 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 546; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5460 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5460; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/1143; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5463 a base:work; + base:work\#DateEnd_Fuzzy "between 1904 and 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5463; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/1146; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5469 a base:work; + base:work\#DateEnd_Fuzzy "between 1906 and 1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5469; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Seat-00; + base:work\#ref-IDOrganisation base:organisation\/1149; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/547 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 547; + base:work\#Profession base:Profession-Singer; + base:work\#Profession2 base:Profession-Director; + base:work\#comment "other source 1843"; + base:work\#ref-IDLocation base:location\/GER-Bamb-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5472 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5472; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1152; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5475 a base:work; + base:work\#DateEnd_Fuzzy "between 1911 and 1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5475; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1155; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5478 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5478; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/Can-DiJeSt-75; + base:work\#ref-IDOrganisation base:organisation\/1158; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/548 a base:work; + base:work\#DateEnd_Fuzzy "1847"; + base:work\#DateEnd_Max "1847-12-31"^^xsd:date; + base:work\#DateEnd_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 548; + base:work\#comment "Königsberg"; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5481 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5481; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/1155; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5487 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1930"; + base:work\#DateStart_Max "1930-12-31"^^xsd:date; + base:work\#DateStart_Min "1930-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5487; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDOrganisation base:organisation\/1155; + base:work\#ref-IDPerson base:person\/PanAle-00 . + +base:work\/5496 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5496; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/LitRob-00 . + +base:work\/5499 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-05-20"^^xsd:date; + base:work\#DateStart_Min "1872-05-20"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5499; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/LitRob-00 . + +base:work\/55 a base:work; + base:work\#DateEnd_Fuzzy "Winter 1844/1845"; + base:work\#DateEnd_Max "1845-04-30"^^xsd:date; + base:work\#DateEnd_Min "1844-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Winter 1843/1844"; + base:work\#DateStart_Max "1844-04-30"^^xsd:date; + base:work\#DateStart_Min "1843-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 55; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/ViaPau-00 . + +base:work\/550 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 550; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "Königsberg"; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5502 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1873-06-03"^^xsd:date; + base:work\#DateEnd_Min "1873-06-03"^^xsd:date; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-06-03"^^xsd:date; + base:work\#DateStart_Min "1873-06-03"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5502; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/LitRob-00 . + +base:work\/5505 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1906-04-21"^^xsd:date; + base:work\#DateEnd_Min "1906-04-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5505; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/703; + base:work\#ref-IDPerson base:person\/LitRob-00 . + +base:work\/5508 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5508; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/551 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 551; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "Tilsit"; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5511 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1893"; + base:work\#DateStart_Max "1893-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5511; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/1164; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5514 a base:work; + base:work\#DateEnd_Fuzzy "between 1893 and 1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1893 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5514; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1167; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5517 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-06-20"^^xsd:date; + base:work\#DateEnd_Min "1911-06-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-06-20"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5517; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/552 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 552; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-Danz-00; + base:work\#ref-IDPerson base:person\/EicJos-00 . + +base:work\/5520 a base:work; + base:work\#DateEnd_Fuzzy "1899-1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5520; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDOrganisation base:organisation\/1170; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5523 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-06-24"^^xsd:date; + base:work\#DateEnd_Min "1914-06-24"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-06-24"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5523; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5526 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5526; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5529 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Min "1920-07-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1920"; + base:work\#DateStart_Max "1920-07-11"^^xsd:date; + base:work\#DateStart_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5529; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/553 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 553; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/EibSie-00 . + +base:work\/5538 a base:work; + base:work\#DateEnd_Fuzzy "1926"; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5538; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/1173; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/554 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 554; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/EibSie-00 . + +base:work\/5544 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5544; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/1176; + base:work\#ref-IDPerson base:person\/HouHar-00 . + +base:work\/5547 a base:work; + base:work\#DateEnd_Fuzzy "May 1865"; + base:work\#DateEnd_Max "1865-05-31"^^xsd:date; + base:work\#DateEnd_Min "1865-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5547; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-Egh-00; + base:work\#ref-IDOrganisation base:organisation\/707; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/555 a base:work; + base:work\#DateEnd_Fuzzy "1922"; + base:work\#DateEnd_Max "1922-12-31"^^xsd:date; + base:work\#DateEnd_Min "1922-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 555; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDPerson base:person\/EibSie-00 . + +base:work\/5550 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-05-31"^^xsd:date; + base:work\#DateStart_Min "1865-05-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5550; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/708; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/5553 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-05-31"^^xsd:date; + base:work\#DateStart_Min "1865-05-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5553; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDOrganisation base:organisation\/709; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/5556 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5556; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/710; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/5559 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5559; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDOrganisation base:organisation\/711; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/556 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 556; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5562 a base:work; + base:work\#DateEnd_Fuzzy "March 1896"; + base:work\#DateEnd_Max "1896-03-30"^^xsd:date; + base:work\#DateEnd_Min "1896-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-05-31"^^xsd:date; + base:work\#DateStart_Min "1891-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5562; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AUS-Vict-00; + base:work\#ref-IDOrganisation base:organisation\/712; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/5565 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1902-02-01"^^xsd:date; + base:work\#DateEnd_Min "1902-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-02-01"^^xsd:date; + base:work\#DateStart_Min "1902-02-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5565; + base:work\#ref-IDLocation base:location\/AUS-Melb-00; + base:work\#ref-IDOrganisation base:organisation\/713; + base:work\#ref-IDPerson base:person\/FenGeo-00 . + +base:work\/557 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 557; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Strb-00; + base:work\#ref-IDOrganisation base:organisation\/98; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/558 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 558; + base:work\#Profession base:Profession-Singer; + base:work\#comment "touring two years through Northern America"; + base:work\#ref-IDOrganisation base:organisation\/289; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5586 a base:work; + base:work\#DateEnd_Fuzzy "between December 1835 and December 1839"; + base:work\#DateEnd_Max "1839-12-31"^^xsd:date; + base:work\#DateEnd_Min "1835-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1831"; + base:work\#DateStart_Max "1831-05-09"^^xsd:date; + base:work\#DateStart_Min "1831-05-09"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5586; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5589 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-06-02"^^xsd:date; + base:work\#DateEnd_Min "1840-06-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1840"; + base:work\#DateStart_Max "1840-06-02"^^xsd:date; + base:work\#DateStart_Min "1840-06-02"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5589; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/1182; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/559 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 559; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5592 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-01-07"^^xsd:date; + base:work\#DateEnd_Min "1853-01-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-01-07"^^xsd:date; + base:work\#DateStart_Min "1853-01-07"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5592; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SCT-Dundee-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5595 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-01-23"^^xsd:date; + base:work\#DateEnd_Min "1855-01-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-01-23"^^xsd:date; + base:work\#DateStart_Min "1855-01-23"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5595; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1185; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5598 a base:work; + base:work\#DateEnd_Fuzzy "September 1855"; + base:work\#DateEnd_Max "1855-09-30"^^xsd:date; + base:work\#DateEnd_Min "1855-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-09-30"^^xsd:date; + base:work\#DateStart_Min "1855-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5598; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Sheff-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/56 a base:work; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 56; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1705; + base:work\#ref-IDOrganisation2 base:organisation\/1710; + base:work\#ref-IDPerson base:person\/TucSop-00 . + +base:work\/560 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 560; + base:work\#Profession base:Profession-Singer; + base:work\#comment "sang there in the UA of Salome, Elektra and Der Rosenkavalier"; + base:work\#ref-IDOrganisation base:organisation\/290; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5601 a base:work; + base:work\#DateEnd_Fuzzy "September 1855"; + base:work\#DateEnd_Max "1855-09-30"^^xsd:date; + base:work\#DateEnd_Min "1855-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-09-30"^^xsd:date; + base:work\#DateStart_Min "1855-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5601; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GB-NewCast-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5604 a base:work; + base:work\#DateEnd_Fuzzy "June 1856"; + base:work\#DateEnd_Max "1856-06-30"^^xsd:date; + base:work\#DateEnd_Min "1856-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1856"; + base:work\#DateStart_Max "1856-06-30"^^xsd:date; + base:work\#DateStart_Min "1856-06-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5604; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5607 a base:work; + base:work\#DateEnd_Fuzzy "February 1857"; + base:work\#DateEnd_Max "1857-02-28"^^xsd:date; + base:work\#DateEnd_Min "1857-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-02-28"^^xsd:date; + base:work\#DateStart_Min "1857-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5607; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-Kent-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/561 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 561; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5610 a base:work; + base:work\#DateEnd_Fuzzy "between March 1857 and December 1857"; + base:work\#DateEnd_Max "1857-12-31"^^xsd:date; + base:work\#DateEnd_Min "1857-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-03-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5610; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDOrganisation2 base:organisation\/1188; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5613 a base:work; + base:work\#DateEnd_Fuzzy "between December 1858 and December 1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5613; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/269; + base:work\#ref-IDOrganisation2 base:organisation\/1188; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5616 a base:work; + base:work\#DateEnd_Fuzzy "1858 till 1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1858"; + base:work\#DateStart_Max "1858-12-31"^^xsd:date; + base:work\#DateStart_Min "1858-12-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5616; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1191; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5619 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-02-16"^^xsd:date; + base:work\#DateEnd_Min "1859-02-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-02-16"^^xsd:date; + base:work\#DateStart_Min "1859-02-16"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5619; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1218; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/562 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 562; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "after her carrier as an opera singer she was a singing teacher in Wien"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/EibRiz-00 . + +base:work\/5622 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-04-04"^^xsd:date; + base:work\#DateEnd_Min "1859-04-04"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-04-04"^^xsd:date; + base:work\#DateStart_Min "1859-04-04"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5622; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5625 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-04-30"^^xsd:date; + base:work\#DateEnd_Min "1859-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-04-30"^^xsd:date; + base:work\#DateStart_Min "1859-04-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5625; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/1221; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5628 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-05-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-05-31"^^xsd:date; + base:work\#DateStart_Min "1859-04-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5628; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation2 base:organisation\/1242; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/563 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#Employment "Opera singer (bariton)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 563; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/SK-Brat-00; + base:work\#ref-IDPerson base:person\/EibKar-00 . + +base:work\/5631 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-10-30"^^xsd:date; + base:work\#DateEnd_Min "1859-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-10-30"^^xsd:date; + base:work\#DateStart_Min "1859-10-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5631; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/1245; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5634 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-07-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-07-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5634; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/1248; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5637 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-08-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-08-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5637; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-Kent-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/564 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 564; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDPerson base:person\/EibKar-00 . + +base:work\/5640 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-06-30"^^xsd:date; + base:work\#DateEnd_Min "1866-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-08-31"^^xsd:date; + base:work\#DateStart_Min "1865-08-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5640; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation2 base:organisation\/335; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5643 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-07-20"^^xsd:date; + base:work\#DateEnd_Min "1868-07-20"^^xsd:date; + base:work\#DateStart_Fuzzy "1866"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1866-07-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5643; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-Kent-00; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5646 a base:work; + base:work\#DateEnd_Fuzzy "1868"; + base:work\#DateEnd_Max "1868-09-26"^^xsd:date; + base:work\#DateEnd_Min "1868-09-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-08-31"^^xsd:date; + base:work\#DateStart_Min "1868-08-31"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5646; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5649 a base:work; + base:work\#DateEnd_Fuzzy "between September 1868 and April 1869"; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1868-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5649; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1257; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/565 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 565; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CH-Bas-00; + base:work\#ref-IDPerson base:person\/EibKar-00 . + +base:work\/5652 a base:work; + base:work\#DateEnd_Fuzzy "April 1869"; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1869-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1869-04-30"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5652; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/736; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5655 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and June 1869"; + base:work\#DateEnd_Max "1869-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-04-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5655; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5658 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and December 1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-06-30"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5658; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/566 a base:work; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 566; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/EibKar-00 . + +base:work\/5661 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and December 1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5661; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5664 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and June 1872"; + base:work\#DateEnd_Max "1872-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1872-06-30"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5664; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation2 base:organisation\/1260; + base:work\#ref-IDPerson base:person\/PynMar-00 . + +base:work\/5667 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1852 and 1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5667; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Kent-00; + base:work\#ref-IDOrganisation base:organisation\/1263; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/567 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 567; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/EibKar-00 . + +base:work\/5670 a base:work; + base:work\#DateEnd_Fuzzy "between 1861 and 1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5670; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Litchf-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5673 a base:work; + base:work\#DateEnd_Fuzzy "3 years"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5673; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Kent-00; + base:work\#ref-IDOrganisation base:organisation\/1263; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5676 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1865 and 1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5676; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-Windsor-00; + base:work\#ref-IDOrganisation base:organisation\/1266; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5679 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1865 and 1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5679; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/568 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 568; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Reg-00; + base:work\#ref-IDOrganisation base:organisation\/291; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5682 a base:work; + base:work\#DateEnd_Max "1868-09-26"^^xsd:date; + base:work\#DateEnd_Min "1868-09-26"^^xsd:date; + base:work\#DateStart_Max "1868-08-31"^^xsd:date; + base:work\#DateStart_Min "1868-08-31"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5682; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1269; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5685 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and June 1869"; + base:work\#DateEnd_Max "1869-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-04-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5685; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5688 a base:work; + base:work\#DateEnd_Fuzzy "between 21.12.1871 and 20.03.1872"; + base:work\#DateEnd_Max "1872-03-20"^^xsd:date; + base:work\#DateEnd_Min "1871-12-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1872-03-20"^^xsd:date; + base:work\#DateStart_Min "1871-12-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5688; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation2 base:organisation\/1272; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/569 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 569; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-Biala-00; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5691 a base:work; + base:work\#DateEnd_Fuzzy "between 21.12.1871 and 20.03.1872"; + base:work\#DateEnd_Max "1872-03-20"^^xsd:date; + base:work\#DateEnd_Min "1871-12-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1872-03-20"^^xsd:date; + base:work\#DateStart_Min "1871-12-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5691; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation2 base:organisation\/1272; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5694 a base:work; + base:work\#DateEnd_Max "1871-07-13"^^xsd:date; + base:work\#DateEnd_Min "1872-07-13"^^xsd:date; + base:work\#DateStart_Max "1872-07-03"^^xsd:date; + base:work\#DateStart_Min "1872-07-03"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5694; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1275; + base:work\#ref-IDOrganisation2 base:organisation\/1278; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5697 a base:work; + base:work\#DateEnd_Fuzzy "between 14.07.1872 and 20.12.1873"; + base:work\#DateEnd_Max "1873-12-20"^^xsd:date; + base:work\#DateEnd_Min "1872-07-14"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-09-22"^^xsd:date; + base:work\#DateStart_Min "1872-07-14"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5697; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/57 a base:work; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 57; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1715; + base:work\#ref-IDPerson base:person\/TucSop-00 . + +base:work\/570 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 570; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Franz-00; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5700 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1873 and 20.12.1873"; + base:work\#DateEnd_Max "1873-12-20"^^xsd:date; + base:work\#DateEnd_Min "1873-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall 1873"; + base:work\#DateStart_Max "1873-12-20"^^xsd:date; + base:work\#DateStart_Min "1873-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5700; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5703 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1873 and 20.03.1874"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1873-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1873-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5703; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5706 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 20.06.1874"; + base:work\#DateEnd_Max "1874-06-20"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring1874"; + base:work\#DateStart_Max "1874-06-20"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5706; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5709 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring1874"; + base:work\#DateStart_Max "1874-06-20"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5709; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-VirgCity-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/571 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 571; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Karlsb-00; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5712 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5712; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Nevada-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5715 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5715; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SilverCity-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5718 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5718; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DutchFlat-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/572 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 572; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-BadIschl-00; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5721 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5721; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Truck-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5724 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5724; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CarsonC-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5727 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5727; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1290; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/573 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 573; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/292; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5730 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5730; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1296; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5733 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5733; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Oregon-00; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5736 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5736; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1302; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5739 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5739; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/574 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 574; + base:work\#Profession base:Profession-Singer; + base:work\#comment "her husband Hans Claar was director and actor there"; + base:work\#ref-IDLocation base:location\/AT-Linz-00; + base:work\#ref-IDOrganisation base:organisation\/102; + base:work\#ref-IDPerson base:person\/EibAnt-00 . + +base:work\/5742 a base:work; + base:work\#DateEnd_Fuzzy "between 1876 and 1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1876 and 1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5742; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5745 a base:work; + base:work\#DateEnd_Fuzzy "1879"; + base:work\#DateEnd_Max "1879-05-24"^^xsd:date; + base:work\#DateEnd_Min "1879-05-24"^^xsd:date; + base:work\#DateStart_Fuzzy "1879"; + base:work\#DateStart_Max "1879-04-14"^^xsd:date; + base:work\#DateStart_Min "1879-04-14"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5745; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/263; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5748 a base:work; + base:work\#DateEnd_Fuzzy "between 01.01.1879 and 20.06.1886"; + base:work\#DateEnd_Max "1886-06-20"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 01.01.1879 and 20.06.1886"; + base:work\#DateStart_Max "1880-06-20"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5748; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1305; + base:work\#ref-IDOrganisation2 base:organisation\/1308; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/575 a base:work; + base:work\#DateStart_Fuzzy "1827"; + base:work\#DateStart_Max "1827-12-31"^^xsd:date; + base:work\#DateStart_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 575; + base:work\#Profession base:Profession-Actor; + base:work\#comment "debut, The Spoiled Child"; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/257; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/5751 a base:work; + base:work\#DateEnd_Fuzzy "between September 1881 and December 1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5751; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5754 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1887"; + base:work\#DateEnd_Max "1887-10-31"^^xsd:date; + base:work\#DateEnd_Min "1887-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1886"; + base:work\#DateStart_Max "1886-09-22"^^xsd:date; + base:work\#DateStart_Min "1886-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5754; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/5757 a base:work; + base:work\#DateEnd_Fuzzy "between January 1897 and September 1897"; + base:work\#DateEnd_Max "1897-09-30"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-09-23"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5757; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WhiTho-00 . + +base:work\/576 a base:work; + base:work\#DateStart_Fuzzy "1827"; + base:work\#DateStart_Max "1827-12-31"^^xsd:date; + base:work\#DateStart_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 576; + base:work\#Profession base:Profession-Actor; + base:work\#comment "1827 or 1828"; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDOrganisation base:organisation\/735; + base:work\#ref-IDPerson base:person\/DreLou-00 . + +base:work\/5765 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5765; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Ohio-01; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/577 a base:work; + base:work\#DateEnd_Fuzzy "1837"; + base:work\#DateEnd_Max "1837-12-31"^^xsd:date; + base:work\#DateEnd_Min "1837-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 577; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Debut on November 30, 1837"; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/550; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/5775 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5775; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/578 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 578; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/LT-Viln-00; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/5785 a base:work; + base:work\#DateEnd_Fuzzy "between September 1868 and April 1869"; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1868-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1868-12-31"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5785; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1257; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/579 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 579; + base:work\#Profession base:Profession-Actor; + base:work\#comment "condition in his contract: he wanted to play also at the German theatre there"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/5790 a base:work; + base:work\#DateEnd_Fuzzy "April 1869"; + base:work\#DateEnd_Max "1869-04-30"^^xsd:date; + base:work\#DateEnd_Min "1869-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1868"; + base:work\#DateStart_Max "1869-04-30"^^xsd:date; + base:work\#DateStart_Min "1868-09-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5790; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/736; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5795 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and June 1869"; + base:work\#DateEnd_Max "1869-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-04-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 5795; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/58 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 58; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/580 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 580; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/293; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/581 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 581; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/582 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 582; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Ensemble, influenced by Heinrich Laube he changed to other roles"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/203; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/583 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 583; + base:work\#Profession base:Profession-Actor; + base:work\#comment "live long contract, 1864 cancelled by himself after a disput with Karl August Ludwig Quanter"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/253; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/584 a base:work; + base:work\#DateEnd_Fuzzy "1860"; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 584; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Guest engagements in the 1850th and 1860th to Leipzig, Dresden, Berlin, Potsdam, Weimar, Breslau, Prag, München, Augsburg, Paris, St. Petersburg, Pest, Magdeburg, Schwerin, Nürnberg and Warschau"; + base:work\#ref-IDPerson base:person\/BogDaw-00 . + +base:work\/585 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 585; + base:work\#comment "conducted Tannhäuser"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/DamWal-00 . + +base:work\/586 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 586; + base:work\#comment "at the Met"; + base:work\#ref-IDPerson base:person\/DamWal-00 . + +base:work\/587 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 587; + base:work\#comment "he succeeded his father at the New York Oratorio Society"; + base:work\#ref-IDPerson base:person\/DamWal-00 . + +base:work\/588 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 588; + base:work\#comment "he succeeded his father at the New York Oratorio Society"; + base:work\#ref-IDPerson base:person\/DamWal-00 . + +base:work\/589 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 589; + base:work\#comment "He succeeded his father as conductor of the New York Symphony Society (later renamed the New York Symphony Orchestra)"; + base:work\#ref-IDOrganisation base:organisation\/294; + base:work\#ref-IDPerson base:person\/DamWal-00 . + +base:work\/59 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 59; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/590 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 590; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/295; + base:work\#ref-IDPerson base:person\/CogRos-00 . + +base:work\/591 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 591; + base:work\#Profession base:Profession-Actor; + base:work\#comment "playing with Barry Sullivan"; + base:work\#ref-IDPerson base:person\/CogRos-00 . + +base:work\/592 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 592; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Playing the roles of Lady Teazle, Countess Leika, Lady Clare and Rosalind, winning a pronounced success in each"; + base:work\#ref-IDOrganisation base:organisation\/233; + base:work\#ref-IDPerson base:person\/CogRos-00 . + +base:work\/5925 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1875 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "between 23.09.1875 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5925; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/593 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 593; + base:work\#Profession base:Profession-Actor; + base:work\#comment "but soon Coghlan left,being displeased with a part assigned to her in L' Abbe Constantin"; + base:work\#ref-IDOrganisation base:organisation\/296; + base:work\#ref-IDPerson base:person\/CogRos-00 . + +base:work\/5930 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1875 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "between 23.09.1875 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5930; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5935 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1875 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-09-23"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5935; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1345; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/594 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 594; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/138; + base:work\#ref-IDPerson base:person\/CogRos-00 . + +base:work\/5940 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5940; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Houst-00; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5945 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5945; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Texas-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/595 a base:work; + base:work\#DateEnd_Fuzzy "1892"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1892-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 595; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/297; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/5950 a base:work; + base:work\#DateEnd_Fuzzy "between 27.09.1884 and 20.06.1886"; + base:work\#DateEnd_Max "1886-06-20"^^xsd:date; + base:work\#DateEnd_Min "1884-09-27"^^xsd:date; + base:work\#DateStart_Fuzzy "1879-1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1879-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 5950; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1305; + base:work\#ref-IDOrganisation2 base:organisation\/1308; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5955 a base:work; + base:work\#DateEnd_Fuzzy "between September 1881 and December 1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5955; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/596 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 596; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/298; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/5960 a base:work; + base:work\#DateEnd_Fuzzy "between 23.09.1887 and 31.10.1887"; + base:work\#DateEnd_Max "1887-10-31"^^xsd:date; + base:work\#DateEnd_Min "1887-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "Sommer 1886"; + base:work\#DateStart_Max "1886-09-22"^^xsd:date; + base:work\#DateStart_Min "1886-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 5960; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5965 a base:work; + base:work\#DateEnd_Fuzzy "between December 1898 and December 1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-11-01"^^xsd:date; + base:work\#DateStart_Min "1887-09-23"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 5965; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1350; + base:work\#ref-IDOrganisation2 base:organisation\/440; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/597 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 597; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/230; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/5970 a base:work; + base:work\#DateEnd_Max "1897-03-06"^^xsd:date; + base:work\#DateEnd_Min "1897-03-06"^^xsd:date; + base:work\#DateStart_Max "1897-03-06"^^xsd:date; + base:work\#DateStart_Min "1897-03-06"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 5970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/598 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 598; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/111; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/5980 a base:work; + base:work\#DateEnd_Fuzzy "between 1898 and 1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1898 and 1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5980; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/440; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/5985 a base:work; + base:work\#DateEnd_Max "1900-02-04"^^xsd:date; + base:work\#DateEnd_Min "1900-02-04"^^xsd:date; + base:work\#DateStart_Max "1899-11-27"^^xsd:date; + base:work\#DateStart_Min "1899-11-27"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 5985; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1370; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/599 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 599; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/299; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6; + base:work\#Profession base:Profession-Singer; + base:work\#comment "she left Vienna because of disagreements with Gustav Mahler (Director"; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/450; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/60 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 60; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDOrganisation base:organisation\/92; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/600 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 600; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/300; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/601 a base:work; + base:work\#DateEnd_Fuzzy "1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1918-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 601; + base:work\#Profession base:Profession-Director; + base:work\#comment "after Coried changed to the new York metropolitan opera 1907 and the theatre became a bad reputation in the following years. He led it to old gloriosity and was stopped because of the first world war- his money was confiscated."; + base:work\#ref-IDOrganisation base:organisation\/301; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6015 a base:work; + base:work\#DateEnd_Fuzzy "1901-1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901-1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6015; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1385; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/602 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 602; + base:work\#Profession base:Profession-Actor; + base:work\#comment "several filmes, last one Foolish Wives still exists"; + base:work\#ref-IDOrganisation base:organisation\/304; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6025 a base:work; + base:work\#DateEnd_Fuzzy "between 05.04.1904 and 31.07.1904"; + base:work\#DateEnd_Max "1904-07-31"^^xsd:date; + base:work\#DateEnd_Min "1904-04-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-07-31"^^xsd:date; + base:work\#DateStart_Min "1904-04-05"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 6025; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/603 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 603; + base:work\#comment "Tours with Deutschen Volkstheater Wien"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/111; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6030 a base:work; + base:work\#DateEnd_Fuzzy "between August 1904 and December 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-08-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6030; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6035 a base:work; + base:work\#DateEnd_Fuzzy "between August 1904 and December 1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-08-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6035; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/604 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 604; + base:work\#comment "Tours with Deutschen Volkstheater Wien"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/111; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6040 a base:work; + base:work\#DateEnd_Fuzzy "January 1906"; + base:work\#DateEnd_Max "1906-01-30"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Max "1905-09-21"^^xsd:date; + base:work\#DateStart_Min "1905-09-21"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6040; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1375; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/605 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 605; + base:work\#comment "Guest engagements in Düsseldorf and in Oldenburg (first time at Großherzoglichen Theater in Oldenburg 14th January 1900 as Hamlet, last time 26th november 1911 as Othello)."; + base:work\#ref-IDLocation base:location\/GER-Ddorf-00; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/606 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 606; + base:work\#comment "Guest engagements in Düsseldorf and in Oldenburg (first time at Großherzoglichen Theater in Oldenburg 14th January 1900 as Hamlet, last time 26th november 1911 as Othello)."; + base:work\#ref-IDLocation base:location\/GER-Oldb-00; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6065 a base:work; + base:work\#DateEnd_Fuzzy "December 1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-12-01"^^xsd:date; + base:work\#DateStart_Max "1909-10-26"^^xsd:date; + base:work\#DateStart_Min "1909-10-26"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6065; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/570; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/607 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 607; + base:work\#Profession base:Profession-Actor; + base:work\#comment "For several times he played at Deutsches Theater in St. Petersburg"; + base:work\#ref-IDOrganisation base:organisation\/302; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6070 a base:work; + base:work\#DateEnd_Fuzzy "November 1910"; + base:work\#DateEnd_Max "1910-11-30"^^xsd:date; + base:work\#DateEnd_Min "1910-11-01"^^xsd:date; + base:work\#DateStart_Max "1910-08-11"^^xsd:date; + base:work\#DateStart_Min "1910-08-11"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6070; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6075 a base:work; + base:work\#DateEnd_Fuzzy "between 30.01.1912 and 25.02.1912"; + base:work\#DateEnd_Max "1912-02-25"^^xsd:date; + base:work\#DateEnd_Min "1912-01-30"^^xsd:date; + base:work\#DateStart_Max "1912-01-29"^^xsd:date; + base:work\#DateStart_Min "1912-01-29"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6075; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/608 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 608; + base:work\#Profession base:Profession-Actor; + base:work\#comment "His strongest international relation was to Deutsches Theater in New York, the Irving Place Theatre, with Heinrich Conried as director (first time april 1898 together with Agnes Sorma in Humperndincks Königskinder)"; + base:work\#ref-IDOrganisation base:organisation\/301; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6080 a base:work; + base:work\#DateEnd_Fuzzy "March 1912"; + base:work\#DateEnd_Max "1912-03-31"^^xsd:date; + base:work\#DateEnd_Min "1912-03-01"^^xsd:date; + base:work\#DateStart_Max "1912-02-26"^^xsd:date; + base:work\#DateStart_Min "1912-02-26"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6080; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/579; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6085 a base:work; + base:work\#DateEnd_Fuzzy "between 04.12.1912 and 31.12.1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-12-04"^^xsd:date; + base:work\#DateStart_Max "1912-12-03"^^xsd:date; + base:work\#DateStart_Min "1912-12-03"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6085; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/571; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/609 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 609; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Christians had negotiated a generous holiday arrangement with the Königliches Schauspielhaus Berlin, which allowed him to make guest appearances for more than three months a year. However, it must be to take into account that he needed 14 days of that time for the Bremen-New York ship and back. At least until 1906 he was able to spend several weeks in New York each year. "; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/543; + base:work\#ref-IDPerson base:person\/ChrRud-00 . + +base:work\/6090 a base:work; + base:work\#DateEnd_Max "1912-12-16"^^xsd:date; + base:work\#DateEnd_Min "1912-12-16"^^xsd:date; + base:work\#DateStart_Max "1912-12-16"^^xsd:date; + base:work\#DateStart_Min "1912-12-16"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6090; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/579; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6095 a base:work; + base:work\#DateEnd_Fuzzy "March 1913"; + base:work\#DateEnd_Max "1913-03-31"^^xsd:date; + base:work\#DateEnd_Min "1913-03-01"^^xsd:date; + base:work\#DateStart_Max "1913-01-23"^^xsd:date; + base:work\#DateStart_Min "1913-01-23"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6095; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/61 a base:work; + base:work\#DateEnd_Fuzzy "1925"; + base:work\#DateEnd_Max "1925-12-31"^^xsd:date; + base:work\#DateEnd_Min "1925-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 61; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDOrganisation base:organisation\/91; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/610 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 610; + base:work\#Profession base:Profession-Singer; + base:work\#comment "after finishing his lessons - Carl Rosa Opera Company"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/6100 a base:work; + base:work\#DateEnd_Fuzzy "June 1914"; + base:work\#DateEnd_Max "1914-06-30"^^xsd:date; + base:work\#DateEnd_Min "1914-06-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-05-11"^^xsd:date; + base:work\#DateStart_Min "1914-05-11"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6100; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6105 a base:work; + base:work\#DateEnd_Fuzzy "October 1914"; + base:work\#DateEnd_Max "1914-10-31"^^xsd:date; + base:work\#DateEnd_Min "1914-10-01"^^xsd:date; + base:work\#DateStart_Max "1914-09-05"^^xsd:date; + base:work\#DateStart_Min "1914-09-05"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6105; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/611 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment """Opera singer +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 611; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/6110 a base:work; + base:work\#DateEnd_Fuzzy "between 13.01.1915 and 31.01.1915"; + base:work\#DateEnd_Max "1915-01-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-13"^^xsd:date; + base:work\#DateStart_Max "1915-01-12"^^xsd:date; + base:work\#DateStart_Min "1915-01-12"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6110; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/612 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1892-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 612; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Bayr-00; + base:work\#ref-IDOrganisation base:organisation\/122; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/6120 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1921-01-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#DateStart_Max "1920-11-01"^^xsd:date; + base:work\#DateStart_Min "1920-11-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6120; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1400; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/613 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 613; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/6145 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1925-10-31"^^xsd:date; + base:work\#DateEnd_Min "1925-10-09"^^xsd:date; + base:work\#DateStart_Max "1925-10-08"^^xsd:date; + base:work\#DateStart_Min "1925-10-08"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6145; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1420; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/615 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Opera singer (old)"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 615; + base:work\#comment "first altistin"; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6150 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1926-05-31"^^xsd:date; + base:work\#DateEnd_Min "1926-05-01"^^xsd:date; + base:work\#DateStart_Max "1926-04-05"^^xsd:date; + base:work\#DateStart_Min "1926-04-05"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6150; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1425; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6155 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6155; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/616 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 616; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6160 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1927-03-31"^^xsd:date; + base:work\#DateEnd_Min "1927-03-01"^^xsd:date; + base:work\#DateStart_Max "1927-01-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-31"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6160; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1395; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6165 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-12-01"^^xsd:date; + base:work\#DateStart_Max "1927-10-11"^^xsd:date; + base:work\#DateStart_Min "1927-10-11"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6165; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1430; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/617 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 617; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6170 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6170; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/561; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/618 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 618; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/157; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6180 a base:work; + base:work\#DateEnd_Fuzzy "between 1865 and 1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1866-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 6180; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/IE-00; + base:work\#ref-IDOrganisation base:organisation\/1320; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/619 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 619; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6190 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1868-09-26"^^xsd:date; + base:work\#DateEnd_Min "1868-09-26"^^xsd:date; + base:work\#DateStart_Max "1868-08-31"^^xsd:date; + base:work\#DateStart_Min "1868-08-31"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6190; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1269; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/62 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 62; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDOrganisation base:organisation\/93; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/620 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 620; + base:work\#ref-IDLocation base:location\/NL-Rott-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/621 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 621; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6210 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-06-30"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6210; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6215 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1871-10-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1871-10-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6215; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/622 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 622; + base:work\#ref-IDLocation base:location\/GER-Kas-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6220 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1871-10-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1871-10-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 6220; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Alb-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6225 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1871-10-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1871-10-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6225; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1325; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/623 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 623; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6230 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1871-10-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1871-10-31"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6230; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/1330; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6235 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1871-11-30"^^xsd:date; + base:work\#DateEnd_Min "1871-10-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1871"; + base:work\#DateStart_Max "1871-10-31"^^xsd:date; + base:work\#DateStart_Min "1871-10-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6235; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/624 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 624; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6240 a base:work; + base:work\#DateEnd_Fuzzy "Winner 1871"; + base:work\#DateEnd_Max "1872-03-20"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Winner 1871"; + base:work\#DateStart_Max "1871-10-22"^^xsd:date; + base:work\#DateStart_Min "1871-10-08"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6240; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1335; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6245 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1872"; + base:work\#DateEnd_Max "1872-07-13"^^xsd:date; + base:work\#DateEnd_Min "1872-07-13"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-07-03"^^xsd:date; + base:work\#DateStart_Min "1872-07-03"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6245; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1275; + base:work\#ref-IDOrganisation2 base:organisation\/1278; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/625 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 625; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6250 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1872"; + base:work\#DateEnd_Max "1872-09-22"^^xsd:date; + base:work\#DateEnd_Min "1872-07-14"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-09-22"^^xsd:date; + base:work\#DateStart_Min "1872-07-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6250; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDOrganisation2 base:organisation\/1340; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6255 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1872"; + base:work\#DateEnd_Max "1872-09-22"^^xsd:date; + base:work\#DateEnd_Min "1872-07-14"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-09-22"^^xsd:date; + base:work\#DateStart_Min "1872-07-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6255; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/626 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 626; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6260 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1873-12-20"^^xsd:date; + base:work\#DateEnd_Min "1872-07-14"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1872"; + base:work\#DateStart_Max "1872-09-22"^^xsd:date; + base:work\#DateStart_Min "1872-07-14"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6260; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6265 a base:work; + base:work\#DateEnd_Fuzzy "Fall 1873"; + base:work\#DateEnd_Max "1873-12-20"^^xsd:date; + base:work\#DateEnd_Min "1873-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall 1873"; + base:work\#DateStart_Max "1873-12-20"^^xsd:date; + base:work\#DateStart_Min "1873-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6265; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/627 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 627; + base:work\#ref-IDLocation base:location\/CH-Bas-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6270 a base:work; + base:work\#DateEnd_Fuzzy "Fall and Winter  1873"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1873-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "Fall and Winter  1873"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1873-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Harrisb-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6275 a base:work; + base:work\#DateEnd_Fuzzy "Spring 1874"; + base:work\#DateEnd_Max "1874-06-20"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring 1874"; + base:work\#DateStart_Max "1874-06-20"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6275; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1284; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/628 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 628; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6280 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Spring 1874"; + base:work\#DateStart_Max "1874-06-20"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6280; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-VirgCity-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6285 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6285; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Nevada-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/629 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 629; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6290 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6290; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SilverCity-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6295 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6295; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-DutchFlat-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/63 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 63; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/630 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 630; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDPerson base:person\/BraMar-01 . + +base:work\/6300 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6300; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Truck-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6305 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6305; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CarsonC-00; + base:work\#ref-IDOrganisation2 base:organisation\/1287; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/631 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 631; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "first engagement"; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/6310 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1290; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6315 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6315; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Portl-00; + base:work\#ref-IDOrganisation base:organisation\/1296; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/632 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 632; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/6320 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6320; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Oregon-00; + base:work\#ref-IDOrganisation2 base:organisation\/1293; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6325 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6325; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1302; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/633 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 633; + base:work\#comment "invitation to replace Carlotta Grisi"; + base:work\#ref-IDOrganisation base:organisation\/305; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/6330 a base:work; + base:work\#DateEnd_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-03-21"^^xsd:date; + base:work\#DateStart_Fuzzy "between 21.03.1874 and 31.12.1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6330; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation2 base:organisation\/1281; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/634 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 634; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/635 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 635; + base:work\#Profession base:Profession-Dancer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/306; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/636 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 636; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/307; + base:work\#ref-IDPerson base:person\/BraMar-00 . + +base:work\/637 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 637; + base:work\#Profession base:Profession-Singer; + base:work\#comment "first engagement"; + base:work\#ref-IDLocation base:location\/CZ-Olo-00; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/638 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 638; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Magdb-00; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6385 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1897-09-30"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-09-30"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6385; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation2 base:organisation\/1365; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/639 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 639; + base:work\#ref-IDLocation base:location\/GER-Altenb-00; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/64 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 64; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/94; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/640 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 640; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6400 a base:work; + base:work\#DateEnd_Max "1902-05-31"^^xsd:date; + base:work\#DateEnd_Min "1902-05-31"^^xsd:date; + base:work\#DateStart_Max "1900-01-16"^^xsd:date; + base:work\#DateStart_Min "1900-01-16"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6400; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6405 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1901-06-29"^^xsd:date; + base:work\#DateEnd_Min "1901-06-29"^^xsd:date; + base:work\#DateStart_Max "1901-02-04"^^xsd:date; + base:work\#DateStart_Min "1901-02-04"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6405; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/136; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/641 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 641; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6410 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6410; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation2 base:organisation\/1385; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/642 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 642; + base:work\#ref-IDOrganisation base:organisation\/308; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6420 a base:work; + base:work\#DateEnd_Fuzzy "1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6420; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6425 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1904-06-30"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1904-06-30"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6425; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/643 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 643; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6430 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1904-04-30"^^xsd:date; + base:work\#DateEnd_Min "1904-04-04"^^xsd:date; + base:work\#DateStart_Max "1904-04-04"^^xsd:date; + base:work\#DateStart_Min "1904-04-04"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/570; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/644 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 644; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/645 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 645; + base:work\#ref-IDOrganisation base:organisation\/312; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6455 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1907-03-24"^^xsd:date; + base:work\#DateEnd_Min "1907-03-24"^^xsd:date; + base:work\#DateStart_Max "1906-10-03"^^xsd:date; + base:work\#DateStart_Min "1906-10-03"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6455; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1375; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/646 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-12-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 646; + base:work\#ref-IDOrganisation base:organisation\/311; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6460 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1907-05-31"^^xsd:date; + base:work\#DateEnd_Min "1907-05-31"^^xsd:date; + base:work\#DateStart_Max "1907-05-06"^^xsd:date; + base:work\#DateStart_Min "1907-05-06"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6460; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDOrganisation2 base:organisation\/135; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6465 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1907-11-30"^^xsd:date; + base:work\#DateEnd_Min "1907-11-30"^^xsd:date; + base:work\#DateStart_Max "1907-08-31"^^xsd:date; + base:work\#DateStart_Min "1907-08-31"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6465; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1370; + base:work\#ref-IDOrganisation2 base:organisation\/1385; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/647 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 647; + base:work\#ref-IDOrganisation base:organisation\/310; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6470 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1908-02-17"^^xsd:date; + base:work\#DateEnd_Min "1908-03-03"^^xsd:date; + base:work\#DateStart_Max "1908-02-17"^^xsd:date; + base:work\#DateStart_Min "1908-02-17"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6470; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/648 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 648; + base:work\#ref-IDOrganisation base:organisation\/80; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/649 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 649; + base:work\#ref-IDOrganisation base:organisation\/298; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/65 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 65; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/650 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 650; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/651 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 651; + base:work\#ref-IDOrganisation base:organisation\/309; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/652 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 652; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/BlaEls-00 . + +base:work\/6525 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1915-10-31"^^xsd:date; + base:work\#DateEnd_Min "1915-10-01"^^xsd:date; + base:work\#DateStart_Max "1915-09-20"^^xsd:date; + base:work\#DateStart_Min "1915-09-20"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6525; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1395; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/653 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 653; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/558; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6535 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1933-05-31"^^xsd:date; + base:work\#DateEnd_Min "1922-05-09"^^xsd:date; + base:work\#DateStart_Max "1922-05-08"^^xsd:date; + base:work\#DateStart_Min "1922-05-08"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6535; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1405; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/654 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 654; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/561; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6540 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1923-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6540; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/6545 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1924-07-05"^^xsd:date; + base:work\#DateEnd_Min "1924-07-05"^^xsd:date; + base:work\#DateStart_Max "1924-01-29"^^xsd:date; + base:work\#DateStart_Min "1924-01-29"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6545; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1410; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/655 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 655; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/557; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6550 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1925-06-07"^^xsd:date; + base:work\#DateEnd_Min "1925-06-07"^^xsd:date; + base:work\#DateStart_Max "1925-06-01"^^xsd:date; + base:work\#DateStart_Min "1925-06-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6550; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1415; + base:work\#ref-IDPerson base:person\/WhiBla-00 . + +base:work\/656 a base:work; + base:work\#DateEnd_Min "1879-04-30"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 656; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/562; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/657 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 657; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/563; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/658 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 658; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/564; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6580 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and June 1869"; + base:work\#DateEnd_Max "1869-06-30"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-05-31"^^xsd:date; + base:work\#DateStart_Min "1869-04-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6580; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/KelAlf-00 . + +base:work\/6585 a base:work; + base:work\#DateEnd_Fuzzy "between May 1869 and December 1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-06-30"^^xsd:date; + base:work\#DateStart_Min "1869-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6585; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation2 base:organisation\/1254; + base:work\#ref-IDPerson base:person\/KelAlf-00 . + +base:work\/659 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 659; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/568; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6590 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-05-04"^^xsd:date; + base:work\#DateEnd_Min "1872-05-04"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-03-18"^^xsd:date; + base:work\#DateStart_Min "1872-03-18"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6590; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/KelAlf-00 . + +base:work\/6595 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-07-13"^^xsd:date; + base:work\#DateEnd_Min "1872-07-13"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-07-03"^^xsd:date; + base:work\#DateStart_Min "1872-07-03"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6595; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1445; + base:work\#ref-IDOrganisation2 base:organisation\/1440; + base:work\#ref-IDPerson base:person\/KelAlf-00 . + +base:work\/66 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 66; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/94; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/660 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 660; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/565; + base:work\#ref-IDPerson base:person\/BisKat-00 . + +base:work\/6600 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6600; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDOrganisation2 base:organisation\/1475; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6605 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6605; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1480; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6610 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-12-31"^^xsd:date; + base:work\#DateStart_Min "1885-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6610; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/588; + base:work\#ref-IDOrganisation2 base:organisation\/1485; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6615 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1886"; + base:work\#DateStart_Max "1886-12-31"^^xsd:date; + base:work\#DateStart_Min "1886-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6615; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1455; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6620 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6620; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation2 base:organisation\/1490; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6625 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6625; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1495; + base:work\#ref-IDOrganisation2 base:organisation\/1500; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6630 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6630; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1505; + base:work\#ref-IDOrganisation2 base:organisation\/1510; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6635 a base:work; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-12-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6635; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1515; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6640 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6640; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/726; + base:work\#ref-IDOrganisation2 base:organisation\/1520; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/6645 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6645; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1470; + base:work\#ref-IDOrganisation2 base:organisation\/1525; + base:work\#ref-IDPerson base:person\/CarGae-00 . + +base:work\/665 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 665; + base:work\#Profession base:Profession-Director; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDOrganisation base:organisation\/529; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6650 a base:work; + base:work\#DateEnd_Fuzzy "1844"; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1844-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6650; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6655 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6655; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/666 a base:work; + base:work\#DateEnd_Fuzzy "1823"; + base:work\#DateEnd_Max "1823-12-31"^^xsd:date; + base:work\#DateEnd_Min "1823-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 666; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/317; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6660 a base:work; + base:work\#DateEnd_Fuzzy "between 1854 and 1855"; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-08-12"^^xsd:date; + base:work\#DateStart_Min "1854-08-12"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6660; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6665 a base:work; + base:work\#DateEnd_Fuzzy "between 1854 and 1855"; + base:work\#DateStart_Max "1854-08-12"^^xsd:date; + base:work\#DateStart_Min "1854-08-12"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6665; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AT-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/667 a base:work; + base:work\#DateEnd_Fuzzy "1823"; + base:work\#DateEnd_Max "1823-12-31"^^xsd:date; + base:work\#DateEnd_Min "1823-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 667; + base:work\#ref-IDOrganisation base:organisation\/318; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6670 a base:work; + base:work\#DateEnd_Fuzzy "between 1855 and 1857"; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6670; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6675 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1857"; + base:work\#DateStart_Max "1857-12-31"^^xsd:date; + base:work\#DateStart_Min "1857-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6675; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/668 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 668; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/319; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6680 a base:work; + base:work\#DateEnd_Fuzzy "between 1872 and 1873"; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6680; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/1535; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6685 a base:work; + base:work\#DateEnd_Fuzzy "1873"; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-12-31"^^xsd:date; + base:work\#DateStart_Min "1873-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6685; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/669 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 669; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6690 a base:work; + base:work\#DateEnd_Fuzzy "between 1873 and 1874"; + base:work\#DateStart_Fuzzy "1873"; + base:work\#DateStart_Max "1873-12-31"^^xsd:date; + base:work\#DateStart_Min "1873-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6690; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6695 a base:work; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6695; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/67 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 67; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/TomMar-00 . + +base:work\/670 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 670; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6700 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-04-30"^^xsd:date; + base:work\#DateStart_Min "1874-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6700; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CN-SH-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6705 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6705; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/CN-HKG-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/671 a base:work; + base:work\#DateEnd_Fuzzy "1833"; + base:work\#DateEnd_Max "1833-12-31"^^xsd:date; + base:work\#DateEnd_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 671; + base:work\#ref-IDOrganisation base:organisation\/320; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6710 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6710; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6715 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6715; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/672 a base:work; + base:work\#DateEnd_Fuzzy "1833"; + base:work\#DateEnd_Max "1833-12-31"^^xsd:date; + base:work\#DateEnd_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 672; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6720 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6720; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/SG-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6725 a base:work; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-02-28"^^xsd:date; + base:work\#DateStart_Min "1875-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6725; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-CA-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/673 a base:work; + base:work\#DateEnd_Fuzzy "May 1834"; + base:work\#DateEnd_Max "1834-05-31"^^xsd:date; + base:work\#DateEnd_Min "1834-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 673; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/317; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6730 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-10-31"^^xsd:date; + base:work\#DateStart_Min "1875-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6730; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6735 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6735; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/674 a base:work; + base:work\#DateEnd_Fuzzy "May 1834"; + base:work\#DateEnd_Max "1834-05-31"^^xsd:date; + base:work\#DateEnd_Min "1834-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 674; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/318; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6740 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1876"; + base:work\#DateStart_Max "1876-12-31"^^xsd:date; + base:work\#DateStart_Min "1876-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6740; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/IDN-Java-00; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/6745 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6745; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1530; + base:work\#ref-IDPerson base:person\/GodAra-00 . + +base:work\/675 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 675; + base:work\#ref-IDOrganisation base:organisation\/321; + base:work\#ref-IDPerson base:person\/BarDom-00 . + +base:work\/6750 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6750; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation2 base:organisation\/1540; + base:work\#ref-IDPerson base:person\/MeyMor-00 . + +base:work\/6755 a base:work; + base:work\#DateEnd_Fuzzy "1919"; + base:work\#DateEnd_Max "1919-12-31"^^xsd:date; + base:work\#DateEnd_Min "1919-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1919"; + base:work\#DateStart_Max "1919-12-31"^^xsd:date; + base:work\#DateStart_Min "1919-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6755; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/1545; + base:work\#ref-IDOrganisation2 base:organisation\/1550; + base:work\#ref-IDPerson base:person\/MeyMor-00 . + +base:work\/676 a base:work; + base:work\#DateEnd_Fuzzy "Dezember 1865"; + base:work\#DateStart_Max "1865-12-31"^^xsd:date; + base:work\#DateStart_Min "1865-12-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 676; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-EDI-00; + base:work\#ref-IDOrganisation base:organisation\/554; + base:work\#ref-IDPerson base:person\/GeoWil-00 . + +base:work\/6760 a base:work; + base:work\#DateEnd_Fuzzy "1928"; + base:work\#DateEnd_Max "1928-12-31"^^xsd:date; + base:work\#DateEnd_Min "1928-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1928"; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6760; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation2 base:organisation\/1555; + base:work\#ref-IDPerson base:person\/MeyMor-00 . + +base:work\/6765 a base:work; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6765; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MeyMor-00 . + +base:work\/677 a base:work; + base:work\#Employment """Opera singer (old), also actress in play operas +"""; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 677; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/80; + base:work\#ref-IDPerson base:person\/AlbMar-00 . + +base:work\/6770 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6770; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-Buch-00; + base:work\#ref-IDOrganisation base:organisation\/730; + base:work\#ref-IDPerson base:person\/MisMim-00 . + +base:work\/6775 a base:work; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6775; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ROU-00; + base:work\#ref-IDPerson base:person\/MisMim-00 . + +base:work\/678 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 678; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/GarMan-00 . + +base:work\/6780 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6780; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MisMim-00 . + +base:work\/679 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 679; + base:work\#Profession base:Profession-Composer; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/GarMan-00 . + +base:work\/6790 a base:work; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1923-01-01"^^xsd:date; + base:work\#DateStart_Min "1901-05-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6790; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/1615; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/68 a base:work; + base:work\#Employment "Ballett master "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 68; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/680 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 680; + base:work\#Profession base:Profession-Manager; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/GarMan-00 . + +base:work\/6800 a base:work; + base:work\#DateEnd_Fuzzy "1923"; + base:work\#DateEnd_Max "1923-12-23"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6800; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/1540; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/681 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 681; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/GarMan-00 . + +base:work\/6810 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-11-16"^^xsd:date; + base:work\#DateEnd_Min "1940-11-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6810; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/794; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/6815 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-11-16"^^xsd:date; + base:work\#DateEnd_Min "1940-11-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1923"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6815; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1630; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/682 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 682; + base:work\#comment "debuts"; + base:work\#ref-IDOrganisation base:organisation\/320; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6820 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-11-16"^^xsd:date; + base:work\#DateEnd_Min "1940-11-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6820; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation2 base:organisation\/1635; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/6825 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-11-16"^^xsd:date; + base:work\#DateEnd_Min "1940-11-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1934"; + base:work\#DateStart_Max "1934-12-31"^^xsd:date; + base:work\#DateStart_Min "1934-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6825; + base:work\#Profession base:Profession-Agent; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation2 base:organisation\/1640; + base:work\#ref-IDPerson base:person\/BecMar-00 . + +base:work\/683 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 683; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "Contract with impresario Alessandro Lanari: She danced at La Fenice (Venice) and San Carlo (Neapel)"; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6830 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6830; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Sourcesay the Academy only existed from 1875 onwards"; + base:work\#ref-IDLocation base:location\/CA-Montr-00; + base:work\#ref-IDOrganisation base:organisation\/131; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6835 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1881"; + base:work\#DateStart_Max "1881-12-31"^^xsd:date; + base:work\#DateStart_Min "1881-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6835; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/684 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 684; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "Contract with impresario Alessandro Lanari: She danced at La Fenice (Venice) and San Carlo (Neapel)"; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6840 a base:work; + base:work\#DateEnd_Fuzzy "1886"; + base:work\#DateEnd_Max "1886-12-31"^^xsd:date; + base:work\#DateEnd_Min "1886-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6840; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation2 base:organisation\/1650; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6845 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6845; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1655; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/685 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 685; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "1834 Grisi Carlotta met Jules Perrot and travelled together with him"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/555; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6850 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6850; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1660; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6855 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6855; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/686 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 686; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6860 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6860; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/1660; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6865 a base:work; + base:work\#DateEnd_Fuzzy "between January 1905 and December 1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6865; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/687 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 687; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/441; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6870 a base:work; + base:work\#DateEnd_Fuzzy "between January 1910 and December 1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6870; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/138; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6875 a base:work; + base:work\#DateEnd_Fuzzy "between January 1912 and December 1918"; + base:work\#DateEnd_Max "1918-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6875; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/337; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/688 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 688; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDOrganisation base:organisation\/529; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6880 a base:work; + base:work\#DateEnd_Fuzzy "1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1931"; + base:work\#DateStart_Max "1931-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6880; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-Flor-00; + base:work\#ref-IDOrganisation base:organisation\/1665; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/6885 a base:work; + base:work\#DateEnd_Fuzzy "1936"; + base:work\#DateEnd_Max "1936-12-31"^^xsd:date; + base:work\#DateEnd_Min "1936-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1931"; + base:work\#DateStart_Max "1931-12-31"^^xsd:date; + base:work\#DateStart_Min "1931-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6885; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/USA-Flor-00; + base:work\#ref-IDOrganisation base:organisation\/1670; + base:work\#ref-IDPerson base:person\/RusAnn-00 . + +base:work\/689 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 689; + base:work\#Profession base:Profession-Dancer; + base:work\#Profession2 base:Profession-Singer; + base:work\#comment "Jules Perrot organized her the job"; + base:work\#ref-IDOrganisation base:organisation\/322; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6890 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1874-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 6890; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/GER-Weim-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6895 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 6895; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GR-Athen-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/69 a base:work; + base:work\#Employment "Ballett master"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 69; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/690 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 690; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "because Fanny Elßler was on tour in North America"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6900 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6900; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/115; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6905 a base:work; + base:work\#DateEnd_Fuzzy "between 1880 and 1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6905; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1191; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/691 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 691; + base:work\#Profession base:Profession-Dancer; + base:work\#comment "yearly in guest appearences"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/GriCar-00 . + +base:work\/6910 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6910; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/267; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6915 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6915; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/692 a base:work; + base:work\#DateEnd_Fuzzy "1839"; + base:work\#DateEnd_Max "1839-12-31"^^xsd:date; + base:work\#DateEnd_Min "1839-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1838"; + base:work\#DateStart_Max "1838-12-31"^^xsd:date; + base:work\#DateStart_Min "1838-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 692; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/GriErn-00 . + +base:work\/6920 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6920; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6925 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6925; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/693 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 693; + base:work\#Profession base:Profession-Singer; + base:work\#comment "guest tour"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GriErn-00 . + +base:work\/6930 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6930; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6935 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6935; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/694 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 694; + base:work\#Profession base:Profession-Singer; + base:work\#comment "debut with “Romeo” in I Capuleti e i Montecchi "; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6940 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6940; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/1675; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6945 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-12-31"^^xsd:date; + base:work\#DateEnd_Min "1909-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6945; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation2 base:organisation\/267; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/695 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 695; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6950 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6950; + base:work\#Profession base:Profession-Musician; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6955 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6955; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/1680; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/696 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 696; + base:work\#Profession base:Profession-Singer; + base:work\#comment "tours to London"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6960 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 6960; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1685; + base:work\#ref-IDPerson base:person\/SemMar-00 . + +base:work\/6965 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-12-31"^^xsd:date; + base:work\#DateEnd_Min "1845-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6965; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/697 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 697; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6970 a base:work; + base:work\#DateEnd_Fuzzy "1852"; + base:work\#DateEnd_Max "1852-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6970; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/6975 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6975; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation base:organisation\/346; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/698 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 698; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6980 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6980; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Sacram-00; + base:work\#ref-IDOrganisation base:organisation\/1700; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/6985 a base:work; + base:work\#DateEnd_Fuzzy "between 1850 and 1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6985; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/699 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 699; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Not clear if tour or engagement"; + base:work\#ref-IDLocation base:location\/IT-Tur-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/6990 a base:work; + base:work\#DateEnd_Fuzzy "between 1850 and 1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1859-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 6990; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AUS-00; + base:work\#ref-IDPerson base:person\/NorCat-00 . + +base:work\/6995 a base:work; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 6995; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Hartf-00; + base:work\#ref-IDOrganisation base:organisation\/1720; + base:work\#ref-IDPerson base:person\/TucSop-00 . + +base:work\/7 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Between 1905 and 1907 guest engagements at Berliner Hofoper"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/70 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#Employment "Ballett master"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 70; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/700 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 700; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Not clear if tour or engagement"; + base:work\#ref-IDLocation base:location\/IT-BOL-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/7000 a base:work; + base:work\#DateEnd_Max "1926-12-31"^^xsd:date; + base:work\#DateEnd_Min "1926-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1926"; + base:work\#DateStart_Max "1926-12-31"^^xsd:date; + base:work\#DateStart_Min "1926-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7000; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1725; + base:work\#ref-IDPerson base:person\/TucSop-00 . + +base:work\/7001 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7001; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDOrganisation2 base:organisation\/1726; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7006 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7006; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1731; + base:work\#ref-IDOrganisation2 base:organisation\/1736; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/701 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 701; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Not clear if tour or engagement"; + base:work\#ref-IDLocation base:location\/IT-Mant-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/7011 a base:work; + base:work\#DateStart_Fuzzy "24th March 1856"; + base:work\#DateStart_Min "1856-03-24"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7011; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/604; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7016 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-06-03"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "20th August 1856"; + base:work\#DateStart_Min "1856-08-20"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7016; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/604; + base:work\#ref-IDOrganisation2 base:organisation\/1741; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/702 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 702; + base:work\#Profession base:Profession-Singer; + base:work\#comment """Not clear if tour or engagement +"""; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/7021 a base:work; + base:work\#DateEnd_Fuzzy "12th September 1863"; + base:work\#DateEnd_Max "1863-09-12"^^xsd:date; + base:work\#DateEnd_Min "1863-09-12"^^xsd:date; + base:work\#DateStart_Fuzzy "3rd June 1856"; + base:work\#DateStart_Max "1858-06-03"^^xsd:date; + base:work\#DateStart_Min "1858-06-03"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7021; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1746; + base:work\#ref-IDOrganisation2 base:organisation\/1751; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7026 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-11-18"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-11-18"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7026; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/1736; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/703 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 703; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Not clear if tour or engagement"; + base:work\#ref-IDLocation base:location\/IT-Bergam-00; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/7031 a base:work; + base:work\#DateEnd_Fuzzy "18th November 1863"; + base:work\#DateEnd_Max "1864-04-15"^^xsd:date; + base:work\#DateEnd_Min "1863-11-18"^^xsd:date; + base:work\#DateStart_Fuzzy "18th November 1863"; + base:work\#DateStart_Max "1863-11-18"^^xsd:date; + base:work\#DateStart_Min "1863-11-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7031; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDOrganisation2 base:organisation\/1751; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7036 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "16th April 1864"; + base:work\#DateStart_Max "1864-04-16"^^xsd:date; + base:work\#DateStart_Min "1864-04-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7036; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/1751; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/704 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 704; + base:work\#Profession base:Profession-Singer; + base:work\#comment "last time she sang on stage (again Romeo)"; + base:work\#ref-IDOrganisation base:organisation\/307; + base:work\#ref-IDPerson base:person\/GriGiu-00 . + +base:work\/7041 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7041; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1766; + base:work\#ref-IDOrganisation2 base:organisation\/1771; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7046 a base:work; + base:work\#DateEnd_Fuzzy "13th March 1867"; + base:work\#DateEnd_Max "1867-03-13"^^xsd:date; + base:work\#DateEnd_Min "1867-03-13"^^xsd:date; + base:work\#DateStart_Fuzzy "13th May 1865"; + base:work\#DateStart_Max "1865-05-13"^^xsd:date; + base:work\#DateStart_Min "1865-05-13"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7046; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1746; + base:work\#ref-IDOrganisation2 base:organisation\/1776; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/705 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 705; + base:work\#Profession base:Profession-Singer; + base:work\#comment "contract with Impresario Lanari"; + base:work\#ref-IDLocation base:location\/IT-BOL-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7051 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1867"; + base:work\#DateStart_Max "1867-12-31"^^xsd:date; + base:work\#DateStart_Min "1867-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7051; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/1781; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7056 a base:work; + base:work\#DateEnd_Fuzzy "beginning of 1868"; + base:work\#DateEnd_Max "1868-03-15"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "6th October 1867"; + base:work\#DateStart_Max "1867-10-06"^^xsd:date; + base:work\#DateStart_Min "1867-10-06"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7056; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1786; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/706 a base:work; + base:work\#DateEnd_Fuzzy "1830"; + base:work\#DateEnd_Max "1830-12-31"^^xsd:date; + base:work\#DateEnd_Min "1830-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 706; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/323; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7061 a base:work; + base:work\#DateEnd_Fuzzy "Max. 24th July 1868"; + base:work\#DateEnd_Max "1868-07-24"^^xsd:date; + base:work\#DateEnd_Min "1868-03-16"^^xsd:date; + base:work\#DateStart_Fuzzy "16th March 1868"; + base:work\#DateStart_Max "1868-03-16"^^xsd:date; + base:work\#DateStart_Min "1868-03-16"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7061; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7066 a base:work; + base:work\#DateEnd_Fuzzy "between 19th March 1869 and 20th April 1870"; + base:work\#DateEnd_Max "1870-04-20"^^xsd:date; + base:work\#DateEnd_Min "1869-03-19"^^xsd:date; + base:work\#DateStart_Fuzzy "25th July 1868"; + base:work\#DateStart_Max "1868-07-25"^^xsd:date; + base:work\#DateStart_Min "1868-07-25"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7066; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1796; + base:work\#ref-IDOrganisation2 base:organisation\/1801; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/707 a base:work; + base:work\#DateStart_Fuzzy "September 1831"; + base:work\#DateStart_Max "1831-09-30"^^xsd:date; + base:work\#DateStart_Min "1831-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 707; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7071 a base:work; + base:work\#DateEnd_Fuzzy "Max. 27th August 1873"; + base:work\#DateEnd_Max "1873-08-27"^^xsd:date; + base:work\#DateEnd_Min "1870-04-20"^^xsd:date; + base:work\#DateStart_Fuzzy "20th April 1870"; + base:work\#DateStart_Max "1870-04-20"^^xsd:date; + base:work\#DateStart_Min "1870-04-20"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7071; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1806; + base:work\#ref-IDOrganisation2 base:organisation\/1811; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7076 a base:work; + base:work\#DateEnd_Fuzzy "Max. 1st October 1873"; + base:work\#DateEnd_Max "1873-10-01"^^xsd:date; + base:work\#DateEnd_Min "1873-08-28"^^xsd:date; + base:work\#DateStart_Fuzzy "28th August 1873"; + base:work\#DateStart_Max "1873-08-28"^^xsd:date; + base:work\#DateStart_Min "1873-08-28"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7076; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1816; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/708 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 708; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7081 a base:work; + base:work\#DateEnd_Fuzzy "Max. 20th November 1873"; + base:work\#DateEnd_Max "1873-11-20"^^xsd:date; + base:work\#DateEnd_Min "1873-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1st October 1873"; + base:work\#DateStart_Max "1873-10-01"^^xsd:date; + base:work\#DateStart_Min "1873-10-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7081; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7086 a base:work; + base:work\#DateEnd_Fuzzy "Max 7th December 1873"; + base:work\#DateEnd_Max "1873-12-07"^^xsd:date; + base:work\#DateEnd_Min "1873-11-20"^^xsd:date; + base:work\#DateStart_Fuzzy "20th November 1873"; + base:work\#DateStart_Max "1873-11-20"^^xsd:date; + base:work\#DateStart_Min "1873-11-20"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7086; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1816; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/709 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 709; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7091 a base:work; + base:work\#DateEnd_Fuzzy "Max. 12th October 1874"; + base:work\#DateEnd_Max "1874-10-12"^^xsd:date; + base:work\#DateEnd_Min "1873-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "7th December 1873"; + base:work\#DateStart_Max "1873-12-07"^^xsd:date; + base:work\#DateStart_Min "1873-12-07"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7091; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1806; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7096 a base:work; + base:work\#DateEnd_Fuzzy "Max. 10th April 1878"; + base:work\#DateEnd_Max "1878-04-10"^^xsd:date; + base:work\#DateEnd_Min "1874-10-13"^^xsd:date; + base:work\#DateStart_Fuzzy "13th October 1874"; + base:work\#DateStart_Max "1874-10-13"^^xsd:date; + base:work\#DateStart_Min "1874-10-13"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7096; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1756; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/71 a base:work; + base:work\#Employment "Ballett master"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 71; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/710 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 710; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7101 a base:work; + base:work\#DateEnd_Fuzzy "Max. 15th April 1890"; + base:work\#DateEnd_Max "1890-04-15"^^xsd:date; + base:work\#DateEnd_Min "1890-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "11th April 1878"; + base:work\#DateStart_Max "1878-04-11"^^xsd:date; + base:work\#DateStart_Min "1878-04-11"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7101; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1826; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7106 a base:work; + base:work\#DateEnd_Fuzzy "Max. 8th June 1890"; + base:work\#DateEnd_Max "1890-06-08"^^xsd:date; + base:work\#DateEnd_Min "1890-04-22"^^xsd:date; + base:work\#DateStart_Fuzzy "22nd April 1890"; + base:work\#DateStart_Max "1890-04-22"^^xsd:date; + base:work\#DateStart_Min "1890-04-22"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7106; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDOrganisation base:organisation\/1515; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/711 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 711; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/555; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7111 a base:work; + base:work\#DateEnd_Fuzzy "Max. 22nd July 1890"; + base:work\#DateEnd_Max "1890-07-22"^^xsd:date; + base:work\#DateEnd_Min "1890-06-08"^^xsd:date; + base:work\#DateStart_Fuzzy "8th June 1890"; + base:work\#DateStart_Max "1890-06-08"^^xsd:date; + base:work\#DateStart_Min "1890-06-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7111; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-Recif-00; + base:work\#ref-IDOrganisation base:organisation\/1831; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7116 a base:work; + base:work\#DateEnd_Fuzzy "Max. 27th September 1890"; + base:work\#DateEnd_Max "1890-09-27"^^xsd:date; + base:work\#DateEnd_Min "1890-07-22"^^xsd:date; + base:work\#DateStart_Fuzzy "22nd July 1890"; + base:work\#DateStart_Max "1890-07-22"^^xsd:date; + base:work\#DateStart_Min "1890-07-22"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7116; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-Salva-00; + base:work\#ref-IDOrganisation base:organisation\/1515; + base:work\#ref-IDOrganisation2 base:organisation\/1821; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/712 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 712; + base:work\#Profession base:Profession-Singer; + base:work\#comment """Grisi sang together with Marietta Alboni at the openening of Covent Garden Opera in Rossinis Semiramide. +"""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/313; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7121 a base:work; + base:work\#DateEnd_Fuzzy "Max. 2nd March 1893"; + base:work\#DateEnd_Max "1893-03-02"^^xsd:date; + base:work\#DateEnd_Min "1890-10-09"^^xsd:date; + base:work\#DateStart_Fuzzy "9th October 1890"; + base:work\#DateStart_Max "1890-10-09"^^xsd:date; + base:work\#DateStart_Min "1890-10-09"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7121; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1826; + base:work\#ref-IDOrganisation2 base:organisation\/1846; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7126 a base:work; + base:work\#DateEnd_Fuzzy "Max. 17th August 1893"; + base:work\#DateEnd_Max "1893-08-17"^^xsd:date; + base:work\#DateEnd_Min "1893-03-03"^^xsd:date; + base:work\#DateStart_Fuzzy "3rd March 1893"; + base:work\#DateStart_Max "1893-03-03"^^xsd:date; + base:work\#DateStart_Min "1893-03-03"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7126; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1851; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/713 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 713; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7131 a base:work; + base:work\#DateEnd_Fuzzy "Max. 1st April 1894"; + base:work\#DateEnd_Max "1894-04-01"^^xsd:date; + base:work\#DateEnd_Min "1893-08-18"^^xsd:date; + base:work\#DateStart_Fuzzy "18th August 1893"; + base:work\#DateStart_Max "1893-08-18"^^xsd:date; + base:work\#DateStart_Min "1893-08-18"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7131; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/726; + base:work\#ref-IDOrganisation2 base:organisation\/1856; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7136 a base:work; + base:work\#DateEnd_Fuzzy "Max. 10th October 1895"; + base:work\#DateEnd_Max "1895-10-10"^^xsd:date; + base:work\#DateEnd_Min "1894-04-02"^^xsd:date; + base:work\#DateStart_Fuzzy "2nd April 1894"; + base:work\#DateStart_Max "1894-04-02"^^xsd:date; + base:work\#DateStart_Min "1894-04-02"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7136; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Impresario; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1826; + base:work\#ref-IDOrganisation2 base:organisation\/1866; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/714 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 714; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tours to Northern America in autumn"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7141 a base:work; + base:work\#DateEnd_Fuzzy "between 1st January 1896 and 22nd March 1896"; + base:work\#DateEnd_Max "1896-03-22"^^xsd:date; + base:work\#DateEnd_Min "1896-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "11th October 1895"; + base:work\#DateStart_Max "1895-10-11"^^xsd:date; + base:work\#DateStart_Min "1895-10-11"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7141; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1871; + base:work\#ref-IDOrganisation2 base:organisation\/1876; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7146 a base:work; + base:work\#DateEnd_Fuzzy "between 13th and 19th September 1896"; + base:work\#DateEnd_Max "1896-09-19"^^xsd:date; + base:work\#DateEnd_Min "1896-09-13"^^xsd:date; + base:work\#DateStart_Fuzzy "23rd March 1896"; + base:work\#DateStart_Max "1896-03-23"^^xsd:date; + base:work\#DateStart_Min "1896-03-23"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7146; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1871; + base:work\#ref-IDOrganisation2 base:organisation\/1881; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/715 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 715; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7151 a base:work; + base:work\#DateEnd_Fuzzy "Max. 27th January 1897"; + base:work\#DateEnd_Max "1897-01-27"^^xsd:date; + base:work\#DateEnd_Min "1896-09-19"^^xsd:date; + base:work\#DateStart_Fuzzy "19th September 1896"; + base:work\#DateStart_Max "1896-09-19"^^xsd:date; + base:work\#DateStart_Min "1896-09-19"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7151; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1806; + base:work\#ref-IDOrganisation2 base:organisation\/1891; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7156 a base:work; + base:work\#DateEnd_Fuzzy "Max. 30th July 1897"; + base:work\#DateEnd_Max "1897-07-30"^^xsd:date; + base:work\#DateEnd_Min "1897-01-27"^^xsd:date; + base:work\#DateStart_Fuzzy "27th January 1897"; + base:work\#DateStart_Max "1897-01-27"^^xsd:date; + base:work\#DateStart_Min "1897-01-27"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7156; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/588; + base:work\#ref-IDOrganisation2 base:organisation\/1896; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/716 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 716; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tours to Northern America in autumn"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/7161 a base:work; + base:work\#DateEnd_Fuzzy "31st July 1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-07-31"^^xsd:date; + base:work\#DateStart_Fuzzy "31st July 1897"; + base:work\#DateStart_Max "1897-07-31"^^xsd:date; + base:work\#DateStart_Min "1897-07-31"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7161; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1871; + base:work\#ref-IDOrganisation2 base:organisation\/1906; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/7166 a base:work; + base:work\#DateEnd_Fuzzy "between 4th October 1899 and 31st December 1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-10-04"^^xsd:date; + base:work\#DateStart_Fuzzy "7th August 1899"; + base:work\#DateStart_Max "1899-08-07"^^xsd:date; + base:work\#DateStart_Min "1899-08-07"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7166; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1505; + base:work\#ref-IDOrganisation2 base:organisation\/1911; + base:work\#ref-IDPerson base:person\/HelJac-00 . + +base:work\/717 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 717; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IE-Dubl-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/718 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 718; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/719 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 719; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Last opera singing"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GriGiu-01 . + +base:work\/72 a base:work; + base:work\#DateEnd_Fuzzy "1874"; + base:work\#DateEnd_Max "1874-12-31"^^xsd:date; + base:work\#DateEnd_Min "1874-01-01"^^xsd:date; + base:work\#Employment "regularly guest ballett master"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 72; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/720 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 720; + base:work\#Profession base:Profession-Singer; + base:work\#comment """Staatsoper Unter den Linden, Berlin (first time 2nd september 1859) +Permant engagement 1st january 1860 to death 1865"""; + base:work\#ref-IDOrganisation base:organisation\/351; + base:work\#ref-IDPerson base:person\/AhnEle-00 . + +base:work\/721 a base:work; + base:work\#DateStart_Min "1875-04-05"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 721; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/AlbHer-00 . + +base:work\/722 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 722; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/AlbHer-00 . + +base:work\/723 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 723; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/1022; + base:work\#ref-IDPerson base:person\/AlbHer-00 . + +base:work\/724 a base:work; + base:work\#DateEnd_Fuzzy "1893"; + base:work\#DateEnd_Max "1893-12-31"^^xsd:date; + base:work\#DateEnd_Min "1893-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 724; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She was appointed court actress in 1890"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/389; + base:work\#ref-IDPerson base:person\/AlbHer-00 . + +base:work\/725 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 725; + base:work\#Profession base:Profession-Actor; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/214; + base:work\#ref-IDPerson base:person\/AlbHer-00 . + +base:work\/726 a base:work; + base:work\#DateEnd_Fuzzy "1884"; + base:work\#DateEnd_Max "1884-12-31"^^xsd:date; + base:work\#DateEnd_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 726; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/BukChr-00 . + +base:work\/727 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 727; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDOrganisation base:organisation\/217; + base:work\#ref-IDPerson base:person\/BukChr-00 . + +base:work\/728 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 728; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Bernhard Pollini arranged this"; + base:work\#ref-IDOrganisation base:organisation\/121; + base:work\#ref-IDPerson base:person\/BukChr-00 . + +base:work\/729 a base:work; + base:work\#DateEnd_Fuzzy "1997"; + base:work\#DateEnd_Max "1997-12-31"^^xsd:date; + base:work\#DateEnd_Min "1997-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 729; + base:work\#Profession base:Profession-Actor; + base:work\#comment "She left stage because of marriage with Gustav Geiringer. Nothing known about her after 1902. "; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/111; + base:work\#ref-IDPerson base:person\/BukChr-00 . + +base:work\/73 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#Employment "ballett director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 73; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/TagPau-00 . + +base:work\/730 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#Employment "Artistic director"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 730; + base:work\#comment "He quit in a dispute with the Intendant Friedrich Halm in the autumn of 1867"; + base:work\#ref-IDOrganisation base:organisation\/353; + base:work\#ref-IDPerson base:person\/LauHei-00 . + +base:work\/731 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 731; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/109; + base:work\#ref-IDPerson base:person\/LauHei-00 . + +base:work\/7316 a base:work; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7316; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/1921; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/732 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 732; + base:work\#Profession base:Profession-Director; + base:work\#comment "Break 1875"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/110; + base:work\#ref-IDPerson base:person\/LauHei-00 . + +base:work\/7321 a base:work; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7321; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/1926; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7326 a base:work; + base:work\#DateStart_Fuzzy "18th June 1864"; + base:work\#DateStart_Max "1864-06-18"^^xsd:date; + base:work\#DateStart_Min "1864-06-18"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7326; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1931; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/733 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 733; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7331 a base:work; + base:work\#DateEnd_Fuzzy "28th July 1868"; + base:work\#DateEnd_Max "1868-07-28"^^xsd:date; + base:work\#DateEnd_Min "1868-07-28"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1867"; + base:work\#DateStart_Max "1867-08-31"^^xsd:date; + base:work\#DateStart_Min "1867-08-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7331; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1936; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7336 a base:work; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7336; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/734 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 734; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7341 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7341; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/1941; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7346 a base:work; + base:work\#DateStart_Fuzzy "21th December 1870"; + base:work\#DateStart_Max "1870-12-21"^^xsd:date; + base:work\#DateStart_Min "1870-12-21"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7346; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/735 a base:work; + base:work\#DateEnd_Fuzzy "1861"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateEnd_Min "1861-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 735; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7351 a base:work; + base:work\#DateStart_Fuzzy "26th October 1871"; + base:work\#DateStart_Max "1871-10-26"^^xsd:date; + base:work\#DateStart_Min "1871-10-26"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7351; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1946; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7356 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7356; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/736 a base:work; + base:work\#DateStart_Fuzzy "1865"; + base:work\#DateStart_Max "1865-09-30"^^xsd:date; + base:work\#DateStart_Min "1865-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 736; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "He joined an Italian opera company in the autumn of , becoming its impresario. This marked the beginning of his career as one of the most important opera directors of his era."; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7361 a base:work; + base:work\#DateStart_Fuzzy "Middle of March 1872"; + base:work\#DateStart_Max "1872-03-16"^^xsd:date; + base:work\#DateStart_Min "1872-03-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7361; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Mobile-00; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7366 a base:work; + base:work\#DateStart_Fuzzy "19th March 1872"; + base:work\#DateStart_Max "1872-03-19"^^xsd:date; + base:work\#DateStart_Min "1872-03-19"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7366; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/1966; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/737 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 737; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/355; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7371 a base:work; + base:work\#DateStart_Fuzzy "24th March 1872"; + base:work\#DateStart_Max "1872-03-30"^^xsd:date; + base:work\#DateStart_Min "1872-03-24"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7371; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7376 a base:work; + base:work\#DateStart_Fuzzy "14th October 1872"; + base:work\#DateStart_Max "1872-10-14"^^xsd:date; + base:work\#DateStart_Min "1872-10-14"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7376; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/556; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/738 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 738; + base:work\#Profession base:Profession-Impresario; + base:work\#comment "Impresario of the Italian Opera, 1867 (for some years), Sankt Petersburg and Moskau"; + base:work\#ref-IDOrganisation base:organisation\/211; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7381 a base:work; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7381; + base:work\#ref-IDLocation base:location\/CA-00; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7386 a base:work; + base:work\#DateStart_Fuzzy "16th January 1873"; + base:work\#DateStart_Max "1873-01-16"^^xsd:date; + base:work\#DateStart_Min "1873-01-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7386; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDOrganisation base:organisation\/1986; + base:work\#ref-IDOrganisation2 base:organisation\/1951; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/739 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 739; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7391 a base:work; + base:work\#DateStart_Fuzzy "10th February 1873"; + base:work\#DateStart_Max "1873-03-14"^^xsd:date; + base:work\#DateStart_Min "1873-02-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7391; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation base:organisation\/1996; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7396 a base:work; + base:work\#DateStart_Fuzzy "14th March 1873"; + base:work\#DateStart_Max "1873-03-14"^^xsd:date; + base:work\#DateStart_Min "1873-03-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7396; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/2006; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/74 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 74; + base:work\#Profession base:Profession-Dancer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/TagMar-01 . + +base:work\/740 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 740; + base:work\#Profession base:Profession-Director; + base:work\#comment "From 1876 additional Stadttheater Altona "; + base:work\#ref-IDOrganisation base:organisation\/356; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7401 a base:work; + base:work\#DateStart_Fuzzy "17th 03 1873"; + base:work\#DateStart_Max "1873-03-17"^^xsd:date; + base:work\#DateStart_Min "1873-03-17"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7401; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7406 a base:work; + base:work\#DateStart_Fuzzy "24th March 1873"; + base:work\#DateStart_Max "1873-03-24"^^xsd:date; + base:work\#DateStart_Min "1873-03-24"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7406; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/741 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 741; + base:work\#Profession base:Profession-Director; + base:work\#comment """And from 1894 additional Thalia Theater. +He presented opera four times a week, drama twice, operetta or ballet once and was so successful that he achieved full houses and handsome surpluses. He staged 175 premieres, 51 of them world premieres, and continued as opera director until his death."""; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/547; + base:work\#ref-IDPerson base:person\/PolBer-00 . + +base:work\/7411 a base:work; + base:work\#DateStart_Fuzzy "1st April 1873"; + base:work\#DateStart_Max "1873-04-01"^^xsd:date; + base:work\#DateStart_Min "1873-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7411; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7416 a base:work; + base:work\#DateStart_Fuzzy "14th April 1873"; + base:work\#DateStart_Max "1873-04-14"^^xsd:date; + base:work\#DateStart_Min "1873-04-14"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7416; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/742 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 742; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/357; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7421 a base:work; + base:work\#DateStart_Fuzzy "8th May 1873"; + base:work\#DateStart_Max "1873-05-08"^^xsd:date; + base:work\#DateStart_Min "1873-05-08"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7421; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-Wilm-00; + base:work\#ref-IDOrganisation base:organisation\/2036; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7426 a base:work; + base:work\#DateEnd_Fuzzy "17th June 1876"; + base:work\#DateEnd_Max "1876-06-17"^^xsd:date; + base:work\#DateEnd_Min "1876-06-17"^^xsd:date; + base:work\#DateStart_Fuzzy "12th June 1876"; + base:work\#DateStart_Max "1876-06-12"^^xsd:date; + base:work\#DateStart_Min "1876-06-12"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7426; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDOrganisation2 base:organisation\/2051; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/743 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 743; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Mainz-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7431 a base:work; + base:work\#DateEnd_Fuzzy "26th October 1876"; + base:work\#DateEnd_Max "1876-10-26"^^xsd:date; + base:work\#DateEnd_Min "1876-10-26"^^xsd:date; + base:work\#DateStart_Fuzzy "23th October 1876"; + base:work\#DateStart_Max "1876-10-23"^^xsd:date; + base:work\#DateStart_Min "1876-10-23"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7431; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDOrganisation2 base:organisation\/2056; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7436 a base:work; + base:work\#DateEnd_Fuzzy "Bteween 12th May and 18th June 1877"; + base:work\#DateEnd_Max "1877-06-18"^^xsd:date; + base:work\#DateEnd_Min "1877-05-12"^^xsd:date; + base:work\#DateStart_Fuzzy "29th January 1877"; + base:work\#DateStart_Max "1877-01-29"^^xsd:date; + base:work\#DateStart_Min "1877-01-29"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7436; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2061; + base:work\#ref-IDOrganisation2 base:organisation\/2001; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/744 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 744; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Prompter; + base:work\#comment "where Schumann followed a bigger opera company, he worked in speaking roles in opera and as an souffleur"; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/357; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7441 a base:work; + base:work\#DateEnd_Fuzzy "4th November 1877"; + base:work\#DateEnd_Max "1877-11-04"^^xsd:date; + base:work\#DateEnd_Min "1877-11-04"^^xsd:date; + base:work\#DateStart_Fuzzy "28th October 1877"; + base:work\#DateStart_Max "1877-10-28"^^xsd:date; + base:work\#DateStart_Min "1877-10-28"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7441; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2071; + base:work\#ref-IDOrganisation2 base:organisation\/2051; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7446 a base:work; + base:work\#DateEnd_Fuzzy "21th April 1878"; + base:work\#DateEnd_Max "1878-04-21"^^xsd:date; + base:work\#DateEnd_Min "1878-04-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7446; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDOrganisation2 base:organisation\/2051; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/745 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 745; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/HU-Pest-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7451 a base:work; + base:work\#DateEnd_Fuzzy "7th June 1878"; + base:work\#DateEnd_Max "1878-06-07"^^xsd:date; + base:work\#DateEnd_Min "1878-06-07"^^xsd:date; + base:work\#DateStart_Max "1878-04-21"^^xsd:date; + base:work\#DateStart_Min "1878-04-21"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7451; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2046; + base:work\#ref-IDOrganisation2 base:organisation\/2051; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/7456 a base:work; + base:work\#DateEnd_Fuzzy "June 1879"; + base:work\#DateEnd_Max "1879-06-02"^^xsd:date; + base:work\#DateEnd_Min "1879-06-09"^^xsd:date; + base:work\#DateStart_Max "1879-06-02"^^xsd:date; + base:work\#DateStart_Min "1879-06-02"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7456; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2096; + base:work\#ref-IDOrganisation2 base:organisation\/2056; + base:work\#ref-IDPerson base:person\/AimMar-00 . + +base:work\/746 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 746; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7461 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1848"; + base:work\#DateStart_Max "1848-12-31"^^xsd:date; + base:work\#DateStart_Min "1848-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7461; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/2116; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7466 a base:work; + base:work\#DateEnd_Fuzzy "1853"; + base:work\#DateEnd_Max "1853-12-31"^^xsd:date; + base:work\#DateEnd_Min "1853-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1852-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7466; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/747 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 747; + base:work\#Profession base:Profession-Director; + base:work\#comment "which was combined with the theatre in Triest"; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7471 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "22nd July 1856"; + base:work\#DateStart_Min "1856-07-22"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 7471; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2121; + base:work\#ref-IDOrganisation2 base:organisation\/2126; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7476 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1st November 1858"; + base:work\#DateStart_Max "1858-11-01"^^xsd:date; + base:work\#DateStart_Min "1858-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7476; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2131; + base:work\#ref-IDOrganisation2 base:organisation\/2136; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/748 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 748; + base:work\#Profession base:Profession-Director; + base:work\#comment "Theatre director, Laibach (which was combined with the theatre in Triest)"; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7481 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "4th September 1859"; + base:work\#DateStart_Max "1859-09-04"^^xsd:date; + base:work\#DateStart_Min "1859-09-04"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7481; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2141; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7486 a base:work; + base:work\#DateEnd_Fuzzy "21st October 1859"; + base:work\#DateEnd_Max "1859-10-21"^^xsd:date; + base:work\#DateEnd_Min "1859-10-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1859"; + base:work\#DateStart_Max "1859-09-28"^^xsd:date; + base:work\#DateStart_Min "1859-09-28"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7486; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/1931; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/749 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 749; + base:work\#Profession base:Profession-Director; + base:work\#comment "Count Skarbek wanted him for this position"; + base:work\#ref-IDLocation base:location\/FR-Lemb-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7491 a base:work; + base:work\#DateEnd_Fuzzy "4th August 1860"; + base:work\#DateEnd_Max "1860-08-04"^^xsd:date; + base:work\#DateEnd_Min "1860-08-04"^^xsd:date; + base:work\#DateStart_Fuzzy "1st January 1860"; + base:work\#DateStart_Max "1860-01-01"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7491; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2141; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7496 a base:work; + base:work\#DateEnd_Fuzzy "July 1860"; + base:work\#DateEnd_Max "1860-07-31"^^xsd:date; + base:work\#DateEnd_Min "1860-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "February 1860"; + base:work\#DateStart_Max "1860-02-19"^^xsd:date; + base:work\#DateStart_Min "1860-02-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7496; + base:work\#Profession2 base:Profession-Founder; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2156; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/75 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 75; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/TagMar-01 . + +base:work\/750 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 750; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7501 a base:work; + base:work\#DateEnd_Fuzzy "30th June 1860"; + base:work\#DateEnd_Max "1860-06-30"^^xsd:date; + base:work\#DateEnd_Min "1860-06-30"^^xsd:date; + base:work\#DateStart_Fuzzy "June 1860"; + base:work\#DateStart_Max "1860-06-30"^^xsd:date; + base:work\#DateStart_Min "1860-06-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7501; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7506 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-05-12"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7506; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2171; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/751 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 751; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7511 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateEnd_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy "1860 - 1861"; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7511; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/2181; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7516 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-01-17"^^xsd:date; + base:work\#DateStart_Min "1861-01-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7516; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-StCat-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/752 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 752; + base:work\#ref-IDLocation base:location\/IT-Tries-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7521 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7521; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RGdS-00; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7526 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1861"; + base:work\#DateStart_Max "1861-12-31"^^xsd:date; + base:work\#DateStart_Min "1861-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7526; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2201; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/753 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 753; + base:work\#comment "he changed for political reasons from Lemberg to Laibach"; + base:work\#ref-IDLocation base:location\/UA-Lv-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7531 a base:work; + base:work\#DateEnd_Fuzzy "1863"; + base:work\#DateEnd_Max "1863-12-31"^^xsd:date; + base:work\#DateEnd_Min "1863-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7531; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/2211; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7536 a base:work; + base:work\#DateEnd_Fuzzy "1864"; + base:work\#DateEnd_Max "1864-12-31"^^xsd:date; + base:work\#DateEnd_Min "1864-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1863"; + base:work\#DateStart_Max "1863-12-31"^^xsd:date; + base:work\#DateStart_Min "1863-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 7536; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2201; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/754 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 754; + base:work\#comment "he changed for political reasons from Lemberg to Laibach"; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/7541 a base:work; + base:work\#DateEnd_Fuzzy "1864"; + base:work\#DateEnd_Max "1864-12-31"^^xsd:date; + base:work\#DateEnd_Min "1864-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7541; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2231; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/7546 a base:work; + base:work\#DateEnd_Fuzzy "1866"; + base:work\#DateEnd_Max "1866-12-31"^^xsd:date; + base:work\#DateEnd_Min "1866-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1864"; + base:work\#DateStart_Max "1864-12-31"^^xsd:date; + base:work\#DateStart_Min "1864-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 7546; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/2211; + base:work\#ref-IDOrganisation2 base:organisation\/2151; + base:work\#ref-IDPerson base:person\/LyoPau-00 . + +base:work\/755 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 755; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/94; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/756 a base:work; + base:work\#DateEnd_Fuzzy "1858"; + base:work\#DateEnd_Max "1858-12-31"^^xsd:date; + base:work\#DateEnd_Min "1858-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 756; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/358; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/757 a base:work; + base:work\#DateEnd_Max "1864-03-18"^^xsd:date; + base:work\#DateEnd_Min "1864-03-18"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 757; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/758 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 758; + base:work\#Profession base:Profession-Director; + base:work\#comment "after a stroke he retired into private life"; + base:work\#ref-IDOrganisation base:organisation\/359; + base:work\#ref-IDPerson base:person\/ThoFra-00 . + +base:work\/759 a base:work; + base:work\#DateEnd_Fuzzy "1872"; + base:work\#DateEnd_Max "1872-12-31"^^xsd:date; + base:work\#DateEnd_Min "1872-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1872"; + base:work\#DateStart_Max "1872-12-31"^^xsd:date; + base:work\#DateStart_Min "1872-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 759; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/201; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/76 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 76; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/TagMar-01 . + +base:work\/761 a base:work; + base:work\#DateEnd_Fuzzy "1882"; + base:work\#DateEnd_Max "1882-12-31"^^xsd:date; + base:work\#DateEnd_Min "1882-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 761; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/372; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/762 a base:work; + base:work\#DateStart_Fuzzy "1869"; + base:work\#DateStart_Max "1869-12-31"^^xsd:date; + base:work\#DateStart_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 762; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/SL-Laib-00; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/763 a base:work; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1874-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 763; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDPerson base:person\/GroAde-00 . + +base:work\/764 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#Employment "study"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 764; + base:work\#comment "chemistry at the Technical University of Karlsruhe"; + base:work\#ref-IDLocation base:location\/GER-Karls-00; + base:work\#ref-IDPerson base:person\/BasAlb-00 . + +base:work\/765 a base:work; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 765; + base:work\#ref-IDPerson base:person\/BasAlb-00 . + +base:work\/766 a base:work; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 766; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/BasAlb-00 . + +base:work\/767 a base:work; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 767; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/BasAlb-00 . + +base:work\/768 a base:work; + base:work\#DateEnd_Fuzzy "1915"; + base:work\#DateEnd_Max "1915-12-31"^^xsd:date; + base:work\#DateEnd_Min "1915-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 768; + base:work\#comment "working with Max Reinhardt"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/BasAlb-00 . + +base:work\/769 a base:work; + base:work\#Employment "Engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 769; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/373; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/77 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 77; + base:work\#Profession base:Profession-Dancer; + base:work\#comment ""; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/771 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 771; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/539; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/772 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 772; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/543; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/773 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 773; + base:work\#ref-IDOrganisation base:organisation\/377; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/774 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 774; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/375; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/775 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 775; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/376; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/776 a base:work; + base:work\#Employment "engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 776; + base:work\#comment "Als 1934 ein Gastspiel in Leipzig von der Reichstheaterkammer wegen ihrer jüdischen Abstammung verboten wurde, erklärte ihr Ehemann seinen Austritt aus dieser Organisation."; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/777 a base:work; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 777; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/778 a base:work; + base:work\#Employment "Guest "; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 778; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/779 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 779; + base:work\#comment "Sie ging nach Albert Bassermanns Tod 1953 für zwei Jahre an das Stadttheater Göttingen"; + base:work\#ref-IDLocation base:location\/GER-Goett-00; + base:work\#ref-IDOrganisation base:organisation\/380; + base:work\#ref-IDPerson base:person\/BasEls-00 . + +base:work\/78 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 78; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-MUC-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/780 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 780; + base:work\#Profession base:Profession-Actor; + base:work\#comment "Max Reinhardts Deutschem Theater"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/VeiCon-00 . + +base:work\/781 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 781; + base:work\#ref-IDPerson base:person\/VeiCon-00 . + +base:work\/782 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 782; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/VeiCon-00 . + +base:work\/783 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 783; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/VeiCon-00 . + +base:work\/784 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 784; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/VeiCon-00 . + +base:work\/785 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 785; + base:work\#comment "Kortner erfolgreich bei dem Schauspiellehrer Ferdinand Gregori, Vorsprechen, Wiener Akademie für Musik und Darstellende Kunst"; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/381; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/786 a base:work; + base:work\#Employment "Engagement"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 786; + base:work\#ref-IDLocation base:location\/GER-Mnhm-00; + base:work\#ref-IDOrganisation base:organisation\/382; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/787 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#Employment "Engagenemt"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 787; + base:work\#comment "mit Max Reinhardt"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/788 a base:work; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-05-31"^^xsd:date; + base:work\#DateStart_Min "1913-05-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 788; + base:work\#comment "Berthold Viertel engagiert Kortner an die Wiener Volksbühne"; + base:work\#ref-IDOrganisation base:organisation\/383; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/789 a base:work; + base:work\#DateStart_Fuzzy "1947"; + base:work\#DateStart_Max "1947-12-31"^^xsd:date; + base:work\#DateStart_Min "1947-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 789; + base:work\#comment "Einladung von Wolfgang Langhoff nach Berlin"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/79 a base:work; + base:work\#DateEnd_Fuzzy "1827"; + base:work\#DateEnd_Max "1827-12-31"^^xsd:date; + base:work\#DateEnd_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 79; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/790 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 790; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/384; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/791 a base:work; + base:work\#DateStart_Fuzzy "1915"; + base:work\#DateStart_Max "1915-10-31"^^xsd:date; + base:work\#DateStart_Min "1915-10-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 791; + base:work\#ref-IDLocation base:location\/GER-Dresd-00; + base:work\#ref-IDOrganisation base:organisation\/385; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/792 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 792; + base:work\#ref-IDOrganisation base:organisation\/386; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/793 a base:work; + base:work\#DateEnd_Fuzzy "1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 793; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/794 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 794; + base:work\#ref-IDOrganisation base:organisation\/387; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/795 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 795; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/796 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 796; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/KorFri-00 . + +base:work\/797 a base:work; + base:work\#Employment "Studium der Dramatischen Künste"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 797; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/HagUta-00 . + +base:work\/798 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-12-31"^^xsd:date; + base:work\#DateEnd_Min "1921-01-01"^^xsd:date; + base:work\#Employment "Writer, Actor, Producer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 798; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDOrganisation base:organisation\/112; + base:work\#ref-IDPerson base:person\/LubErn-00 . + +base:work\/799 a base:work; + base:work\#DateEnd_Fuzzy "1929"; + base:work\#DateEnd_Max "1929-12-31"^^xsd:date; + base:work\#DateEnd_Min "1929-01-01"^^xsd:date; + base:work\#Employment "Producer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 799; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/LubErn-00 . + +base:work\/8 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-STR-00; + base:work\#ref-IDOrganisation base:organisation\/76; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/80 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 80; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/800 a base:work; + base:work\#DateEnd_Fuzzy "1948"; + base:work\#DateEnd_Max "1948-12-31"^^xsd:date; + base:work\#DateEnd_Min "1948-01-01"^^xsd:date; + base:work\#Employment "Producer"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 800; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/LubErn-00 . + +base:work\/8070 a base:work; + base:work\#DateEnd_Fuzzy "1878 till 1879"; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878 till 1879"; + base:work\#DateStart_Max "1879-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8070; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDOrganisation2 base:organisation\/2250; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8080 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1882"; + base:work\#DateStart_Max "1882-12-31"^^xsd:date; + base:work\#DateStart_Min "1882-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8080; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDOrganisation base:organisation\/2255; + base:work\#ref-IDOrganisation2 base:organisation\/2250; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8085 a base:work; + base:work\#DateEnd_Fuzzy "1887"; + base:work\#DateEnd_Max "1887-04-25"^^xsd:date; + base:work\#DateEnd_Min "1887-04-25"^^xsd:date; + base:work\#DateStart_Fuzzy "1887"; + base:work\#DateStart_Max "1887-04-25"^^xsd:date; + base:work\#DateStart_Min "1887-04-25"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8085; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NLdn-00; + base:work\#ref-IDOrganisation base:organisation\/2260; + base:work\#ref-IDOrganisation2 base:organisation\/2250; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8090 a base:work; + base:work\#DateEnd_Fuzzy "between October and December 1887"; + base:work\#DateEnd_Max "1887-12-31"^^xsd:date; + base:work\#DateEnd_Min "1887-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between October and December 1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-10-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8090; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2270; + base:work\#ref-IDOrganisation2 base:organisation\/2250; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8095 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-10-29"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-10-29"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8095; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/81 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 81; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8100 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-10-29"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-10-29"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8100; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Fort-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8105 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-11-06"^^xsd:date; + base:work\#DateEnd_Min "1888-10-29"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-10-29"^^xsd:date; + base:work\#DateStart_Min "1888-10-29"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8105; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8110 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-03"^^xsd:date; + base:work\#DateEnd_Min "1888-11-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-11-06"^^xsd:date; + base:work\#DateStart_Min "1888-11-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8110; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8115 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-03"^^xsd:date; + base:work\#DateEnd_Min "1888-11-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-03"^^xsd:date; + base:work\#DateStart_Min "1888-11-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8115; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8120 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-03"^^xsd:date; + base:work\#DateStart_Min "1888-12-03"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8120; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8125 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8125; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NLdn-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8130 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8130; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brockt-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8135 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8135; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Haver-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8140 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8140; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Springf-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8145 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8145; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Watert-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8150 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8150; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8155 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-28"^^xsd:date; + base:work\#DateEnd_Min "1888-12-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-28"^^xsd:date; + base:work\#DateStart_Min "1888-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8155; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8160 a base:work; + base:work\#DateEnd_Fuzzy "1888 till 1889"; + base:work\#DateEnd_Max "1889-01-31"^^xsd:date; + base:work\#DateEnd_Min "1888-12-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1888 till 1889"; + base:work\#DateStart_Max "1889-01-31"^^xsd:date; + base:work\#DateStart_Min "1888-12-28"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8160; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8165 a base:work; + base:work\#DateEnd_Fuzzy "1888 till 1889"; + base:work\#DateEnd_Max "1889-02-11"^^xsd:date; + base:work\#DateEnd_Min "1888-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888 till 1889"; + base:work\#DateStart_Max "1889-02-11"^^xsd:date; + base:work\#DateStart_Min "1888-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8165; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Sand-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8170 a base:work; + base:work\#DateEnd_Fuzzy "1888 till 1889"; + base:work\#DateEnd_Max "1889-02-11"^^xsd:date; + base:work\#DateEnd_Min "1888-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888 till 1889"; + base:work\#DateStart_Max "1889-02-11"^^xsd:date; + base:work\#DateStart_Min "1888-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8170; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Dayt-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8175 a base:work; + base:work\#DateEnd_Fuzzy "1888 till 1889"; + base:work\#DateEnd_Max "1889-02-11"^^xsd:date; + base:work\#DateEnd_Min "1888-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888 till 1889"; + base:work\#DateStart_Max "1889-02-11"^^xsd:date; + base:work\#DateStart_Min "1888-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8175; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Louis-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8180 a base:work; + base:work\#DateEnd_Fuzzy "1888 till 1889"; + base:work\#DateEnd_Max "1889-02-11"^^xsd:date; + base:work\#DateEnd_Min "1888-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1888 till 1889"; + base:work\#DateStart_Max "1889-02-11"^^xsd:date; + base:work\#DateStart_Min "1888-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8180; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8185 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-02-21"^^xsd:date; + base:work\#DateEnd_Min "1889-02-11"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-02-11"^^xsd:date; + base:work\#DateStart_Min "1889-02-11"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8185; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8190 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-06-20"^^xsd:date; + base:work\#DateEnd_Min "1889-02-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-02-21"^^xsd:date; + base:work\#DateStart_Min "1889-02-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8190; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8195 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-06-20"^^xsd:date; + base:work\#DateEnd_Min "1889-02-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-06-20"^^xsd:date; + base:work\#DateStart_Min "1889-02-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8195; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/82 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 82; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8200 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-06-20"^^xsd:date; + base:work\#DateEnd_Min "1889-02-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-06-20"^^xsd:date; + base:work\#DateStart_Min "1889-02-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8200; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8205 a base:work; + base:work\#DateEnd_Fuzzy "1889"; + base:work\#DateEnd_Max "1889-06-20"^^xsd:date; + base:work\#DateEnd_Min "1889-02-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889"; + base:work\#DateStart_Max "1889-06-20"^^xsd:date; + base:work\#DateStart_Min "1889-02-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8205; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wheel-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8210 a base:work; + base:work\#DateEnd_Fuzzy "1889 till 1890"; + base:work\#DateEnd_Max "1890-02-01"^^xsd:date; + base:work\#DateEnd_Min "1889-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889 till 1890"; + base:work\#DateStart_Max "1890-02-01"^^xsd:date; + base:work\#DateStart_Min "1889-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8210; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8215 a base:work; + base:work\#DateEnd_Fuzzy "1889 till 1890"; + base:work\#DateEnd_Max "1890-02-01"^^xsd:date; + base:work\#DateEnd_Min "1889-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889 till 1890"; + base:work\#DateStart_Max "1890-02-01"^^xsd:date; + base:work\#DateStart_Min "1889-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8215; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8220 a base:work; + base:work\#DateEnd_Fuzzy "1889 till 1890"; + base:work\#DateEnd_Max "1890-02-01"^^xsd:date; + base:work\#DateEnd_Min "1889-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1889 till 1890"; + base:work\#DateStart_Max "1890-02-01"^^xsd:date; + base:work\#DateStart_Min "1889-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8220; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8225 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-04-30"^^xsd:date; + base:work\#DateEnd_Min "1890-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-02-28"^^xsd:date; + base:work\#DateStart_Min "1890-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8225; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2280; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8230 a base:work; + base:work\#DateEnd_Fuzzy "1890"; + base:work\#DateEnd_Max "1890-06-20"^^xsd:date; + base:work\#DateEnd_Min "1890-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1890"; + base:work\#DateStart_Max "1890-06-20"^^xsd:date; + base:work\#DateStart_Min "1890-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8230; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8235 a base:work; + base:work\#DateEnd_Fuzzy "September till October 1890"; + base:work\#DateEnd_Max "1890-10-10"^^xsd:date; + base:work\#DateEnd_Min "1890-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1890"; + base:work\#DateStart_Max "1890-09-30"^^xsd:date; + base:work\#DateStart_Min "1890-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8235; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Memph-00; + base:work\#ref-IDOrganisation base:organisation\/2285; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8240 a base:work; + base:work\#DateEnd_Fuzzy "November 1890 till May 1891"; + base:work\#DateEnd_Max "1891-05-31"^^xsd:date; + base:work\#DateEnd_Min "1890-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1890"; + base:work\#DateStart_Max "1890-10-31"^^xsd:date; + base:work\#DateStart_Min "1890-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8240; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8245 a base:work; + base:work\#DateEnd_Fuzzy "April 1893"; + base:work\#DateEnd_Max "1893-04-30"^^xsd:date; + base:work\#DateEnd_Min "1893-04-01"^^xsd:date; + base:work\#DateStart_Fuzzy "April 1893"; + base:work\#DateStart_Max "1893-04-30"^^xsd:date; + base:work\#DateStart_Min "1893-04-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8245; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Preo-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8250 a base:work; + base:work\#DateEnd_Fuzzy "September 1894"; + base:work\#DateEnd_Max "1894-09-30"^^xsd:date; + base:work\#DateEnd_Min "1894-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1894"; + base:work\#DateStart_Max "1894-09-30"^^xsd:date; + base:work\#DateStart_Min "1894-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8250; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8255 a base:work; + base:work\#DateEnd_Fuzzy "September 1894 till December 1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1894-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1894 till December 1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-09-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8255; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2290; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8260 a base:work; + base:work\#DateEnd_Fuzzy "1894"; + base:work\#DateEnd_Max "1894-11-30"^^xsd:date; + base:work\#DateEnd_Min "1894-11-30"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-11-30"^^xsd:date; + base:work\#DateStart_Min "1894-11-30"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8260; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8265 a base:work; + base:work\#DateEnd_Fuzzy "1895 till 1896"; + base:work\#DateEnd_Max "1896-03-09"^^xsd:date; + base:work\#DateEnd_Min "1895-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8265; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8270 a base:work; + base:work\#DateEnd_Fuzzy "1895 till 1896"; + base:work\#DateEnd_Max "1896-03-09"^^xsd:date; + base:work\#DateEnd_Min "1895-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1895 till 1896"; + base:work\#DateStart_Max "1896-03-09"^^xsd:date; + base:work\#DateStart_Min "1895-12-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8270; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8275 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-03-31"^^xsd:date; + base:work\#DateEnd_Min "1896-03-09"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-03-09"^^xsd:date; + base:work\#DateStart_Min "1896-03-09"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8275; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2295; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8280 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-09-30"^^xsd:date; + base:work\#DateEnd_Min "1896-09-07"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-09-07"^^xsd:date; + base:work\#DateStart_Min "1896-09-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8280; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-MKE-00; + base:work\#ref-IDOrganisation base:organisation\/2300; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8285 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-10-14"^^xsd:date; + base:work\#DateEnd_Min "1896-10-14"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-10-14"^^xsd:date; + base:work\#DateStart_Min "1896-10-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8285; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SaltL-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8290 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-23"^^xsd:date; + base:work\#DateEnd_Min "1896-12-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-07"^^xsd:date; + base:work\#DateStart_Min "1896-12-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8290; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8295 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-24"^^xsd:date; + base:work\#DateEnd_Min "1896-12-24"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-24"^^xsd:date; + base:work\#DateStart_Min "1896-12-24"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8295; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/83 a base:work; + base:work\#DateEnd_Fuzzy "1842"; + base:work\#DateEnd_Max "1842-12-31"^^xsd:date; + base:work\#DateEnd_Min "1842-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 83; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/830 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 830; + base:work\#comment "start stage career"; + base:work\#ref-IDLocation base:location\/GER-Goerl-00; + base:work\#ref-IDOrganisation base:organisation\/390; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8300 a base:work; + base:work\#DateEnd_Fuzzy "1896"; + base:work\#DateEnd_Max "1896-12-28"^^xsd:date; + base:work\#DateEnd_Min "1896-12-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1896"; + base:work\#DateStart_Max "1896-12-28"^^xsd:date; + base:work\#DateStart_Min "1896-12-28"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8300; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8305 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-01-12"^^xsd:date; + base:work\#DateEnd_Min "1897-01-12"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-01-07"^^xsd:date; + base:work\#DateStart_Min "1897-01-07"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8305; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8310 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-01-25"^^xsd:date; + base:work\#DateEnd_Min "1897-01-25"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-01-25"^^xsd:date; + base:work\#DateStart_Min "1897-01-25"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8310; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8315 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-02-01"^^xsd:date; + base:work\#DateEnd_Min "1897-02-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-02-01"^^xsd:date; + base:work\#DateStart_Min "1897-02-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8315; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8320 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-03-31"^^xsd:date; + base:work\#DateEnd_Min "1897-03-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-03-08"^^xsd:date; + base:work\#DateStart_Min "1897-03-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8320; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8325 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-03-31"^^xsd:date; + base:work\#DateEnd_Min "1897-03-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-03-31"^^xsd:date; + base:work\#DateStart_Min "1897-03-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8325; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/833 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 833; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8330 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8330; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8335 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-10-31"^^xsd:date; + base:work\#DateEnd_Min "1902-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-10-31"^^xsd:date; + base:work\#DateStart_Min "1902-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8335; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8340 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-11-30"^^xsd:date; + base:work\#DateEnd_Min "1902-09-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-11-30"^^xsd:date; + base:work\#DateStart_Min "1902-09-22"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8340; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8345 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-11-30"^^xsd:date; + base:work\#DateEnd_Min "1902-09-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-11-30"^^xsd:date; + base:work\#DateStart_Min "1902-09-22"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8345; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8350 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-13"^^xsd:date; + base:work\#DateEnd_Min "1902-12-13"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-13"^^xsd:date; + base:work\#DateStart_Min "1902-12-13"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8350; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8355 a base:work; + base:work\#DateEnd_Fuzzy "1903 till 1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1903-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1903 till 1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 8355; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/836 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 836; + base:work\#ref-IDLocation base:location\/GER-Nur-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8360 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-10-10"^^xsd:date; + base:work\#DateEnd_Min "1904-10-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-09-19"^^xsd:date; + base:work\#DateStart_Min "1904-09-19"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8360; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8365 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-10-31"^^xsd:date; + base:work\#DateEnd_Min "1904-10-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-10-15"^^xsd:date; + base:work\#DateStart_Min "1904-10-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8365; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1415; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8370 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-10-16"^^xsd:date; + base:work\#DateEnd_Min "1905-09-18"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-09-18"^^xsd:date; + base:work\#DateStart_Min "1905-09-18"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8370; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8375 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-10-16"^^xsd:date; + base:work\#DateStart_Min "1905-10-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8375; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/1415; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8380 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-10-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8380; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8385 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-10-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8385; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-SanFranc-02; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/839 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 839; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8390 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-10-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-10-16"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8390; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation2 base:organisation\/2305; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8395 a base:work; + base:work\#DateEnd_Fuzzy "1906 till 1907"; + base:work\#DateEnd_Max "1907-01-05"^^xsd:date; + base:work\#DateEnd_Min "1906-10-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-10-15"^^xsd:date; + base:work\#DateStart_Min "1906-10-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8395; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/84 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 84; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8400 a base:work; + base:work\#DateEnd_Fuzzy "1906 till 1907"; + base:work\#DateEnd_Max "1907-01-05"^^xsd:date; + base:work\#DateEnd_Min "1906-10-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1906 till 1907"; + base:work\#DateStart_Max "1907-01-05"^^xsd:date; + base:work\#DateStart_Min "1906-10-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8400; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8405 a base:work; + base:work\#DateEnd_Fuzzy "1906 till 1907"; + base:work\#DateEnd_Max "1907-01-05"^^xsd:date; + base:work\#DateEnd_Min "1906-10-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1906 till 1907"; + base:work\#DateStart_Max "1907-01-05"^^xsd:date; + base:work\#DateStart_Min "1906-10-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8405; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8410 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-01-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-01-06"^^xsd:date; + base:work\#DateStart_Min "1907-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8410; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8415 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-03-29"^^xsd:date; + base:work\#DateEnd_Min "1907-01-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-01-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8415; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/575; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/842 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 842; + base:work\#ref-IDLocation base:location\/RUS-Kali-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8420 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-05-31"^^xsd:date; + base:work\#DateEnd_Min "1907-04-22"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-04-22"^^xsd:date; + base:work\#DateStart_Min "1907-04-22"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8420; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8425 a base:work; + base:work\#DateEnd_Fuzzy "1908"; + base:work\#DateEnd_Max "1908-12-31"^^xsd:date; + base:work\#DateEnd_Min "1908-12-26"^^xsd:date; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-26"^^xsd:date; + base:work\#DateStart_Min "1908-12-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8425; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2340; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8430 a base:work; + base:work\#DateEnd_Fuzzy "1909"; + base:work\#DateEnd_Max "1909-11-07"^^xsd:date; + base:work\#DateEnd_Min "1909-02-16"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-02-15"^^xsd:date; + base:work\#DateStart_Min "1909-02-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8430; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8435 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-11-03"^^xsd:date; + base:work\#DateEnd_Min "1909-11-08"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1909-11-08"^^xsd:date; + base:work\#DateStart_Min "1909-11-08"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8435; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2345; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8440 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-11-13"^^xsd:date; + base:work\#DateEnd_Min "1910-11-05"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-11-04"^^xsd:date; + base:work\#DateStart_Min "1910-11-04"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8440; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8445 a base:work; + base:work\#DateEnd_Fuzzy "1910 till 1911"; + base:work\#DateEnd_Max "1911-01-09"^^xsd:date; + base:work\#DateEnd_Min "1910-11-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1910 till 1911"; + base:work\#DateStart_Max "1910-11-14"^^xsd:date; + base:work\#DateStart_Min "1910-11-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8445; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDOrganisation base:organisation\/2350; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/845 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 845; + base:work\#ref-IDLocation base:location\/PL-Glog-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8450 a base:work; + base:work\#DateEnd_Fuzzy "1910 till 1911"; + base:work\#DateEnd_Max "1911-01-09"^^xsd:date; + base:work\#DateEnd_Min "1910-11-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1910 till 1911"; + base:work\#DateStart_Max "1911-01-09"^^xsd:date; + base:work\#DateStart_Min "1910-11-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8450; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8455 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-01-10"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8455; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8460 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8460; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Balti-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8465 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8465; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8470 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8470; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Pittsb-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8475 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8475; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Cinc-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/848 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 848; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/537; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8480 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8480; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8485 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8485; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Detroit-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8490 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8490; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8495 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8495; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-StLouis-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/85 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 85; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8500 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8500; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-KansCity-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8505 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-07-31"^^xsd:date; + base:work\#DateEnd_Min "1911-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-07-31"^^xsd:date; + base:work\#DateStart_Min "1911-01-10"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8505; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Denv-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/851 a base:work; + base:work\#DateEnd_Fuzzy "1920"; + base:work\#DateEnd_Max "1920-12-31"^^xsd:date; + base:work\#DateEnd_Min "1920-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 851; + base:work\#comment "met with others (see Relationships)"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8510 a base:work; + base:work\#DateEnd_Fuzzy "1911"; + base:work\#DateEnd_Max "1911-11-05"^^xsd:date; + base:work\#DateEnd_Min "1911-10-30"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-10-30"^^xsd:date; + base:work\#DateStart_Min "1911-10-30"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8510; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Brook-00; + base:work\#ref-IDOrganisation base:organisation\/2355; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8515 a base:work; + base:work\#DateEnd_Fuzzy "1911 till 1912"; + base:work\#DateEnd_Max "1912-05-13"^^xsd:date; + base:work\#DateEnd_Min "1911-11-06"^^xsd:date; + base:work\#DateStart_Fuzzy "1911"; + base:work\#DateStart_Max "1911-11-06"^^xsd:date; + base:work\#DateStart_Min "1911-11-06"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8515; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/268; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8520 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-06-30"^^xsd:date; + base:work\#DateEnd_Min "1912-05-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-05-14"^^xsd:date; + base:work\#DateStart_Min "1912-05-14"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8520; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDOrganisation base:organisation\/2360; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8525 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-06-30"^^xsd:date; + base:work\#DateEnd_Min "1912-05-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-06-30"^^xsd:date; + base:work\#DateStart_Min "1912-05-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8525; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/CA-Toro-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8530 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-09-22"^^xsd:date; + base:work\#DateEnd_Min "1912-05-15"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-06-30"^^xsd:date; + base:work\#DateStart_Min "1912-05-15"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8530; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Buff-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8535 a base:work; + base:work\#DateEnd_Fuzzy "1912 till 1913"; + base:work\#DateEnd_Max "1913-06-11"^^xsd:date; + base:work\#DateEnd_Min "1912-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1912 till 1913"; + base:work\#DateStart_Max "1913-06-11"^^xsd:date; + base:work\#DateStart_Min "1912-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8535; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-Syrac-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/854 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 854; + base:work\#comment "contract with Paramount Pictures"; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8540 a base:work; + base:work\#DateEnd_Fuzzy "1912 till 1913"; + base:work\#DateEnd_Max "1913-06-11"^^xsd:date; + base:work\#DateEnd_Min "1912-09-23"^^xsd:date; + base:work\#DateStart_Fuzzy "1912 till 1913"; + base:work\#DateStart_Max "1913-06-11"^^xsd:date; + base:work\#DateStart_Min "1912-09-23"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8540; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NHav-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8545 a base:work; + base:work\#DateEnd_Fuzzy "1913 Summer"; + base:work\#DateEnd_Max "1913-09-21"^^xsd:date; + base:work\#DateEnd_Min "1913-06-12"^^xsd:date; + base:work\#DateStart_Fuzzy "1913 Summer"; + base:work\#DateStart_Max "1913-09-21"^^xsd:date; + base:work\#DateStart_Min "1913-06-12"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8545; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8550 a base:work; + base:work\#DateEnd_Fuzzy "between October and December 1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between October and December 1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8550; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8555 a base:work; + base:work\#DateEnd_Fuzzy "between October and December 1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between October and December 1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8555; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8560 a base:work; + base:work\#DateEnd_Fuzzy "January 1914"; + base:work\#DateEnd_Max "1914-01-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1914"; + base:work\#DateStart_Max "1914-01-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8560; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-LosAng-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8565 a base:work; + base:work\#DateEnd_Fuzzy "1919 Summer"; + base:work\#DateEnd_Max "1919-09-22"^^xsd:date; + base:work\#DateEnd_Min "1919-06-21"^^xsd:date; + base:work\#DateStart_Max "1919-09-22"^^xsd:date; + base:work\#DateStart_Min "1919-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8565; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-Litchf-00; + base:work\#ref-IDOrganisation2 base:organisation\/2365; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/857 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 857; + base:work\#comment "continued carrer in the service of nazi cinema"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/JanEmi-00 . + +base:work\/8570 a base:work; + base:work\#DateEnd_Fuzzy "1921 Spring"; + base:work\#DateEnd_Max "1921-06-20"^^xsd:date; + base:work\#DateEnd_Min "1921-03-21"^^xsd:date; + base:work\#DateStart_Max "1921-06-20"^^xsd:date; + base:work\#DateStart_Min "1921-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8570; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDOrganisation2 base:organisation\/2370; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8575 a base:work; + base:work\#DateEnd_Fuzzy "1921"; + base:work\#DateEnd_Max "1921-11-28"^^xsd:date; + base:work\#DateEnd_Min "1921-11-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1921"; + base:work\#DateStart_Max "1921-11-26"^^xsd:date; + base:work\#DateStart_Min "1921-11-26"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8575; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2375; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8580 a base:work; + base:work\#DateEnd_Fuzzy "January 1923"; + base:work\#DateEnd_Max "1923-01-31"^^xsd:date; + base:work\#DateEnd_Min "1923-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1923"; + base:work\#DateStart_Max "1923-01-31"^^xsd:date; + base:work\#DateStart_Min "1923-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8580; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8585 a base:work; + base:work\#DateEnd_Fuzzy "between October 1923 and September 1924"; + base:work\#DateEnd_Max "1924-09-30"^^xsd:date; + base:work\#DateEnd_Min "1923-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between October 1923 and September 1924"; + base:work\#DateStart_Max "1924-09-30"^^xsd:date; + base:work\#DateStart_Min "1923-10-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8585; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8590 a base:work; + base:work\#DateEnd_Fuzzy "1921 Spring"; + base:work\#DateEnd_Max "1921-06-20"^^xsd:date; + base:work\#DateEnd_Min "1921-03-21"^^xsd:date; + base:work\#DateStart_Max "1921-06-20"^^xsd:date; + base:work\#DateStart_Min "1921-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8590; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/MarJul-00 . + +base:work\/8595 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1842-12-31"^^xsd:date; + base:work\#DateEnd_Min "1842-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8595; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/86 a base:work; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 86; + base:work\#ref-IDLocation base:location\/SE-Stock-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8600 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1843-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8600; + base:work\#ref-IDLocation base:location\/CZ-Brno-00; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8605 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1844-12-31"^^xsd:date; + base:work\#DateEnd_Min "1843-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1843"; + base:work\#DateStart_Max "1843-12-31"^^xsd:date; + base:work\#DateStart_Min "1843-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8605; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8610 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1848-09-30"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1844"; + base:work\#DateStart_Max "1844-12-31"^^xsd:date; + base:work\#DateStart_Min "1844-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8610; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8615 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-11-01"^^xsd:date; + base:work\#DateStart_Fuzzy "September 1848"; + base:work\#DateStart_Max "1848-09-30"^^xsd:date; + base:work\#DateStart_Min "1848-09-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8615; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2415; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8620 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850"; + base:work\#DateStart_Max "1850-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8620; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Impresario; + base:work\#Profession3 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2415; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8625 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1850-09-22"^^xsd:date; + base:work\#DateEnd_Min "1850-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer and Fall of 1850"; + base:work\#DateStart_Max "1850-09-22"^^xsd:date; + base:work\#DateStart_Min "1850-06-21"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8625; + base:work\#Profession base:Profession-MusicDirector; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2430; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8630 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850 till 1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8630; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8635 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850 till 1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8635; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDOrganisation base:organisation\/2445; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8640 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850 till 1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8640; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/MX-Pueb-00; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8645 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850 till 1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8645; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/MX-Veracr-00; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8650 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1852-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1850 till 1852"; + base:work\#DateStart_Max "1852-12-31"^^xsd:date; + base:work\#DateStart_Min "1850-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8650; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8655 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1879-12-31"^^xsd:date; + base:work\#DateEnd_Min "1879-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "October 1854"; + base:work\#DateStart_Max "1854-10-31"^^xsd:date; + base:work\#DateStart_Min "1854-10-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8655; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/2470; + base:work\#ref-IDOrganisation2 base:organisation\/2425; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8660 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1873-12-31"^^xsd:date; + base:work\#DateEnd_Min "1873-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Max "1857-02-25"^^xsd:date; + base:work\#DateStart_Min "1857-02-25"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8660; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDOrganisation base:organisation\/2470; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8665 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Max "1860-12-31"^^xsd:date; + base:work\#DateEnd_Min "1860-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1860"; + base:work\#DateStart_Max "1860-12-31"^^xsd:date; + base:work\#DateStart_Min "1860-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8665; + base:work\#Profession base:Profession-Manager; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8670 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#Employment "other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8670; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/MarMax-00 . + +base:work\/8675 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8675; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/2510; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8680 a base:work; + base:work\#DateEnd_Fuzzy "1917"; + base:work\#DateEnd_Max "1917-12-31"^^xsd:date; + base:work\#DateEnd_Min "1917-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1917"; + base:work\#DateStart_Max "1917-12-31"^^xsd:date; + base:work\#DateStart_Min "1917-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8680; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/2515; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8685 a base:work; + base:work\#DateStart_Fuzzy """ 1928"""; + base:work\#DateStart_Max "1928-12-31"^^xsd:date; + base:work\#DateStart_Min "1928-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8685; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4868; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8690 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1933"; + base:work\#DateStart_Max "1933-12-31"^^xsd:date; + base:work\#DateStart_Min "1933-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8690; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2525; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8695 a base:work; + base:work\#DateEnd_Fuzzy "1940"; + base:work\#DateEnd_Max "1940-12-31"^^xsd:date; + base:work\#DateEnd_Min "1940-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1936"; + base:work\#DateStart_Max "1936-12-31"^^xsd:date; + base:work\#DateStart_Min "1936-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8695; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2530; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/87 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-12-31"^^xsd:date; + base:work\#DateEnd_Min "1845-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 87; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8700 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8700; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2535; + base:work\#ref-IDOrganisation2 base:organisation\/2540; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8705 a base:work; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8705; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4868; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8710 a base:work; + base:work\#DateEnd_Fuzzy "1960"; + base:work\#DateEnd_Max "1960-12-31"^^xsd:date; + base:work\#DateEnd_Min "1960-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1955"; + base:work\#DateStart_Max "1955-12-31"^^xsd:date; + base:work\#DateStart_Min "1955-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8710; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2550; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8715 a base:work; + base:work\#DateEnd_Fuzzy "1960"; + base:work\#DateEnd_Max "1960-12-31"^^xsd:date; + base:work\#DateEnd_Min "1960-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1958"; + base:work\#DateStart_Max "1958-12-31"^^xsd:date; + base:work\#DateStart_Min "1958-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8715; + base:work\#Profession base:Profession-Director; + base:work\#Profession2 base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/4764; + base:work\#ref-IDPerson base:person\/CunAnt-00 . + +base:work\/8720 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Min "1888-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Min "1888-01-05"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8720; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/2570; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8725 a base:work; + base:work\#DateEnd_Min "1890-12-31"^^xsd:date; + base:work\#DateStart_Min "1890-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8725; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation base:organisation\/2575; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8730 a base:work; + base:work\#DateEnd_Min "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8730; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDOrganisation base:organisation\/2211; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8735 a base:work; + base:work\#DateEnd_Min "1889-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8735; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2580; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8740 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Min "1893-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8740; + base:work\#ref-IDLocation base:location\/PT-Liss-00; + base:work\#ref-IDOrganisation base:organisation\/2585; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8745 a base:work; + base:work\#DateEnd_Min "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8745; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-StPet-00; + base:work\#ref-IDOrganisation base:organisation\/2590; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8750 a base:work; + base:work\#DateEnd_Min "1896-12-31"^^xsd:date; + base:work\#DateStart_Min "1896-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8750; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/RU-Mosk-00; + base:work\#ref-IDOrganisation base:organisation\/2595; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8755 a base:work; + base:work\#DateEnd_Min "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8755; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/2600; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8760 a base:work; + base:work\#DateEnd_Min "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8760; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDOrganisation base:organisation\/2605; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8765 a base:work; + base:work\#DateEnd_Min "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8765; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/DK-Kop-00; + base:work\#ref-IDOrganisation base:organisation\/2610; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8770 a base:work; + base:work\#DateEnd_Min "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8770; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/2615; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8775 a base:work; + base:work\#DateEnd_Min "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8775; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/965; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8780 a base:work; + base:work\#DateEnd_Min "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8780; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/752; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8785 a base:work; + base:work\#DateEnd_Min "1902-12-31"^^xsd:date; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Min "1902-06-04"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8785; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8790 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateEnd_Min "1928-10-12"^^xsd:date; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Min "1922-10-12"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8790; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2625; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/8795 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Min "1938-01-04"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8795; + base:work\#Profession base:Profession-Founder; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2630; + base:work\#ref-IDPerson base:person\/PacReg-00 . + +base:work\/88 a base:work; + base:work\#DateEnd_Fuzzy "1846"; + base:work\#DateEnd_Max "1846-12-31"^^xsd:date; + base:work\#DateEnd_Min "1846-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 88; + base:work\#comment "tours through Italy (Mailand, Triest, Vicenza, Bologna and Rom)"; + base:work\#ref-IDLocation base:location\/IT-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/8800 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "from 1988"; + base:work\#DateStart_Min "1988-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8800; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/URY-Montvid-00; + base:work\#ref-IDPerson base:person\/PadMan-00 . + +base:work\/8805 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "from 1988"; + base:work\#DateStart_Min "1988-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8805; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/2655; + base:work\#ref-IDPerson base:person\/PadMan-00 . + +base:work\/881 a base:work; + base:work\#Employment "theater conductor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 881; + base:work\#comment """He got the job on the recommendation of Richard Wagner, whom he knew because of the Nibelungen-Kanzlei. +He worked there under director Angelo Neumann +"""; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/391; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8810 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "from 1910"; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8810; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDOrganisation base:organisation\/2660; + base:work\#ref-IDPerson base:person\/PadMan-00 . + +base:work\/8815 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "from 1911"; + base:work\#DateStart_Min "1911-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8815; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDOrganisation base:organisation\/2665; + base:work\#ref-IDPerson base:person\/PadMan-00 . + +base:work\/8820 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "from 1915"; + base:work\#DateStart_Min "1915-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8820; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-CircusPerformer; + base:work\#ref-IDOrganisation base:organisation\/2670; + base:work\#ref-IDPerson base:person\/PadMan-00 . + +base:work\/8825 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8825; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/638; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/8830 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1880"; + base:work\#DateStart_Max "1880-12-31"^^xsd:date; + base:work\#DateStart_Min "1880-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8830; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-MdPl-00; + base:work\#ref-IDOrganisation base:organisation\/639; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/8835 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8835; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-MdPl-00; + base:work\#ref-IDOrganisation base:organisation\/640; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/884 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateEnd_Max "1883-12-31"^^xsd:date; + base:work\#DateEnd_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 884; + base:work\#comment "The ensemble was founded by Angelo Neumnann"; + base:work\#ref-IDOrganisation base:organisation\/392; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8840 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8840; + base:work\#ref-IDLocation base:location\/ARG-Mendo-00; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/8845 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8845; + base:work\#Profession base:Profession-Journalist; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/642; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/8850 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy ""; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8850; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/1179; + base:work\#ref-IDPerson base:person\/SanJus-00 . + +base:work\/8855 a base:work; + base:work\#DateEnd_Fuzzy "September 1848"; + base:work\#DateEnd_Max "1848-09-30"^^xsd:date; + base:work\#DateEnd_Min "1848-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "24th October 1847"; + base:work\#DateStart_Max "1847-10-24"^^xsd:date; + base:work\#DateStart_Min "1847-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8855; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/599; + base:work\#ref-IDOrganisation2 base:organisation\/601; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8860 a base:work; + base:work\#DateEnd_Fuzzy "September 1848"; + base:work\#DateEnd_Max "1848-09-30"^^xsd:date; + base:work\#DateEnd_Min "1848-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "24th October 1847"; + base:work\#DateStart_Max "1847-10-24"^^xsd:date; + base:work\#DateStart_Min "1847-10-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8860; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BR-Niter-00; + base:work\#ref-IDOrganisation base:organisation\/600; + base:work\#ref-IDOrganisation2 base:organisation\/601; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8865 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "September 1848"; + base:work\#DateStart_Max "1848-09-30"^^xsd:date; + base:work\#DateStart_Min "1848-09-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8865; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/1037; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/887 a base:work; + base:work\#DateEnd_Fuzzy "1885"; + base:work\#DateEnd_Max "1885-12-31"^^xsd:date; + base:work\#DateEnd_Min "1885-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 887; + base:work\#ref-IDLocation base:location\/GER-Brem-00; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8870 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8870; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/604; + base:work\#ref-IDOrganisation2 base:organisation\/601; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8875 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1851"; + base:work\#DateStart_Max "1851-12-31"^^xsd:date; + base:work\#DateStart_Min "1851-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8875; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/599; + base:work\#ref-IDOrganisation2 base:organisation\/603; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8880 a base:work; + base:work\#DateEnd_Fuzzy "1855"; + base:work\#DateEnd_Max "1855-12-31"^^xsd:date; + base:work\#DateEnd_Min "1855-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1853"; + base:work\#DateStart_Max "1853-12-31"^^xsd:date; + base:work\#DateStart_Min "1853-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8880; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/602; + base:work\#ref-IDOrganisation2 base:organisation\/601; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8885 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1855"; + base:work\#DateStart_Max "1855-12-31"^^xsd:date; + base:work\#DateStart_Min "1855-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8885; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/626; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8890 a base:work; + base:work\#DateEnd_Fuzzy "1867"; + base:work\#DateEnd_Max "1867-12-31"^^xsd:date; + base:work\#DateEnd_Min "1867-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1862"; + base:work\#DateStart_Max "1862-12-31"^^xsd:date; + base:work\#DateStart_Min "1862-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8890; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Impresario; + base:work\#Profession3 base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-SaoPau-00; + base:work\#ref-IDOrganisation base:organisation\/605; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/89 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 89; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/142; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/890 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-08-31"^^xsd:date; + base:work\#DateStart_Min "1885-08-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 890; + base:work\#ref-IDOrganisation base:organisation\/393; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8900 a base:work; + base:work\#DateEnd_Fuzzy "1877"; + base:work\#DateEnd_Max "1877-12-31"^^xsd:date; + base:work\#DateEnd_Min "1877-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1870"; + base:work\#DateStart_Max "1870-12-31"^^xsd:date; + base:work\#DateStart_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8900; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/827; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8910 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8910; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-CampGoyta-00; + base:work\#ref-IDOrganisation base:organisation\/606; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8915 a base:work; + base:work\#DateEnd_Fuzzy "1881"; + base:work\#DateEnd_Max "1881-12-31"^^xsd:date; + base:work\#DateEnd_Min "1881-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1878"; + base:work\#DateStart_Max "1878-12-31"^^xsd:date; + base:work\#DateStart_Min "1878-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8915; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2675; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8920 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "-"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8920; + base:work\#Profession base:Profession-Other; + base:work\#ref-IDLocation base:location\/BR-RdJ-00; + base:work\#ref-IDOrganisation base:organisation\/2680; + base:work\#ref-IDPerson base:person\/VelMar-00 . + +base:work\/8925 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1829"; + base:work\#DateStart_Max "1829-12-31"^^xsd:date; + base:work\#DateStart_Min "1829-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8925; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/4644; + base:work\#ref-IDPerson base:person\/AubDan-00 . + +base:work\/893 a base:work; + base:work\#DateStart_Fuzzy "1885"; + base:work\#DateStart_Max "1885-11-30"^^xsd:date; + base:work\#DateStart_Min "1885-11-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 893; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/267; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8930 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8930; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/AubDan-00 . + +base:work\/8935 a base:work; + base:work\#DateStart_Fuzzy "1827"; + base:work\#DateStart_Max "1827-12-31"^^xsd:date; + base:work\#DateStart_Min "1827-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8935; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/527; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8940 a base:work; + base:work\#DateEnd_Fuzzy "between 1828 and 1829"; + base:work\#DateEnd_Max "1829-12-31"^^xsd:date; + base:work\#DateEnd_Min "1828-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1828 and 1829"; + base:work\#DateStart_Max "1829-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 8940; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Ven-00; + base:work\#ref-IDOrganisation base:organisation\/2705; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8945 a base:work; + base:work\#DateEnd_Fuzzy "between 1828 and 1829"; + base:work\#DateEnd_Max "1829-12-31"^^xsd:date; + base:work\#DateEnd_Min "1828-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1828 and 1829"; + base:work\#DateStart_Max "1829-12-31"^^xsd:date; + base:work\#DateStart_Min "1828-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 8945; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/2710; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8950 a base:work; + base:work\#DateStart_Fuzzy "1830"; + base:work\#DateStart_Max "1830-12-31"^^xsd:date; + base:work\#DateStart_Min "1830-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 8950; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Vero-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8955 a base:work; + base:work\#DateEnd_Fuzzy "1832"; + base:work\#DateEnd_Max "1832-12-31"^^xsd:date; + base:work\#DateEnd_Min "1832-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1830"; + base:work\#DateStart_Max "1830-12-31"^^xsd:date; + base:work\#DateStart_Min "1830-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 8955; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/ES-Barc-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/896 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 896; + base:work\#comment "Guest engagement. Co-conductor under Leopold Damrosch, later under Walter Damrosch"; + base:work\#ref-IDOrganisation base:organisation\/394; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8960 a base:work; + base:work\#DateEnd_Fuzzy "1842"; + base:work\#DateEnd_Max "1842-12-31"^^xsd:date; + base:work\#DateEnd_Min "1842-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1833"; + base:work\#DateStart_Max "1833-12-31"^^xsd:date; + base:work\#DateStart_Min "1833-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 8960; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDOrganisation base:organisation\/81; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8965 a base:work; + base:work\#DateStart_Fuzzy "1834"; + base:work\#DateStart_Max "1834-12-31"^^xsd:date; + base:work\#DateStart_Min "1834-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8965; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Paris-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8970 a base:work; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8970; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/82; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8975 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1842"; + base:work\#DateStart_Max "1842-12-31"^^xsd:date; + base:work\#DateStart_Min "1842-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 8975; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-Paris-00; + base:work\#ref-IDOrganisation base:organisation\/97; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8980 a base:work; + base:work\#DateStart_Fuzzy "1849"; + base:work\#DateStart_Max "1849-12-31"^^xsd:date; + base:work\#DateStart_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8980; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8985 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8985; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/899 a base:work; + base:work\#DateEnd_Fuzzy "1998"; + base:work\#DateEnd_Max "1998-12-31"^^xsd:date; + base:work\#DateEnd_Min "1998-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 899; + base:work\#comment "During his time in New York he had a lot of guest emgagements in several American cities to conducht wagner operas, e.g. 1991 through Invitation of Benjamin Johnson Lang in Boston to performe Parsifal there fort he first time"; + base:work\#ref-IDOrganisation base:organisation\/395; + base:work\#ref-IDPerson base:person\/SeiAnt-00 . + +base:work\/8990 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8990; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Mila-00; + base:work\#ref-IDPerson base:person\/BraMar-02 . + +base:work\/8997 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Direktor, Ensemble"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 8997; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/9 a base:work; + base:work\#DateEnd_Fuzzy "-"; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/AbeIre-00 . + +base:work\/90 a base:work; + base:work\#DateEnd_Fuzzy "1880"; + base:work\#DateEnd_Max "1880-12-31"^^xsd:date; + base:work\#DateEnd_Min "1880-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 90; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/TagMar-00 . + +base:work\/9002 a base:work; + base:work\#DateStart_Fuzzy "1932"; + base:work\#DateStart_Max "1932-12-31"^^xsd:date; + base:work\#DateStart_Min "1932-01-01"^^xsd:date; + base:work\#Employment "Singer,Actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9002; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/9007 a base:work; + base:work\#DateStart_Fuzzy "1914"; + base:work\#DateStart_Max "1914-12-31"^^xsd:date; + base:work\#DateStart_Min "1914-01-01"^^xsd:date; + base:work\#Employment "Salonhumorist, Actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9007; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/9012 a base:work; + base:work\#DateEnd_Fuzzy "1980"; + base:work\#DateEnd_Max "1980-12-31"^^xsd:date; + base:work\#DateEnd_Min "1980-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1950"; + base:work\#DateStart_Max "1950-12-31"^^xsd:date; + base:work\#DateStart_Min "1950-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9012; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-00; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:work\/902 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 902; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/396; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/905 a base:work; + base:work\#DateEnd_Fuzzy "1839"; + base:work\#DateEnd_Max "1839-12-31"^^xsd:date; + base:work\#DateEnd_Min "1839-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 905; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/103; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/908 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 908; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/91 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 91; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/HR-Zagr-00; + base:work\#ref-IDOrganisation base:organisation\/536; + base:work\#ref-IDPerson base:person\/StrMau-00 . + +base:work\/911 a base:work; + base:work\#DateEnd_Fuzzy "1840"; + base:work\#DateEnd_Max "1840-12-31"^^xsd:date; + base:work\#DateEnd_Min "1840-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 911; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/183; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/914 a base:work; + base:work\#DateEnd_Fuzzy "1845"; + base:work\#DateEnd_Max "1845-12-31"^^xsd:date; + base:work\#DateEnd_Min "1845-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 914; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/255; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/917 a base:work; + base:work\#DateEnd_Fuzzy "1849"; + base:work\#DateEnd_Max "1849-12-31"^^xsd:date; + base:work\#DateEnd_Min "1849-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 917; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/397; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/92 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 92; + base:work\#Profession base:Profession-Singer; + base:work\#comment "sang there „The Trompeter von Säckingen“ , worked with the composer Victor Nessler"; + base:work\#ref-IDLocation base:location\/FR-Strb-00; + base:work\#ref-IDOrganisation base:organisation\/98; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/920 a base:work; + base:work\#DateEnd_Fuzzy "1856"; + base:work\#DateEnd_Max "1856-12-31"^^xsd:date; + base:work\#DateEnd_Min "1856-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 920; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9266 a base:work; + base:work\#DateEnd_Fuzzy "Between 1868 and 1874"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1868 and 1874-03-20"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9266; + base:work\#Profession base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9271 a base:work; + base:work\#DateEnd_Fuzzy "Between 1868 and 1874-03-20"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1868 and 1874-03-20"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9271; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9276 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1874-03-21"; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9276; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9281 a base:work; + base:work\#DateEnd_Fuzzy "1876"; + base:work\#DateEnd_Max "1876-12-31"^^xsd:date; + base:work\#DateEnd_Min "1876-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1875"; + base:work\#DateStart_Max "1875-12-31"^^xsd:date; + base:work\#DateStart_Min "1875-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9281; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9286 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9286; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9291 a base:work; + base:work\#DateEnd_Fuzzy "December 1883 and January 1884"; + base:work\#DateEnd_Max "1884-01-31"^^xsd:date; + base:work\#DateEnd_Min "1883-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "July 1883"; + base:work\#DateStart_Max "1883-07-31"^^xsd:date; + base:work\#DateStart_Min "1883-07-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9291; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9296 a base:work; + base:work\#DateEnd_Fuzzy "September 1886"; + base:work\#DateEnd_Max "1886-09-30"^^xsd:date; + base:work\#DateEnd_Min "1886-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1884"; + base:work\#DateStart_Max "1884-01-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9296; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/Europe; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/93 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 93; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9301 a base:work; + base:work\#DateEnd_Fuzzy "1886-09-27"; + base:work\#DateEnd_Min "1886-09-27"^^xsd:date; + base:work\#DateStart_Fuzzy "1886-09-27"; + base:work\#DateStart_Min "1886-09-27"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9301; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/233; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9306 a base:work; + base:work\#DateEnd_Fuzzy "1896-12-17"; + base:work\#DateEnd_Min "1896-12-17"^^xsd:date; + base:work\#DateStart_Fuzzy "Probably 1887"; + base:work\#DateStart_Max "1887-12-31"^^xsd:date; + base:work\#DateStart_Min "1887-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9306; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9311 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9311; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Phila-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9316 a base:work; + base:work\#DateEnd_Fuzzy "Between 1889 and 1891"; + base:work\#DateEnd_Max "1889-12-31"^^xsd:date; + base:work\#DateEnd_Min "1889-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1889 and 1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1889-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9316; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9321 a base:work; + base:work\#DateEnd_Fuzzy "1891"; + base:work\#DateEnd_Max "1891-12-31"^^xsd:date; + base:work\#DateEnd_Min "1891-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1891"; + base:work\#DateStart_Max "1891-12-31"^^xsd:date; + base:work\#DateStart_Min "1891-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9321; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9326 a base:work; + base:work\#DateEnd_Fuzzy "May 1895"; + base:work\#DateEnd_Max "1895-05-31"^^xsd:date; + base:work\#DateEnd_Min "1895-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1895"; + base:work\#DateStart_Max "1895-05-31"^^xsd:date; + base:work\#DateStart_Min "1895-05-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9326; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Jersey-00; + base:work\#ref-IDOrganisation base:organisation\/1390; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9331 a base:work; + base:work\#DateEnd_Fuzzy "1897-01-10"; + base:work\#DateEnd_Min "1897-01-10"^^xsd:date; + base:work\#DateStart_Fuzzy "1897-01-10"; + base:work\#DateStart_Min "1897-01-10"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9331; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9336 a base:work; + base:work\#DateEnd_Fuzzy "1897-01-28"; + base:work\#DateEnd_Min "1897-01-28"^^xsd:date; + base:work\#DateStart_Fuzzy "1897-01-28"; + base:work\#DateStart_Min "1897-01-28"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9336; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9341 a base:work; + base:work\#DateEnd_Fuzzy "Probably 1899-06-25"; + base:work\#DateEnd_Min "1899-06-25"^^xsd:date; + base:work\#DateStart_Fuzzy "1897-01-01"; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9341; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#Profession3 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9346 a base:work; + base:work\#DateEnd_Fuzzy "December 1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-12-01"^^xsd:date; + base:work\#DateStart_Fuzzy "December 1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-12-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9346; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Scrnt-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9351 a base:work; + base:work\#DateEnd_Fuzzy "January 1899"; + base:work\#DateEnd_Max "1899-01-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "January 1899"; + base:work\#DateStart_Max "1899-01-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9351; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Wash-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9356 a base:work; + base:work\#DateEnd_Fuzzy "Between January 1899 and May 1899"; + base:work\#DateEnd_Max "1899-05-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between January 1899 and May 1899"; + base:work\#DateStart_Max "1899-05-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9356; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-StPaul-00; + base:work\#ref-IDOrganisation base:organisation\/1083; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9361 a base:work; + base:work\#DateEnd_Fuzzy "May 1899"; + base:work\#DateEnd_Max "1899-05-31"^^xsd:date; + base:work\#DateEnd_Min "1899-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1899"; + base:work\#DateStart_Max "1899-05-31"^^xsd:date; + base:work\#DateStart_Min "1899-05-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9361; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9366 a base:work; + base:work\#DateEnd_Fuzzy "July"; + base:work\#DateEnd_Max "1899-07-31"^^xsd:date; + base:work\#DateEnd_Min "1899-07-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899-06-25"; + base:work\#DateStart_Min "1899-06-25"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9366; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9371 a base:work; + base:work\#DateEnd_Fuzzy "August 1899"; + base:work\#DateEnd_Max "1899-08-31"^^xsd:date; + base:work\#DateEnd_Min "1899-08-01"^^xsd:date; + base:work\#DateStart_Fuzzy "August 1899"; + base:work\#DateStart_Max "1899-08-31"^^xsd:date; + base:work\#DateStart_Min "1899-08-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9371; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9376 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9376; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9381 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9381; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1360; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9386 a base:work; + base:work\#DateEnd_Fuzzy "Between September 1899 and 1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September 1899 and 1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-09-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9386; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9391 a base:work; + base:work\#DateEnd_Fuzzy "1899"; + base:work\#DateEnd_Max "1899-12-31"^^xsd:date; + base:work\#DateEnd_Min "1899-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1899"; + base:work\#DateStart_Max "1899-12-31"^^xsd:date; + base:work\#DateStart_Min "1899-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9391; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDOrganisation base:organisation\/1410; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9396 a base:work; + base:work\#DateEnd_Fuzzy "1900"; + base:work\#DateEnd_Max "1900-12-31"^^xsd:date; + base:work\#DateEnd_Min "1900-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1900"; + base:work\#DateStart_Max "1900-12-31"^^xsd:date; + base:work\#DateStart_Min "1900-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9396; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Colum-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/94 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 94; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Königsberg"; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9401 a base:work; + base:work\#DateEnd_Fuzzy "17.10.1900"; + base:work\#DateEnd_Min "1900-10-17"^^xsd:date; + base:work\#DateStart_Fuzzy "17.10.1900"; + base:work\#DateStart_Min "1900-10-17"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9401; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Marie-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9406 a base:work; + base:work\#DateEnd_Fuzzy "1901"; + base:work\#DateEnd_Max "1901-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1901"; + base:work\#DateStart_Max "1901-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9406; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/941 a base:work; + base:work\#DateEnd_Fuzzy "1859"; + base:work\#DateEnd_Max "1859-12-31"^^xsd:date; + base:work\#DateEnd_Min "1859-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 941; + base:work\#Profession base:Profession-Singer; + base:work\#comment "1859 he lost his voice and he regenerated in 1862"; + base:work\#ref-IDLocation base:location\/GER-Leip-00; + base:work\#ref-IDOrganisation base:organisation\/78; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9411 a base:work; + base:work\#DateEnd_Fuzzy "Between 1901 and 1902-06-14"; + base:work\#DateEnd_Max "1902-06-14"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1901 and 1902-06-14"; + base:work\#DateStart_Max "1902-06-14"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9411; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9416 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-06-14"^^xsd:date; + base:work\#DateStart_Fuzzy "14.06.1902"; + base:work\#DateStart_Min "1902-06-14"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9416; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9421 a base:work; + base:work\#DateEnd_Fuzzy "Between September 1902 and 1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September 1902 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-09-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9421; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9426 a base:work; + base:work\#DateEnd_Fuzzy "Between 1901 and 1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1901 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9426; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9431 a base:work; + base:work\#DateEnd_Fuzzy "Between 1901 and 1903"; + base:work\#DateEnd_Max "1903-12-31"^^xsd:date; + base:work\#DateEnd_Min "1901-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1901 and 1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1901-01-01"^^xsd:date; + base:work\#Employment "Other"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9431; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9436 a base:work; + base:work\#DateEnd_Fuzzy "May 1904"; + base:work\#DateEnd_Max "1904-05-31"^^xsd:date; + base:work\#DateEnd_Min "1904-05-01"^^xsd:date; + base:work\#DateStart_Fuzzy "May 1904"; + base:work\#DateStart_Max "1904-05-31"^^xsd:date; + base:work\#DateStart_Min "1904-05-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9436; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Jersey-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/944 a base:work; + base:work\#DateEnd_Fuzzy "1865"; + base:work\#DateEnd_Max "1865-12-31"^^xsd:date; + base:work\#DateEnd_Min "1865-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 944; + base:work\#Profession base:Profession-Singer; + base:work\#comment """1859 he lost his voice and he regenerated in 1862. +1865 he lost his voice again and got no new contract 1866 in Wien for this reason. +He moved to Wien after retirement"""; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9441 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9441; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Richm-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9446 a base:work; + base:work\#DateEnd_Fuzzy "02.01.1906"; + base:work\#DateStart_Fuzzy "12.08.1905"; + base:work\#DateStart_Min "1905-08-12"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9446; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9451 a base:work; + base:work\#DateEnd_Fuzzy ""; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9451; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9456 a base:work; + base:work\#DateEnd_Fuzzy "Probably October 1908"; + base:work\#DateEnd_Max "1908-10-31"^^xsd:date; + base:work\#DateEnd_Min "1908-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1908"; + base:work\#DateStart_Max "1908-09-22"^^xsd:date; + base:work\#DateStart_Min "1908-06-21"^^xsd:date; + base:work\#Employment "Permanent"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9456; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9461 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9461; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-CHIC-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9466 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9466; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NewOrl-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/947 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 947; + base:work\#Profession base:Profession-Director; + base:work\#comment """1865 he lost his voice again and got no new contract 1866 in Wien for this reason. +He moved to Wien after retirement"""; + base:work\#ref-IDOrganisation base:organisation\/398; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9471 a base:work; + base:work\#DateEnd_Fuzzy "Between 1907 and 1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1907 and 1924"; + base:work\#DateStart_Max "1924-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9471; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9476 a base:work; + base:work\#DateEnd_Fuzzy "Probably October 1908"; + base:work\#DateEnd_Max "1908-10-31"^^xsd:date; + base:work\#DateEnd_Min "1908-10-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1908"; + base:work\#DateStart_Max "1908-09-22"^^xsd:date; + base:work\#DateStart_Min "1908-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9476; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9481 a base:work; + base:work\#DateEnd_Fuzzy "Summer 1908"; + base:work\#DateEnd_Max "1908-09-22"^^xsd:date; + base:work\#DateEnd_Min "1908-06-21"^^xsd:date; + base:work\#DateStart_Fuzzy "Summer 1908"; + base:work\#DateStart_Max "1908-09-22"^^xsd:date; + base:work\#DateStart_Min "1908-06-21"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9481; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/CU-Hav-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9486 a base:work; + base:work\#DateEnd_Fuzzy "Sep 13"; + base:work\#DateEnd_Max "1913-09-30"^^xsd:date; + base:work\#DateEnd_Min "1913-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Sep 13"; + base:work\#DateStart_Max "1913-09-30"^^xsd:date; + base:work\#DateStart_Min "1913-09-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9486; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9491 a base:work; + base:work\#DateEnd_Fuzzy "March 1915"; + base:work\#DateEnd_Max "1915-03-31"^^xsd:date; + base:work\#DateEnd_Min "1915-03-01"^^xsd:date; + base:work\#DateStart_Fuzzy "March 1915"; + base:work\#DateStart_Max "1915-03-31"^^xsd:date; + base:work\#DateStart_Min "1915-03-01"^^xsd:date; + base:work\#Employment "Guest"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9491; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Clevel-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9496 a base:work; + base:work\#DateEnd_Fuzzy "Sep 24"; + base:work\#DateEnd_Max "1924-09-30"^^xsd:date; + base:work\#DateEnd_Min "1924-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "Sep 24"; + base:work\#DateStart_Max "1924-09-30"^^xsd:date; + base:work\#DateStart_Min "1924-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9496; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Prov-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/95 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 95; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/NL-AMS-00; + base:work\#ref-IDOrganisation base:organisation\/99; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/950 a base:work; + base:work\#DateEnd_Fuzzy "1869"; + base:work\#DateEnd_Max "1869-12-31"^^xsd:date; + base:work\#DateEnd_Min "1869-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 950; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDOrganisation base:organisation\/399; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9501 a base:work; + base:work\#DateEnd_Fuzzy "Between September 1924 and April 1928"; + base:work\#DateEnd_Max "0928-04-30"^^xsd:date; + base:work\#DateEnd_Min "1924-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between September 1924 and April 1928"; + base:work\#DateStart_Max "0928-04-30"^^xsd:date; + base:work\#DateStart_Min "1924-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9501; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9506 a base:work; + base:work\#DateEnd_Fuzzy "End of 1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-09-01"^^xsd:date; + base:work\#DateStart_Fuzzy "End of 1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-09-01"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9506; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-Paters-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9511 a base:work; + base:work\#DateEnd_Fuzzy "28.04.1928"; + base:work\#DateStart_Fuzzy "28.04.1928"; + base:work\#DateStart_Min "1928-04-28"^^xsd:date; + base:work\#Employment "Tour"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9511; + base:work\#Profession base:Profession-Magician; + base:work\#Profession2 base:Profession-Dancer; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9516 a base:work; + base:work\#DateEnd_Fuzzy "Between 1868 and 1874-03-20"; + base:work\#DateEnd_Max "1868-01-01"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1868 and 1874-03-20"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9516; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9521 a base:work; + base:work\#DateEnd_Fuzzy "Between 1868 and 1874-03-20"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9521; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/FR-Toulo-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9526 a base:work; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1868 and 1874-03-20"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9526; + base:work\#ref-IDLocation base:location\/FR-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/953 a base:work; + base:work\#DateEnd_Fuzzy "1870"; + base:work\#DateEnd_Max "1870-12-31"^^xsd:date; + base:work\#DateEnd_Min "1870-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 953; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDOrganisation base:organisation\/399; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9531 a base:work; + base:work\#DateEnd_Fuzzy "Between 1868 and 1874-03-20"; + base:work\#DateEnd_Max "1874-03-20"^^xsd:date; + base:work\#DateEnd_Min "1868-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "between 1868 and 1874-03-20"; + base:work\#DateStart_Max "1874-03-20"^^xsd:date; + base:work\#DateStart_Min "1868-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9531; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#ref-IDLocation base:location\/BE-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9536 a base:work; + base:work\#DateEnd_Fuzzy "1875"; + base:work\#DateEnd_Max "1875-12-31"^^xsd:date; + base:work\#DateEnd_Min "1875-01-01"^^xsd:date; + base:work\#DateStart_Max "1874-03-21"^^xsd:date; + base:work\#DateStart_Min "1874-03-21"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9536; + base:work\#ref-IDLocation base:location\/USA-00; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/9541 a base:work; + base:work\#DateEnd_Fuzzy "1878"; + base:work\#DateEnd_Max "1878-12-31"^^xsd:date; + base:work\#DateEnd_Min "1878-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1877"; + base:work\#DateStart_Max "1877-12-31"^^xsd:date; + base:work\#DateStart_Min "1877-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9541; + base:work\#Profession base:Profession-CircusPerformer; + base:work\#Profession2 base:Profession-Magician; + base:work\#ref-IDLocation base:location\/SouthAmerica; + base:work\#ref-IDPerson base:person\/HerAde-00 . + +base:work\/956 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 956; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#comment "1876 he moved to Graz to give singing lessons"; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDPerson base:person\/KreHei-00 . + +base:work\/9584 a base:work; + base:work\#DateEnd_Fuzzy "1883"; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9584; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Graz-00; + base:work\#ref-IDOrganisation base:organisation\/94; + base:work\#ref-IDPerson base:person\/BaiAnn-00 . + +base:work\/9589 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1884"; + base:work\#DateStart_Max "1884-12-31"^^xsd:date; + base:work\#DateStart_Min "1884-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9589; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/BaiAnn-00 . + +base:work\/9599 a base:work; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 9599; + base:work\#Profession base:Profession-Composer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/455; + base:work\#ref-IDPerson base:person\/AscLeo-00 . + +base:work\/96 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 96; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/PL-Bres-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9604 a base:work; + base:work\#DateEnd_Max "1916-12-31"^^xsd:date; + base:work\#DateEnd_Min "1916-01-01"^^xsd:date; + base:work\#DateStart_Max "1916-12-30"^^xsd:date; + base:work\#DateStart_Min "1916-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Other; + base:work\#IDWork 9604; + base:work\#Profession base:Profession-Composer; + base:work\#comment "Instituition: Neues Operetenhaus"; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/300; + base:work\#ref-IDPerson base:person\/AscLeo-00 . + +base:work\/9609 a base:work; + base:work\#DateStart_Fuzzy "1895"; + base:work\#DateStart_Max "1895-12-31"^^xsd:date; + base:work\#DateStart_Min "1895-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9609; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Carl Rosa Opera Company - Tour in England"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9614 a base:work; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9614; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Tour In England"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation2 base:organisation\/445; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9619 a base:work; + base:work\#DateEnd_Fuzzy "1897"; + base:work\#DateEnd_Max "1897-12-31"^^xsd:date; + base:work\#DateEnd_Min "1897-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1897"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1897-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9619; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Carl Rosa Opera Company"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9624 a base:work; + base:work\#DateEnd_Fuzzy "1902"; + base:work\#DateEnd_Max "1902-12-31"^^xsd:date; + base:work\#DateEnd_Min "1902-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1902"; + base:work\#DateStart_Max "1902-12-31"^^xsd:date; + base:work\#DateStart_Min "1902-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9624; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDOrganisation2 base:organisation\/445; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9629 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9629; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Mainz-00; + base:work\#ref-IDOrganisation base:organisation\/220; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9634 a base:work; + base:work\#DateEnd_Max "1907-12-22"^^xsd:date; + base:work\#DateEnd_Min "1907-12-22"^^xsd:date; + base:work\#DateStart_Max "1907-04-24"^^xsd:date; + base:work\#DateStart_Min "1907-04-24"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9634; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9639 a base:work; + base:work\#DateEnd_Fuzzy "1904"; + base:work\#DateEnd_Max "1904-12-31"^^xsd:date; + base:work\#DateEnd_Min "1904-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1904"; + base:work\#DateStart_Max "1904-12-31"^^xsd:date; + base:work\#DateStart_Min "1904-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9639; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CZ-Prag-00; + base:work\#ref-IDOrganisation base:organisation\/79; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9644 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-30"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9644; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDOrganisation base:organisation\/183; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9649 a base:work; + base:work\#DateEnd_Fuzzy "1905"; + base:work\#DateEnd_Max "1905-12-31"^^xsd:date; + base:work\#DateEnd_Min "1905-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9649; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9654 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9654; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9659 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9659; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDOrganisation base:organisation\/108; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9664 a base:work; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9664; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Ffm-00; + base:work\#ref-IDOrganisation base:organisation\/77; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9669 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9669; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/2620; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9674 a base:work; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1897-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9674; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/71; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9679 a base:work; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9679; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/BroPhi-00 . + +base:work\/9684 a base:work; + base:work\#DateEnd_Fuzzy "1907"; + base:work\#DateEnd_Max "1907-12-31"^^xsd:date; + base:work\#DateEnd_Min "1907-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1907"; + base:work\#DateStart_Max "1907-12-31"^^xsd:date; + base:work\#DateStart_Min "1907-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9684; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/9686 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9686; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/AT-Salzb-00; + base:work\#ref-IDOrganisation base:organisation\/421; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/9689 a base:work; + base:work\#DateEnd_Fuzzy "1906"; + base:work\#DateEnd_Max "1906-12-31"^^xsd:date; + base:work\#DateEnd_Min "1906-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1905"; + base:work\#DateStart_Max "1905-12-31"^^xsd:date; + base:work\#DateStart_Min "1905-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9689; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/175; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/9693 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9693; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/9694 a base:work; + base:work\#DateEnd_Fuzzy "1914"; + base:work\#DateEnd_Max "1914-12-31"^^xsd:date; + base:work\#DateEnd_Min "1914-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9694; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/75; + base:work\#ref-IDPerson base:person\/FarGer-00 . + +base:work\/9699 a base:work; + base:work\#DateEnd_Fuzzy "1927"; + base:work\#DateEnd_Max "1927-12-31"^^xsd:date; + base:work\#DateEnd_Min "1927-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1927"; + base:work\#DateStart_Max "1927-12-31"^^xsd:date; + base:work\#DateStart_Min "1927-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9699; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/NZ-00; + base:work\#ref-IDPerson base:person\/AldFra-00 . + +base:work\/97 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 97; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9704 a base:work; + base:work\#DateEnd_Fuzzy "1826"; + base:work\#DateEnd_Max "1826-12-31"^^xsd:date; + base:work\#DateEnd_Min "1826-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1826"; + base:work\#DateStart_Max "1826-12-31"^^xsd:date; + base:work\#DateStart_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9704; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Worked with his family"; + base:work\#ref-IDLocation base:location\/USA-NY-00; + base:work\#ref-IDOrganisation base:organisation\/283; + base:work\#ref-IDPerson base:person\/GarMan-01 . + +base:work\/9709 a base:work; + base:work\#DateEnd_Fuzzy "1828"; + base:work\#DateEnd_Max "1828-12-31"^^xsd:date; + base:work\#DateEnd_Min "1828-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1826"; + base:work\#DateStart_Max "1826-12-31"^^xsd:date; + base:work\#DateStart_Min "1826-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9709; + base:work\#comment "Worked with his family"; + base:work\#ref-IDLocation base:location\/MX-MX-00; + base:work\#ref-IDPerson base:person\/GarMan-01 . + +base:work\/9714 a base:work; + base:work\#DateEnd_Fuzzy "1850"; + base:work\#DateEnd_Max "1850-12-31"^^xsd:date; + base:work\#DateEnd_Min "1850-01-02"^^xsd:date; + base:work\#DateStart_Fuzzy "1847"; + base:work\#DateStart_Max "1847-12-31"^^xsd:date; + base:work\#DateStart_Min "1847-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9714; + base:work\#Profession base:Profession-Teacher\%28Theatrerelated\%29; + base:work\#ref-IDLocation base:location\/FR-PARIS-00; + base:work\#ref-IDOrganisation base:organisation\/206; + base:work\#ref-IDPerson base:person\/GarMan-01 . + +base:work\/9719 a base:work; + base:work\#DateEnd_Fuzzy "1895"; + base:work\#DateEnd_Max "1895-12-31"^^xsd:date; + base:work\#DateEnd_Min "1895-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1848"; + base:work\#DateStart_Max "1848-12-31"^^xsd:date; + base:work\#DateStart_Min "1848-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9719; + base:work\#comment "Worked in Royal Academy of Music"; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDPerson base:person\/GarMan-01 . + +base:work\/9724 a base:work; + base:work\#DateStart_Fuzzy "1883"; + base:work\#DateStart_Max "1883-12-31"^^xsd:date; + base:work\#DateStart_Min "1883-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9724; + base:work\#ref-IDLocation base:location\/UK-LDN-00; + base:work\#ref-IDOrganisation base:organisation\/1530; + base:work\#ref-IDPerson base:person\/GarMan-01 . + +base:work\/9729 a base:work; + base:work\#DateEnd_Fuzzy "1836"; + base:work\#DateEnd_Max "1836-12-31"^^xsd:date; + base:work\#DateEnd_Min "1836-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1836"; + base:work\#DateStart_Max "1836-12-31"^^xsd:date; + base:work\#DateStart_Min "1836-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9729; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-BOL-00; + base:work\#ref-IDOrganisation base:organisation\/80; + base:work\#ref-IDPerson base:person\/GriErn-00 . + +base:work\/9734 a base:work; + base:work\#DateEnd_Fuzzy "1837"; + base:work\#DateEnd_Max "1837-12-01"^^xsd:date; + base:work\#DateEnd_Min "1837-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1837"; + base:work\#DateStart_Max "1837-12-31"^^xsd:date; + base:work\#DateStart_Min "1837-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9734; + base:work\#Profession base:Profession-Singer; + base:work\#comment "worked in Teatro Sociale"; + base:work\#ref-IDLocation base:location\/IT-Mant-00; + base:work\#ref-IDPerson base:person\/GriErn-00 . + +base:work\/9739 a base:work; + base:work\#DateEnd_Fuzzy "1848"; + base:work\#DateEnd_Max "1848-12-31"^^xsd:date; + base:work\#DateEnd_Min "1848-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1848"; + base:work\#DateStart_Max "1848-12-31"^^xsd:date; + base:work\#DateStart_Min "1848-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9739; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/IT-Nap-00; + base:work\#ref-IDPerson base:person\/GriErn-00 . + +base:work\/9744 a base:work; + base:work\#DateEnd_Fuzzy "1913"; + base:work\#DateEnd_Max "1913-12-31"^^xsd:date; + base:work\#DateEnd_Min "1913-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1913"; + base:work\#DateStart_Max "1913-12-31"^^xsd:date; + base:work\#DateStart_Min "1913-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9744; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Worked in Boston Opera"; + base:work\#ref-IDLocation base:location\/USA-Bost-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9749 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9749; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/PL-WA-00; + base:work\#ref-IDOrganisation base:organisation\/175; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9754 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9754; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/HU-Buda-00; + base:work\#ref-IDOrganisation base:organisation\/143; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9759 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9759; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/LV-RIX-00; + base:work\#ref-IDOrganisation base:organisation\/72; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9764 a base:work; + base:work\#DateEnd_Fuzzy "1910"; + base:work\#DateEnd_Max "1910-12-31"^^xsd:date; + base:work\#DateEnd_Min "1910-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1910"; + base:work\#DateStart_Max "1910-12-31"^^xsd:date; + base:work\#DateStart_Min "1910-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9764; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/CH-Bas-00; + base:work\#ref-IDOrganisation base:organisation\/298; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9769 a base:work; + base:work\#DateEnd_Fuzzy "1935"; + base:work\#DateEnd_Max "1935-12-31"^^xsd:date; + base:work\#DateEnd_Min "1935-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1935"; + base:work\#DateStart_Max "1935-12-31"^^xsd:date; + base:work\#DateStart_Min "1935-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9769; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/UK-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9774 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9774; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HAJ-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9779 a base:work; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9779; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-Wiesb-00; + base:work\#ref-IDPerson base:person\/HemFri-00 . + +base:work\/9789 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1894"; + base:work\#DateStart_Max "1894-12-31"^^xsd:date; + base:work\#DateStart_Min "1894-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9789; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/AT-VIE-00; + base:work\#ref-IDOrganisation base:organisation\/74; + base:work\#ref-IDPerson base:person\/JagEls-00 . + +base:work\/9794 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-12-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9794; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-HH-00; + base:work\#ref-IDOrganisation base:organisation\/95; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/9799 a base:work; + base:work\#DateEnd_Fuzzy "1888"; + base:work\#DateEnd_Max "1888-12-31"^^xsd:date; + base:work\#DateEnd_Min "1888-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1888"; + base:work\#DateStart_Max "1888-07-31"^^xsd:date; + base:work\#DateStart_Min "1888-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9799; + base:work\#Profession base:Profession-Singer; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/422; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/98 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 98; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/GER-Col-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9804 a base:work; + base:work\#DateEnd_Fuzzy "1854"; + base:work\#DateEnd_Max "1854-12-31"^^xsd:date; + base:work\#DateEnd_Min "1854-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1854"; + base:work\#DateStart_Max "1854-12-31"^^xsd:date; + base:work\#DateStart_Min "1854-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9804; + base:work\#Profession base:Profession-Singer; + base:work\#comment "Hermannstadt/Sibiu Theater"; + base:work\#ref-IDLocation base:location\/RO-Herm-00; + base:work\#ref-IDPerson base:person\/JoaAma-00 . + +base:work\/9814 a base:work; + base:work\#DateEnd_Fuzzy "1898"; + base:work\#DateEnd_Max "1898-12-31"^^xsd:date; + base:work\#DateEnd_Min "1898-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1898"; + base:work\#DateStart_Max "1898-12-31"^^xsd:date; + base:work\#DateStart_Min "1898-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9814; + base:work\#Profession base:Profession-Other; + base:work\#Profession2 base:Profession-Prompter; + base:work\#Profession3 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/2995; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9819 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9819; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2925; + base:work\#ref-IDOrganisation2 base:organisation\/4788; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9824 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9824; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2930; + base:work\#ref-IDOrganisation2 base:organisation\/4788; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9829 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9829; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9834 a base:work; + base:work\#DateStart_Fuzzy "1903"; + base:work\#DateStart_Max "1903-12-31"^^xsd:date; + base:work\#DateStart_Min "1903-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9834; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/754; + base:work\#ref-IDOrganisation2 base:organisation\/3005; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9839 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9839; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2525; + base:work\#ref-IDOrganisation2 base:organisation\/4792; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9844 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9844; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9848 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1906"; + base:work\#DateStart_Max "1906-12-31"^^xsd:date; + base:work\#DateStart_Min "1906-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9848; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-Mad-00; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9849 a base:work; + base:work\#DateEnd_Fuzzy "1924"; + base:work\#DateEnd_Max "1924-12-31"^^xsd:date; + base:work\#DateEnd_Min "1924-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1909"; + base:work\#DateStart_Max "1909-12-31"^^xsd:date; + base:work\#DateStart_Min "1909-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9849; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2181; + base:work\#ref-IDOrganisation2 base:organisation\/3020; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9851 a base:work; + base:work\#DateEnd_Fuzzy "1912"; + base:work\#DateEnd_Max "1912-12-31"^^xsd:date; + base:work\#DateEnd_Min "1912-01-01"^^xsd:date; + base:work\#DateStart_Fuzzy "1912"; + base:work\#DateStart_Max "1912-12-31"^^xsd:date; + base:work\#DateStart_Min "1912-01-01"^^xsd:date; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9851; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-Cord-00; + base:work\#ref-IDOrganisation base:organisation\/2935; + base:work\#ref-IDOrganisation2 base:organisation\/956; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9854 a base:work; + base:work\#DateEnd_Fuzzy "1913-12-31"; + base:work\#DateStart_Fuzzy "1913-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9854; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2940; + base:work\#ref-IDOrganisation2 base:organisation\/3020; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9859 a base:work; + base:work\#DateEnd_Fuzzy "1915-12-31"; + base:work\#DateStart_Fuzzy "1915-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9859; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3025; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9863 a base:work; + base:work\#DateEnd_Fuzzy "1924-12-31"; + base:work\#DateStart_Fuzzy "1914-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9863; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2950; + base:work\#ref-IDOrganisation2 base:organisation\/3020; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9868 a base:work; + base:work\#DateEnd_Fuzzy "1918-12-31"; + base:work\#DateStart_Fuzzy "1918-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9868; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-Lapl-00; + base:work\#ref-IDOrganisation base:organisation\/2955; + base:work\#ref-IDOrganisation2 base:organisation\/4800; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9870 a base:work; + base:work\#DateEnd_Fuzzy "1920-12-31"; + base:work\#DateStart_Fuzzy "1919-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9870; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2950; + base:work\#ref-IDOrganisation2 base:organisation\/4804; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9871 a base:work; + base:work\#DateEnd_Fuzzy "1921-01-01"; + base:work\#DateStart_Fuzzy "1921-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9871; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/902; + base:work\#ref-IDOrganisation2 base:organisation\/3020; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9874 a base:work; + base:work\#DateEnd_Fuzzy "1923-01-01"; + base:work\#DateStart_Fuzzy "1923-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9874; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2960; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9879 a base:work; + base:work\#DateEnd_Fuzzy "1924-12-31"; + base:work\#DateStart_Fuzzy "1923-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9879; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2965; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9884 a base:work; + base:work\#DateEnd_Fuzzy "1925-12-31"; + base:work\#DateStart_Fuzzy "1925-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9884; + base:work\#Profession base:Profession-Founder; + base:work\#Profession2 base:Profession-Actor; + base:work\#Profession3 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2970; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9889 a base:work; + base:work\#DateEnd_Fuzzy "1926-12-31"; + base:work\#DateStart_Fuzzy "1926-01-01"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 9889; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2975; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9894 a base:work; + base:work\#DateEnd_Fuzzy "1927-12-31"; + base:work\#DateStart_Fuzzy "1927-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9894; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/756; + base:work\#ref-IDOrganisation2 base:organisation\/3045; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9899 a base:work; + base:work\#DateEnd_Fuzzy "1929-12-31"; + base:work\#DateStart_Fuzzy "1927-01-01"; + base:work\#EmploymentType base:EmploymentType-Guest; + base:work\#IDWork 9899; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ES-00; + base:work\#ref-IDOrganisation base:organisation\/2181; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/99 a base:work; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 99; + base:work\#Profession base:Profession-Singer; + base:work\#comment ""; + base:work\#ref-IDLocation base:location\/AT-Linz-00; + base:work\#ref-IDPerson base:person\/StrLud-00 . + +base:work\/9904 a base:work; + base:work\#DateEnd_Fuzzy "1929-12-31"; + base:work\#DateStart_Fuzzy "1929-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9904; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3050; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9909 a base:work; + base:work\#DateEnd_Fuzzy "1930-01-01"; + base:work\#DateStart_Fuzzy "1930-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9909; + base:work\#Profession base:Profession-Actor; + base:work\#Profession2 base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation base:organisation\/2980; + base:work\#ref-IDOrganisation2 base:organisation\/3055; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9914 a base:work; + base:work\#DateEnd_Fuzzy "1932-12-31"; + base:work\#DateStart_Fuzzy "1930-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9914; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3060; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9919 a base:work; + base:work\#DateEnd_Fuzzy "1932-12-31"; + base:work\#DateStart_Fuzzy "1932-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9919; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3065; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9924 a base:work; + base:work\#DateStart_Fuzzy "1932-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9924; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3070; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9929 a base:work; + base:work\#DateStart_Fuzzy "1936-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9929; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3075; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9934 a base:work; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9934; + base:work\#Profession base:Profession-Director; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/4808; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/9939 a base:work; + base:work\#DateEnd_Fuzzy "1939-12-31"; + base:work\#DateStart_Fuzzy "1937-01-01"; + base:work\#EmploymentType base:EmploymentType-Permanent; + base:work\#IDWork 9939; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/ARG-BA-00; + base:work\#ref-IDOrganisation2 base:organisation\/3085; + base:work\#ref-IDPerson base:person\/AreEnr-00 . + +base:work\/997 a base:work; + base:work\#DateStart_Fuzzy "1908"; + base:work\#DateStart_Max "1908-12-31"^^xsd:date; + base:work\#DateStart_Min "1908-01-01"^^xsd:date; + base:work\#Employment "Theater actor, silent film actor"; + base:work\#EmploymentType base:EmploymentType-Tour; + base:work\#IDWork 997; + base:work\#Profession base:Profession-Actor; + base:work\#ref-IDLocation base:location\/GER-BER-00; + base:work\#ref-IDOrganisation base:organisation\/400; + base:work\#ref-IDPerson base:person\/BoiCur-00 . + +base:City-\%C5\%81\%C3\%B3d\%C5\%BA a base:City; + rdfs:label "Łódź"@en . + +base:City-\%C5\%81om\%C5\%BCa a base:City; + rdfs:label "Łomża"@en . + +base:City-\%C5\%9Awidnica a base:City; + rdfs:label "Świdnica"@en . + +base:City-\%C5\%A0ari\%C5\%A1sk\%C3\%A9L\%C3\%BAky a base:City; + rdfs:label "Šarišské Lúky"@en . + +base:City-\%C5\%A0eduva a base:City; + rdfs:label "Šeduva"@en . + +base:City-\%C5\%BDidlochovice a base:City; + rdfs:label "Židlochovice"@en . + +base:City-ACoru\%C3\%B1a a base:City; + rdfs:label "A Coruña"@en . + +base:City-Aachen a base:City; + rdfs:label "Aachen"@en . + +base:City-Aberdeen a base:City; + rdfs:label "Aberdeen"@en . + +base:City-Adelaide a base:City; + rdfs:label "Adelaide"@en . + +base:City-Adjud a base:City; + rdfs:label "Adjud"@en . + +base:City-Adrian a base:City; + rdfs:label "Adrian"@en . + +base:City-Akron a base:City; + rdfs:label "Akron"@en . + +base:City-Alagoinhas a base:City; + rdfs:label "Alagoinhas"@en . + +base:City-Albertirsa a base:City; + rdfs:label "Albertirsa"@en . + +base:City-Albuquerque a base:City; + rdfs:label "Albuquerque"@en . + +base:City-Albury a base:City; + rdfs:label "Albury"@en . + +base:City-Alexandria a base:City; + rdfs:label "Alexandria"@en . + +base:City-Alexandrovsk a base:City; + rdfs:label "Alexandrovsk"@en . + +base:City-Algarve a base:City; + rdfs:label "Algarve"@en . + +base:City-Algiers a base:City; + rdfs:label "Algiers"@en . + +base:City-Allentown a base:City; + rdfs:label "Allentown"@en . + +base:City-Altenburg a base:City; + rdfs:label "Altenburg"@en . + +base:City-Altoona a base:City; + rdfs:label "Altoona"@en . + +base:City-Amityville a base:City; + rdfs:label "Amityville"@en . + +base:City-Amritsar a base:City; + rdfs:label "Amritsar"@en . + +base:City-Amsterdam a base:City; + rdfs:label "Amsterdam"@en . + +base:City-Anaconda a base:City; + rdfs:label "Anaconda"@en . + +base:City-Anaheim a base:City; + rdfs:label "Anaheim"@en . + +base:City-Ancona a base:City; + rdfs:label "Ancona"@en . + +base:City-Anderson a base:City; + rdfs:label "Anderson"@en . + +base:City-Andros a base:City; + rdfs:label "Andros"@en . + +base:City-Ankara a base:City; + rdfs:label "Ankara"@en . + +base:City-Anklam a base:City; + rdfs:label "Anklam"@en . + +base:City-AnnArbor a base:City; + rdfs:label "Ann Arbor"@en . + +base:City-Antwerp a base:City; + rdfs:label "Antwerp"@en . + +base:City-Arnoia a base:City; + rdfs:label "Arnoia"@en . + +base:City-Arras a base:City; + rdfs:label "Arras"@en . + +base:City-Ascona a base:City; + rdfs:label "Ascona"@en . + +base:City-Aspen a base:City; + rdfs:label "Aspen"@en . + +base:City-Assun\%C3\%A7\%C3\%A3o a base:City; + rdfs:label "Assunção"@en . + +base:City-Asunci\%C3\%B3n a base:City; + rdfs:label "Asunción"@en . + +base:City-Atchison a base:City; + rdfs:label "Atchison"@en . + +base:City-Athens a base:City; + rdfs:label "Athens"@en . + +base:City-Atlanta a base:City; + rdfs:label "Atlanta"@en . + +base:City-Auckland a base:City; + rdfs:label "Auckland"@en . + +base:City-Augsburg a base:City; + rdfs:label "Augsburg"@en . + +base:City-Augusta a base:City; + rdfs:label "Augusta"@en . + +base:City-Aurora a base:City; + rdfs:label "Aurora"@en . + +base:City-Austin a base:City; + rdfs:label "Austin"@en . + +base:City-B\%C3\%A2rlad a base:City; + rdfs:label "Bârlad"@en . + +base:City-B\%C3\%ADlina a base:City; + rdfs:label "Bílina"@en . + +base:City-Babruysk a base:City; + rdfs:label "Babruysk"@en . + +base:City-BadGoisern a base:City; + rdfs:label "Bad Goisern"@en . + +base:City-BadIschl a base:City; + rdfs:label "Bad Ischl"@en . + +base:City-Baden a base:City; + rdfs:label "Baden"@en . + +base:City-Baden-Baden a base:City; + rdfs:label "Baden-Baden"@en . + +base:City-BahiaBlanca a base:City; + rdfs:label "Bahia Blanca"@en . + +base:City-Baku a base:City; + rdfs:label "Baku"@en . + +base:City-Ballarat a base:City; + rdfs:label "Ballarat"@en . + +base:City-Ballenstedt a base:City; + rdfs:label "Ballenstedt"@en . + +base:City-Baltimore a base:City; + rdfs:label "Baltimore"@en . + +base:City-Bamberg a base:City; + rdfs:label "Bamberg"@en . + +base:City-Bangor a base:City; + rdfs:label "Bangor"@en . + +base:City-Barcelona a base:City; + rdfs:label "Barcelona"@en . + +base:City-Bareilly a base:City; + rdfs:label "Bareilly"@en . + +base:City-Barr a base:City; + rdfs:label "Barr"@en . + +base:City-Barranquilla a base:City; + rdfs:label "Barranquilla"@en . + +base:City-Basel a base:City; + rdfs:label "Basel"@en . + +base:City-Bath a base:City; + rdfs:label "Bath"@en . + +base:City-BattleCreek a base:City; + rdfs:label "Battle Creek"@en . + +base:City-Battleboro a base:City; + rdfs:label "Battleboro"@en . + +base:City-Bautzen a base:City; + rdfs:label "Bautzen"@en . + +base:City-BayCity a base:City; + rdfs:label "Bay City"@en . + +base:City-Bayonne a base:City; + rdfs:label "Bayonne "@en . + +base:City-Bayreuth a base:City; + rdfs:label "Bayreuth"@en . + +base:City-Beaumont a base:City; + rdfs:label "Beaumont"@en . + +base:City-Bel\%C3\%A9m a base:City; + rdfs:label "Belém"@en . + +base:City-Belfast a base:City; + rdfs:label "Belfast"@en . + +base:City-Belgrade a base:City; + rdfs:label "Belgrade"@en . + +base:City-BellVille a base:City; + rdfs:label "Bell Ville"@en . + +base:City-Bellingham a base:City; + rdfs:label "Bellingham"@en . + +base:City-BeloHorizonte a base:City; + rdfs:label "Belo Horizonte"@en . + +base:City-Bendigo a base:City; + rdfs:label "Bendigo"@en . + +base:City-Bennington a base:City; + rdfs:label "Bennington"@en . + +base:City-BentonHarbor a base:City; + rdfs:label "Benton Harbor"@en . + +base:City-Berdychiv a base:City; + rdfs:label "Berdychiv"@en . + +base:City-Berezhany a base:City; + rdfs:label "Berezhany"@en . + +base:City-Bergamo a base:City; + rdfs:label "Bergamo"@en . + +base:City-Bergen a base:City; + rdfs:label "Bergen"@en . + +base:City-Berisso a base:City; + rdfs:label "Berisso"@en . + +base:City-Berlin a base:City; + rdfs:label "Berlin"@en . + +base:City-Bern a base:City; + rdfs:label "Bern"@en . + +base:City-Bernburg a base:City; + rdfs:label "Bernburg"@en . + +base:City-Beverungen a base:City; + rdfs:label "Beverungen"@en . + +base:City-Bi\%C5\%82goraj a base:City; + rdfs:label "Biłgoraj"@en . + +base:City-Bia\%C5\%82ystok a base:City; + rdfs:label "Białystok"@en . + +base:City-Biebrich\%28Wiesbaden\%29 a base:City; + rdfs:label "Biebrich (Wiesbaden)"@en . + +base:City-Bielsko-Bia\%C5\%82a a base:City; + rdfs:label "Bielsko-Biała"@en . + +base:City-Bilbao a base:City; + rdfs:label "Bilbao"@en . + +base:City-Bilhorod-Dnistrovskyi a base:City; + rdfs:label "Bilhorod-Dnistrovskyi"@en . + +base:City-Billings a base:City; + rdfs:label "Billings"@en . + +base:City-Binghamton a base:City; + rdfs:label "Binghamton"@en . + +base:City-Blean a base:City; + rdfs:label "Blean"@en . + +base:City-Blevo a base:City; + rdfs:label "Blevo"@en . + +base:City-Bloemfontein a base:City; + rdfs:label "Bloemfontein"@en . + +base:City-Bluefield a base:City; + rdfs:label "Bluefield"@en . + +base:City-Bluff a base:City; + rdfs:label "Bluff"@en . + +base:City-Bochnia a base:City; + rdfs:label "Bochnia"@en . + +base:City-Bogot\%C3\%A1 a base:City; + rdfs:label "Bogotá"@en . + +base:City-Boise a base:City; + rdfs:label "Boise"@en . + +base:City-Bologna a base:City; + rdfs:label "Bologna"@en . + +base:City-Bonn a base:City; + rdfs:label "Bonn"@en . + +base:City-Bordeaux a base:City; + rdfs:label "Bordeaux"@en . + +base:City-Boston a base:City; + rdfs:label "Boston"@en . + +base:City-Boto\%C8\%99ani a base:City; + rdfs:label "Botoșani"@en . + +base:City-Boulogne-Billancourt a base:City; + rdfs:label "Boulogne-Billancourt"@en . + +base:City-Boulogne-sur-Mer a base:City; + rdfs:label "Boulogne-sur-Mer"@en . + +base:City-Bowery a base:City; + rdfs:label "Bowery"@en . + +base:City-Bozeman a base:City; + rdfs:label "Bozeman"@en . + +base:City-Br\%C4\%83ila a base:City; + rdfs:label "Brăila"@en . + +base:City-Bradford a base:City; + rdfs:label "Bradford"@en . + +base:City-Braga a base:City; + rdfs:label "Braga"@en . + +base:City-Brantford a base:City; + rdfs:label "Brantford"@en . + +base:City-Bratislava a base:City; + rdfs:label "Bratislava"@en . + +base:City-Brattleboro a base:City; + rdfs:label "Brattleboro"@en . + +base:City-Braunschweig a base:City; + rdfs:label "Braunschweig"@en . + +base:City-Bremen a base:City; + rdfs:label "Bremen"@en . + +base:City-Breslau a base:City; + rdfs:label "Breslau "@en . + +base:City-Brest a base:City; + rdfs:label "Brest"@en . + +base:City-Bridgeport a base:City; + rdfs:label "Bridgeport"@en . + +base:City-Brighton a base:City; + rdfs:label "Brighton"@en . + +base:City-Brisbane a base:City; + rdfs:label "Brisbane"@en . + +base:City-Bristol a base:City; + rdfs:label "Bristol"@en . + +base:City-Brno a base:City; + rdfs:label "Brno"@en . + +base:City-Bro\%C5\%BEa a base:City; + rdfs:label "Broža"@en . + +base:City-Brockton a base:City; + rdfs:label "Brockton"@en . + +base:City-Brody a base:City; + rdfs:label "Brody"@en . + +base:City-Brooklyn a base:City; + rdfs:label "Brooklyn"@en . + +base:City-Brownsville a base:City; + rdfs:label "Brownsville"@en . + +base:City-Brunswick a base:City; + rdfs:label "Brunswick"@en . + +base:City-Brussels a base:City; + rdfs:label "Brussels"@en . + +base:City-Bucharest a base:City; + rdfs:label "Bucharest"@en . + +base:City-Buda\%28Budapest\%29 a base:City; + rdfs:label "Buda (Budapest)"@en . + +base:City-Budapest a base:City; + rdfs:label "Budapest"@en . + +base:City-BuenosAires a base:City; + rdfs:label "Buenos Aires"@en . + +base:City-Buffalo a base:City; + rdfs:label "Buffalo"@en . + +base:City-Burgos a base:City; + rdfs:label "Burgos"@en . + +base:City-Butte a base:City; + rdfs:label "Butte"@en . + +base:City-C\%C3\%A1diz a base:City; + rdfs:label "Cádiz"@en . + +base:City-C\%C3\%B3rdoba a base:City; + rdfs:label "Córdoba"@en . + +base:City-C\%C3\%B4ted\%E2\%80\%99Azur a base:City; + rdfs:label "Côte d’Azur"@en . + +base:City-Caen a base:City; + rdfs:label "Caen"@en . + +base:City-Cagliari a base:City; + rdfs:label "Cagliari"@en . + +base:City-Cagnes-sur-Mer a base:City; + rdfs:label "Cagnes-sur-Mer"@en . + +base:City-Calcutta a base:City; + rdfs:label "Calcutta"@en . + +base:City-Caldbeck a base:City; + rdfs:label "Caldbeck"@en . + +base:City-Calumet a base:City; + rdfs:label "Calumet"@en . + +base:City-Cambridge a base:City; + rdfs:label "Cambridge"@en . + +base:City-Camden a base:City; + rdfs:label "Camden"@en . + +base:City-Campinas a base:City; + rdfs:label "Campinas "@en . + +base:City-CamposdosGoytacazes a base:City; + rdfs:label "Campos dos Goytacazes "@en . + +base:City-CangasdeOn\%C3\%ADs a base:City; + rdfs:label "Cangas de Onís"@en . + +base:City-Cannes a base:City; + rdfs:label "Cannes"@en . + +base:City-Canton a base:City; + rdfs:label "Canton"@en . + +base:City-CapeTown a base:City; + rdfs:label "Cape Town"@en . + +base:City-CarateUrio a base:City; + rdfs:label "Carate Urio"@en . + +base:City-Carhu\%C3\%A9 a base:City; + rdfs:label "Carhué"@en . + +base:City-CarsonCity a base:City; + rdfs:label "Carson City"@en . + +base:City-CasaleMonferrato a base:City; + rdfs:label "Casale Monferrato"@en . + +base:City-Cassanod\%E2\%80\%99Adda a base:City; + rdfs:label "Cassano d’Adda"@en . + +base:City-Castilla a base:City; + rdfs:label "Castilla"@en . + +base:City-Catalonia a base:City; + rdfs:label "Catalonia"@en . + +base:City-CedarRapids a base:City; + rdfs:label "Cedar Rapids"@en . + +base:City-Cedofeita\%28Porto\%29 a base:City; + rdfs:label "Cedofeita (Porto)"@en . + +base:City-Cervera a base:City; + rdfs:label "Cervera"@en . + +base:City-Cesk\%C3\%A9Budejovice a base:City; + rdfs:label "Ceské Budejovice"@en . + +base:City-Chacabuco a base:City; + rdfs:label "Chacabuco"@en . + +base:City-Charlottesville a base:City; + rdfs:label "Charlottesville"@en . + +base:City-ChartersTowers a base:City; + rdfs:label "Charters Towers"@en . + +base:City-Chattanooga a base:City; + rdfs:label "Chattanooga"@en . + +base:City-Chelsea a base:City; + rdfs:label "Chelsea"@en . + +base:City-Cheltenham a base:City; + rdfs:label "Cheltenham"@en . + +base:City-Chennai a base:City; + rdfs:label "Chennai"@en . + +base:City-Cherbourg\%28Cherbourg-en-Cotentin\%29 a base:City; + rdfs:label "Cherbourg (Cherbourg-en-Cotentin)"@en . + +base:City-Cherkasy a base:City; + rdfs:label "Cherkasy"@en . + +base:City-Chernihiv a base:City; + rdfs:label "Chernihiv"@en . + +base:City-Chernivtsi a base:City; + rdfs:label "Chernivtsi"@en . + +base:City-Chester a base:City; + rdfs:label "Chester"@en . + +base:City-Cheyenne a base:City; + rdfs:label "Cheyenne"@en . + +base:City-Chi\%C8\%99in\%C4\%83u a base:City; + rdfs:label "Chișinău"@en . + +base:City-Chicago a base:City; + rdfs:label "Chicago"@en . + +base:City-Chieti a base:City; + rdfs:label "Chieti"@en . + +base:City-Christchurch a base:City; + rdfs:label "Christchurch"@en . + +base:City-Ciboure a base:City; + rdfs:label "Ciboure"@en . + +base:City-Cincinnati a base:City; + rdfs:label "Cincinnati"@en . + +base:City-Citt\%C3\%A0diCastello a base:City; + rdfs:label "Città di Castello"@en . + +base:City-Cleveland a base:City; + rdfs:label "Cleveland"@en . + +base:City-Coburg a base:City; + rdfs:label "Coburg"@en . + +base:City-Cognac a base:City; + rdfs:label "Cognac"@en . + +base:City-Coimbra a base:City; + rdfs:label "Coimbra"@en . + +base:City-Col\%C3\%B3n a base:City; + rdfs:label "Colón"@en . + +base:City-Colfax a base:City; + rdfs:label "Colfax"@en . + +base:City-Cologne a base:City; + rdfs:label "Cologne"@en . + +base:City-Colombo a base:City; + rdfs:label "Colombo"@en . + +base:City-ColoradoSprings a base:City; + rdfs:label "Colorado Springs"@en . + +base:City-Columbia a base:City; + rdfs:label "Columbia"@en . + +base:City-Columbus a base:City; + rdfs:label "Columbus"@en . + +base:City-Como a base:City; + rdfs:label "Como"@en . + +base:City-Concord a base:City; + rdfs:label "Concord"@en . + +base:City-Constantinople a base:City; + rdfs:label "Constantinople"@en . + +base:City-Cooktown a base:City; + rdfs:label "Cooktown"@en . + +base:City-Copenhagen a base:City; + rdfs:label "Copenhagen"@en . + +base:City-Cork a base:City; + rdfs:label "Cork"@en . + +base:City-Corning a base:City; + rdfs:label "Corning"@en . + +base:City-Corsier-sur-Vevey a base:City; + rdfs:label "Corsier-sur-Vevey"@en . + +base:City-CouncilBluffs a base:City; + rdfs:label "Council Bluffs"@en . + +base:City-Cracow a base:City; + rdfs:label "Cracow"@en . + +base:City-Craig-y-Nos a base:City; + rdfs:label "Craig-y-Nos"@en . + +base:City-Crawfordsville a base:City; + rdfs:label "Crawfordsville"@en . + +base:City-CrippleCreek a base:City; + rdfs:label "Cripple Creek"@en . + +base:City-Crookston a base:City; + rdfs:label "Crookston"@en . + +base:City-CrownKing a base:City; + rdfs:label "Crown King"@en . + +base:City-Croydon a base:City; + rdfs:label "Croydon"@en . + +base:City-Curitiba a base:City; + rdfs:label "Curitiba"@en . + +base:City-Czernowitz a base:City; + rdfs:label "Czernowitz"@en . + +base:City-Dachau a base:City; + rdfs:label "Dachau"@en . + +base:City-Dallas a base:City; + rdfs:label "Dallas"@en . + +base:City-Danapur a base:City; + rdfs:label "Danapur"@en . + +base:City-Danzig a base:City; + rdfs:label "Danzig"@en . + +base:City-Darmstadt a base:City; + rdfs:label "Darmstadt"@en . + +base:City-Daugavpils a base:City; + rdfs:label "Daugavpils"@en . + +base:City-Davenport a base:City; + rdfs:label "Davenport"@en . + +base:City-Dawson a base:City; + rdfs:label "Dawson"@en . + +base:City-Dayton a base:City; + rdfs:label "Dayton"@en . + +base:City-Delhi a base:City; + rdfs:label "Delhi"@en . + +base:City-Denver a base:City; + rdfs:label "Denver"@en . + +base:City-Derby a base:City; + rdfs:label "Derby"@en . + +base:City-DesMoines a base:City; + rdfs:label "Des Moines"@en . + +base:City-Dessau a base:City; + rdfs:label "Dessau"@en . + +base:City-Detroit a base:City; + rdfs:label "Detroit"@en . + +base:City-Dnipro a base:City; + rdfs:label "Dnipro"@en . + +base:City-Dordrecht a base:City; + rdfs:label "Dordrecht"@en . + +base:City-Dover a base:City; + rdfs:label "Dover"@en . + +base:City-Dowagiac a base:City; + rdfs:label "Dowagiac"@en . + +base:City-Drancy_internment_camp a base:City; + rdfs:label "Drancy_internment_camp"@en . + +base:City-Dresden a base:City; + rdfs:label "Dresden"@en . + +base:City-Dublin a base:City; + rdfs:label "Dublin"@en . + +base:City-Dubuque a base:City; + rdfs:label "Dubuque"@en . + +base:City-Duesseldorf a base:City; + rdfs:label "Duesseldorf"@en . + +base:City-Duluth a base:City; + rdfs:label "Duluth"@en . + +base:City-Dundee a base:City; + rdfs:label "Dundee"@en . + +base:City-Dunedin a base:City; + rdfs:label "Dunedin"@en . + +base:City-Durban a base:City; + rdfs:label "Durban"@en . + +base:City-DutchFlat a base:City; + rdfs:label "Dutch Flat"@en . + +base:City-EastLiverpool a base:City; + rdfs:label "East Liverpool"@en . + +base:City-EastSaginaw a base:City; + rdfs:label "East Saginaw"@en . + +base:City-Easton a base:City; + rdfs:label "Easton"@en . + +base:City-EauClaire a base:City; + rdfs:label "Eau Claire"@en . + +base:City-Ebersbach\%28D\%C3\%B6beln\%29 a base:City; + rdfs:label "Ebersbach (Döbeln)"@en . + +base:City-Ebersdorf a base:City; + rdfs:label "Ebersdorf"@en . + +base:City-Edinburgh a base:City; + rdfs:label "Edinburgh"@en . + +base:City-Egham a base:City; + rdfs:label "Egham"@en . + +base:City-Elberfeld\%28Wuppertal\%29 a base:City; + rdfs:label "Elberfeld (Wuppertal)"@en . + +base:City-Elgin a base:City; + rdfs:label "Elgin"@en . + +base:City-Ellicottville a base:City; + rdfs:label "Ellicottville"@en . + +base:City-Elmira a base:City; + rdfs:label "Elmira"@en . + +base:City-Erie a base:City; + rdfs:label "Erie"@en . + +base:City-Erxleben a base:City; + rdfs:label "Erxleben"@en . + +base:City-Evansville a base:City; + rdfs:label "Evansville"@en . + +base:City-Everett a base:City; + rdfs:label "Everett"@en . + +base:City-Exeter a base:City; + rdfs:label "Exeter"@en . + +base:City-F\%C4\%83lticeni a base:City; + rdfs:label "Fălticeni"@en . + +base:City-FallRiver a base:City; + rdfs:label "Fall River"@en . + +base:City-Feodosiia a base:City; + rdfs:label "Feodosiia"@en . + +base:City-Fermo a base:City; + rdfs:label "Fermo"@en . + +base:City-Ferrara a base:City; + rdfs:label "Ferrara"@en . + +base:City-Flint a base:City; + rdfs:label "Flint"@en . + +base:City-Florence a base:City; + rdfs:label "Florence"@en . + +base:City-FondduLac a base:City; + rdfs:label "Fond du Lac"@en . + +base:City-FortSmith a base:City; + rdfs:label "Fort Smith"@en . + +base:City-FortWayne a base:City; + rdfs:label "Fort Wayne"@en . + +base:City-FortWorth a base:City; + rdfs:label "Fort Worth"@en . + +base:City-Fortaleza a base:City; + rdfs:label "Fortaleza"@en . + +base:City-FozdoDouro\%28Porto\%29 a base:City; + rdfs:label "Foz do Douro (Porto)"@en . + +base:City-Frankfort a base:City; + rdfs:label "Frankfort"@en . + +base:City-Frankfurt a base:City; + rdfs:label "Frankfurt"@en . + +base:City-FrankfurtanderOder a base:City; + rdfs:label "Frankfurt an der Oder"@en . + +base:City-Franti\%C5\%A1kovyL\%C3\%A1zne a base:City; + rdfs:label "Františkovy Lázne"@en . + +base:City-FreiburgimBreisgau a base:City; + rdfs:label "Freiburg im Breisgau"@en . + +base:City-Fresno a base:City; + rdfs:label "Fresno"@en . + +base:City-Freudenstadt a base:City; + rdfs:label "Freudenstadt"@en . + +base:City-Friesland a base:City; + rdfs:label "Friesland"@en . + +base:City-G\%C3\%B6rlitz a base:City; + rdfs:label "Görlitz"@en . + +base:City-G\%C3\%B6ttingen a base:City; + rdfs:label "Göttingen"@en . + +base:City-G\%C5\%82og\%C3\%B3w a base:City; + rdfs:label "Głogów"@en . + +base:City-G\%C5\%82ubczyce a base:City; + rdfs:label "Głubczyce"@en . + +base:City-Gala\%C8\%9Bi a base:City; + rdfs:label "Galați"@en . + +base:City-Galesburg a base:City; + rdfs:label "Galesburg"@en . + +base:City-Galveston a base:City; + rdfs:label "Galveston"@en . + +base:City-Garnek a base:City; + rdfs:label "Garnek"@en . + +base:City-Gdansk a base:City; + rdfs:label "Gdansk"@en . + +base:City-Gederah a base:City; + rdfs:label "Gederah"@en . + +base:City-Geelong a base:City; + rdfs:label "Geelong"@en . + +base:City-Genoa a base:City; + rdfs:label "Genoa"@en . + +base:City-Ghent a base:City; + rdfs:label "Ghent"@en . + +base:City-Gie\%C3\%9Fen a base:City; + rdfs:label "Gießen"@en . + +base:City-Gilching a base:City; + rdfs:label "Gilching"@en . + +base:City-Gisbourn a base:City; + rdfs:label "Gisbourn"@en . + +base:City-Giurgiu a base:City; + rdfs:label "Giurgiu"@en . + +base:City-Glasgow a base:City; + rdfs:label "Glasgow"@en . + +base:City-Glendale a base:City; + rdfs:label "Glendale"@en . + +base:City-Gloucester a base:City; + rdfs:label "Gloucester"@en . + +base:City-Gloucestershire a base:City; + rdfs:label "Gloucestershire"@en . + +base:City-Gloversville a base:City; + rdfs:label "Gloversville"@en . + +base:City-GmundamTegernsee a base:City; + rdfs:label "Gmund am Tegernsee"@en . + +base:City-Gmunden a base:City; + rdfs:label "Gmunden"@en . + +base:City-Gorizia a base:City; + rdfs:label "Gorizia"@en . + +base:City-Goslar a base:City; + rdfs:label "Goslar"@en . + +base:City-Gotha a base:City; + rdfs:label "Gotha"@en . + +base:City-Goulburn a base:City; + rdfs:label "Goulburn"@en . + +base:City-GrandForks a base:City; + rdfs:label "Grand Forks"@en . + +base:City-GrandJunction a base:City; + rdfs:label "Grand Junction"@en . + +base:City-GrandRapids a base:City; + rdfs:label "Grand Rapids"@en . + +base:City-Grange a base:City; + rdfs:label "Grange"@en . + +base:City-Grantham a base:City; + rdfs:label "Grantham"@en . + +base:City-GrassValley a base:City; + rdfs:label "Grass Valley"@en . + +base:City-Graz a base:City; + rdfs:label "Graz"@en . + +base:City-GreatFalls a base:City; + rdfs:label "Great Falls"@en . + +base:City-Greeley a base:City; + rdfs:label "Greeley"@en . + +base:City-GreenBay a base:City; + rdfs:label "Green Bay"@en . + +base:City-Greensburg a base:City; + rdfs:label "Greensburg"@en . + +base:City-Greenwich a base:City; + rdfs:label "Greenwich"@en . + +base:City-Grimma a base:City; + rdfs:label "Grimma"@en . + +base:City-Grodno a base:City; + rdfs:label "Grodno"@en . + +base:City-Grudzi\%C4\%85dz a base:City; + rdfs:label "Grudziądz"@en . + +base:City-Guangzhou a base:City; + rdfs:label "Guangzhou"@en . + +base:City-Guaymall\%C3\%A9nDepartment a base:City; + rdfs:label "Guaymallén Department"@en . + +base:City-Gy\%C5\%91r a base:City; + rdfs:label "Győr"@en . + +base:City-Gympie a base:City; + rdfs:label "Gympie"@en . + +base:City-H\%C3\%AEnce\%C8\%99ti a base:City; + rdfs:label "Hîncești"@en . + +base:City-H\%C4\%81wera a base:City; + rdfs:label "Hāwera"@en . + +base:City-Haarelm a base:City; + rdfs:label "Haarelm"@en . + +base:City-Haiphong a base:City; + rdfs:label "Haiphong"@en . + +base:City-Halifax a base:City; + rdfs:label "Halifax"@en . + +base:City-Halle a base:City; + rdfs:label "Halle"@en . + +base:City-Hamburg a base:City; + rdfs:label "Hamburg"@en . + +base:City-Hamilton a base:City; + rdfs:label "Hamilton"@en . + +base:City-Hanau a base:City; + rdfs:label "Hanau"@en . + +base:City-Hancock a base:City; + rdfs:label "Hancock"@en . + +base:City-Hanford a base:City; + rdfs:label "Hanford"@en . + +base:City-Hankou\%28Wuhan\%29 a base:City; + rdfs:label "Hankou (Wuhan)"@en . + +base:City-Hanniball a base:City; + rdfs:label "Hanniball"@en . + +base:City-Hanoi a base:City; + rdfs:label "Hanoi"@en . + +base:City-Hanover a base:City; + rdfs:label "Hanover"@en . + +base:City-Harbin a base:City; + rdfs:label "Harbin"@en . + +base:City-Harlem a base:City; + rdfs:label "Harlem"@en . + +base:City-Harrisburg a base:City; + rdfs:label "Harrisburg"@en . + +base:City-Harrison a base:City; + rdfs:label "Harrison"@en . + +base:City-Hartford a base:City; + rdfs:label "Hartford"@en . + +base:City-Hastings a base:City; + rdfs:label "Hastings"@en . + +base:City-Havana a base:City; + rdfs:label "Havana"@en . + +base:City-Haverhill a base:City; + rdfs:label "Haverhill"@en . + +base:City-Heidelberg a base:City; + rdfs:label "Heidelberg"@en . + +base:City-Heilbronn a base:City; + rdfs:label "Heilbronn"@en . + +base:City-Helena a base:City; + rdfs:label "Helena"@en . + +base:City-HellGate\%28Missoula\%29 a base:City; + rdfs:label "Hell Gate (Missoula)"@en . + +base:City-HerrschingamAmmersee a base:City; + rdfs:label "Herrsching am Ammersee"@en . + +base:City-Hertford a base:City; + rdfs:label "Hertford"@en . + +base:City-Highland a base:City; + rdfs:label "Highland"@en . + +base:City-Hilo a base:City; + rdfs:label "Hilo"@en . + +base:City-Hlohovec a base:City; + rdfs:label "Hlohovec"@en . + +base:City-HoChiMinhCity a base:City; + rdfs:label "Ho Chi Minh City"@en . + +base:City-Hobart a base:City; + rdfs:label "Hobart"@en . + +base:City-Hollywood\%28LosAngeles\%29 a base:City; + rdfs:label "Hollywood (Los Angeles)"@en . + +base:City-Holyoke a base:City; + rdfs:label "Holyoke"@en . + +base:City-HongKong a base:City; + rdfs:label "Hong Kong"@en . + +base:City-Honolulu a base:City; + rdfs:label "Honolulu"@en . + +base:City-Hoquiam a base:City; + rdfs:label "Hoquiam"@en . + +base:City-Hornell a base:City; + rdfs:label "Hornell"@en . + +base:City-Hornostaipil a base:City; + rdfs:label "Hornostaipil"@en . + +base:City-Houston a base:City; + rdfs:label "Houston"@en . + +base:City-Huddersfield a base:City; + rdfs:label "Huddersfield"@en . + +base:City-Huntington a base:City; + rdfs:label "Huntington"@en . + +base:City-Huyton a base:City; + rdfs:label "Huyton"@en . + +base:City-Ia\%C8\%99i a base:City; + rdfs:label "Iași"@en . + +base:City-Indianapolis a base:City; + rdfs:label "Indianapolis"@en . + +base:City-Invercargill a base:City; + rdfs:label "Invercargill"@en . + +base:City-Inverurie a base:City; + rdfs:label "Inverurie"@en . + +base:City-IowaCity a base:City; + rdfs:label "Iowa City"@en . + +base:City-Ishpeming a base:City; + rdfs:label "Ishpeming"@en . + +base:City-Istanbul a base:City; + rdfs:label "Istanbul"@en . + +base:City-Ithaca a base:City; + rdfs:label "Ithaca"@en . + +base:City-Ituzaing\%C3\%B3 a base:City; + rdfs:label "Ituzaingó"@en . + +base:City-Iwano-Frankiwsk a base:City; + rdfs:label "Iwano-Frankiwsk"@en . + +base:City-Jacksonville a base:City; + rdfs:label "Jacksonville"@en . + +base:City-Jakarta a base:City; + rdfs:label "Jakarta"@en . + +base:City-Jamaica a base:City; + rdfs:label "Jamaica"@en . + +base:City-Janesville a base:City; + rdfs:label "Janesville"@en . + +base:City-Java a base:City; + rdfs:label "Java"@en . + +base:City-Jelgava a base:City; + rdfs:label "Jelgava"@en . + +base:City-JerseyCity a base:City; + rdfs:label "Jersey City"@en . + +base:City-Johannesburg a base:City; + rdfs:label "Johannesburg"@en . + +base:City-Joliet a base:City; + rdfs:label "Joliet"@en . + +base:City-Joplin a base:City; + rdfs:label "Joplin"@en . + +base:City-JuizdeFora a base:City; + rdfs:label "Juiz de Fora"@en . + +base:City-K\%C3\%B6nigsberg a base:City; + rdfs:label "Königsberg"@en . + +base:City-K\%C3\%B6nigswinter a base:City; + rdfs:label "Königswinter"@en . + +base:City-Kalamazoo a base:City; + rdfs:label "Kalamazoo"@en . + +base:City-Kali\%C5\%A1t\%C4\%9B a base:City; + rdfs:label "Kaliště"@en . + +base:City-Kaliningrad a base:City; + rdfs:label "Kaliningrad"@en . + +base:City-Kalmar a base:City; + rdfs:label "Kalmar"@en . + +base:City-Kamianets-Podilskyi a base:City; + rdfs:label "Kamianets-Podilskyi"@en . + +base:City-Kandy a base:City; + rdfs:label "Kandy"@en . + +base:City-Kane a base:City; + rdfs:label "Kane"@en . + +base:City-KansasCity a base:City; + rdfs:label "Kansas City"@en . + +base:City-KarlovyVary a base:City; + rdfs:label "Karlovy Vary"@en . + +base:City-Karlsbad a base:City; + rdfs:label "Karlsbad"@en . + +base:City-Karlsruhe a base:City; + rdfs:label "Karlsruhe"@en . + +base:City-Karnal a base:City; + rdfs:label "Karnal"@en . + +base:City-Kassel a base:City; + rdfs:label "Kassel"@en . + +base:City-Kauai a base:City; + rdfs:label "Kauai"@en . + +base:City-Kaunas a base:City; + rdfs:label "Kaunas"@en . + +base:City-Kearney a base:City; + rdfs:label "Kearney"@en . + +base:City-Keokuk a base:City; + rdfs:label "Keokuk"@en . + +base:City-Kharkiv a base:City; + rdfs:label "Kharkiv"@en . + +base:City-Kherson a base:City; + rdfs:label "Kherson"@en . + +base:City-Kimberley a base:City; + rdfs:label "Kimberley"@en . + +base:City-Kingston a base:City; + rdfs:label "Kingston"@en . + +base:City-KingstonuponHull a base:City; + rdfs:label "Kingston upon Hull"@en . + +base:City-Klagenfurt a base:City; + rdfs:label "Klagenfurt"@en . + +base:City-Knoxville a base:City; + rdfs:label "Knoxville"@en . + +base:City-Kobe a base:City; + rdfs:label "Kobe"@en . + +base:City-Kobeliaky a base:City; + rdfs:label "Kobeliaky"@en . + +base:City-Koblenz a base:City; + rdfs:label "Koblenz"@en . + +base:City-Kolomyia a base:City; + rdfs:label "Kolomyia"@en . + +base:City-Konotop a base:City; + rdfs:label "Konotop"@en . + +base:City-Krak\%C3\%B3w a base:City; + rdfs:label "Kraków"@en . + +base:City-Kremenchuk a base:City; + rdfs:label "Kremenchuk"@en . + +base:City-Kremenets a base:City; + rdfs:label "Kremenets"@en . + +base:City-KressbronnamBodensee a base:City; + rdfs:label "Kressbronn am Bodensee"@en . + +base:City-Kropyvnytskyi a base:City; + rdfs:label "Kropyvnytskyi"@en . + +base:City-Kutno a base:City; + rdfs:label "Kutno"@en . + +base:City-Kwidzyn a base:City; + rdfs:label "Kwidzyn"@en . + +base:City-Kyiv a base:City; + rdfs:label "Kyiv"@en . + +base:City-L\%C3\%BCbeck a base:City; + rdfs:label "Lübeck"@en . + +base:City-LaPlata a base:City; + rdfs:label "La Plata"@en . + +base:City-LaRochelle a base:City; + rdfs:label "La Rochelle"@en . + +base:City-Lancashire a base:City; + rdfs:label "Lancashire"@en . + +base:City-Lancaster a base:City; + rdfs:label "Lancaster"@en . + +base:City-Landsides a base:City; + rdfs:label "Landsides"@en . + +base:City-Langenargen a base:City; + rdfs:label "Langenargen"@en . + +base:City-Lansing a base:City; + rdfs:label "Lansing"@en . + +base:City-Latrobe a base:City; + rdfs:label "Latrobe"@en . + +base:City-Launceston a base:City; + rdfs:label "Launceston"@en . + +base:City-Le\%C3\%B3n a base:City; + rdfs:label "León"@en . + +base:City-LePouliguen a base:City; + rdfs:label "Le Pouliguen"@en . + +base:City-LeV\%C3\%A9sinet\%2CParis a base:City; + rdfs:label "Le Vésinet, Paris"@en . + +base:City-Leadville a base:City; + rdfs:label "Leadville"@en . + +base:City-LeamingtonSpa a base:City; + rdfs:label "Leamington Spa"@en . + +base:City-Leicester a base:City; + rdfs:label "Leicester"@en . + +base:City-Leiden a base:City; + rdfs:label "Leiden"@en . + +base:City-Leipzig a base:City; + rdfs:label "Leipzig"@en . + +base:City-Lembach a base:City; + rdfs:label "Lembach"@en . + +base:City-Lenox a base:City; + rdfs:label "Lenox"@en . + +base:City-Lexington a base:City; + rdfs:label "Lexington"@en . + +base:City-Leytonstone a base:City; + rdfs:label "Leytonstone"@en . + +base:City-Li\%C3\%A9ge a base:City; + rdfs:label "Liége"@en . + +base:City-Libe\%C5\%88\%28Prague\%29 a base:City; + rdfs:label "Libeň (Prague)"@en . + +base:City-Liep\%C4\%81ja a base:City; + rdfs:label "Liepāja"@en . + +base:City-Lille a base:City; + rdfs:label "Lille"@en . + +base:City-Limerick a base:City; + rdfs:label "Limerick"@en . + +base:City-Limoges a base:City; + rdfs:label "Limoges"@en . + +base:City-Lindau a base:City; + rdfs:label "Lindau"@en . + +base:City-Linz a base:City; + rdfs:label "Linz"@en . + +base:City-Lipno a base:City; + rdfs:label "Lipno"@en . + +base:City-Liptovsk\%C3\%BDMikul\%C3\%A1\%C5\%A1 a base:City; + rdfs:label "Liptovský Mikuláš"@en . + +base:City-Lisbon a base:City; + rdfs:label "Lisbon"@en . + +base:City-Litchfield a base:City; + rdfs:label "Litchfield"@en . + +base:City-LittleFalls a base:City; + rdfs:label "Little Falls"@en . + +base:City-LittleRock a base:City; + rdfs:label "Little Rock"@en . + +base:City-Liuba\%C5\%84 a base:City; + rdfs:label "Liubań"@en . + +base:City-Liverpool a base:City; + rdfs:label "Liverpool"@en . + +base:City-Ljubljana a base:City; + rdfs:label "Ljubljana"@en . + +base:City-Llavallol a base:City; + rdfs:label "Llavallol"@en . + +base:City-Logan a base:City; + rdfs:label "Logan"@en . + +base:City-Londonderry a base:City; + rdfs:label "Londonderry"@en . + +base:City-LosAngeles a base:City; + rdfs:label "Los Angeles"@en . + +base:City-Louisville a base:City; + rdfs:label "Louisville"@en . + +base:City-Lowell a base:City; + rdfs:label "Lowell"@en . + +base:City-Lublin a base:City; + rdfs:label "Lublin"@en . + +base:City-Lucca a base:City; + rdfs:label "Lucca"@en . + +base:City-Lucerne a base:City; + rdfs:label "Lucerne"@en . + +base:City-Lunna a base:City; + rdfs:label "Lunna"@en . + +base:City-Lviv a base:City; + rdfs:label "Lviv"@en . + +base:City-Lynchburg a base:City; + rdfs:label "Lynchburg"@en . + +base:City-Lyon a base:City; + rdfs:label "Lyon"@en . + +base:City-Lyttelton a base:City; + rdfs:label "Lyttelton"@en . + +base:City-M\%C3\%A1laga a base:City; + rdfs:label "Málaga"@en . + +base:City-M\%C3\%BCnster a base:City; + rdfs:label "Münster"@en . + +base:City-Mackay a base:City; + rdfs:label "Mackay"@en . + +base:City-Macon a base:City; + rdfs:label "Macon"@en . + +base:City-Madison a base:City; + rdfs:label "Madison"@en . + +base:City-Madrid a base:City; + rdfs:label "Madrid"@en . + +base:City-Magdeburg a base:City; + rdfs:label "Magdeburg"@en . + +base:City-Mainz a base:City; + rdfs:label "Mainz"@en . + +base:City-Malvern a base:City; + rdfs:label "Malvern"@en . + +base:City-Manaus a base:City; + rdfs:label "Manaus"@en . + +base:City-Manhattan a base:City; + rdfs:label "Manhattan"@en . + +base:City-ManhattanBeach a base:City; + rdfs:label "Manhattan Beach"@en . + +base:City-Mannheim a base:City; + rdfs:label "Mannheim"@en . + +base:City-Mansfield a base:City; + rdfs:label "Mansfield"@en . + +base:City-Mantua a base:City; + rdfs:label "Mantua"@en . + +base:City-MardelPlata a base:City; + rdfs:label "Mar del Plata"@en . + +base:City-Mariafeld\%28Meilen\%29 a base:City; + rdfs:label "Mariafeld (Meilen)"@en . + +base:City-Maribor a base:City; + rdfs:label "Maribor"@en . + +base:City-Marinette a base:City; + rdfs:label "Marinette"@en . + +base:City-Marion a base:City; + rdfs:label "Marion"@en . + +base:City-Marquette a base:City; + rdfs:label "Marquette"@en . + +base:City-Marseille a base:City; + rdfs:label "Marseille"@en . + +base:City-Mart\%C3\%ADnez a base:City; + rdfs:label "Martínez"@en . + +base:City-Maryborough a base:City; + rdfs:label "Maryborough"@en . + +base:City-Marysville a base:City; + rdfs:label "Marysville"@en . + +base:City-Maui a base:City; + rdfs:label "Maui"@en . + +base:City-Mawlamyine a base:City; + rdfs:label "Mawlamyine"@en . + +base:City-Mazyr a base:City; + rdfs:label "Mazyr"@en . + +base:City-Meadville a base:City; + rdfs:label "Meadville"@en . + +base:City-Medford a base:City; + rdfs:label "Medford"@en . + +base:City-Meiningen a base:City; + rdfs:label "Meiningen"@en . + +base:City-Melbourne a base:City; + rdfs:label "Melbourne"@en . + +base:City-Melrose a base:City; + rdfs:label "Melrose"@en . + +base:City-Memphis a base:City; + rdfs:label "Memphis"@en . + +base:City-Mendoza a base:City; + rdfs:label "Mendoza"@en . + +base:City-Merano a base:City; + rdfs:label "Merano"@en . + +base:City-Meriden a base:City; + rdfs:label "Meriden"@en . + +base:City-Metz a base:City; + rdfs:label "Metz"@en . + +base:City-MexicoCity a base:City; + rdfs:label "Mexico City"@en . + +base:City-Miami a base:City; + rdfs:label "Miami"@en . + +base:City-MicheldorfinOber\%C3\%B6sterreich a base:City; + rdfs:label "Micheldorf in Oberösterreich"@en . + +base:City-MichiganCity a base:City; + rdfs:label "Michigan City"@en . + +base:City-Middoge\%28Wangerland\%29 a base:City; + rdfs:label "Middoge (Wangerland)"@en . + +base:City-Milan a base:City; + rdfs:label "Milan"@en . + +base:City-MilesCity a base:City; + rdfs:label "Miles City"@en . + +base:City-Milwaukee a base:City; + rdfs:label "Milwaukee"@en . + +base:City-Minneapolis a base:City; + rdfs:label "Minneapolis"@en . + +base:City-Minsk a base:City; + rdfs:label "Minsk"@en . + +base:City-Mobile a base:City; + rdfs:label "Mobile"@en . + +base:City-Mococa a base:City; + rdfs:label "Mococa"@en . + +base:City-Modena a base:City; + rdfs:label "Modena"@en . + +base:City-Mohyliv-Podilskyi a base:City; + rdfs:label "Mohyliv-Podilskyi"@en . + +base:City-Monaco a base:City; + rdfs:label "Monaco"@en . + +base:City-Montclair a base:City; + rdfs:label "Montclair"@en . + +base:City-MonteCarlo a base:City; + rdfs:label "Monte Carlo"@en . + +base:City-Montevideo a base:City; + rdfs:label "Montevideo"@en . + +base:City-Montgomery a base:City; + rdfs:label "Montgomery"@en . + +base:City-Montreal a base:City; + rdfs:label "Montreal"@en . + +base:City-Montrose a base:City; + rdfs:label "Montrose"@en . + +base:City-Montvale a base:City; + rdfs:label "Montvale"@en . + +base:City-Moscow a base:City; + rdfs:label "Moscow"@en . + +base:City-Mosonmagyar\%C3\%B3v\%C3\%A1r a base:City; + rdfs:label "Mosonmagyaróvár"@en . + +base:City-Mszczon\%C3\%B3w a base:City; + rdfs:label "Mszczonów"@en . + +base:City-Mumbai a base:City; + rdfs:label "Mumbai"@en . + +base:City-Munich a base:City; + rdfs:label "Munich"@en . + +base:City-Murcia a base:City; + rdfs:label "Murcia"@en . + +base:City-Muskegon a base:City; + rdfs:label "Muskegon"@en . + +base:City-Mykolaiv a base:City; + rdfs:label "Mykolaiv"@en . + +base:City-Nadvirna a base:City; + rdfs:label "Nadvirna"@en . + +base:City-Nagasaki a base:City; + rdfs:label "Nagasaki"@en . + +base:City-Nantes a base:City; + rdfs:label "Nantes"@en . + +base:City-Napier a base:City; + rdfs:label "Napier"@en . + +base:City-Naples a base:City; + rdfs:label "Naples"@en . + +base:City-Nashville a base:City; + rdfs:label "Nashville"@en . + +base:City-Natchez a base:City; + rdfs:label "Natchez"@en . + +base:City-Navalmoral a base:City; + rdfs:label "Navalmoral"@en . + +base:City-NebraskaCity a base:City; + rdfs:label "Nebraska City"@en . + +base:City-Nelson a base:City; + rdfs:label "Nelson"@en . + +base:City-Neuhaldensleben\%28Haldensleben\%29 a base:City; + rdfs:label "Neuhaldensleben (Haldensleben)"@en . + +base:City-Neustrelitz a base:City; + rdfs:label "Neustrelitz"@en . + +base:City-NevadaCity a base:City; + rdfs:label "Nevada City"@en . + +base:City-NewBedford a base:City; + rdfs:label "New Bedford"@en . + +base:City-NewBrunswick a base:City; + rdfs:label "New Brunswick"@en . + +base:City-NewCastle a base:City; + rdfs:label "New Castle"@en . + +base:City-NewEngland a base:City; + rdfs:label "New England"@en . + +base:City-NewHaven a base:City; + rdfs:label "New Haven"@en . + +base:City-NewLondon a base:City; + rdfs:label "New London"@en . + +base:City-NewOrleans a base:City; + rdfs:label "New Orleans"@en . + +base:City-NewPhiladelphia a base:City; + rdfs:label "New Philadelphia"@en . + +base:City-NewPlymouth a base:City; + rdfs:label "New Plymouth"@en . + +base:City-NewYork a base:City; + rdfs:label "New York"@en . + +base:City-Newark a base:City; + rdfs:label "Newark"@en . + +base:City-Newark-on-Trent a base:City; + rdfs:label "Newark-on-Trent"@en . + +base:City-Newcastle a base:City; + rdfs:label "Newcastle"@en . + +base:City-Newport a base:City; + rdfs:label "Newport"@en . + +base:City-NewportBeach a base:City; + rdfs:label "Newport Beach"@en . + +base:City-NewportNews a base:City; + rdfs:label "Newport News"@en . + +base:City-Newtown a base:City; + rdfs:label "Newtown"@en . + +base:City-NiagaraFalls a base:City; + rdfs:label "Niagara Falls"@en . + +base:City-Nice a base:City; + rdfs:label "Nice"@en . + +base:City-Niter\%C3\%B3i a base:City; + rdfs:label "Niterói"@en . + +base:City-Nizhyn a base:City; + rdfs:label "Nizhyn"@en . + +base:City-Noresund a base:City; + rdfs:label "Noresund"@en . + +base:City-Norfolk a base:City; + rdfs:label "Norfolk"@en . + +base:City-Northampton a base:City; + rdfs:label "Northampton"@en . + +base:City-Norwalk a base:City; + rdfs:label "Norwalk"@en . + +base:City-Nottingham a base:City; + rdfs:label "Nottingham"@en . + +base:City-NoviSad a base:City; + rdfs:label "Novi Sad"@en . + +base:City-NowyDw\%C3\%B3r a base:City; + rdfs:label "Nowy Dwór"@en . + +base:City-NowyS\%C4\%85cz a base:City; + rdfs:label "Nowy Sącz"@en . + +base:City-Nuremberg a base:City; + rdfs:label "Nuremberg"@en . + +base:City-NuwaraEliya a base:City; + rdfs:label "Nuwara Eliya"@en . + +base:City-NyitraCounty a base:City; + rdfs:label "Nyitra County"@en . + +base:City-Oakland a base:City; + rdfs:label "Oakland"@en . + +base:City-Oamaru a base:City; + rdfs:label "Oamaru"@en . + +base:City-Odesa a base:City; + rdfs:label "Odesa"@en . + +base:City-Ogden a base:City; + rdfs:label "Ogden"@en . + +base:City-Ogdensburg a base:City; + rdfs:label "Ogdensburg"@en . + +base:City-OilCity a base:City; + rdfs:label "Oil City"@en . + +base:City-OklahomaCity a base:City; + rdfs:label "Oklahoma City"@en . + +base:City-Oldenburg a base:City; + rdfs:label "Oldenburg"@en . + +base:City-Olean a base:City; + rdfs:label "Olean"@en . + +base:City-Olivos a base:City; + rdfs:label "Olivos"@en . + +base:City-Olomouc a base:City; + rdfs:label "Olomouc"@en . + +base:City-Olympia a base:City; + rdfs:label "Olympia"@en . + +base:City-Omaha a base:City; + rdfs:label "Omaha"@en . + +base:City-Opava a base:City; + rdfs:label "Opava"@en . + +base:City-Orange a base:City; + rdfs:label "Orange"@en . + +base:City-OrangeCounty a base:City; + rdfs:label "Orange County"@en . + +base:City-Oslo a base:City; + rdfs:label "Oslo"@en . + +base:City-Oswego a base:City; + rdfs:label "Oswego"@en . + +base:City-Ottawa a base:City; + rdfs:label "Ottawa"@en . + +base:City-Ottensheim a base:City; + rdfs:label "Ottensheim"@en . + +base:City-Otwock a base:City; + rdfs:label "Otwock"@en . + +base:City-Oudtshoorn a base:City; + rdfs:label "Oudtshoorn"@en . + +base:City-Owensboro a base:City; + rdfs:label "Owensboro"@en . + +base:City-Oxford a base:City; + rdfs:label "Oxford"@en . + +base:City-P\%C4\%81tea a base:City; + rdfs:label "Pātea"@en . + +base:City-Paducah a base:City; + rdfs:label "Paducah"@en . + +base:City-Pahost a base:City; + rdfs:label "Pahost"@en . + +base:City-PalisadesPark a base:City; + rdfs:label "Palisades Park"@en . + +base:City-Parkersburg a base:City; + rdfs:label "Parkersburg"@en . + +base:City-Parma a base:City; + rdfs:label "Parma"@en . + +base:City-Pasadena a base:City; + rdfs:label "Pasadena"@en . + +base:City-Passau a base:City; + rdfs:label "Passau"@en . + +base:City-Paterson a base:City; + rdfs:label "Paterson"@en . + +base:City-Pavia a base:City; + rdfs:label "Pavia"@en . + +base:City-Pelotas a base:City; + rdfs:label "Pelotas"@en . + +base:City-Pendleton a base:City; + rdfs:label "Pendleton"@en . + +base:City-Pensacola a base:City; + rdfs:label "Pensacola"@en . + +base:City-Perchtoldsdorf a base:City; + rdfs:label "Perchtoldsdorf"@en . + +base:City-Pereiaslav a base:City; + rdfs:label "Pereiaslav"@en . + +base:City-Pescara a base:City; + rdfs:label "Pescara"@en . + +base:City-Pest\%28Budapest\%29 a base:City; + rdfs:label "Pest (Budapest)"@en . + +base:City-Peterborough a base:City; + rdfs:label "Peterborough"@en . + +base:City-Petr\%C3\%B3polis a base:City; + rdfs:label "Petrópolis"@en . + +base:City-Pezinok a base:City; + rdfs:label "Pezinok"@en . + +base:City-Philadelphia a base:City; + rdfs:label "Philadelphia"@en . + +base:City-PiedimonteMatese a base:City; + rdfs:label "Piedimonte Matese"@en . + +base:City-Pilsen a base:City; + rdfs:label "Pilsen"@en . + +base:City-Pinsk a base:City; + rdfs:label "Pinsk"@en . + +base:City-Piracicaba a base:City; + rdfs:label "Piracicaba"@en . + +base:City-Pittsburgh a base:City; + rdfs:label "Pittsburgh"@en . + +base:City-Plainfield a base:City; + rdfs:label "Plainfield"@en . + +base:City-Ploie\%C8\%99ti a base:City; + rdfs:label "Ploiești"@en . + +base:City-Plymouth a base:City; + rdfs:label "Plymouth"@en . + +base:City-Pocatello a base:City; + rdfs:label "Pocatello"@en . + +base:City-Podg\%C3\%B3rze a base:City; + rdfs:label "Podgórze"@en . + +base:City-Podg\%C3\%B3rze\%28Krak\%C3\%B3w\%29 a base:City; + rdfs:label "Podgórze (Kraków)"@en . + +base:City-Podolia a base:City; + rdfs:label "Podolia"@en . + +base:City-Pomona a base:City; + rdfs:label "Pomona"@en . + +base:City-PortDarwin a base:City; + rdfs:label "Port Darwin"@en . + +base:City-Porto a base:City; + rdfs:label "Porto"@en . + +base:City-PortoAlegre a base:City; + rdfs:label "Porto Alegre"@en . + +base:City-Portsmouth a base:City; + rdfs:label "Portsmouth"@en . + +base:City-Posen a base:City; + rdfs:label "Posen"@en . + +base:City-Potsdam a base:City; + rdfs:label "Potsdam"@en . + +base:City-Poughkeepsie a base:City; + rdfs:label "Poughkeepsie"@en . + +base:City-Pozna\%C5\%84 a base:City; + rdfs:label "Poznań"@en . + +base:City-Prague a base:City; + rdfs:label "Prague"@en . + +base:City-Providence a base:City; + rdfs:label "Providence"@en . + +base:City-Provo a base:City; + rdfs:label "Provo"@en . + +base:City-Przemy\%C5\%9Bl a base:City; + rdfs:label "Przemyśl"@en . + +base:City-Pueblo a base:City; + rdfs:label "Pueblo"@en . + +base:City-Pujaudran a base:City; + rdfs:label "Pujaudran"@en . + +base:City-Racine a base:City; + rdfs:label "Racine"@en . + +base:City-Radebeul a base:City; + rdfs:label "Radebeul"@en . + +base:City-Radzy\%C5\%84Podlaski a base:City; + rdfs:label "Radzyń Podlaski"@en . + +base:City-Reading a base:City; + rdfs:label "Reading"@en . + +base:City-Recife a base:City; + rdfs:label "Recife"@en . + +base:City-Recoleta\%28BuenosAires\%29 a base:City; + rdfs:label "Recoleta (Buenos Aires)"@en . + +base:City-Redlands a base:City; + rdfs:label "Redlands"@en . + +base:City-Regensburg a base:City; + rdfs:label "Regensburg"@en . + +base:City-Reno a base:City; + rdfs:label "Reno"@en . + +base:City-Ridgefield a base:City; + rdfs:label "Ridgefield"@en . + +base:City-Riga a base:City; + rdfs:label "Riga"@en . + +base:City-RioGrande a base:City; + rdfs:label "Rio Grande"@en . + +base:City-RiodeJaneiro a base:City; + rdfs:label "Rio de Janeiro"@en . + +base:City-Riverside a base:City; + rdfs:label "Riverside"@en . + +base:City-Rivne a base:City; + rdfs:label "Rivne"@en . + +base:City-Roanoke a base:City; + rdfs:label "Roanoke"@en . + +base:City-Robeccod\%27Oglio a base:City; + rdfs:label "Robecco d'Oglio"@en . + +base:City-Rochdale a base:City; + rdfs:label "Rochdale"@en . + +base:City-Rochester a base:City; + rdfs:label "Rochester"@en . + +base:City-Rockford a base:City; + rdfs:label "Rockford"@en . + +base:City-Rockhampton a base:City; + rdfs:label "Rockhampton"@en . + +base:City-Roman a base:City; + rdfs:label "Roman"@en . + +base:City-Rome a base:City; + rdfs:label "Rome"@en . + +base:City-Rorschach a base:City; + rdfs:label "Rorschach"@en . + +base:City-Rosario a base:City; + rdfs:label "Rosario"@en . + +base:City-Rostock a base:City; + rdfs:label "Rostock"@en . + +base:City-Rostov-on-Don a base:City; + rdfs:label "Rostov-on-Don"@en . + +base:City-Rottach-Egern a base:City; + rdfs:label "Rottach-Egern"@en . + +base:City-Rotterdam a base:City; + rdfs:label "Rotterdam"@en . + +base:City-Rudolfsheim\%28Vienna\%29 a base:City; + rdfs:label "Rudolfsheim (Vienna)"@en . + +base:City-Rzesz\%C3\%B3w a base:City; + rdfs:label "Rzeszów"@en . + +base:City-S\%C3\%A3oLuis a base:City; + rdfs:label "São Luis"@en . + +base:City-S\%C3\%A3oPaulo a base:City; + rdfs:label "São Paulo"@en . + +base:City-Saarbr\%C3\%BCcken a base:City; + rdfs:label "Saarbrücken"@en . + +base:City-Sacramento a base:City; + rdfs:label "Sacramento"@en . + +base:City-Saginaw a base:City; + rdfs:label "Saginaw"@en . + +base:City-Saint-Chinian a base:City; + rdfs:label "Saint-Chinian"@en . + +base:City-Saint-Jean\%28Geneva\%29 a base:City; + rdfs:label "Saint-Jean (Geneva)"@en . + +base:City-Saint-Omer a base:City; + rdfs:label "Saint-Omer"@en . + +base:City-SaintGenis-Laval a base:City; + rdfs:label "Saint Genis-Laval"@en . + +base:City-SaintJohn a base:City; + rdfs:label "Saint John"@en . + +base:City-SaintJoseph a base:City; + rdfs:label "Saint Joseph"@en . + +base:City-SaintPetersburg a base:City; + rdfs:label "Saint Petersburg"@en . + +base:City-SaltLakeCity a base:City; + rdfs:label "Salt Lake City"@en . + +base:City-Salvador a base:City; + rdfs:label "Salvador"@en . + +base:City-Salzburg a base:City; + rdfs:label "Salzburg"@en . + +base:City-SanAntonio a base:City; + rdfs:label "San Antonio"@en . + +base:City-SanAntoniodeAreco a base:City; + rdfs:label "San Antonio de Areco"@en . + +base:City-SanBernardino a base:City; + rdfs:label "San Bernardino"@en . + +base:City-SanDiego a base:City; + rdfs:label "San Diego"@en . + +base:City-SanFrancisco a base:City; + rdfs:label "San Francisco"@en . + +base:City-SanJacinto a base:City; + rdfs:label "San Jacinto"@en . + +base:City-SanJos\%C3\%A9 a base:City; + rdfs:label "San José"@en . + +base:City-SanJose a base:City; + rdfs:label "San Jose"@en . + +base:City-SanJuan a base:City; + rdfs:label "San Juan"@en . + +base:City-SanSalvador a base:City; + rdfs:label "San Salvador"@en . + +base:City-Sandusky a base:City; + rdfs:label "Sandusky"@en . + +base:City-SantaAna a base:City; + rdfs:label "Santa Ana"@en . + +base:City-SantaBarbara a base:City; + rdfs:label "Santa Barbara"@en . + +base:City-SantaCatarina a base:City; + rdfs:label "Santa Catarina"@en . + +base:City-SantaMaria\%28Tavira\%29 a base:City; + rdfs:label "Santa Maria (Tavira)"@en . + +base:City-SantaRosa a base:City; + rdfs:label "Santa Rosa"@en . + +base:City-SantiagodeChile a base:City; + rdfs:label "Santiago de Chile"@en . + +base:City-Santos a base:City; + rdfs:label "Santos"@en . + +base:City-SaratogaSprings a base:City; + rdfs:label "Saratoga Springs"@en . + +base:City-Saratov a base:City; + rdfs:label "Saratov"@en . + +base:City-Savannah a base:City; + rdfs:label "Savannah"@en . + +base:City-SchwedtanderOder a base:City; + rdfs:label "Schwedt an der Oder"@en . + +base:City-Schwerin a base:City; + rdfs:label "Schwerin"@en . + +base:City-Scranton a base:City; + rdfs:label "Scranton"@en . + +base:City-Seattle a base:City; + rdfs:label "Seattle"@en . + +base:City-Seelze a base:City; + rdfs:label "Seelze"@en . + +base:City-Selma a base:City; + rdfs:label "Selma"@en . + +base:City-Seville a base:City; + rdfs:label "Seville"@en . + +base:City-Shanghai a base:City; + rdfs:label "Shanghai"@en . + +base:City-Sharon a base:City; + rdfs:label "Sharon"@en . + +base:City-Sheffield a base:City; + rdfs:label "Sheffield"@en . + +base:City-Shoreham-by-Sea a base:City; + rdfs:label "Shoreham-by-Sea"@en . + +base:City-Shreveport a base:City; + rdfs:label "Shreveport"@en . + +base:City-Shrewsbury a base:City; + rdfs:label "Shrewsbury"@en . + +base:City-Sibiu a base:City; + rdfs:label "Sibiu"@en . + +base:City-Sidney a base:City; + rdfs:label "Sidney"@en . + +base:City-Sigmaringen a base:City; + rdfs:label "Sigmaringen"@en . + +base:City-SilverCity a base:City; + rdfs:label "Silver City"@en . + +base:City-Simferopol a base:City; + rdfs:label "Simferopol"@en . + +base:City-Sindelfingen a base:City; + rdfs:label "Sindelfingen"@en . + +base:City-Singapore a base:City; + rdfs:label "Singapore"@en . + +base:City-SiouxCity a base:City; + rdfs:label "Sioux City"@en . + +base:City-SiouxFalls a base:City; + rdfs:label "Sioux Falls"@en . + +base:City-Skierniewice a base:City; + rdfs:label "Skierniewice"@en . + +base:City-SligoCounty a base:City; + rdfs:label "Sligo County"@en . + +base:City-SlovenjGradec a base:City; + rdfs:label "Slovenj Gradec"@en . + +base:City-Slutsk a base:City; + rdfs:label "Slutsk"@en . + +base:City-Smila a base:City; + rdfs:label "Smila"@en . + +base:City-Sofia a base:City; + rdfs:label "Sofia"@en . + +base:City-Sondershausen a base:City; + rdfs:label "Sondershausen"@en . + +base:City-Sopron a base:City; + rdfs:label "Sopron"@en . + +base:City-SouthBend a base:City; + rdfs:label "South Bend"@en . + +base:City-Southampton a base:City; + rdfs:label "Southampton"@en . + +base:City-Spa a base:City; + rdfs:label "Spa"@en . + +base:City-Spokane a base:City; + rdfs:label "Spokane"@en . + +base:City-SriLanka a base:City; + rdfs:label "Sri Lanka"@en . + +base:City-St\.Catharines a base:City; + rdfs:label "St. Catharines"@en . + +base:City-St\.Lorenz a base:City; + rdfs:label "St. Lorenz"@en . + +base:City-St\.Louis a base:City; + rdfs:label "St. Louis"@en . + +base:City-St\.Moritz a base:City; + rdfs:label "St. Moritz"@en . + +base:City-St\.Paul a base:City; + rdfs:label "St. Paul "@en . + +base:City-StHelier a base:City; + rdfs:label "St Helier"@en . + +base:City-StP\%C3\%B6lten a base:City; + rdfs:label "St Pölten"@en . + +base:City-Stamford a base:City; + rdfs:label "Stamford"@en . + +base:City-Starokostiantyniv a base:City; + rdfs:label "Starokostiantyniv"@en . + +base:City-Staunton a base:City; + rdfs:label "Staunton"@en . + +base:City-Steubenville a base:City; + rdfs:label "Steubenville"@en . + +base:City-Stockholm a base:City; + rdfs:label "Stockholm"@en . + +base:City-Stockton a base:City; + rdfs:label "Stockton"@en . + +base:City-Str\%C3\%A1\%C5\%BE a base:City; + rdfs:label "Stráž"@en . + +base:City-Strasbourg a base:City; + rdfs:label "Strasbourg"@en . + +base:City-Stratford a base:City; + rdfs:label "Stratford"@en . + +base:City-Streator a base:City; + rdfs:label "Streator"@en . + +base:City-Strobl a base:City; + rdfs:label "Strobl"@en . + +base:City-Stuttgart a base:City; + rdfs:label "Stuttgart"@en . + +base:City-Superior a base:City; + rdfs:label "Superior"@en . + +base:City-Suva a base:City; + rdfs:label "Suva"@en . + +base:City-Suwa\%C5\%82ki a base:City; + rdfs:label "Suwałki"@en . + +base:City-Svier\%C5\%BEa\%C5\%84 a base:City; + rdfs:label "Svieržań"@en . + +base:City-Sydney a base:City; + rdfs:label "Sydney"@en . + +base:City-Syracuse a base:City; + rdfs:label "Syracuse"@en . + +base:City-Szczecin a base:City; + rdfs:label "Szczecin"@en . + +base:City-Szprotawa a base:City; + rdfs:label "Szprotawa"@en . + +base:City-Tacoma a base:City; + rdfs:label "Tacoma"@en . + +base:City-Tartu a base:City; + rdfs:label "Tartu"@en . + +base:City-Tasmania a base:City; + rdfs:label "Tasmania"@en . + +base:City-Tel-Aviv a base:City; + rdfs:label "Tel-Aviv"@en . + +base:City-Tenerife a base:City; + rdfs:label "Tenerife"@en . + +base:City-TeplicenadMetuj\%C3\%AD a base:City; + rdfs:label "Teplice nad Metují"@en . + +base:City-Ternopil a base:City; + rdfs:label "Ternopil"@en . + +base:City-TerreHaute a base:City; + rdfs:label "Terre Haute"@en . + +base:City-Tettnang a base:City; + rdfs:label "Tettnang"@en . + +base:City-Tewkesbury a base:City; + rdfs:label "Tewkesbury"@en . + +base:City-Texarkana a base:City; + rdfs:label "Texarkana"@en . + +base:City-TheBronx a base:City; + rdfs:label "The Bronx"@en . + +base:City-Tianjin a base:City; + rdfs:label "Tianjin"@en . + +base:City-Timaru a base:City; + rdfs:label "Timaru"@en . + +base:City-Timi\%C8\%99oara a base:City; + rdfs:label "Timișoara"@en . + +base:City-Tiraspol a base:City; + rdfs:label "Tiraspol"@en . + +base:City-Toledo a base:City; + rdfs:label "Toledo"@en . + +base:City-Topeka a base:City; + rdfs:label "Topeka"@en . + +base:City-Toronto a base:City; + rdfs:label "Toronto"@en . + +base:City-Toulon a base:City; + rdfs:label "Toulon"@en . + +base:City-Toulouse a base:City; + rdfs:label "Toulouse"@en . + +base:City-Towanda a base:City; + rdfs:label "Towanda"@en . + +base:City-Townsville a base:City; + rdfs:label "Townsville"@en . + +base:City-Traunsee a base:City; + rdfs:label "Traunsee"@en . + +base:City-Trenton a base:City; + rdfs:label "Trenton"@en . + +base:City-Tribschen\%28Lucerne\%29 a base:City; + rdfs:label "Tribschen (Lucerne)"@en . + +base:City-Trieste a base:City; + rdfs:label "Trieste"@en . + +base:City-Trik\%C4\%81taParish a base:City; + rdfs:label "Trikāta Parish"@en . + +base:City-Trinidad a base:City; + rdfs:label "Trinidad"@en . + +base:City-Troy a base:City; + rdfs:label "Troy"@en . + +base:City-Truckee a base:City; + rdfs:label "Truckee"@en . + +base:City-Tucuman a base:City; + rdfs:label "Tucuman"@en . + +base:City-Tulchyn a base:City; + rdfs:label "Tulchyn"@en . + +base:City-Turin a base:City; + rdfs:label "Turin"@en . + +base:City-Twickenham a base:City; + rdfs:label "Twickenham"@en . + +base:City-Ukmerg\%C4\%97 a base:City; + rdfs:label "Ukmergė"@en . + +base:City-Ulaniv a base:City; + rdfs:label "Ulaniv"@en . + +base:City-Ulm a base:City; + rdfs:label "Ulm"@en . + +base:City-Uman a base:City; + rdfs:label "Uman"@en . + +base:City-Umbria a base:City; + rdfs:label "Umbria"@en . + +base:City-Utica a base:City; + rdfs:label "Utica"@en . + +base:City-Utrecht a base:City; + rdfs:label "Utrecht"@en . + +base:City-Valo\%C5\%BEyn a base:City; + rdfs:label "Valožyn"@en . + +base:City-Valpara\%C3\%ADso a base:City; + rdfs:label "Valparaíso"@en . + +base:City-VanWert a base:City; + rdfs:label "Van Wert"@en . + +base:City-Vancouver a base:City; + rdfs:label "Vancouver"@en . + +base:City-Varanasi a base:City; + rdfs:label "Varanasi"@en . + +base:City-Varese a base:City; + rdfs:label "Varese"@en . + +base:City-Velp a base:City; + rdfs:label "Velp"@en . + +base:City-Venice a base:City; + rdfs:label "Venice"@en . + +base:City-Veracruz a base:City; + rdfs:label "Veracruz"@en . + +base:City-Vercelli a base:City; + rdfs:label "Vercelli"@en . + +base:City-Verona a base:City; + rdfs:label "Verona"@en . + +base:City-Vevey a base:City; + rdfs:label "Vevey"@en . + +base:City-Vi\%C5\%BEinada a base:City; + rdfs:label "Vižinada"@en . + +base:City-Vicksburg a base:City; + rdfs:label "Vicksburg"@en . + +base:City-Vienna a base:City; + rdfs:label "Vienna"@en . + +base:City-Villed\%C2\%B4Avray a base:City; + rdfs:label "Ville d´Avray"@en . + +base:City-Vilnius a base:City; + rdfs:label "Vilnius"@en . + +base:City-Vincennes a base:City; + rdfs:label "Vincennes"@en . + +base:City-VirginiaCity a base:City; + rdfs:label "Virginia City"@en . + +base:City-Viseu a base:City; + rdfs:label "Viseu"@en . + +base:City-Vitebsk a base:City; + rdfs:label "Vitebsk"@en . + +base:City-VitebskRegion a base:City; + rdfs:label "Vitebsk Region"@en . + +base:City-Voghera a base:City; + rdfs:label "Voghera"@en . + +base:City-Vyshnivchyk a base:City; + rdfs:label "Vyshnivchyk"@en . + +base:City-W\%C3\%BCrzburg a base:City; + rdfs:label "Würzburg"@en . + +base:City-Waco a base:City; + rdfs:label "Waco"@en . + +base:City-WaggaWagga a base:City; + rdfs:label "Wagga Wagga"@en . + +base:City-Wakefield a base:City; + rdfs:label "Wakefield"@en . + +base:City-WallaWalla a base:City; + rdfs:label "Walla Walla"@en . + +base:City-Walluf a base:City; + rdfs:label "Walluf"@en . + +base:City-Wanganui a base:City; + rdfs:label "Wanganui"@en . + +base:City-Warsaw a base:City; + rdfs:label "Warsaw"@en . + +base:City-Washington a base:City; + rdfs:label "Washington"@en . + +base:City-Waverly a base:City; + rdfs:label "Waverly"@en . + +base:City-Weidling a base:City; + rdfs:label "Weidling"@en . + +base:City-Weimar a base:City; + rdfs:label "Weimar"@en . + +base:City-Wellington a base:City; + rdfs:label "Wellington"@en . + +base:City-WestOrange a base:City; + rdfs:label "West Orange"@en . + +base:City-Weymouth a base:City; + rdfs:label "Weymouth"@en . + +base:City-Wheeling a base:City; + rdfs:label "Wheeling"@en . + +base:City-Whitechapel a base:City; + rdfs:label "Whitechapel"@en . + +base:City-Wichita a base:City; + rdfs:label "Wichita"@en . + +base:City-WienerNeustadt a base:City; + rdfs:label "Wiener Neustadt"@en . + +base:City-Wiesbaden a base:City; + rdfs:label "Wiesbaden"@en . + +base:City-Wieselburg a base:City; + rdfs:label "Wieselburg"@en . + +base:City-Wilkes-Barre a base:City; + rdfs:label "Wilkes-Barre"@en . + +base:City-Williamsport a base:City; + rdfs:label "Williamsport"@en . + +base:City-Winchester a base:City; + rdfs:label "Winchester"@en . + +base:City-Windsor a base:City; + rdfs:label "Windsor"@en . + +base:City-Winnipeg a base:City; + rdfs:label "Winnipeg"@en . + +base:City-Winona a base:City; + rdfs:label "Winona"@en . + +base:City-Winsen a base:City; + rdfs:label "Winsen"@en . + +base:City-WinterPark a base:City; + rdfs:label "Winter Park"@en . + +base:City-Wisconsin a base:City; + rdfs:label "Wisconsin"@en . + +base:City-Wola a base:City; + rdfs:label "Wola"@en . + +base:City-Wolverhampton a base:City; + rdfs:label "Wolverhampton"@en . + +base:City-Worthing a base:City; + rdfs:label "Worthing"@en . + +base:City-Wroc\%C5\%82aw a base:City; + rdfs:label "Wrocław"@en . + +base:City-Yakima a base:City; + rdfs:label "Yakima"@en . + +base:City-Yalta a base:City; + rdfs:label "Yalta"@en . + +base:City-Yangon a base:City; + rdfs:label "Yangon"@en . + +base:City-Yekaterinoslav a base:City; + rdfs:label "Yekaterinoslav"@en . + +base:City-Youngstown a base:City; + rdfs:label "Youngstown"@en . + +base:City-Ypsilanti a base:City; + rdfs:label "Ypsilanti"@en . + +base:City-Zabolotivka a base:City; + rdfs:label "Zabolotivka"@en . + +base:City-Zafra a base:City; + rdfs:label "Zafra"@en . + +base:City-Zagreb a base:City; + rdfs:label "Zagreb"@en . + +base:City-Zamo\%C5\%9B\%C4\%87 a base:City; + rdfs:label "Zamość"@en . + +base:City-Zanesville a base:City; + rdfs:label "Zanesville"@en . + +base:City-Zbiroh a base:City; + rdfs:label "Zbiroh"@en . + +base:City-Zhuki a base:City; + rdfs:label "Zhuki"@en . + +base:City-Zhytomyr a base:City; + rdfs:label "Zhytomyr"@en . + +base:City-Zlatopil a base:City; + rdfs:label "Zlatopil"@en . + +base:City-Zolochiv a base:City; + rdfs:label "Zolochiv"@en . + +base:City-Zurich a base:City; + rdfs:label "Zurich"@en . + +base:City-Zvenyhorodka a base:City; + rdfs:label "Zvenyhorodka"@en . + +base:City-Zwolle a base:City; + rdfs:label "Zwolle"@en . + +base:Continent-MiddleEast a base:Continent; + rdfs:label "Middle East"@en . + +base:Country- a base:Country; + rdfs:label ""@en . + +base:Country-Algeria a base:Country; + rdfs:label "Algeria"@en . + +base:Country-Azerbaijan a base:Country; + rdfs:label "Azerbaijan"@en . + +base:Country-ChannelIslands a base:Country; + rdfs:label "Channel Islands"@en . + +base:Country-Cuba a base:Country; + rdfs:label "Cuba"@en . + +base:Country-EasternEurope a base:Country; + rdfs:label "Eastern Europe"@en . + +base:Country-ElSalvador a base:Country; + rdfs:label "El Salvador"@en . + +base:Country-Estland a base:Country; + rdfs:label "Estland"@en . + +base:Country-Europe a base:Country; + rdfs:label "Europe"@en . + +base:Country-Fiji a base:Country; + rdfs:label "Fiji"@en . + +base:Country-ITaly a base:Country; + rdfs:label "ITaly"@en . + +base:Country-Korea a base:Country; + rdfs:label "Korea"@en . + +base:Country-NorthAmerica a base:Country; + rdfs:label "North America"@en . + +base:Country-Palestine a base:Country; + rdfs:label "Palestine"@en . + +base:Country-Peru a base:Country; + rdfs:label "Peru"@en . + +base:Country-Poland\%2FUkraine a base:Country; + rdfs:label "Poland / Ukraine"@en . + +base:Country-Scandinavia a base:Country; + rdfs:label "Scandinavia"@en . + +base:Country-Singapore a base:Country; + rdfs:label "Singapore"@en . + +base:Country-SovietUnion a base:Country; + rdfs:label "Soviet Union"@en . + +base:Country-UAS a base:Country; + rdfs:label "UAS"@en . + +base:Country-USa a base:Country; + rdfs:label "USa"@en . + +base:Country-WestEurope a base:Country; + rdfs:label "West Europe"@en . + +base:Country-Yugoslavia a base:Country; + rdfs:label "Yugoslavia"@en . + +base:InstitutionType-festival a base:InstitutionType; + rdfs:label "festival"@en . + +base:InstitutionType-temporaryfestival a base:InstitutionType; + rdfs:label "temporary festival"@en . + +base:Nametype-Migration-Related a base:Nametype; + rdfs:label "Migration-Related"@en . + +base:Nametype-Migration-related a base:Nametype; + rdfs:label "Migration-related"@en . + +base:Profession-Stagemanager a base:Profession; + rdfs:label "Stage manager"@en . + +base:RelationshipType-trained_together a base:RelationshipType; + rdfs:label "trained_together"@en . + +base:RelationshipTypePrecise-Fiance a base:RelationshipTypePrecise; + rdfs:label "Fiance"@en . + +base:State-Abruzzo a base:State; + rdfs:label "Abruzzo"@en . + +base:State-Alsace a base:State; + rdfs:label "Alsace"@en . + +base:State-Arronches a base:State; + rdfs:label "Arronches"@en . + +base:State-Asturias a base:State; + rdfs:label "Asturias"@en . + +base:State-Babrujsk a base:State; + rdfs:label "Babrujsk"@en . + +base:State-Bessarabia a base:State; + rdfs:label "Bessarabia"@en . + +base:State-Bodensee a base:State; + rdfs:label "Bodensee"@en . + +base:State-Bohemia a base:State; + rdfs:label "Bohemia"@en . + +base:State-Brandenburg a base:State; + rdfs:label "Brandenburg"@en . + +base:State-Bremen a base:State; + rdfs:label "Bremen"@en . + +base:State-BritishColumbia a base:State; + rdfs:label "British Columbia"@en . + +base:State-Bukowina a base:State; + rdfs:label "Bukowina"@en . + +base:State-Canton a base:State; + rdfs:label "Canton"@en . + +base:State-CastillalaVieja a base:State; + rdfs:label "Castilla la Vieja"@en . + +base:State-Como a base:State; + rdfs:label "Como"@en . + +base:State-CountyKerry a base:State; + rdfs:label "County Kerry"@en . + +base:State-CountySligo a base:State; + rdfs:label "County Sligo"@en . + +base:State-Courland a base:State; + rdfs:label "Courland"@en . + +base:State-Cumberland a base:State; + rdfs:label "Cumberland"@en . + +base:State-Czechoslovakia a base:State; + rdfs:label "Czechoslovakia"@en . + +base:State-Delaware a base:State; + rdfs:label "Delaware"@en . + +base:State-DistrictofColumbia a base:State; + rdfs:label "District of Columbia"@en . + +base:State-Dorset a base:State; + rdfs:label "Dorset"@en . + +base:State-EastCoast a base:State; + rdfs:label "East Coast"@en . + +base:State-EntreR\%C3\%ADos a base:State; + rdfs:label "Entre Ríos"@en . + +base:State-Galicia a base:State; + rdfs:label "Galicia"@en . + +base:State-Gelderland a base:State; + rdfs:label "Gelderland"@en . + +base:State-Gloucestershire a base:State; + rdfs:label "Gloucestershire"@en . + +base:State-GranBuenosAires a base:State; + rdfs:label "Gran Buenos Aires"@en . + +base:State-Guangdong a base:State; + rdfs:label "Guangdong"@en . + +base:State-Hy\%C5\%8DgoPrefecture a base:State; + rdfs:label "Hyōgo Prefecture"@en . + +base:State-Jersey a base:State; + rdfs:label "Jersey"@en . + +base:State-Kent a base:State; + rdfs:label "Kent"@en . + +base:State-LakeComo a base:State; + rdfs:label "Lake Como"@en . + +base:State-Limerick a base:State; + rdfs:label "Limerick"@en . + +base:State-Livonia a base:State; + rdfs:label "Livonia"@en . + +base:State-LowerSaxony a base:State; + rdfs:label "Lower Saxony"@en . + +base:State-Maryland a base:State; + rdfs:label "Maryland"@en . + +base:State-Mecklenburg-Vorpommern a base:State; + rdfs:label "Mecklenburg-Vorpommern"@en . + +base:State-Mendoza a base:State; + rdfs:label "Mendoza"@en . + +base:State-MiddleEast a base:State; + rdfs:label "Middle East"@en . + +base:State-Midwestern a base:State; + rdfs:label "Midwestern"@en . + +base:State-MinasGerais a base:State; + rdfs:label "Minas Gerais"@en . + +base:State-Minho a base:State; + rdfs:label "Minho"@en . + +base:State-MonState a base:State; + rdfs:label "Mon State"@en . + +base:State-Moravia a base:State; + rdfs:label "Moravia"@en . + +base:State-NewBrunswick a base:State; + rdfs:label "New Brunswick"@en . + +base:State-NewHampshire a base:State; + rdfs:label "New Hampshire"@en . + +base:State-NorthYorkshire a base:State; + rdfs:label "North Yorkshire"@en . + +base:State-Nouvelle-Aquitaine a base:State; + rdfs:label "Nouvelle-Aquitaine"@en . + +base:State-NovaScotia a base:State; + rdfs:label "Nova Scotia"@en . + +base:State-Oklahoma a base:State; + rdfs:label "Oklahoma"@en . + +base:State-Pernambuco a base:State; + rdfs:label "Pernambuco"@en . + +base:State-Pre\%C5\%A1ov a base:State; + rdfs:label "Prešov"@en . + +base:State-Prussia a base:State; + rdfs:label "Prussia"@en . + +base:State-Puebla a base:State; + rdfs:label "Puebla"@en . + +base:State-Punjab a base:State; + rdfs:label "Punjab"@en . + +base:State-Quebec a base:State; + rdfs:label "Quebec"@en . + +base:State-RioGrandedoSul a base:State; + rdfs:label "Rio Grande do Sul"@en . + +base:State-Siberia a base:State; + rdfs:label "Siberia"@en . + +base:State-Sicily a base:State; + rdfs:label "Sicily"@en . + +base:State-Somerset a base:State; + rdfs:label "Somerset"@en . + +base:State-SouthDakota a base:State; + rdfs:label "South Dakota"@en . + +base:State-SouthernCalifornia a base:State; + rdfs:label "Southern California"@en . + +base:State-SovietUnion a base:State; + rdfs:label "Soviet Union"@en . + +base:State-Statzendorf a base:State; + rdfs:label "Statzendorf"@en . + +base:State-Th\%C3\%BCringen a base:State; + rdfs:label "Thüringen"@en . + +base:State-Trentino a base:State; + rdfs:label "Trentino"@en . + +base:State-Tuscany a base:State; + rdfs:label "Tuscany"@en . + +base:State-Veracruz a base:State; + rdfs:label "Veracruz"@en . + +base:State-Vestland a base:State; + rdfs:label "Vestland"@en . + +base:State-VinnytsiaOblast a base:State; + rdfs:label "Vinnytsia Oblast"@en . + +base:State-Vojvodina a base:State; + rdfs:label "Vojvodina"@en . + +base:State-Wolhynien a base:State; + rdfs:label "Wolhynien"@en . + +base:State-Wsconsin a base:State; + rdfs:label "Wsconsin"@en . + +base:State-Wyoming a base:State; + rdfs:label "Wyoming"@en . + +base:State-Z\%C3\%BCrich a base:State; + rdfs:label "Zürich"@en . + +base:location\/ARG-Ber-00 a base:location; + base:location\#City base:City-Berisso; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3436040"; + base:location\#IDLocation "ARG-Ber-00"; + base:location\#latitude -3.48667e1; + base:location\#longitude -5.78667e1; + base:location\#wikidata "Q668462"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Berisso" . + +base:location\/ARG-Chaca-00 a base:location; + base:location\#City base:City-Chacabuco; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#IDLocation "ARG-Chaca-00"; + base:location\#State base:State-BuenosAires; + base:location\#latitude -3.46417e1; + base:location\#longitude -6.04739e1; + base:location\#wikidata "Q433734" . + +base:location\/ARG-EntrRios-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3434137"; + base:location\#IDLocation "ARG-EntrRios-00"; + base:location\#State base:State-EntreR\%C3\%ADos; + base:location\#latitude -3.21e1; + base:location\#longitude -5.93e1; + base:location\#wikidata "Q44762"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Entre_R%C3%ADos_Province" . + +base:location\/ARG-Llav-00 a base:location; + base:location\#City base:City-Llavallol; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3431325"; + base:location\#IDLocation "ARG-Llav-00"; + base:location\#State base:State-GranBuenosAires; + base:location\#latitude -3.47667e1; + base:location\#longitude -5.83833e1; + base:location\#wikidata "Q3721987"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Llavallol" . + +base:location\/AT-Gmun-00 a base:location; + base:location\#City base:City-Gmunden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#IDLocation "AT-Gmun-00"; + base:location\#latitude 4.79181e1; + base:location\#longitude 1.37994e1; + base:location\#wikidata "Q430449" . + +base:location\/AT-Klag-00 a base:location; + base:location\#City base:City-Klagenfurt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2774326"; + base:location\#IDLocation "AT-Klag-00"; + base:location\#latitude 4.66167e1; + base:location\#longitude 1.43e1; + base:location\#wikidata "Q41753"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Klagenfurt" . + +base:location\/AT-Mich-00 a base:location; + base:location\#City base:City-MicheldorfinOber\%C3\%B6sterreich; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2771619"; + base:location\#IDLocation "AT-Mich-00"; + base:location\#latitude 4.78776e1; + base:location\#longitude 1.41335e1; + base:location\#wikidata "Q661415"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Micheldorf_in_Ober%C3%B6sterreich" . + +base:location\/AT-Ottensh-00 a base:location; + base:location\#City base:City-Ottensheim; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2769342"; + base:location\#IDLocation "AT-Ottensh-00"; + base:location\#latitude 4.83333e1; + base:location\#longitude 1.41769e1; + base:location\#wikidata "Q683160"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ottensheim" . + +base:location\/AT-Rudolf-00 a base:location; + base:location\#City base:City-Rudolfsheim\%28Vienna\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2779138"; + base:location\#IDLocation "AT-Rudolf-00"; + base:location\#latitude 4.81903e1; + base:location\#longitude 1.63289e1; + base:location\#wikidata "Q617472"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rudolfsheim" . + +base:location\/AT-StLor-00 a base:location; + base:location\#City base:City-St\.Lorenz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2766591"; + base:location\#IDLocation "AT-StLor-00"; + base:location\#latitude 4.78233e1; + base:location\#longitude 1.33567e1; + base:location\#wikidata "Q679222"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/St._Lorenz_(Austria)" . + +base:location\/AT-Strobl-00 a base:location; + base:location\#City base:City-Strobl; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2764121"; + base:location\#IDLocation "AT-Strobl-00"; + base:location\#latitude 4.77167e1; + base:location\#longitude 1.34667e1; + base:location\#wikidata "Q667278"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Strobl" . + +base:location\/AT-VIENeu-00 a base:location; + base:location\#City base:City-WienerNeustadt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2761353"; + base:location\#IDLocation "AT-VIENeu-00"; + base:location\#latitude 4.78132e1; + base:location\#longitude 1.62444e1; + base:location\#wikidata "Q131612"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wiener_Neustadt" . + +base:location\/AU-NewCast-00 a base:location; + base:location\#City base:City-NewCastle; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AU-NewCast-00"; + base:location\#latitude -3.29306e1; + base:location\#longitude 1.51754e2; + base:location\#wikidata "Q57278" . + +base:location\/AUS-Alb-00 a base:location; + base:location\#City base:City-Albany; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2077963"; + base:location\#IDLocation "AUS-Alb-00"; + base:location\#latitude -3.50167e1; + base:location\#longitude 1.17883e2; + base:location\#wikidata "Q704257"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Albany,_Western_Australia" . + +base:location\/AUS-Albu-00 a base:location; + base:location\#City base:City-Albury; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Albu-00"; + base:location\#latitude -3.60833e1; + base:location\#longitude 1.46917e2; + base:location\#wikidata "Q331764" . + +base:location\/AUS-Castle-00 a base:location; + base:location\#City base:City-Castlemaine; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Castle-00"; + base:location\#State base:State-Victoria; + base:location\#latitude -3.70667e1; + base:location\#longitude 1.44217e2; + base:location\#wikidata "Q260317"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Castlemaine,_Victoria" . + +base:location\/AUS-Chart-00 a base:location; + base:location\#City base:City-ChartersTowers; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Chart-00"; + base:location\#latitude -2.01e1; + base:location\#longitude 1.46267e2; + base:location\#wikidata "Q1066838" . + +base:location\/AUS-Cook-00 a base:location; + base:location\#City base:City-Cooktown; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Cook-00"; + base:location\#latitude -1.54667e1; + base:location\#longitude 1.4525e2; + base:location\#wikidata "Q1020734" . + +base:location\/AUS-Geel-00 a base:location; + base:location\#City base:City-Geelong; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Geel-00"; + base:location\#latitude -3.81667e1; + base:location\#longitude 1.4435e2; + base:location\#wikidata "Q231765"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Geelong" . + +base:location\/AUS-Goulb-00 a base:location; + base:location\#City base:City-Goulburn; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Goulb-00"; + base:location\#latitude -3.47333e1; + base:location\#longitude 1.49733e2; + base:location\#wikidata "Q605235" . + +base:location\/AUS-Gymp-00 a base:location; + base:location\#City base:City-Gympie; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Gymp-00"; + base:location\#State base:State-Queensland; + base:location\#latitude -2.61833e1; + base:location\#longitude 1.52667e2; + base:location\#wikidata "Q1558442" . + +base:location\/AUS-Pert-00 a base:location; + base:location\#City base:City-Perth; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2063523"; + base:location\#IDLocation "AUS-Pert-00"; + base:location\#latitude -3.195e1; + base:location\#longitude 1.1585e2; + base:location\#wikidata "Q3183"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Perth" . + +base:location\/AUS-Tasm-00 a base:location; + base:location\#City base:City-Tasmania; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Tasm-00"; + base:location\#latitude -4.20556e1; + base:location\#longitude 1.46616e2; + base:location\#wikidata "Q34366" . + +base:location\/AUS-Townsv-00 a base:location; + base:location\#City base:City-Townsville; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Townsv-00"; + base:location\#latitude -1.925e1; + base:location\#longitude 1.46817e2; + base:location\#wikidata "Q190021" . + +base:location\/AUS-Wagg-00 a base:location; + base:location\#City base:City-WaggaWagga; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Wagg-00"; + base:location\#latitude -3.51167e1; + base:location\#longitude 1.47367e2; + base:location\#wikidata "Q459600" . + +base:location\/BE-Ghe-00 a base:location; + base:location\#City base:City-Ghent; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#IDLocation "BE-Ghe-00"; + base:location\#latitude 5.10539e1; + base:location\#longitude 3.72167e0; + base:location\#wikidata "Q1296"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ghent" . + +base:location\/BE-Spa-00 a base:location; + base:location\#City base:City-Spa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#GeoNamesID "2786318"; + base:location\#IDLocation "BE-Spa-00"; + base:location\#latitude 5.04914e1; + base:location\#longitude 5.86667e0; + base:location\#wikidata "Q39865"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Spa,_Belgium" . + +base:location\/BG-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Bulgaria; + base:location\#IDLocation "BG-00"; + base:location\#latitude 4.3e1; + base:location\#longitude 2.5e1; + base:location\#wikidata "Q219" . + +base:location\/BG-Sof-00 a base:location; + base:location\#City base:City-Sofia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Bulgaria; + base:location\#GeoNamesID "727011"; + base:location\#IDLocation "BG-Sof-00"; + base:location\#latitude 4.27e1; + base:location\#longitude 2.333e1; + base:location\#wikidata "Q219"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sofia" . + +base:location\/BR-Alago-00 a base:location; + base:location\#City base:City-Alagoinhas; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3472766"; + base:location\#IDLocation "BR-Alago-00"; + base:location\#latitude -1.21255e1; + base:location\#longitude -3.8411e1; + base:location\#wikidata "Q22050101"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Alagoinhas" . + +base:location\/BR-Camp-00 a base:location; + base:location\#City base:City-Campinas; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3467865"; + base:location\#IDLocation "BR-Camp-00"; + base:location\#latitude -2.28997e1; + base:location\#longitude -4.70567e1; + base:location\#wikidata "Q171617"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Campinas" . + +base:location\/BR-Curt-00 a base:location; + base:location\#City base:City-Curitiba; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3464975"; + base:location\#IDLocation "BR-Curt-00"; + base:location\#latitude -2.54298e1; + base:location\#longitude -4.92717e1; + base:location\#wikidata "Q4361"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Curitiba" . + +base:location\/BR-MinGer-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3457153"; + base:location\#IDLocation "BR-MinGer-00"; + base:location\#State base:State-MinasGerais; + base:location\#latitude -1.849e1; + base:location\#longitude -4.47e1; + base:location\#wikidata "Q39109"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Minas_Gerais" . + +base:location\/BR-Moc-00 a base:location; + base:location\#City base:City-Mococa; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3457025"; + base:location\#IDLocation "BR-Moc-00"; + base:location\#State base:State-S\%C3\%A3oPaulo; + base:location\#latitude -2.14678e1; + base:location\#longitude -4.7005e1; + base:location\#wikidata "Q1760484"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mococa" . + +base:location\/BR-Santos-00 a base:location; + base:location\#City base:City-Santos; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3449433"; + base:location\#IDLocation "BR-Santos-00"; + base:location\#latitude -2.39667e1; + base:location\#longitude -4.63333e1; + base:location\#wikidata "Q81882"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Santos,_S%C3%A3o_Paulo" . + +base:location\/BR-StCat-00 a base:location; + base:location\#City base:City-SantaCatarina; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3450387"; + base:location\#IDLocation "BR-StCat-00"; + base:location\#latitude -2.727e1; + base:location\#longitude -5.049e1; + base:location\#wikidata "Q41115"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Santa_Catarina_(state)" . + +base:location\/Bel-DiJeSt-61 a base:location; + base:location\#City base:City-Valo\%C5\%BEyn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-61"; + base:location\#latitude 5.40833e1; + base:location\#longitude 2.65167e1; + base:location\#wikidata "Q200876"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-63 a base:location; + base:location\#City base:City-Slutsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-63"; + base:location\#latitude 5.30167e1; + base:location\#longitude 2.755e1; + base:location\#wikidata "Q201243"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-68 a base:location; + base:location\#City base:City-Pinsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-68"; + base:location\#latitude 5.21153e1; + base:location\#longitude 2.61031e1; + base:location\#wikidata "Q204150"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/CA-Brandt-00 a base:location; + base:location\#City base:City-Brantford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-Brandt-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.31394e1; + base:location\#longitude -8.026430000000001e1; + base:location\#wikidata "Q34180" . + +base:location\/CA-StJohn-00 a base:location; + base:location\#City base:City-SaintJohn; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6138517"; + base:location\#IDLocation "CA-StJohn-00"; + base:location\#State base:State-NewBrunswick; + base:location\#latitude 4.52805e1; + base:location\#longitude -6.60761e1; + base:location\#wikidata "Q203403"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint_John,_New_Brunswick" . + +base:location\/CA-Vanc-00 a base:location; + base:location\#City base:City-Vancouver; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6173331"; + base:location\#IDLocation "CA-Vanc-00"; + base:location\#latitude 4.9281e1; + base:location\#longitude -1.23122e2; + base:location\#wikidata "Q24639"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vancouver" . + +base:location\/CH-Asc-00 a base:location; + base:location\#City base:City-Ascona; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2661698"; + base:location\#IDLocation "CH-Asc-00"; + base:location\#latitude 4.615e1; + base:location\#longitude 8.76667e0; + base:location\#wikidata "Q63992"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ascona" . + +base:location\/CN-Canton-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#IDLocation "CN-Canton-00"; + base:location\#State base:State-Guangdong; + base:location\#latitude 2.3564e1; + base:location\#longitude 1.1395e2; + base:location\#wikidata "Q15175" . + +base:location\/CN-Guang-00 a base:location; + base:location\#City base:City-Guangzhou; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#IDLocation "CN-Guang-00"; + base:location\#State base:State-Canton; + base:location\#latitude 2.31289e1; + base:location\#longitude 1.13259e2; + base:location\#wikidata "Q16572" . + +base:location\/CN-Hank-00 a base:location; + base:location\#City base:City-Hankou\%28Wuhan\%29; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#GeoNamesID "1808894"; + base:location\#IDLocation "CN-Hank-00"; + base:location\#latitude 3.05812e1; + base:location\#longitude 1.14273e2; + base:location\#wikidata "Q1208250"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hankou" . + +base:location\/CSL-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#GeoNamesID "8505031"; + base:location\#IDLocation "CSL-00"; + base:location\#State base:State-Czechoslovakia; + base:location\#latitude 5.00829e1; + base:location\#longitude 1.44667e1; + base:location\#wikidata "Q33946"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/Czechoslovakia" . + +base:location\/CSTR-SanJuan-00 a base:location; + base:location\#City base:City-SanJuan; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-CostaRica; + base:location\#GeoNamesID "3621819"; + base:location\#IDLocation "CSTR-SanJuan-00"; + base:location\#latitude 9.957700000000001e0; + base:location\#longitude -8.40919e1; + base:location\#wikidata "Q3947434"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Juan_District,_Tib%C3%A1s" . + +base:location\/CZ-Bilin-00 a base:location; + base:location\#City base:City-B\%C3\%ADlina; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3079348"; + base:location\#IDLocation "CZ-Bilin-00"; + base:location\#latitude 5.05481e1; + base:location\#longitude 1.37761e1; + base:location\#wikidata "Q518360"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/B%C3%ADlina" . + +base:location\/CZ-Franz-00 a base:location; + base:location\#City base:City-Franti\%C5\%A1kovyL\%C3\%A1zne; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3076136"; + base:location\#IDLocation "CZ-Franz-00"; + base:location\#latitude 5.01206e1; + base:location\#longitude 1.23519e1; + base:location\#wikidata "Q756581"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Franti%C5%A1kovy_L%C3%A1zn%C4%9B" . + +base:location\/CZ-GrSeel-00 a base:location; + base:location\#City base:City-\%C5\%BDidlochovice; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3061472"; + base:location\#IDLocation "CZ-GrSeel-00"; + base:location\#latitude 4.90395e1; + base:location\#longitude 1.66188e1; + base:location\#wikidata "Q393955"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/%C5%BDidlochovice" . + +base:location\/CZ-Mora-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3070359"; + base:location\#IDLocation "CZ-Mora-00"; + base:location\#State base:State-Moravia; + base:location\#latitude 4.95e1; + base:location\#longitude 1.7e1; + base:location\#wikidata "Q43266"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Moravia" . + +base:location\/CZ-Wecksels-00 a base:location; + base:location\#City base:City-TeplicenadMetuj\%C3\%AD; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3064285"; + base:location\#IDLocation "CZ-Wecksels-00"; + base:location\#latitude 5.0595e1; + base:location\#longitude 1.6165e1; + base:location\#wikidata "Q280873"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Teplice_nad_Metuj%C3%AD" . + +base:location\/CZ-Zbi-00 a base:location; + base:location\#City base:City-Zbiroh; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3061780"; + base:location\#IDLocation "CZ-Zbi-00"; + base:location\#latitude 4.98603e1; + base:location\#longitude 1.37728e1; + base:location\#wikidata "Q168234"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Zbiroh" . + +base:location\/DZ-00 a base:location; + base:location\#City base:City-Algiers; + base:location\#Continent base:Continent-NorthAfrica; + base:location\#Country base:Country-Algeria; + base:location\#GeoNamesID "2507480"; + base:location\#IDLocation "DZ-00"; + base:location\#latitude 3.67667e1; + base:location\#longitude 3.05e0; + base:location\#wikidata "Q3561"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Algiers" . + +base:location\/EN-Cambr-00 a base:location; + base:location\#City base:City-Cambridge; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Cambr-00"; + base:location\#latitude 5.2205e1; + base:location\#longitude 1.225e-1; + base:location\#wikidata "Q49111"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cambridge" . + +base:location\/EN-Chels-00 a base:location; + base:location\#City base:City-Chelsea; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Chels-00"; + base:location\#State base:State-London; + base:location\#latitude 5.14875e1; + base:location\#longitude -1.684e-1; + base:location\#wikidata "Q743535" . + +base:location\/EN-Chelt-00 a base:location; + base:location\#City base:City-Cheltenham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Chelt-00"; + base:location\#latitude 5.19e1; + base:location\#longitude -2.06667e0; + base:location\#wikidata "Q206988"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cheltenham" . + +base:location\/EN-Chest-00 a base:location; + base:location\#City base:City-Chester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Chest-00"; + base:location\#latitude 5.31914e1; + base:location\#longitude -2.89028e0; + base:location\#wikidata "Q170263"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Chester" . + +base:location\/EN-Derb-00 a base:location; + base:location\#City base:City-Derby; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Derb-00"; + base:location\#latitude 5.29247e1; + base:location\#longitude -1.478e0; + base:location\#wikidata "Q43475"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Derby" . + +base:location\/EN-Glouc-00 a base:location; + base:location\#City base:City-Gloucestershire; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Glouc-00"; + base:location\#latitude 5.1648e1; + base:location\#longitude 2.529e0; + base:location\#wikidata "Q23165" . + +base:location\/EN-Glouc-01 a base:location; + base:location\#City base:City-Gloucester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Glouc-01"; + base:location\#latitude 5.18653e1; + base:location\#longitude -2.24583e0; + base:location\#wikidata "Q170497"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gloucester" . + +base:location\/EN-Hudd-00 a base:location; + base:location\#City base:City-Huddersfield; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Hudd-00"; + base:location\#latitude 5.3645e1; + base:location\#longitude -1.7798e0; + base:location\#wikidata "Q201812"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Huddersfield" . + +base:location\/EN-Hull-00 a base:location; + base:location\#City base:City-KingstonuponHull; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Hull-00"; + base:location\#latitude 5.37444e1; + base:location\#longitude -3.325e-1; + base:location\#wikidata "Q128147"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kingston_upon_Hull" . + +base:location\/EN-Leic-00 a base:location; + base:location\#City base:City-Leicester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Leic-00"; + base:location\#latitude 5.26349e1; + base:location\#longitude -1.1301e0; + base:location\#wikidata "Q83065"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leicester" . + +base:location\/EN-Oxf-00 a base:location; + base:location\#City base:City-Oxford; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Oxf-00"; + base:location\#latitude 5.17519e1; + base:location\#longitude -1.25778e0; + base:location\#wikidata "Q34217"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oxford" . + +base:location\/EN-Plym-00 a base:location; + base:location\#City base:City-Plymouth; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Plym-00"; + base:location\#latitude 5.03714e1; + base:location\#longitude -4.14222e0; + base:location\#wikidata "Q43382"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Plymouth" . + +base:location\/EN-Shrews-00 a base:location; + base:location\#City base:City-Shrewsbury; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Shrews-00"; + base:location\#latitude 5.2708e1; + base:location\#longitude -2.754e0; + base:location\#wikidata "Q201970"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Shrewsbury" . + +base:location\/EN-Southh-00 a base:location; + base:location\#City base:City-Southampton; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Southh-00"; + base:location\#latitude 5.09025e1; + base:location\#longitude -1.40417e0; + base:location\#wikidata "Q79848"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Southampton" . + +base:location\/EN-Tewk-00 a base:location; + base:location\#City base:City-Tewkesbury; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Tewk-00"; + base:location\#State base:State-Gloucestershire; + base:location\#latitude 5.199e1; + base:location\#longitude -2.16e0; + base:location\#wikidata "Q1000717"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tewkesbury" . + +base:location\/EN-Wakef-00 a base:location; + base:location\#City base:City-Wakefield; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Wakef-00"; + base:location\#latitude 5.36825e1; + base:location\#longitude -1.4975e0; + base:location\#wikidata "Q216638"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wakefield" . + +base:location\/EN-Wolver-00 a base:location; + base:location\#City base:City-Wolverhampton; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Wolver-00"; + base:location\#latitude 5.25842e1; + base:location\#longitude -2.1253e0; + base:location\#wikidata "Q126269"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wolverhampton" . + +base:location\/ES-Cad-00 a base:location; + base:location\#City base:City-C\%C3\%A1diz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Cad-00"; + base:location\#latitude 3.65333e1; + base:location\#longitude -6.28333e0; + base:location\#wikidata "Q15682"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/C%C3%A1diz" . + +base:location\/ES-CanIsl-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2520308"; + base:location\#IDLocation "ES-CanIsl-00"; + base:location\#State base:State-CanaryIslands; + base:location\#latitude 2.8e1; + base:location\#longitude -1.575e1; + base:location\#wikidata "Q5813"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Canary_Islands" . + +base:location\/ES-Cerv-00 a base:location; + base:location\#City base:City-Cervera; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Cerv-00"; + base:location\#latitude 4.16656e1; + base:location\#longitude 1.27111e0; + base:location\#wikidata "Q847011" . + +base:location\/ES-Nava-00 a base:location; + base:location\#City base:City-Navalmoral; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3115641"; + base:location\#IDLocation "ES-Nava-00"; + base:location\#State base:State-CastillalaVieja; + base:location\#latitude 4.04597e1; + base:location\#longitude -4.76639e0; + base:location\#wikidata "Q1632723"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Navalmoral" . + +base:location\/ES-SEVILLA-00 a base:location; + base:location\#City base:City-Seville; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2510911"; + base:location\#IDLocation "ES-SEVILLA-00"; + base:location\#latitude 3.739e1; + base:location\#longitude -5.99e0; + base:location\#wikidata "Q8717"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Seville" . + +base:location\/ES-ZAFRA-00 a base:location; + base:location\#City base:City-Zafra; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2509377"; + base:location\#IDLocation "ES-ZAFRA-00"; + base:location\#latitude 3.84167e1; + base:location\#longitude -6.41667e0; + base:location\#wikidata "Q140203"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Zafra" . + +base:location\/EST-Dorpat-00 a base:location; + base:location\#City base:City-Tartu; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Estland; + base:location\#GeoNamesID "588335"; + base:location\#IDLocation "EST-Dorpat-00"; + base:location\#latitude 5.83667e1; + base:location\#longitude 2.67167e1; + base:location\#wikidata "Q13972"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tartu" . + +base:location\/EastAsia a base:location; + base:location\#Continent base:Continent-EastAsia; + base:location\#IDLocation "EastAsia"; + base:location\#latitude 2.0e1; + base:location\#longitude 1.5e2; + base:location\#wikidata "Q27231" . + +base:location\/EasternEurope a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-EasternEurope; + base:location\#GeoNamesID "7729884"; + base:location\#IDLocation "EasternEurope"; + base:location\#latitude 5.3e1; + base:location\#longitude 2.7e1; + base:location\#wikidata "Q27468"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Eastern_Europe" . + +base:location\/FR-Arr-00 a base:location; + base:location\#City base:City-Arras; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-Arr-00"; + base:location\#latitude 5.02892e1; + base:location\#longitude 2.78e0; + base:location\#wikidata "Q131329"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Arras" . + +base:location\/FR-BOUL-01 a base:location; + base:location\#City base:City-Boulogne-sur-Mer; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3031133"; + base:location\#IDLocation "FR-BOUL-01"; + base:location\#latitude 5.07256e1; + base:location\#longitude 1.61389e0; + base:location\#wikidata "Q81997"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Boulogne-sur-Mer" . + +base:location\/FR-CagSM-00 a base:location; + base:location\#City base:City-Cagnes-sur-Mer; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3029227"; + base:location\#IDLocation "FR-CagSM-00"; + base:location\#latitude 4.36636e1; + base:location\#longitude 7.14833e0; + base:location\#wikidata "Q193832"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cagnes-sur-Mer" . + +base:location\/FR-Cherb-00 a base:location; + base:location\#City base:City-Cherbourg\%28Cherbourg-en-Cotentin\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3025466"; + base:location\#IDLocation "FR-Cherb-00"; + base:location\#latitude 4.9639e1; + base:location\#longitude -1.625e0; + base:location\#wikidata "Q3667188"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cherbourg" . + +base:location\/FR-Cibo-00 a base:location; + base:location\#City base:City-Ciboure; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3024979"; + base:location\#IDLocation "FR-Cibo-00"; + base:location\#latitude 4.33853e1; + base:location\#longitude -1.66778e0; + base:location\#wikidata "Q235208"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ciboure" . + +base:location\/FR-Cogn-00 a base:location; + base:location\#City base:City-Cognac; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3024440"; + base:location\#IDLocation "FR-Cogn-00"; + base:location\#latitude 4.56958e1; + base:location\#longitude -3.29167e-1; + base:location\#wikidata "Q285"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cognac,_France" . + +base:location\/FR-LePoul-00 a base:location; + base:location\#City base:City-LePouliguen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-LePoul-00"; + base:location\#latitude 4.72778e1; + base:location\#longitude -2.42917e0; + base:location\#wikidata "https://de.wikipedia.org/wiki/Le_Pouliguen" . + +base:location\/FR-Lemb-00 a base:location; + base:location\#City base:City-Lembach; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3003496"; + base:location\#IDLocation "FR-Lemb-00"; + base:location\#latitude 4.901e1; + base:location\#longitude 7.79e0; + base:location\#wikidata "Q21323"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lembach" . + +base:location\/FR-Lille-00 a base:location; + base:location\#City base:City-Lille; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2998324"; + base:location\#IDLocation "FR-Lille-00"; + base:location\#latitude 5.06319e1; + base:location\#longitude 3.057e0; + base:location\#wikidata "Q648"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lille" . + +base:location\/FR-Limo-00 a base:location; + base:location\#City base:City-Limoges; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-Limo-00"; + base:location\#latitude 4.58344e1; + base:location\#longitude 1.26167e0 . + +base:location\/FR-Ly-00 a base:location; + base:location\#City base:City-Lyon; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2996944"; + base:location\#IDLocation "FR-Ly-00"; + base:location\#latitude 4.576e1; + base:location\#longitude 4.84e0; + base:location\#wikidata "Q456"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lyon" . + +base:location\/FR-Nant-00 a base:location; + base:location\#City base:City-Nantes; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2990969"; + base:location\#IDLocation "FR-Nant-00"; + base:location\#latitude 4.72172e1; + base:location\#longitude -1.55389e0; + base:location\#wikidata "Q12191"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nantes" . + +base:location\/FR-Paris-02 a base:location; + base:location\#City base:City-LeV\%C3\%A9sinet\%2CParis; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2998854"; + base:location\#IDLocation "FR-Paris-02"; + base:location\#latitude 4.88923e1; + base:location\#longitude 2.1331e0; + base:location\#wikidata "Q641607"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Le_V%C3%A9sinet" . + +base:location\/FR-Puja-00 a base:location; + base:location\#City base:City-Pujaudran; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2985077"; + base:location\#IDLocation "FR-Puja-00"; + base:location\#latitude 4.35917e1; + base:location\#longitude 1.15e0; + base:location\#wikidata "Q1004015"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pujaudran" . + +base:location\/FR-Roch-00 a base:location; + base:location\#City base:City-LaRochelle; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3006787"; + base:location\#IDLocation "FR-Roch-00"; + base:location\#latitude 4.61594e1; + base:location\#longitude -1.15139e0; + base:location\#wikidata "Q82185"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/La_Rochelle" . + +base:location\/FR-SaintChin-00 a base:location; + base:location\#City base:City-Saint-Chinian; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2981183"; + base:location\#IDLocation "FR-SaintChin-00"; + base:location\#latitude 4.34219e1; + base:location\#longitude 2.94694e0; + base:location\#wikidata "Q476063"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint-Chinian" . + +base:location\/FR-StGenLav-00 a base:location; + base:location\#City base:City-SaintGenis-Laval; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2979985"; + base:location\#IDLocation "FR-StGenLav-00"; + base:location\#latitude 4.5696e1; + base:location\#longitude 4.793e0; + base:location\#wikidata "Q910089"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint-Genis-Laval" . + +base:location\/FR-StOm-00 a base:location; + base:location\#City base:City-Saint-Omer; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-StOm-00"; + base:location\#latitude 5.07461e1; + base:location\#longitude 2.2617e0; + base:location\#wikidata "Q208793"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint-Omer" . + +base:location\/FR-VdAvr-00 a base:location; + base:location\#City base:City-Villed\%C2\%B4Avray; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2968819"; + base:location\#IDLocation "FR-VdAvr-00"; + base:location\#latitude 4.88261e1; + base:location\#longitude 2.1933e0; + base:location\#wikidata "Q456327"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ville-d%27Avray" . + +base:location\/Fra-DiJeSt-64 a base:location; + base:location\#City base:City-Drancy_internment_camp; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "Fra-DiJeSt-64"; + base:location\#latitude 2.44528e0; + base:location\#longitude 4.89258e1; + base:location\#wikidata "Q247958"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/GB-Roch-00 a base:location; + base:location\#City base:City-Rochdale; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "GB-Roch-00"; + base:location\#latitude 5.361e1; + base:location\#longitude -2.16e0; + base:location\#wikidata "Q474605"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rochdale" . + +base:location\/GER-Ankl-00 a base:location; + base:location\#City base:City-Anklam; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2956018"; + base:location\#IDLocation "GER-Ankl-00"; + base:location\#latitude 5.385e1; + base:location\#longitude 1.36833e1; + base:location\#wikidata "Q488513"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Anklam" . + +base:location\/GER-Bamb-00 a base:location; + base:location\#City base:City-Bamberg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2952984"; + base:location\#IDLocation "GER-Bamb-00"; + base:location\#latitude 4.99e1; + base:location\#longitude 1.09e1; + base:location\#wikidata "Q3936"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bamberg" . + +base:location\/GER-Bonn-00 a base:location; + base:location\#City base:City-Bonn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Bonn-00"; + base:location\#latitude 5.0734e1; + base:location\#longitude 7.09981e0; + base:location\#wikidata "Q186545"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Bonn" . + +base:location\/GER-Braunsch-00 a base:location; + base:location\#City base:City-Braunschweig; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Braunsch-00"; + base:location\#latitude 5.22667e1; + base:location\#longitude 1.05167e1; + base:location\#wikidata "Q2773"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Braunschweig" . + +base:location\/GER-Dach-00 a base:location; + base:location\#City base:City-Dachau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2939623"; + base:location\#IDLocation "GER-Dach-00"; + base:location\#latitude 4.82603e1; + base:location\#longitude 1.14342e1; + base:location\#wikidata "Q7077"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dachau,_Bavaria" . + +base:location\/GER-Danz-00 a base:location; + base:location\#City base:City-Danzig; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Danz-00"; + base:location\#latitude 5.44e1; + base:location\#longitude 1.866e1; + base:location\#wikidata "Q9275784"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Free_City_of_Danzig" . + +base:location\/GER-Dess-00 a base:location; + base:location\#City base:City-Dessau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2937959"; + base:location\#IDLocation "GER-Dess-00"; + base:location\#latitude 5.18333e1; + base:location\#longitude 1.225e1; + base:location\#wikidata "Q3828"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dessau" . + +base:location\/GER-Eber-00 a base:location; + base:location\#City base:City-Ebersbach\%28D\%C3\%B6beln\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2933963"; + base:location\#IDLocation "GER-Eber-00"; + base:location\#State base:State-Saxony; + base:location\#latitude 5.11019e1; + base:location\#longitude 1.31019e1; + base:location\#wikidata "Q554706"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ebersbach_(D%C3%B6beln)" . + +base:location\/GER-Ebersd-00 a base:location; + base:location\#City base:City-Ebersdorf; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Ebersd-00"; + base:location\#State base:State-Th\%C3\%BCringen; + base:location\#latitude 5.04847e1; + base:location\#longitude 1.16672e1; + base:location\#wikidata "Q186545"; + base:location\#wikipedia "Ebersdorf (Saalburg-Ebersdorf)" . + +base:location\/GER-Elberf-00 a base:location; + base:location\#City base:City-Elberfeld\%28Wuppertal\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2931276"; + base:location\#IDLocation "GER-Elberf-00"; + base:location\#latitude 5.12572e1; + base:location\#longitude 7.14917e0; + base:location\#wikidata "Q702259"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Elberfeld" . + +base:location\/GER-Erx-00 a base:location; + base:location\#City base:City-Erxleben; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2929244"; + base:location\#IDLocation "GER-Erx-00"; + base:location\#latitude 5.275e1; + base:location\#longitude 1.17667e1; + base:location\#wikidata "Q573464"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Erxleben,_B%C3%B6rde" . + +base:location\/GER-Freib-00 a base:location; + base:location\#City base:City-FreiburgimBreisgau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2925177"; + base:location\#IDLocation "GER-Freib-00"; + base:location\#latitude 4.79833e1; + base:location\#longitude 7.85e0; + base:location\#wikidata "Q2833"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Freiburg_im_Breisgau" . + +base:location\/GER-Freud-00 a base:location; + base:location\#City base:City-Freudenstadt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2924894"; + base:location\#IDLocation "GER-Freud-00"; + base:location\#latitude 4.84633e1; + base:location\#longitude 8.411110000000001e0; + base:location\#wikidata "Q82838"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Freudenstadt" . + +base:location\/GER-GOSLAR-00 a base:location; + base:location\#City base:City-Goslar; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2918840"; + base:location\#IDLocation "GER-GOSLAR-00"; + base:location\#State base:State-LowerSaxony; + base:location\#latitude 5.19072e1; + base:location\#longitude 1.043e1; + base:location\#wikidata "Q3896"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Goslar" . + +base:location\/GER-Gies-00 a base:location; + base:location\#City base:City-Gie\%C3\%9Fen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2920512"; + base:location\#IDLocation "GER-Gies-00"; + base:location\#latitude 5.05872e1; + base:location\#longitude 8.66972e0; + base:location\#wikidata "Q3874"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Giessen" . + +base:location\/GER-Gilch-00 a base:location; + base:location\#City base:City-Gilching; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2920433"; + base:location\#IDLocation "GER-Gilch-00"; + base:location\#latitude 4.81167e1; + base:location\#longitude 1.13e1; + base:location\#wikidata "Q552131"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gilching" . + +base:location\/GER-GmTeg-00 a base:location; + base:location\#City base:City-GmundamTegernsee; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2919717"; + base:location\#IDLocation "GER-GmTeg-00"; + base:location\#State base:State-Bavaria; + base:location\#latitude 4.775e1; + base:location\#longitude 1.17333e1; + base:location\#wikidata "Q31662"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gmund_am_Tegernsee" . + +base:location\/GER-HN-00 a base:location; + base:location\#City base:City-Heilbronn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2907669 "; + base:location\#IDLocation "GER-HN-00"; + base:location\#State base:State-Baden-W\%C3\%BCrttemberg; + base:location\#latitude 4.91417e1; + base:location\#longitude 9.22222e0; + base:location\#wikidata "Q715"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Heilbronn" . + +base:location\/GER-Hanau-00 a base:location; + base:location\#City base:City-Hanau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2911007"; + base:location\#IDLocation "GER-Hanau-00"; + base:location\#State base:State-Hessen; + base:location\#latitude 5.01328e1; + base:location\#longitude 8.91694e0; + base:location\#wikidata "Q3802"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hanau" . + +base:location\/GER-HerschAmm-00 a base:location; + base:location\#City base:City-HerrschingamAmmersee; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2905604"; + base:location\#IDLocation "GER-HerschAmm-00"; + base:location\#State base:State-Bavaria; + base:location\#latitude 4.8e1; + base:location\#longitude 1.11833e1; + base:location\#wikidata "Q170020"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Herrsching_am_Ammersee" . + +base:location\/GER-KoenW-00 a base:location; + base:location\#City base:City-K\%C3\%B6nigswinter; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2885734"; + base:location\#IDLocation "GER-KoenW-00"; + base:location\#latitude 5.06736e1; + base:location\#longitude 7.19472e0; + base:location\#wikidata "Q12444"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/K%C3%B6nigswinter" . + +base:location\/GER-Kress a base:location; + base:location\#City base:City-KressbronnamBodensee; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2884344"; + base:location\#IDLocation "GER-Kress"; + base:location\#latitude 4.75958e1; + base:location\#longitude 9.6e0; + base:location\#wikidata "Q557658"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kressbronn_am_Bodensee" . + +base:location\/GER-Muens-00 a base:location; + base:location\#City base:City-M\%C3\%BCnster; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2867543"; + base:location\#IDLocation "GER-Muens-00"; + base:location\#latitude 5.19625e1; + base:location\#longitude 7.62556e0; + base:location\#wikidata "Q2742"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/M%C3%BCnster" . + +base:location\/GER-Pass-00 a base:location; + base:location\#City base:City-Passau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2855328"; + base:location\#IDLocation "GER-Pass-00"; + base:location\#latitude 4.85667e1; + base:location\#longitude 1.34667e1; + base:location\#wikidata "Q4190"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Passau" . + +base:location\/GER-Radeb-00 a base:location; + base:location\#City base:City-Radebeul; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2851077"; + base:location\#IDLocation "GER-Radeb-00"; + base:location\#State base:State-Saxony; + base:location\#latitude 5.11e1; + base:location\#longitude 1.365e1; + base:location\#wikidata "Q8762"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Radebeul" . + +base:location\/GER-Reg-00 a base:location; + base:location\#City base:City-Regensburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Reg-00"; + base:location\#latitude 4.90153e1; + base:location\#longitude 1.21018e1; + base:location\#wikidata "Q2978" . + +base:location\/GER-Rost-00 a base:location; + base:location\#City base:City-Rostock; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2844588"; + base:location\#IDLocation "GER-Rost-00"; + base:location\#latitude 5.40882e1; + base:location\#longitude 1.21347e1; + base:location\#wikidata "Q2861"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rostock" . + +base:location\/GER-Rott-00 a base:location; + base:location\#City base:City-Rottach-Egern; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2843775"; + base:location\#IDLocation "GER-Rott-00"; + base:location\#latitude 4.76951e1; + base:location\#longitude 1.17699e1; + base:location\#wikidata "Q504255"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rottach-Egern" . + +base:location\/GER-Saarb-00 a base:location; + base:location\#City base:City-Saarbr\%C3\%BCcken; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2842647"; + base:location\#IDLocation "GER-Saarb-00"; + base:location\#latitude 4.92327e1; + base:location\#longitude 6.99619e0; + base:location\#wikidata "Q1724"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saarbr%C3%BCcken" . + +base:location\/GER-SchwedtOd-00 a base:location; + base:location\#City base:City-SchwedtanderOder; + base:location\#Continent base:Continent-Europa; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-SchwedtOd-00"; + base:location\#latitude 5.30556e1; + base:location\#longitude 1.42878e1; + base:location\#wikidata "https://www.wikidata.org/wiki/Q16008"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Schwedt/Oder" . + +base:location\/GER-Seelz-00 a base:location; + base:location\#City base:City-Seelze; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2833641"; + base:location\#IDLocation "GER-Seelz-00"; + base:location\#latitude 5.23961e1; + base:location\#longitude 9.59806e0; + base:location\#wikidata "Q16052"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Seelze" . + +base:location\/GER-Tettn-00 a base:location; + base:location\#City base:City-Tettnang; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2823368"; + base:location\#IDLocation "GER-Tettn-00"; + base:location\#latitude 4.76708e1; + base:location\#longitude 9.5875e0; + base:location\#wikidata "Q506323"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tettnang" . + +base:location\/GER-Ulm-00 a base:location; + base:location\#City base:City-Ulm; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2820256"; + base:location\#IDLocation "GER-Ulm-00"; + base:location\#latitude 4.84e1; + base:location\#longitude 9.98333e0; + base:location\#wikidata "Q3012"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ulm" . + +base:location\/GER-Wins-00 a base:location; + base:location\#City base:City-Winsen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2807845"; + base:location\#IDLocation "GER-Wins-00"; + base:location\#latitude 5.33651e1; + base:location\#longitude 1.02091e1; + base:location\#wikidata "Q16000"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Winsen_(Luhe)" . + +base:location\/GR-Athen-00 a base:location; + base:location\#City base:City-Athens; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Greece; + base:location\#GeoNamesID "264371"; + base:location\#IDLocation "GR-Athen-00"; + base:location\#latitude 3.79778e1; + base:location\#longitude 2.37278e1; + base:location\#wikidata "Q1524"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Athens" . + +base:location\/HU-Irsa-00 a base:location; + base:location\#City base:City-Albertirsa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3056326"; + base:location\#IDLocation "HU-Irsa-00"; + base:location\#latitude 4.725e1; + base:location\#longitude 1.96167e1; + base:location\#wikidata "Q578823"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Albertirsa" . + +base:location\/IDN-Jaka-00 a base:location; + base:location\#City base:City-Jakarta; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Indonesia; + base:location\#GeoNamesID "1642911"; + base:location\#IDLocation "IDN-Jaka-00"; + base:location\#latitude -6.175e0; + base:location\#longitude 1.06829e2; + base:location\#wikidata "Q3630"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jakarta" . + +base:location\/IE-Cork-00 a base:location; + base:location\#City base:City-Cork; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#IDLocation "IE-Cork-00"; + base:location\#latitude 5.18972e1; + base:location\#longitude -8.47306e0; + base:location\#wikidata "Q36647"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cork_(city)" . + +base:location\/IE-Grang-00 a base:location; + base:location\#City base:City-Grange; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#IDLocation "IE-Grang-00"; + base:location\#State base:State-CountySligo; + base:location\#latitude 5.44e1; + base:location\#longitude -8.5167e0; + base:location\#wikidata "Q3776988"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grange,_County_Sligo" . + +base:location\/IE-SligCounty-00 a base:location; + base:location\#City base:City-SligoCounty; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#GeoNamesID "2961422"; + base:location\#IDLocation "IE-SligCounty-00"; + base:location\#State base:State-Limerick; + base:location\#latitude 5.425e1; + base:location\#longitude -8.66667e0; + base:location\#wikidata "Q179325"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/County_Sligo" . + +base:location\/IN-Amr-00 a base:location; + base:location\#City base:City-Amritsar; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#GeoNamesID "1278710"; + base:location\#IDLocation "IN-Amr-00"; + base:location\#State base:State-Punjab; + base:location\#latitude 3.164e1; + base:location\#longitude 7.486e1; + base:location\#wikidata "Q48403"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Amritsar" . + +base:location\/IN-Barei-00 a base:location; + base:location\#City base:City-Bareilly; + base:location\#Continent base:Continent-EastAsia; + base:location\#Country base:Country-India; + base:location\#IDLocation "IN-Barei-00"; + base:location\#latitude 2.83622e1; + base:location\#longitude 7.942e1; + base:location\#wikidata "Q1797378"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Bareilly" . + +base:location\/IN-Del-00 a base:location; + base:location\#City base:City-Delhi; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#GeoNamesID "1273294"; + base:location\#IDLocation "IN-Del-00"; + base:location\#latitude 2.86e1; + base:location\#longitude 7.72e1; + base:location\#wikidata "Q1353"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Delhi" . + +base:location\/IN-Karn-00 a base:location; + base:location\#City base:City-Karnal; + base:location\#Continent base:Continent-EastAsia; + base:location\#Country base:Country-India; + base:location\#IDLocation "IN-Karn-00"; + base:location\#latitude 2.96814e1; + base:location\#longitude 7.69892e1; + base:location\#wikidata "Q256194"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Karnal" . + +base:location\/ISR-Gad-00 a base:location; + base:location\#City base:City-Gederah; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Israel; + base:location\#IDLocation "ISR-Gad-00"; + base:location\#latitude 3.18163e1; + base:location\#longitude 3.4777e1; + base:location\#wikidata "Q921505" . + +base:location\/IT-Blevo-00 a base:location; + base:location\#City base:City-Blevo; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3178229"; + base:location\#IDLocation "IT-Blevo-00"; + base:location\#State base:State-LakeComo; + base:location\#latitude 4.6e1; + base:location\#longitude 9.26667e0; + base:location\#wikidata "Q15523"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lake_Como" . + +base:location\/IT-Cagli-00 a base:location; + base:location\#City base:City-Cagliari; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "2525473"; + base:location\#IDLocation "IT-Cagli-00"; + base:location\#latitude 3.92167e1; + base:location\#longitude 9.116669999999999e0; + base:location\#wikidata "Q1897"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cagliari" . + +base:location\/IT-CitCast-00 a base:location; + base:location\#City base:City-Citt\%C3\%A0diCastello; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-ITaly; + base:location\#IDLocation "IT-CitCast-00"; + base:location\#latitude 4.34667e1; + base:location\#longitude 1.22333e1; + base:location\#wikidata "Q20413"; + base:location\#wikipedia "https://it.wikipedia.org/wiki/Citt%C3%A0_di_Castello" . + +base:location\/IT-Fermo-00 a base:location; + base:location\#City base:City-Fermo; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3177099"; + base:location\#IDLocation "IT-Fermo-00"; + base:location\#latitude 4.31667e1; + base:location\#longitude 1.37167e1; + base:location\#wikidata "Q13139"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Fermo" . + +base:location\/IT-Ferr-00 a base:location; + base:location\#City base:City-Ferrara; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3177090"; + base:location\#IDLocation "IT-Ferr-00"; + base:location\#latitude 4.48333e1; + base:location\#longitude 1.16167e1; + base:location\#wikidata "Q13362"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ferrara" . + +base:location\/IT-Meran-00 a base:location; + base:location\#City base:City-Merano; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3173577"; + base:location\#IDLocation "IT-Meran-00"; + base:location\#State base:State-Trentino; + base:location\#latitude 4.66719e1; + base:location\#longitude 1.11617e1; + base:location\#wikidata "Q131605"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Merano" . + +base:location\/IT-Parm-00 a base:location; + base:location\#City base:City-Parma; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3171457"; + base:location\#IDLocation "IT-Parm-00"; + base:location\#latitude 4.48015e1; + base:location\#longitude 1.0328e1; + base:location\#wikidata "Q2683"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Parma" . + +base:location\/IT-Pavia-00 a base:location; + base:location\#City base:City-Pavia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3171366"; + base:location\#IDLocation "IT-Pavia-00"; + base:location\#latitude 4.51833e1; + base:location\#longitude 9.15e0; + base:location\#wikidata "Q6259"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pavia" . + +base:location\/IT-Vares-00 a base:location; + base:location\#City base:City-Varese; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3164699"; + base:location\#IDLocation "IT-Vares-00"; + base:location\#latitude 4.58167e1; + base:location\#longitude 8.83333e0; + base:location\#wikidata "Q6285"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Varese" . + +base:location\/IT-Verc-00 a base:location; + base:location\#City base:City-Vercelli; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3164565"; + base:location\#IDLocation "IT-Verc-00"; + base:location\#latitude 4.53167e1; + base:location\#longitude 8.41667e0; + base:location\#wikidata "Q5990"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vercelli" . + +base:location\/IT-Vogh-00 a base:location; + base:location\#City base:City-Voghera; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3163995"; + base:location\#IDLocation "IT-Vogh-00"; + base:location\#latitude 4.49925e1; + base:location\#longitude 9.009169999999999e0; + base:location\#wikidata "Q39981"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Voghera" . + +base:location\/JP-Naga-00 a base:location; + base:location\#City base:City-Nagasaki; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Japan; + base:location\#IDLocation "JP-Naga-00"; + base:location\#latitude 3.27447e1; + base:location\#longitude 1.29874e2; + base:location\#wikidata "Q38234"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nagasaki" . + +base:location\/KR-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Korea; + base:location\#IDLocation "KR-00"; + base:location\#latitude 3.83167e1; + base:location\#longitude 1.27233e2; + base:location\#wikidata "Q18097"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Korea" . + +base:location\/LK-Kandy-00 a base:location; + base:location\#City base:City-Kandy; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-SriLanka; + base:location\#IDLocation "LK-Kandy-00"; + base:location\#latitude 7.29511e0; + base:location\#longitude 8.06371e1; + base:location\#wikidata "Q203197" . + +base:location\/LK-NewEll-00 a base:location; + base:location\#City base:City-NuwaraEliya; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-SriLanka; + base:location\#IDLocation "LK-NewEll-00"; + base:location\#latitude 6.97046e0; + base:location\#longitude 8.077419999999999e1; + base:location\#wikidata "Q1583950" . + +base:location\/LV-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#IDLocation "LV-00"; + base:location\#latitude 5.68689e1; + base:location\#longitude 2.48411e1; + base:location\#wikidata "Q211" . + +base:location\/LV-Libau-00 a base:location; + base:location\#City base:City-Liep\%C4\%81ja; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#GeoNamesID "457954"; + base:location\#IDLocation "LV-Libau-00"; + base:location\#latitude 5.65125e1; + base:location\#longitude 2.10125e1; + base:location\#wikidata "Q167668"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Liep%C4%81ja" . + +base:location\/LV-Mitau-00 a base:location; + base:location\#City base:City-Jelgava; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#GeoNamesID "459279"; + base:location\#IDLocation "LV-Mitau-00"; + base:location\#latitude 5.665e1; + base:location\#longitude 2.37125e1; + base:location\#wikidata "Q179830"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jelgava" . + +base:location\/LV-Trik-00 a base:location; + base:location\#City base:City-Trik\%C4\%81taParish; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#IDLocation "LV-Trik-00"; + base:location\#latitude 5.75475e1; + base:location\#longitude 2.56991e1; + base:location\#wikidata "Q1840703"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Trik%C4%81ta_Parish" . + +base:location\/MC-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Monaco; + base:location\#GeoNamesID "2993457"; + base:location\#IDLocation "MC-00"; + base:location\#latitude 4.37333e1; + base:location\#longitude 7.41667e0; + base:location\#wikidata "Q235"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Monaco" . + +base:location\/MM-Mawl-00 a base:location; + base:location\#City base:City-Mawlamyine; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Myanmar; + base:location\#IDLocation "MM-Mawl-00"; + base:location\#State base:State-MonState; + base:location\#latitude 1.64847e1; + base:location\#longitude 9.76258e1; + base:location\#wikidata "Q685941" . + +base:location\/MX-Pueb-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Mexico; + base:location\#GeoNamesID "3521082"; + base:location\#IDLocation "MX-Pueb-00"; + base:location\#State base:State-Puebla; + base:location\#latitude 1.90036e1; + base:location\#longitude -9.789109999999999e1; + base:location\#wikidata "Q79923"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Puebla" . + +base:location\/MX-Veracr-00 a base:location; + base:location\#City base:City-Veracruz; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Mexico; + base:location\#GeoNamesID "3514783"; + base:location\#IDLocation "MX-Veracr-00"; + base:location\#State base:State-Veracruz; + base:location\#latitude 1.91903e1; + base:location\#longitude -9.61533e1; + base:location\#wikidata "Q173270"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Veracruz_(city)" . + +base:location\/MiddleEast a base:location; + base:location\#Continent base:Continent-MiddleEast; + base:location\#Country base:Country-; + base:location\#IDLocation "MiddleEast"; + base:location\#State base:State-MiddleEast; + base:location\#latitude 2.6e1; + base:location\#longitude 5.0e1; + base:location\#wikidata "Q7204"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Middle_East" . + +base:location\/Mol-DiJeSt-5 a base:location; + base:location\#City base:City-H\%C3\%AEnce\%C8\%99ti; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Moldova; + base:location\#IDLocation "Mol-DiJeSt-5"; + base:location\#latitude 4.68258e1; + base:location\#longitude 2.85936e1; + base:location\#wikidata "Q1141853"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/NL-VELP-00 a base:location; + base:location\#City base:City-Velp; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2745677"; + base:location\#IDLocation "NL-VELP-00"; + base:location\#State base:State-Gelderland; + base:location\#latitude 5.19947e1; + base:location\#longitude 5.97583e0; + base:location\#wikidata "Q2375289"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Velp,_Gelderland" . + +base:location\/NLD-Dordr-00 a base:location; + base:location\#City base:City-Dordrecht; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Dordr-00"; + base:location\#latitude 5.17958e1; + base:location\#longitude 4.67833e0; + base:location\#wikidata "Q26421"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dordrecht" . + +base:location\/NLD-Friesl-00 a base:location; + base:location\#City base:City-Friesland; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Friesl-00"; + base:location\#latitude 5.32014e1; + base:location\#longitude 5.8e0; + base:location\#wikidata "Q770"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Friesland" . + +base:location\/NLD-Haarl-00 a base:location; + base:location\#City base:City-Haarelm; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Haarl-00"; + base:location\#latitude 5.23833e1; + base:location\#longitude 4.63333e0; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Haarlem" . + +base:location\/NLD-Leid-00 a base:location; + base:location\#City base:City-Leiden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Leid-00"; + base:location\#latitude 5.216e1; + base:location\#longitude 4.49e0; + base:location\#wikidata "Q43631"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leiden" . + +base:location\/NLD-Utre-00 a base:location; + base:location\#City base:City-Utrecht; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#IDLocation "NLD-Utre-00"; + base:location\#latitude 5.20908e1; + base:location\#longitude 5.12167e0; + base:location\#wikidata "Q776"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Utrecht" . + +base:location\/NOR-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Norway; + base:location\#GeoNamesID "3144096"; + base:location\#IDLocation "NOR-00"; + base:location\#latitude 6.2e1; + base:location\#longitude 1.0e1; + base:location\#wikidata "Q20"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/Norway" . + +base:location\/NOR-Bergen-00 a base:location; + base:location\#City base:City-Bergen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Norway; + base:location\#GeoNamesID "3161732"; + base:location\#IDLocation "NOR-Bergen-00"; + base:location\#State base:State-Vestland; + base:location\#latitude 6.038e1; + base:location\#longitude 5.34e0; + base:location\#wikidata "Q26793"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bergen" . + +base:location\/NZ-Bluff-00 a base:location; + base:location\#City base:City-Bluff; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Bluff-00"; + base:location\#latitude -4.65992e1; + base:location\#longitude 1.68344e2; + base:location\#wikidata "Q152028" . + +base:location\/NZ-Gisb-00 a base:location; + base:location\#City base:City-Gisbourn; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Gisb-00"; + base:location\#latitude -3.86625e1; + base:location\#longitude 1.78018e2 . + +base:location\/NZ-Haw-00 a base:location; + base:location\#City base:City-H\%C4\%81wera; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Haw-00"; + base:location\#latitude -3.95894e1; + base:location\#longitude 1.74284e2; + base:location\#wikidata "Q998452" . + +base:location\/NZ-Inv-00 a base:location; + base:location\#City base:City-Invercargill; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Inv-00"; + base:location\#latitude -4.64153e1; + base:location\#longitude 1.68348e2; + base:location\#wikidata "Q31805" . + +base:location\/NZ-Lytt-00 a base:location; + base:location\#City base:City-Lyttelton; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Lytt-00"; + base:location\#latitude -4.36e1; + base:location\#longitude 1.72717e2; + base:location\#wikidata "Q911909" . + +base:location\/NZ-NewPly-00 a base:location; + base:location\#City base:City-NewPlymouth; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-NewPly-00"; + base:location\#latitude -3.90556e1; + base:location\#longitude 1.74075e2; + base:location\#wikidata "Q212984" . + +base:location\/NZ-Oam-00 a base:location; + base:location\#City base:City-Oamaru; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Oam-00"; + base:location\#latitude -4.50975e1; + base:location\#longitude 1.70971e2; + base:location\#wikidata "Q4782" . + +base:location\/New\+Brunswick a base:location; + base:location\#City base:City-NewBrunswick; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5101717"; + base:location\#IDLocation "New Brunswick"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.04866e1; + base:location\#longitude -7.44444e1; + base:location\#wikidata "Q138338"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Brunswick,_New_Jersey" . + +base:location\/PL-Boch-00 a base:location; + base:location\#City base:City-Bochnia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Boch-00"; + base:location\#latitude 4.99833e1; + base:location\#longitude 2.04333e1; + base:location\#wikidata "Q815903" . + +base:location\/PL-Garn-00 a base:location; + base:location\#City base:City-Garnek; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3099477"; + base:location\#IDLocation "PL-Garn-00"; + base:location\#latitude 5.08833e1; + base:location\#longitude 1.945e1; + base:location\#wikidata "Q291250"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Garnek,_Silesian_Voivodeship" . + +base:location\/PL-Glog-00 a base:location; + base:location\#City base:City-G\%C5\%82og\%C3\%B3w; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3099213"; + base:location\#IDLocation "PL-Glog-00"; + base:location\#latitude 5.16589e1; + base:location\#longitude 1.60803e1; + base:location\#wikidata "Q66013"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/G%C5%82og%C3%B3w" . + +base:location\/PL-Grudz-00 a base:location; + base:location\#City base:City-Grudzi\%C4\%85dz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3098218"; + base:location\#IDLocation "PL-Grudz-00"; + base:location\#latitude 5.34875e1; + base:location\#longitude 1.8755e1; + base:location\#wikidata "Q123511"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grudzi%C4%85dz" . + +base:location\/PL-Lipn-00 a base:location; + base:location\#City base:City-Lipno; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3093268"; + base:location\#IDLocation "PL-Lipn-00"; + base:location\#latitude 5.285e1; + base:location\#longitude 1.91667e1; + base:location\#wikidata "Q324922"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lipno,_Lipno_County" . + +base:location\/PL-Loeb-00 a base:location; + base:location\#City base:City-G\%C5\%82ubczyce; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3099174"; + base:location\#IDLocation "PL-Loeb-00"; + base:location\#latitude 5.02e1; + base:location\#longitude 1.78333e1; + base:location\#wikidata "Q717947"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/G%C5%82ubczyce" . + +base:location\/PL-Marienw-00 a base:location; + base:location\#City base:City-Kwidzyn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3094086"; + base:location\#IDLocation "PL-Marienw-00"; + base:location\#latitude 5.37333e1; + base:location\#longitude 1.89333e1; + base:location\#wikidata "Q326582"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kwidzyn" . + +base:location\/PL-Nowy-00 a base:location; + base:location\#City base:City-NowyS\%C4\%85cz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Nowy-00"; + base:location\#latitude 4.9625e1; + base:location\#longitude 2.06956e1; + base:location\#wikidata "Q802" . + +base:location\/PL-Posen-00 a base:location; + base:location\#City base:City-Posen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Posen-00"; + base:location\#latitude 5.24e1; + base:location\#longitude 1.69167e1; + base:location\#wikidata "Q268"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Province_of_Posen" . + +base:location\/PL-Prz-00 a base:location; + base:location\#City base:City-Przemy\%C5\%9Bl; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Prz-00"; + base:location\#latitude 4.97822e1; + base:location\#longitude 2.27744e1; + base:location\#wikidata "Q208473" . + +base:location\/PL-Rzes-00 a base:location; + base:location\#City base:City-Rzesz\%C3\%B3w; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Rzes-00"; + base:location\#latitude 5.00336e1; + base:location\#longitude 2.20047e1; + base:location\#wikidata "Q598" . + +base:location\/PL-Sprott-00 a base:location; + base:location\#City base:City-Szprotawa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3083632"; + base:location\#IDLocation "PL-Sprott-00"; + base:location\#latitude 5.1565e1; + base:location\#longitude 1.55375e1; + base:location\#wikidata "Q165066"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Szprotawa" . + +base:location\/PL-Swid-00 a base:location; + base:location\#City base:City-\%C5\%9Awidnica; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3084093"; + base:location\#IDLocation "PL-Swid-00"; + base:location\#latitude 5.085e1; + base:location\#longitude 1.64833e1; + base:location\#wikidata "Q387396"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/%C5%9Awidnica" . + +base:location\/PL-Wola-00 a base:location; + base:location\#City base:City-Wola; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "755330"; + base:location\#IDLocation "PL-Wola-00"; + base:location\#latitude 5.22333e1; + base:location\#longitude 2.09572e1; + base:location\#wikidata "Q1020136"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wola" . + +base:location\/PRU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Prussia; + base:location\#IDLocation "PRU-00"; + base:location\#State base:State-Prussia; + base:location\#latitude 5.252e1; + base:location\#longitude 1.3405e1; + base:location\#wikidata "Q38872" . + +base:location\/PRY-Assunc-00 a base:location; + base:location\#City base:City-Asunci\%C3\%B3n; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Paraguay; + base:location\#GeoNamesID "3439389"; + base:location\#IDLocation "PRY-Assunc-00"; + base:location\#latitude -2.52819e1; + base:location\#longitude -5.7635e1; + base:location\#wikidata "Q2933"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Asunci%C3%B3n" . + +base:location\/PS-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Palestine; + base:location\#IDLocation "PS-00"; + base:location\#latitude 3.2e1; + base:location\#longitude 3.525e1; + base:location\#wikidata "Q23792" . + +base:location\/PT-Alga-00 a base:location; + base:location\#City base:City-Algarve; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2271989"; + base:location\#IDLocation "PT-Alga-00"; + base:location\#latitude 3.72233e1; + base:location\#longitude -8.064590000000001e0; + base:location\#wikidata "Q26831"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Algarve" . + +base:location\/PT-Arn-00 a base:location; + base:location\#City base:City-Arnoia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#IDLocation "PT-Arn-00"; + base:location\#latitude 4.13671e1; + base:location\#longitude -8.015890000000001e0; + base:location\#wikidata "Q5049748" . + +base:location\/PT-Braga-00 a base:location; + base:location\#City base:City-Braga; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2742032"; + base:location\#IDLocation "PT-Braga-00"; + base:location\#latitude 4.155e1; + base:location\#longitude -8.43e0; + base:location\#wikidata "Q83247"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Braga" . + +base:location\/PT-Cedof-00 a base:location; + base:location\#City base:City-Cedofeita\%28Porto\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "8012855"; + base:location\#IDLocation "PT-Cedof-00"; + base:location\#latitude 4.11558e1; + base:location\#longitude -8.623329999999999e0; + base:location\#wikidata "Q1052596"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cedofeita" . + +base:location\/PT-FdD-00 a base:location; + base:location\#City base:City-FozdoDouro\%28Porto\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2739336"; + base:location\#IDLocation "PT-FdD-00"; + base:location\#latitude 4.11538e1; + base:location\#longitude -8.67564e0; + base:location\#wikidata "Q1397371"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Foz_do_Douro" . + +base:location\/PT-Minho-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2737656"; + base:location\#IDLocation "PT-Minho-00"; + base:location\#State base:State-Minho; + base:location\#latitude 4.18184e1; + base:location\#longitude -8.4155e0; + base:location\#wikidata "Q512317"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Minho_Province" . + +base:location\/PT-StMar-00 a base:location; + base:location\#City base:City-SantaMaria\%28Tavira\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2262744"; + base:location\#IDLocation "PT-StMar-00"; + base:location\#latitude 3.71166e1; + base:location\#longitude -7.65e0; + base:location\#wikidata "Q372840"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tavira" . + +base:location\/PT-Viz-00 a base:location; + base:location\#City base:City-Viseu; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2732265"; + base:location\#IDLocation "PT-Viz-00"; + base:location\#latitude 4.06576e1; + base:location\#longitude -7.91452e0; + base:location\#wikidata "Q117676"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Viseu" . + +base:location\/Pol-DiJeSt-121 a base:location; + base:location\#City base:City-Mszczon\%C3\%B3w; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-121"; + base:location\#latitude 5.19742e1; + base:location\#longitude 2.05267e1; + base:location\#wikidata "Q477955"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-138 a base:location; + base:location\#City base:City-Otwock; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-138"; + base:location\#latitude 5.21167e1; + base:location\#longitude 2.12667e1; + base:location\#wikidata "Q745059"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-86 a base:location; + base:location\#City base:City-Podg\%C3\%B3rze; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-86"; + base:location\#latitude 5.00416e1; + base:location\#longitude 2.00177e1; + base:location\#wikidata "Q2553877"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-95 a base:location; + base:location\#City base:City-Bi\%C5\%82goraj; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-95"; + base:location\#latitude 5.055e1; + base:location\#longitude 2.27333e1; + base:location\#wikidata "Q319445"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rom-DiJeSt-97 a base:location; + base:location\#City base:City-B\%C3\%A2rlad; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-97"; + base:location\#latitude 4.62167e1; + base:location\#longitude 2.76667e1; + base:location\#wikidata "Q335868"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rus-DiJeSt-147 a base:location; + base:location\#City base:City-Rostov-on-Don; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#IDLocation "Rus-DiJeSt-147"; + base:location\#latitude 4.72225e1; + base:location\#longitude 3.971e1; + base:location\#wikidata "Q908"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/SCT-Dundee-00 a base:location; + base:location\#City base:City-Dundee; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2650752"; + base:location\#IDLocation "SCT-Dundee-00"; + base:location\#latitude 5.64611e1; + base:location\#longitude -2.96944e0; + base:location\#wikidata "Q123709"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dundee" . + +base:location\/SCT-Inv-00 a base:location; + base:location\#City base:City-Inverurie; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2646073"; + base:location\#IDLocation "SCT-Inv-00"; + base:location\#latitude 5.728e1; + base:location\#longitude -2.38e0; + base:location\#wikidata "Q1017537"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Inverurie" . + +base:location\/SCT-Perth-00 a base:location; + base:location\#City base:City-Perth; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#IDLocation "SCT-Perth-00"; + base:location\#latitude 5.63958e1; + base:location\#longitude -3.43333e0; + base:location\#wikidata "Q203000"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Perth,_Scotland" . + +base:location\/SE-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Sweden; + base:location\#IDLocation "SE-00"; + base:location\#latitude 6.3e1; + base:location\#longitude 1.6e1; + base:location\#wikidata "Q34" . + +base:location\/SE-Kalm-00 a base:location; + base:location\#City base:City-Kalmar; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2702261"; + base:location\#IDLocation "SE-Kalm-00"; + base:location\#latitude 5.66614e1; + base:location\#longitude 1.63628e1; + base:location\#wikidata "Q26345"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kalmar" . + +base:location\/SE-Livo-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Sweden; + base:location\#IDLocation "SE-Livo-00"; + base:location\#State base:State-Livonia; + base:location\#latitude 5.78622e1; + base:location\#longitude 2.59672e1; + base:location\#wikidata "Q183464"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Livonia" . + +base:location\/SL-Wind-00 a base:location; + base:location\#City base:City-SlovenjGradec; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovenia; + base:location\#GeoNamesID "3190536"; + base:location\#IDLocation "SL-Wind-00"; + base:location\#latitude 4.65103e1; + base:location\#longitude 1.50806e1; + base:location\#wikidata "Q15918"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Slovenj_Gradec" . + +base:location\/SRB-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Serbia; + base:location\#IDLocation "SRB-00"; + base:location\#latitude 4.395e1; + base:location\#longitude 2.09333e1; + base:location\#wikidata "Q403" . + +base:location\/SU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-SovietUnion; + base:location\#IDLocation "SU-00"; + base:location\#State base:State-SovietUnion; + base:location\#latitude 5.58185e1; + base:location\#longitude 3.7607e1; + base:location\#wikidata "Q15180" . + +base:location\/SVK-Pez-00 a base:location; + base:location\#City base:City-Pezinok; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#GeoNamesID "3058210"; + base:location\#IDLocation "SVK-Pez-00"; + base:location\#latitude 4.82892e1; + base:location\#longitude 1.72692e1; + base:location\#wikidata "Q659424"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pezinok" . + +base:location\/Scandinavia a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scandinavia; + base:location\#IDLocation "Scandinavia"; + base:location\#latitude 6.3e1; + base:location\#longitude 1.4e1; + base:location\#wikidata "Q21195"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Scandinavia" . + +base:location\/UA-Berez-00 a base:location; + base:location\#City base:City-Berezhany; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Berez-00"; + base:location\#latitude 4.94458e1; + base:location\#longitude 2.49361e1; + base:location\#wikidata "Q793424" . + +base:location\/UA-Podo-00 a base:location; + base:location\#City base:City-Podolia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Podo-00"; + base:location\#latitude 4.93309e1; + base:location\#longitude 3.18313e1; + base:location\#wikidata "Q171784"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tulchyn" . + +base:location\/UA-Polt-00 a base:location; + base:location\#City base:City-Poltava; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Polt-00"; + base:location\#latitude 4.95867e1; + base:location\#longitude 3.45608e1; + base:location\#wikidata "Q156747" . + +base:location\/UA-Yekat-00 a base:location; + base:location\#City base:City-Yekaterinoslav; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Yekat-00"; + base:location\#latitude 4.845e1; + base:location\#longitude 3.49833e1; + base:location\#wikidata "Q49518"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Yekaterinoslav_Governorate" . + +base:location\/UK-Blean-00 a base:location; + base:location\#City base:City-Blean; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2655365"; + base:location\#IDLocation "UK-Blean-00"; + base:location\#latitude 5.1307e1; + base:location\#longitude 1.043e0; + base:location\#wikidata "Q2741069"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Blean" . + +base:location\/UK-CROY-00 a base:location; + base:location\#City base:City-Croydon; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2651817"; + base:location\#IDLocation "UK-CROY-00"; + base:location\#State base:State-London; + base:location\#latitude 5.13727e1; + base:location\#longitude -1.099e-1; + base:location\#wikidata "Q2213391"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Croydon" . + +base:location\/UK-Caldb-00 a base:location; + base:location\#City base:City-Caldbeck; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2654034"; + base:location\#IDLocation "UK-Caldb-00"; + base:location\#latitude 5.475e1; + base:location\#longitude -3.0e0; + base:location\#wikidata "Q2002646"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Caldbeck" . + +base:location\/UK-Cumb-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#GeoNamesID "2651716"; + base:location\#IDLocation "UK-Cumb-00"; + base:location\#State base:State-Cumberland; + base:location\#latitude 5.475e1; + base:location\#longitude -3.0e0; + base:location\#wikidata "Q23360"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cumberland" . + +base:location\/UK-Dov-00 a base:location; + base:location\#City base:City-Dover; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2651048"; + base:location\#IDLocation "UK-Dov-00"; + base:location\#latitude 5.11274e1; + base:location\#longitude 1.3122e0; + base:location\#wikidata "Q179224"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dover" . + +base:location\/UK-Egh-00 a base:location; + base:location\#City base:City-Egham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2650188"; + base:location\#IDLocation "UK-Egh-00"; + base:location\#latitude 5.14289e1; + base:location\#longitude -5.47778e-1; + base:location\#wikidata "Q746681"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Egham" . + +base:location\/UK-Granth-00 a base:location; + base:location\#City base:City-Grantham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2648208"; + base:location\#IDLocation "UK-Granth-00"; + base:location\#latitude 5.2918e1; + base:location\#longitude -6.38e-1; + base:location\#wikidata "Q846683"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grantham" . + +base:location\/UK-Greenw-00 a base:location; + base:location\#City base:City-Greenwich; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "UK-Greenw-00"; + base:location\#State base:State-London; + base:location\#latitude 5.14813e1; + base:location\#longitude -8.069e-3; + base:location\#wikidata "Q179385" . + +base:location\/UK-Lanc-00 a base:location; + base:location\#City base:City-Lancashire; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2644974"; + base:location\#IDLocation "UK-Lanc-00"; + base:location\#latitude 5.38e1; + base:location\#longitude -2.6e0; + base:location\#wikidata "Q23077"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lancashire" . + +base:location\/UK-Lyton-00 a base:location; + base:location\#City base:City-Leytonstone; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "6692921"; + base:location\#IDLocation "UK-Lyton-00"; + base:location\#latitude 5.1569e1; + base:location\#longitude 1.0e-2; + base:location\#wikidata "Q1368969"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leytonstone" . + +base:location\/UK-STRATFORD-00 a base:location; + base:location\#City base:City-Stratford; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2636714"; + base:location\#IDLocation "UK-STRATFORD-00"; + base:location\#State base:State-London; + base:location\#latitude 5.15423e1; + base:location\#longitude -2.56e-3; + base:location\#wikidata "Q676136"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Stratford,_London" . + +base:location\/UK-ShorSea-00 a base:location; + base:location\#City base:City-Shoreham-by-Sea; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2637916"; + base:location\#IDLocation "UK-ShorSea-00"; + base:location\#latitude 5.0834e1; + base:location\#longitude -2.73e-1; + base:location\#wikidata "Q770599"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Shoreham-by-Sea" . + +base:location\/UK-Stamf-00 a base:location; + base:location\#City base:City-Stamford; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2637104"; + base:location\#IDLocation "UK-Stamf-00"; + base:location\#latitude 5.26528e1; + base:location\#longitude -4.83611e-1; + base:location\#wikidata "Q1000662"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Stamford,_Lincolnshire" . + +base:location\/UK-Twick-00 a base:location; + base:location\#City base:City-Twickenham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2635308"; + base:location\#IDLocation "UK-Twick-00"; + base:location\#latitude 5.1449e1; + base:location\#longitude -3.37e-1; + base:location\#wikidata "Q1143278"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Twickenham" . + +base:location\/UK-Wales-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Wales\%28UK\%29; + base:location\#GeoNamesID "2634895"; + base:location\#IDLocation "UK-Wales-00"; + base:location\#latitude 5.23e1; + base:location\#longitude -3.6e0; + base:location\#wikidata "Q25"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wales" . + +base:location\/UK-Weym-00 a base:location; + base:location\#City base:City-Weymouth; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "UK-Weym-00"; + base:location\#State base:State-Dorset; + base:location\#latitude 5.06097e1; + base:location\#longitude -2.45472e0; + base:location\#wikidata "Q661619"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Weymouth,_Dorset" . + +base:location\/UK-Winch-00 a base:location; + base:location\#City base:City-Winchester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2633858"; + base:location\#IDLocation "UK-Winch-00"; + base:location\#latitude 5.10632e1; + base:location\#longitude -1.308e0; + base:location\#wikidata "Q172157"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Winchester" . + +base:location\/UK-Windsor-00 a base:location; + base:location\#City base:City-Windsor; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2633842"; + base:location\#IDLocation "UK-Windsor-00"; + base:location\#latitude 5.148e1; + base:location\#longitude -6.13056e-1; + base:location\#wikidata "Q464955"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Windsor,_Berkshire" . + +base:location\/USA-AZ-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5551752"; + base:location\#IDLocation "USA-AZ-00"; + base:location\#State base:State-Arizona; + base:location\#latitude 3.42744e1; + base:location\#longitude -1.1166e2; + base:location\#wikidata "Q816"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Arizona" . + +base:location\/USA-Adria-00 a base:location; + base:location\#City base:City-Adrian; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4983811"; + base:location\#IDLocation "USA-Adria-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.18963e1; + base:location\#longitude -8.40377e1; + base:location\#wikidata "Q372304"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Adrian,_Michigan" . + +base:location\/USA-Alabama-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Alabama-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.27917e1; + base:location\#longitude -8.68308e1; + base:location\#wikidata "Q173"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Alabama" . + +base:location\/USA-Albuq-00 a base:location; + base:location\#City base:City-Albuquerque; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5454711"; + base:location\#IDLocation "USA-Albuq-00"; + base:location\#State base:State-NewMexico; + base:location\#latitude 3.50844e1; + base:location\#longitude -1.0665e2; + base:location\#wikidata "Q34804"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Albuquerque,_New_Mexico" . + +base:location\/USA-Anders-00 a base:location; + base:location\#City base:City-Anderson; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4917592"; + base:location\#IDLocation "USA-Anders-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.01055e1; + base:location\#longitude -8.56888e1; + base:location\#wikidata "Q491461"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Anderson,_Indiana" . + +base:location\/USA-Ash-00 a base:location; + base:location\#City base:City-Ashland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5146055"; + base:location\#IDLocation "USA-Ash-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.0875e1; + base:location\#longitude -8.2318e1; + base:location\#wikidata "Q725573"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ashland,_Ohio" . + +base:location\/USA-AshW-00 a base:location; + base:location\#City base:City-Ashland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-AshW-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.659e1; + base:location\#longitude -9.088e1; + base:location\#wikidata "Q725594" . + +base:location\/USA-Bang-00 a base:location; + base:location\#City base:City-Bangor; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4957280"; + base:location\#IDLocation "USA-Bang-00"; + base:location\#State base:State-Maine; + base:location\#latitude 4.4803e1; + base:location\#longitude -6.87675e1; + base:location\#wikidata "Q327012"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bangor,_Maine" . + +base:location\/USA-BatCre-00 a base:location; + base:location\#City base:City-BattleCreek; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4985153"; + base:location\#IDLocation "USA-BatCre-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.23122e1; + base:location\#longitude -8.52041e1; + base:location\#wikidata "Q810998"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Battle_Creek,_Michigan" . + +base:location\/USA-Beau-00 a base:location; + base:location\#City base:City-Beaumont; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4672989"; + base:location\#IDLocation "USA-Beau-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.008e1; + base:location\#longitude -9.41266e1; + base:location\#wikidata "Q128282"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Beaumont,_Texas" . + +base:location\/USA-Bellin-00 a base:location; + base:location\#City base:City-Bellingham; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5786899"; + base:location\#IDLocation "USA-Bellin-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.875e1; + base:location\#longitude -1.22483e2; + base:location\#wikidata "Q430267"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bellingham,_Washington" . + +base:location\/USA-Ben-Harb-00 a base:location; + base:location\#City base:City-BentonHarbor; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4985711"; + base:location\#IDLocation "USA-Ben-Harb-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.21166e1; + base:location\#longitude -8.64541e1; + base:location\#wikidata "Q818338"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Benton_Harbor,_Michigan" . + +base:location\/USA-Benn-00 a base:location; + base:location\#City base:City-Bennington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5233742"; + base:location\#IDLocation "USA-Benn-00"; + base:location\#State base:State-Vermont; + base:location\#latitude 4.28911e1; + base:location\#longitude -7.3208e1; + base:location\#wikidata "Q817921"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bennington,_Vermont" . + +base:location\/USA-Bloom-00 a base:location; + base:location\#City base:City-Bloomington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Bloom-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.91622e1; + base:location\#longitude -8.65292e1; + base:location\#wikidata "Q490385" . + +base:location\/USA-Bluef-00 a base:location; + base:location\#City base:City-Bluefield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4799622"; + base:location\#IDLocation "USA-Bluef-00"; + base:location\#State base:State-WestVirginia; + base:location\#latitude 3.72622e1; + base:location\#longitude -8.12186e1; + base:location\#wikidata "Q885991"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bluefield,_West_Virginia" . + +base:location\/USA-Boise-00 a base:location; + base:location\#City base:City-Boise; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5586437"; + base:location\#IDLocation "USA-Boise-00"; + base:location\#State base:State-Idaho; + base:location\#latitude 4.36158e1; + base:location\#longitude -1.16202e2; + base:location\#wikidata "Q35775"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Boise,_Idaho" . + +base:location\/USA-Bow-00 a base:location; + base:location\#City base:City-Bowery; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Bow-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.07199e1; + base:location\#longitude -7.399420000000001e1; + base:location\#wikidata "Q785788" . + +base:location\/USA-Bradf-00 a base:location; + base:location\#City base:City-Bradford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Bradf-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.19592e1; + base:location\#longitude -7.86447e1; + base:location\#wikidata "Q662409" . + +base:location\/USA-Brattle-00 a base:location; + base:location\#City base:City-Brattleboro; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5234141"; + base:location\#IDLocation "USA-Brattle-00"; + base:location\#State base:State-Vermont; + base:location\#latitude 4.285e1; + base:location\#longitude -7.25822e1; + base:location\#wikidata "Q899813"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brattleboro,_Vermont" . + +base:location\/USA-CA-05 a base:location; + base:location\#City base:City-Glendale; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5352423"; + base:location\#IDLocation "USA-CA-05"; + base:location\#State base:State-California; + base:location\#latitude 3.41461e1; + base:location\#longitude -1.18255e2; + base:location\#wikidata "Q485716"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Glendale,_California" . + +base:location\/USA-CA-07 a base:location; + base:location\#City base:City-ManhattanBeach; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5370082"; + base:location\#IDLocation "USA-CA-07"; + base:location\#State base:State-California; + base:location\#latitude 3.389e1; + base:location\#longitude -1.1841e2; + base:location\#wikidata "Q568610"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Manhattan_Beach,_California" . + +base:location\/USA-CNorw-00 a base:location; + base:location\#City base:City-Norwich; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CNorw-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.15503e1; + base:location\#longitude -7.208750000000001e1; + base:location\#wikidata "Q631402" . + +base:location\/USA-CT-01 a base:location; + base:location\#City base:City-Ridgefield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4841463"; + base:location\#IDLocation "USA-CT-01"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.13053e1; + base:location\#longitude -7.35014e1; + base:location\#wikidata "Q753930"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ridgefield,_Connecticut" . + +base:location\/USA-Cairo-00 a base:location; + base:location\#City base:City-Cairo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4234985"; + base:location\#IDLocation "USA-Cairo-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.7013e1; + base:location\#longitude -8.91802e1; + base:location\#wikidata "Q575306"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cairo,_Illinois" . + +base:location\/USA-Camd-00 a base:location; + base:location\#City base:City-Camden; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4501018"; + base:location\#IDLocation "USA-Camd-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 3.99369e1; + base:location\#longitude -7.51061e1; + base:location\#wikidata "Q138367"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Camden,_New_Jersey" . + +base:location\/USA-CharVil-00 a base:location; + base:location\#City base:City-Charlottesville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4752031"; + base:location\#IDLocation "USA-CharVil-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.80299e1; + base:location\#longitude -7.8479e1; + base:location\#wikidata "Q123766"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Charlottesville,_Virginia" . + +base:location\/USA-Charlest-00 a base:location; + base:location\#City base:City-Charleston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4801859"; + base:location\#IDLocation "USA-Charlest-00"; + base:location\#State base:State-WestVirginia; + base:location\#latitude 3.83498e1; + base:location\#longitude -8.16326e1; + base:location\#wikidata "Q44564"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Charleston,_West_Virginia" . + +base:location\/USA-Colf-00 a base:location; + base:location\#City base:City-Colfax; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5790554"; + base:location\#IDLocation "USA-Colf-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.68833e1; + base:location\#longitude -1.17367e2; + base:location\#wikidata "Q1509984"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Colfax,_Washington" . + +base:location\/USA-Colorado-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Colorado-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.9e1; + base:location\#longitude -1.055e2; + base:location\#wikidata "Q1261" . + +base:location\/USA-Columb-00 a base:location; + base:location\#City base:City-Columbia; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Columb-00"; + base:location\#State base:State-SouthCarolina; + base:location\#latitude 3.40006e1; + base:location\#longitude -8.10347e1; + base:location\#wikidata "Q38453"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Columbia,_South_Carolina" . + +base:location\/USA-Corn-00 a base:location; + base:location\#City base:City-Corning; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5113760"; + base:location\#IDLocation "USA-Corn-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.2148e1; + base:location\#longitude -7.70569e1; + base:location\#wikidata "Q576395"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Corning,_New_York" . + +base:location\/USA-Crawdf-00 a base:location; + base:location\#City base:City-Crawfordsville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Crawdf-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.00388e1; + base:location\#longitude -8.68968e1; + base:location\#wikidata "Q986629" . + +base:location\/USA-CriCre-00 a base:location; + base:location\#City base:City-CrippleCreek; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5418552"; + base:location\#IDLocation "USA-CriCre-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.87483e1; + base:location\#longitude -1.05175e2; + base:location\#wikidata "Q117605"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cripple_Creek,_Colorado" . + +base:location\/USA-Crook-00 a base:location; + base:location\#City base:City-Crookston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5023465"; + base:location\#IDLocation "USA-Crook-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.77747e1; + base:location\#longitude -9.66063e1; + base:location\#wikidata "Q1626913"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Crookston,_Minnesota" . + +base:location\/USA-CrownK-00 a base:location; + base:location\#City base:City-CrownKing; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5291754"; + base:location\#IDLocation "USA-CrownK-00"; + base:location\#State base:State-Arizona; + base:location\#latitude 3.42056e1; + base:location\#longitude -1.12339e2; + base:location\#wikidata "Q748161"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Crown_King,_Arizona" . + +base:location\/USA-Dowag-00 a base:location; + base:location\#City base:City-Dowagiac; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4991111"; + base:location\#IDLocation "USA-Dowag-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.19841e1; + base:location\#longitude -8.61086e1; + base:location\#wikidata "Q2298596"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dowagiac,_Michigan" . + +base:location\/USA-ESagi-00 a base:location; + base:location\#City base:City-EastSaginaw; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-ESagi-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.3419e1; + base:location\#longitude -8.3947e1; + base:location\#wikidata "Q719" . + +base:location\/USA-EasLiv-00 a base:location; + base:location\#City base:City-EastLiverpool; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5152709"; + base:location\#IDLocation "USA-EasLiv-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.06286e1; + base:location\#longitude -8.05719e1; + base:location\#wikidata "Q998893"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/East_Liverpool,_Ohio" . + +base:location\/USA-EastCoast a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-EastCoast"; + base:location\#State base:State-EastCoast; + base:location\#latitude 4.07128e1; + base:location\#longitude -7.4006e1; + base:location\#wikidata "Q4268"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/East_Coast_of_the_United_States" . + +base:location\/USA-Elg-00 a base:location; + base:location\#City base:City-Elgin; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Elg-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.20383e1; + base:location\#longitude -8.83228e1; + base:location\#wikidata "Q499887"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Elgin,_Illinois" . + +base:location\/USA-Ellic-00 a base:location; + base:location\#City base:City-Ellicottville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5116418"; + base:location\#IDLocation "USA-Ellic-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.22751e1; + base:location\#longitude -7.86728e1; + base:location\#wikidata "Q5365314"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ellicottville,_New_York" . + +base:location\/USA-Ever-00 a base:location; + base:location\#City base:City-Everett; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5793933"; + base:location\#IDLocation "USA-Ever-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.79791e1; + base:location\#longitude -1.22202e2; + base:location\#wikidata "Q392599"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Everett,_Washington" . + +base:location\/USA-Flint-00 a base:location; + base:location\#City base:City-Flint; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4992982"; + base:location\#IDLocation "USA-Flint-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.30188e1; + base:location\#longitude -8.369329999999999e1; + base:location\#wikidata "Q490584"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Flint,_Michigan" . + +base:location\/USA-FondL-00 a base:location; + base:location\#City base:City-FondduLac; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-FondL-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.37751e1; + base:location\#longitude -8.84449e1; + base:location\#wikidata "Q985584" . + +base:location\/USA-Galesb-00 a base:location; + base:location\#City base:City-Galesburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Galesb-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.09478e1; + base:location\#longitude -9.03711e1; + base:location\#wikidata "Q782574" . + +base:location\/USA-Georgia a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Georgia"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.26833e1; + base:location\#longitude -8.341670000000001e1; + base:location\#wikidata "Q1428"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Georgia_(U.S._state)" . + +base:location\/USA-Glover-00 a base:location; + base:location\#City base:City-Gloversville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5118743"; + base:location\#IDLocation "USA-Glover-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.305e1; + base:location\#longitude -7.434999999999999e1; + base:location\#wikidata "Q1380511"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gloversville,_New_York" . + +base:location\/USA-GrFork-00 a base:location; + base:location\#City base:City-GrandForks; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-GrFork-00"; + base:location\#State base:State-NorthDakota; + base:location\#latitude 4.79253e1; + base:location\#longitude -9.70325e1; + base:location\#wikidata "Q34144" . + +base:location\/USA-GraJun-00 a base:location; + base:location\#City base:City-GrandJunction; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5423573"; + base:location\#IDLocation "USA-GraJun-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.90877e1; + base:location\#longitude -1.08568e2; + base:location\#wikidata "Q989903"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grand_Junction,_Colorado" . + +base:location\/USA-GreB-00 a base:location; + base:location\#City base:City-GreenBay; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-GreB-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.45133e1; + base:location\#longitude -8.80158e1; + base:location\#wikidata "Q47430" . + +base:location\/USA-GreBur-00 a base:location; + base:location\#City base:City-Greensburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5192029"; + base:location\#IDLocation "USA-GreBur-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.02977e1; + base:location\#longitude -7.954219999999999e1; + base:location\#wikidata "Q734974"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Greensburg,_Pennsylvania" . + +base:location\/USA-Greel-00 a base:location; + base:location\#City base:City-Greeley; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Greel-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 4.0415e1; + base:location\#longitude -1.04724e2; + base:location\#wikidata "Q94274" . + +base:location\/USA-Hali-00 a base:location; + base:location\#City base:City-Halifax; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "5969424"; + base:location\#IDLocation "USA-Hali-00"; + base:location\#State base:State-NovaScotia; + base:location\#latitude 4.46475e1; + base:location\#longitude -6.35905e1; + base:location\#wikidata "Q2141"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Halifax,_Nova_Scotia" . + +base:location\/USA-Hanb-00 a base:location; + base:location\#City base:City-Hanniball; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Hanb-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.97042e1; + base:location\#longitude -9.13775e1 . + +base:location\/USA-Hanc-00 a base:location; + base:location\#City base:City-Hancock; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4995201"; + base:location\#IDLocation "USA-Hanc-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.71266e1; + base:location\#longitude -8.85847e1; + base:location\#wikidata "Q12435"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hancock,_Michigan" . + +base:location\/USA-Hanf-00 a base:location; + base:location\#City base:City-Hanford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5355180"; + base:location\#IDLocation "USA-Hanf-00"; + base:location\#State base:State-California; + base:location\#latitude 3.63263e1; + base:location\#longitude -1.19637e2; + base:location\#wikidata "Q375185"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hanford,_California" . + +base:location\/USA-Hast-00 a base:location; + base:location\#City base:City-Hastings; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Hast-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.05883e1; + base:location\#longitude -9.83914e1; + base:location\#wikidata "Q959512" . + +base:location\/USA-Hoqui-00 a base:location; + base:location\#City base:City-Hoquiam; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5797693"; + base:location\#IDLocation "USA-Hoqui-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.69875e1; + base:location\#longitude -1.23891e2; + base:location\#wikidata "Q990621"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hoquiam,_Washington" . + +base:location\/USA-Horn-00 a base:location; + base:location\#City base:City-Hornell; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5121283"; + base:location\#IDLocation "USA-Horn-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.23166e1; + base:location\#longitude -7.76666e1; + base:location\#wikidata "Q1378011"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hornell,_New_York" . + +base:location\/USA-IowCit-00 a base:location; + base:location\#City base:City-IowaCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4862034"; + base:location\#IDLocation "USA-IowCit-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.16208e1; + base:location\#longitude -9.149469999999999e1; + base:location\#wikidata "Q487977"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Iowa_City,_Iowa" . + +base:location\/USA-Ishp-00 a base:location; + base:location\#City base:City-Ishpeming; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4997281"; + base:location\#IDLocation "USA-Ishp-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.64925e1; + base:location\#longitude -8.76675e1; + base:location\#wikidata "Q2432500"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ishpeming,_Michigan" . + +base:location\/USA-JamesNY-00 a base:location; + base:location\#City base:City-Jamestown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-JamesNY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.20956e1; + base:location\#longitude -7.923860000000001e1; + base:location\#wikidata "Q983861"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jamestown,_New_York" . + +base:location\/USA-Jamest-00 a base:location; + base:location\#City base:City-Jamestown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Jamest-00"; + base:location\#State base:State-NorthDakota; + base:location\#latitude 4.69056e1; + base:location\#longitude -9.870310000000001e1; + base:location\#wikidata "Q1052658" . + +base:location\/USA-JohnstNY-00 a base:location; + base:location\#City base:City-Johnstown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USa; + base:location\#IDLocation "USA-JohnstNY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.30072e1; + base:location\#longitude -7.437220000000001e1; + base:location\#wikidata "Q1377991" . + +base:location\/USA-Joliet-00 a base:location; + base:location\#City base:City-Joliet; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4898015"; + base:location\#IDLocation "USA-Joliet-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.15297e1; + base:location\#longitude -8.80727e1; + base:location\#wikidata "Q40345"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Joliet,_Illinois" . + +base:location\/USA-Jopl-00 a base:location; + base:location\#City base:City-Joplin; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4392768"; + base:location\#IDLocation "USA-Jopl-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.70841e1; + base:location\#longitude -9.451300000000001e1; + base:location\#wikidata "Q317865"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Joplin,_Missouri" . + +base:location\/USA-Kane-00 a base:location; + base:location\#City base:City-Kane; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5195728"; + base:location\#IDLocation "USA-Kane-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.16616e1; + base:location\#longitude -7.881019999999999e1; + base:location\#wikidata "Q1185000"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kane,_Pennsylvania" . + +base:location\/USA-Keok-00 a base:location; + base:location\#City base:City-Keokuk; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Keok-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.04025e1; + base:location\#longitude -9.13944e1; + base:location\#wikidata "Q732549" . + +base:location\/USA-LafayI-00 a base:location; + base:location\#City base:City-Lafayette; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LafayI-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.04006e1; + base:location\#longitude -8.687860000000001e1; + base:location\#wikidata "Q166481"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lafayette,_Indiana" . + +base:location\/USA-LasVNM-00 a base:location; + base:location\#City base:City-LasVegas; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LasVNM-00"; + base:location\#State base:State-NewMexico; + base:location\#latitude 3.56042e1; + base:location\#longitude -1.05223e2; + base:location\#wikidata "Q676171"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Las_Vegas,_New_Mexico" . + +base:location\/USA-Latro-00 a base:location; + base:location\#City base:City-Latrobe; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5197227"; + base:location\#IDLocation "USA-Latro-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.0315e1; + base:location\#longitude -7.93811e1; + base:location\#wikidata "Q969307"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Latrobe,_Pennsylvania" . + +base:location\/USA-LawrK-00 a base:location; + base:location\#City base:City-Lawrence; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LawrK-00"; + base:location\#State base:State-Kansas; + base:location\#latitude 3.896e1; + base:location\#longitude -9.52533e1; + base:location\#wikidata "Q493840" . + +base:location\/USA-LawrM-00 a base:location; + base:location\#City base:City-Lawrence; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LawrM-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.27069e1; + base:location\#longitude -7.11636e1; + base:location\#wikidata "Q49163" . + +base:location\/USA-LitFall-00 a base:location; + base:location\#City base:City-LittleFalls; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5034970"; + base:location\#IDLocation "USA-LitFall-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.59861e1; + base:location\#longitude -9.43586e1; + base:location\#wikidata "Q1903165"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Little_Falls,_Minnesota" . + +base:location\/USA-Logan-00 a base:location; + base:location\#City base:City-Logan; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5777544"; + base:location\#IDLocation "USA-Logan-00"; + base:location\#State base:State-Utah; + base:location\#latitude 4.17638e1; + base:location\#longitude -1.11872e2; + base:location\#wikidata "Q482657"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Logan,_Utah" . + +base:location\/USA-Lynch-00 a base:location; + base:location\#City base:City-Lynchburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4771075"; + base:location\#IDLocation "USA-Lynch-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.74036e1; + base:location\#longitude -7.917e1; + base:location\#wikidata "Q844012"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lynchburg,_Virginia" . + +base:location\/USA-MA-00 a base:location; + base:location\#City base:City-Lenox; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4941853"; + base:location\#IDLocation "USA-MA-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.23564e1; + base:location\#longitude -7.328530000000001e1; + base:location\#wikidata "Q2076362"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lenox,_Massachusetts" . + +base:location\/USA-MA-01 a base:location; + base:location\#City base:City-Concord; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4933743"; + base:location\#IDLocation "USA-MA-01"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.24603e1; + base:location\#longitude -7.13494e1; + base:location\#wikidata "Q523240"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Concord,_Massachusetts" . + +base:location\/USA-MarOh-00 a base:location; + base:location\#City base:City-Marietta; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-MarOh-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.94208e1; + base:location\#longitude -8.145059999999999e1; + base:location\#wikidata "Q985482" . + +base:location\/USA-Marie-00 a base:location; + base:location\#City base:City-Marietta; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4207783"; + base:location\#IDLocation "USA-Marie-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.39533e1; + base:location\#longitude -8.45406e1; + base:location\#wikidata "Q852684"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Marietta,_Georgia" . + +base:location\/USA-MarinW-00 a base:location; + base:location\#City base:City-Marinette; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-MarinW-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.50886e1; + base:location\#longitude -8.762690000000001e1; + base:location\#wikidata "Q1013700" . + +base:location\/USA-Mario a base:location; + base:location\#City base:City-Marion; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5161902"; + base:location\#IDLocation "USA-Mario"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.062e1; + base:location\#longitude -8.31263e1; + base:location\#wikidata "Q985636"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Marion,_Ohio" . + +base:location\/USA-Meadv-00 a base:location; + base:location\#City base:City-Meadville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5200644"; + base:location\#IDLocation "USA-Meadv-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.165e1; + base:location\#longitude -8.015000000000001e1; + base:location\#wikidata "Q1010225"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Meadville,_Pennsylvania" . + +base:location\/USA-Miami-00 a base:location; + base:location\#City base:City-Miami; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4164138"; + base:location\#IDLocation "USA-Miami-00"; + base:location\#State base:State-Florida; + base:location\#latitude 2.57878e1; + base:location\#longitude -8.02242e1; + base:location\#wikidata "Q8652"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Miami" . + +base:location\/USA-MichCity-00 a base:location; + base:location\#City base:City-MichiganCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4923531"; + base:location\#IDLocation "USA-MichCity-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.17344e1; + base:location\#longitude -8.6873e1; + base:location\#wikidata "Q989282"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Michigan_City,_Indiana" . + +base:location\/USA-Midwestern a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Midwestern"; + base:location\#State base:State-Midwestern; + base:location\#latitude 4.18781e1; + base:location\#longitude -8.76298e1; + base:location\#wikidata "Q186545"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Midwestern_United_States" . + +base:location\/USA-MilCit-00 a base:location; + base:location\#City base:City-MilesCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5666176"; + base:location\#IDLocation "USA-MilCit-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.64083e1; + base:location\#longitude -1.0584e2; + base:location\#wikidata "Q960167"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Miles_City,_Montana" . + +base:location\/USA-Miss a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Miss"; + base:location\#State base:State-Mississippi; + base:location\#latitude 3.27833e1; + base:location\#longitude -8.963330000000001e1; + base:location\#wikidata "Q1494"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mississippi" . + +base:location\/USA-MtEastMis-00 a base:location; + base:location\#City base:City-HellGate\%28Missoula\%29; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5656931"; + base:location\#IDLocation "USA-MtEastMis-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.688e1; + base:location\#longitude -1.1408e2; + base:location\#wikidata "Q5706571"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hell_Gate,_Montana" . + +base:location\/USA-NATr-00 a base:location; + base:location\#City base:City-Newark-on-Trent; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "USA-NATr-00"; + base:location\#latitude 5.30772e1; + base:location\#longitude -8.08889e-1; + base:location\#wikidata "Q49940"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Newark-on-Trent" . + +base:location\/USA-NJ-01 a base:location; + base:location\#City base:City-PalisadesPark; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5102369"; + base:location\#IDLocation "USA-NJ-01"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.08469e1; + base:location\#longitude -7.39969e1; + base:location\#wikidata "Q509764"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Palisades_Park" . + +base:location\/USA-NJ-02 a base:location; + base:location\#City base:City-Montclair; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5101334"; + base:location\#IDLocation "USA-NJ-02"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.08426e1; + base:location\#longitude -7.42013e1; + base:location\#wikidata "Q678437"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montclair,_New_Jersey" . + +base:location\/USA-NPhila-00 a base:location; + base:location\#City base:City-NewPhiladelphia; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5164390"; + base:location\#IDLocation "USA-NPhila-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.04916e1; + base:location\#longitude -8.144110000000001e1; + base:location\#wikidata "Q1000241"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Philadelphia,_Ohio" . + +base:location\/USA-NY-01 a base:location; + base:location\#City base:City-Amityville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5107140"; + base:location\#IDLocation "USA-NY-01"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.06717e1; + base:location\#longitude -7.341500000000001e1; + base:location\#wikidata "Q472509"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Amityville,_New_York" . + +base:location\/USA-NY-03 a base:location; + base:location\#City base:City-Harrison; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5120095"; + base:location\#IDLocation "USA-NY-03"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.10069e1; + base:location\#longitude -7.371810000000001e1; + base:location\#wikidata "Q3476507"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Harrison,_New_York" . + +base:location\/USA-NebraCit-00 a base:location; + base:location\#City base:City-NebraskaCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5073661"; + base:location\#IDLocation "USA-NebraCit-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.06758e1; + base:location\#longitude -9.58616e1; + base:location\#wikidata "Q286025"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nebraska_City,_Nebraska" . + +base:location\/USA-NevCity-00 a base:location; + base:location\#City base:City-NevadaCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NevCity-00"; + base:location\#State base:State-California; + base:location\#latitude 3.92614e1; + base:location\#longitude -1.21019e2; + base:location\#wikidata "Q667268"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nevada_City,_California" . + +base:location\/USA-NewBed-00 a base:location; + base:location\#City base:City-NewBedford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NewBed-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.16361e1; + base:location\#longitude -7.093470000000001e1; + base:location\#wikidata "Q49147" . + +base:location\/USA-NewEngl-00 a base:location; + base:location\#City base:City-NewEngland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NewEngl-00"; + base:location\#latitude 4.42056e1; + base:location\#longitude -7.03064e1; + base:location\#wikidata "Q18389"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_England" . + +base:location\/USA-NewNews-00 a base:location; + base:location\#City base:City-NewportNews; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-NewNews-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.70708e1; + base:location\#longitude -7.648439999999999e1; + base:location\#wikidata "Q335017" . + +base:location\/USA-Newt-00 a base:location; + base:location\#City base:City-Newtown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Newt-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.13983e1; + base:location\#longitude -7.32931e1; + base:location\#wikidata "Q738356" . + +base:location\/USA-Norwa-00 a base:location; + base:location\#City base:City-Norwalk; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5165101"; + base:location\#IDLocation "USA-Norwa-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.12444e1; + base:location\#longitude -8.26088e1; + base:location\#wikidata "Q388091"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Norwalk,_Ohio" . + +base:location\/USA-OMiddl-00 a base:location; + base:location\#City base:City-Middletown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-OMiddl-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.95061e1; + base:location\#longitude -8.43758e1; + base:location\#wikidata "Q985515" . + +base:location\/USA-Ohio-01 a base:location; + base:location\#City base:City-Portsmouth; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4521816"; + base:location\#IDLocation "USA-Ohio-01"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.87431e1; + base:location\#longitude -8.296559999999999e1; + base:location\#wikidata "Q685335"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Portsmouth,_Ohio" . + +base:location\/USA-OklaCit-00 a base:location; + base:location\#City base:City-OklahomaCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4544349"; + base:location\#IDLocation "USA-OklaCit-00"; + base:location\#State base:State-Oklahoma; + base:location\#latitude 3.54686e1; + base:location\#longitude -9.75213e1; + base:location\#wikidata "Q34863"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oklahoma_City" . + +base:location\/USA-Olea a base:location; + base:location\#City base:City-Olean; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5129780"; + base:location\#IDLocation "USA-Olea"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.20825e1; + base:location\#longitude -7.84308e1; + base:location\#wikidata "Q630963"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Olean,_New_York" . + +base:location\/USA-Olymp-00 a base:location; + base:location\#City base:City-Olympia; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5805687"; + base:location\#IDLocation "USA-Olymp-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.70377e1; + base:location\#longitude -1.22901e2; + base:location\#wikidata "Q42735"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Olympia,_Washington" . + +base:location\/USA-Paduc-00 a base:location; + base:location\#City base:City-Paducah; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4048662"; + base:location\#IDLocation "USA-Paduc-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.70722e1; + base:location\#longitude -8.86275e1; + base:location\#wikidata "Q984377"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Paducah,_Kentucky" . + +base:location\/USA-Paris-00 a base:location; + base:location\#City base:City-Paris; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Paris-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.82064e1; + base:location\#longitude -8.42578e1; + base:location\#wikidata "Q3181341" . + +base:location\/USA-Parkers-00 a base:location; + base:location\#City base:City-Parkersburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4817641"; + base:location\#IDLocation "USA-Parkers-00"; + base:location\#State base:State-WestVirginia; + base:location\#latitude 3.92661e1; + base:location\#longitude -8.154219999999999e1; + base:location\#wikidata "Q329485"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Parkersburg,_West_Virginia" . + +base:location\/USA-Pendl-00 a base:location; + base:location\#City base:City-Pendleton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5745380"; + base:location\#IDLocation "USA-Pendl-00"; + base:location\#State base:State-Oregon; + base:location\#latitude 4.56755e1; + base:location\#longitude -1.1882e2; + base:location\#wikidata "Q944507"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pendleton,_Oregon" . + +base:location\/USA-Pocat-00 a base:location; + base:location\#City base:City-Pocatello; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5604045"; + base:location\#IDLocation "USA-Pocat-00"; + base:location\#State base:State-Idaho; + base:location\#latitude 4.28622e1; + base:location\#longitude -1.12451e2; + base:location\#wikidata "Q320729"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pocatello,_Idaho" . + +base:location\/USA-Pomo-00 a base:location; + base:location\#City base:City-Pomona; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5384170"; + base:location\#IDLocation "USA-Pomo-00"; + base:location\#State base:State-California; + base:location\#latitude 3.40608e1; + base:location\#longitude -1.17756e2; + base:location\#wikidata "Q486868"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pomona,_California" . + +base:location\/USA-PortlM-00 a base:location; + base:location\#City base:City-Portland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-PortlM-00"; + base:location\#State base:State-Maine; + base:location\#latitude 4.366e1; + base:location\#longitude -7.0255e1; + base:location\#wikidata "Q49201"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Portland,_Maine" . + +base:location\/USA-Provo-00 a base:location; + base:location\#City base:City-Provo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5780026"; + base:location\#IDLocation "USA-Provo-00"; + base:location\#State base:State-Utah; + base:location\#latitude 4.02444e1; + base:location\#longitude -1.11661e2; + base:location\#wikidata "Q23443"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Provo,_Utah" . + +base:location\/USA-Read-00 a base:location; + base:location\#City base:City-Reading; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Read-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.03417e1; + base:location\#longitude -7.592610000000001e1; + base:location\#wikidata "Q237896" . + +base:location\/USA-Reno-00 a base:location; + base:location\#City base:City-Reno; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Reno-00"; + base:location\#State base:State-Nevada; + base:location\#latitude 3.95269e1; + base:location\#longitude -1.19822e2; + base:location\#wikidata "Q49225" . + +base:location\/USA-Sand-00 a base:location; + base:location\#City base:City-Sandusky; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5170691"; + base:location\#IDLocation "USA-Sand-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.14467e1; + base:location\#longitude -8.270910000000001e1; + base:location\#wikidata "Q608207"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sandusky,_Ohio" . + +base:location\/USA-SantRos-00 a base:location; + base:location\#City base:City-SantaRosa; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SantRos-00"; + base:location\#State base:State-California; + base:location\#latitude 3.84486e1; + base:location\#longitude -1.22705e2; + base:location\#wikidata "Q212991"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Santa_Rosa,_California" . + +base:location\/USA-Selm-00 a base:location; + base:location\#City base:City-Selma; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4089114"; + base:location\#IDLocation "USA-Selm-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.24163e1; + base:location\#longitude -8.70247e1; + base:location\#wikidata "Q79941"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Selma,_Alabama" . + +base:location\/USA-Shar-00 a base:location; + base:location\#City base:City-Sharon; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5211683"; + base:location\#IDLocation "USA-Shar-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.123e1; + base:location\#longitude -8.04988e1; + base:location\#wikidata "Q1184891"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sharon,_Pennsylvania" . + +base:location\/USA-Shreve-00 a base:location; + base:location\#City base:City-Shreveport; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4341513"; + base:location\#IDLocation "USA-Shreve-00"; + base:location\#State base:State-Louisiana; + base:location\#latitude 3.24638e1; + base:location\#longitude -9.37944e1; + base:location\#wikidata "Q80517"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Shreveport,_Louisiana" . + +base:location\/USA-SouthCarolina a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SouthCarolina"; + base:location\#State base:State-SouthCarolina; + base:location\#latitude 3.395e1; + base:location\#longitude -8.095e1; + base:location\#wikidata "Q1456"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/South_Carolina" . + +base:location\/USA-Stau-00 a base:location; + base:location\#City base:City-Staunton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4787440"; + base:location\#IDLocation "USA-Stau-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.8158e1; + base:location\#longitude -7.90763e1; + base:location\#wikidata "Q502250"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Staunton,_Virginia" . + +base:location\/USA-Steuben-00 a base:location; + base:location\#City base:City-Steubenville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5173048"; + base:location\#IDLocation "USA-Steuben-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.03652e1; + base:location\#longitude -8.063330000000001e1; + base:location\#wikidata "Q986432"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Steubenville,_Ohio" . + +base:location\/USA-Sup-00 a base:location; + base:location\#City base:City-Superior; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Sup-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.67192e1; + base:location\#longitude -9.21028e1; + base:location\#wikidata "Q984577" . + +base:location\/USA-Texark-00 a base:location; + base:location\#City base:City-Texarkana; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Texark-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.34761e1; + base:location\#longitude -9.41083e1; + base:location\#wikidata "Q844020" . + +base:location\/USA-Tow-00 a base:location; + base:location\#City base:City-Towanda; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5215859"; + base:location\#IDLocation "USA-Tow-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.17702e1; + base:location\#longitude -7.64466e1; + base:location\#wikidata "Q671662"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Towanda,_Pennsylvania" . + +base:location\/USA-Tri-00 a base:location; + base:location\#City base:City-Trinidad; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Tri-00"; + base:location\#State base:State-California; + base:location\#latitude 4.10592e1; + base:location\#longitude -1.24143e2; + base:location\#wikidata "Q2051249" . + +base:location\/USA-VanWer-00 a base:location; + base:location\#City base:City-VanWert; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5175079"; + base:location\#IDLocation "USA-VanWer-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.08677e1; + base:location\#longitude -8.45972e1; + base:location\#wikidata "Q1012164"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Van_Wert,_Ohio" . + +base:location\/USA-Vinc-00 a base:location; + base:location\#City base:City-Vincennes; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Vinc-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.86783e1; + base:location\#longitude -8.751609999999999e1; + base:location\#wikidata "Q585857" . + +base:location\/USA-Virg-00 a base:location; + base:location\#City base:City-Montvale; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4773757"; + base:location\#IDLocation "USA-Virg-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.73883e1; + base:location\#longitude -7.97283e1; + base:location\#wikidata "Q6022880"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montvale,_Virginia" . + +base:location\/USA-WalWal-00 a base:location; + base:location\#City base:City-WallaWalla; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5814916"; + base:location\#IDLocation "USA-WalWal-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.6065e1; + base:location\#longitude -1.1833e2; + base:location\#wikidata "Q222338"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Walla_Walla,_Washington" . + +base:location\/USA-WarPens-00 a base:location; + base:location\#City base:City-Warren; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-WarPens-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.18442e1; + base:location\#longitude -7.91425e1; + base:location\#wikidata "Q1184834" . + +base:location\/USA-Wav-00 a base:location; + base:location\#City base:City-Waverly; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5143435"; + base:location\#IDLocation "USA-Wav-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.20052e1; + base:location\#longitude -7.65377e1; + base:location\#wikidata "Q3460878"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Waverly,_Tioga_County,_New_York" . + +base:location\/USA-Wichi-00 a base:location; + base:location\#City base:City-Wichita; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4281730"; + base:location\#IDLocation "USA-Wichi-00"; + base:location\#State base:State-Kansas; + base:location\#latitude 3.76888e1; + base:location\#longitude -9.73361e1; + base:location\#wikidata "Q49266"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wichita,_Kansas" . + +base:location\/USA-Yaki-00 a base:location; + base:location\#City base:City-Yakima; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5816605"; + base:location\#IDLocation "USA-Yaki-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.66019e1; + base:location\#longitude -1.20506e2; + base:location\#wikidata "Q499203"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Yakima,_Washington" . + +base:location\/USA-YorkP-00 a base:location; + base:location\#City base:City-York; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-YorkP-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 3.99628e1; + base:location\#longitude -7.67281e1; + base:location\#wikidata "Q821105"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/York,_Pennsylvania" . + +base:location\/USA-Ypsi-00 a base:location; + base:location\#City base:City-Ypsilanti; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5015688"; + base:location\#IDLocation "USA-Ypsi-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.22427e1; + base:location\#longitude -8.36183e1; + base:location\#wikidata "Q1021681"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ypsilanti,_Michigan" . + +base:location\/USa-FairmI-00 a base:location; + base:location\#City base:City-Fairmount; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USa-FairmI-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.04178e1; + base:location\#longitude -8.56489e1; + base:location\#wikidata "Q1022764" . + +base:location\/Ukr-DiJeSt-114 a base:location; + base:location\#City base:City-Zabolotivka; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-114"; + base:location\#latitude 4.88864e1; + base:location\#longitude 2.58378e1; + base:location\#wikidata "Q4182537"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-132 a base:location; + base:location\#City base:City-Pereiaslav; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-132"; + base:location\#latitude 5.0065e1; + base:location\#longitude 3.1445e1; + base:location\#wikidata "Q639839"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-137 a base:location; + base:location\#City base:City-Bilhorod-Dnistrovskyi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-137"; + base:location\#latitude 4.61939e1; + base:location\#longitude 3.03411e1; + base:location\#wikidata "Q672990"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-149 a base:location; + base:location\#City base:City-Nizhyn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-149"; + base:location\#latitude 5.10474e1; + base:location\#longitude 3.18861e1; + base:location\#wikidata "Q952457"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-153 a base:location; + base:location\#City base:City-Mohyliv-Podilskyi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-153"; + base:location\#latitude 4.845e1; + base:location\#longitude 2.77833e1; + base:location\#wikidata "Q997469"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-22 a base:location; + base:location\#City base:City-Kherson; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-22"; + base:location\#latitude 4.66425e1; + base:location\#longitude 3.2625e1; + base:location\#wikidata "Q156732"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-33 a base:location; + base:location\#City base:City-Konotop; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-33"; + base:location\#latitude 5.12375e1; + base:location\#longitude 3.32083e1; + base:location\#wikidata "Q162083"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-79 a base:location; + base:location\#City base:City-Smila; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-79"; + base:location\#latitude 4.92167e1; + base:location\#longitude 3.18667e1; + base:location\#wikidata "Q219595"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-80 a base:location; + base:location\#City base:City-Zvenyhorodka; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-80"; + base:location\#latitude 4.90833e1; + base:location\#longitude 3.09667e1; + base:location\#wikidata "Q219836"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-88 a base:location; + base:location\#City base:City-Kobeliaky; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-88"; + base:location\#latitude 4.91474e1; + base:location\#longitude 3.42e1; + base:location\#wikidata "Q269538"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/VN-Haiph-00 a base:location; + base:location\#City base:City-Haiphong; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Vietnam; + base:location\#GeoNamesID "1581298"; + base:location\#IDLocation "VN-Haiph-00"; + base:location\#latitude 2.085e1; + base:location\#longitude 1.06683e2; + base:location\#wikidata "Q72818"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Haiphong" . + +base:location\/ZA-BFN-00 a base:location; + base:location\#City base:City-Bloemfontein; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#IDLocation "ZA-BFN-00"; + base:location\#latitude -2.91198e1; + base:location\#longitude 2.62248e1; + base:location\#wikidata "Q37701"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bloemfontein" . + +base:location\/ZA-Kimber-00 a base:location; + base:location\#City base:City-Kimberley; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#GeoNamesID "990930"; + base:location\#IDLocation "ZA-Kimber-00"; + base:location\#latitude -2.87322e1; + base:location\#longitude 2.47623e1; + base:location\#wikidata "Q125905"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kimberley,_Northern_Cape" . + +base:location\/ZA-Outd-00 a base:location; + base:location\#City base:City-Oudtshoorn; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#IDLocation "ZA-Outd-00"; + base:location\#latitude -3.358e1; + base:location\#longitude 2.219e1; + base:location\#wikidata "Q951049"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oudtshoorn" . + +base:organisation\/1007 a base:organisation; + base:organisation\#IDOrganisation 1007; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Woltersdorff-Theater" . + +base:organisation\/101 a base:organisation; + base:organisation\#IDOrganisation 101; + base:organisation\#comment ""; + base:organisation\#inst_name "Mozarteum"; + base:organisation\#ref-IDLocation base:location\/AT-Salzb-00 . + +base:organisation\/1010 a base:organisation; + base:organisation\#IDOrganisation 1010; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Herminia-Theater" . + +base:organisation\/1013 a base:organisation; + base:organisation\#IDOrganisation 1013; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Ring-Theater"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/1019 a base:organisation; + base:organisation\#IDOrganisation 1019; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Volkstheater" . + +base:organisation\/1025 a base:organisation; + base:organisation\#IDOrganisation 1025; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Freie Presse" . + +base:organisation\/1028 a base:organisation; + base:organisation\#IDOrganisation 1028; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "McVickers Theater" . + +base:organisation\/1031 a base:organisation; + base:organisation\#IDOrganisation 1031; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Stadttheater" . + +base:organisation\/1034 a base:organisation; + base:organisation\#IDOrganisation 1034; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Theaterschule" . + +base:organisation\/1037 a base:organisation; + base:organisation\#IDOrganisation 1037; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Florindo Joaquim da Silva’s dramacompany" . + +base:organisation\/104 a base:organisation; + base:organisation\#IDOrganisation 104; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Harmonie Theatre in Vienna"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/1040 a base:organisation; + base:organisation\#IDOrganisation 1040; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "French company" . + +base:organisation\/1049 a base:organisation; + base:organisation\#IDOrganisation 1049; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Souza Bastos Theatre Company" . + +base:organisation\/105 a base:organisation; + base:organisation\#IDOrganisation 105; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Kellogg Opera Company" . + +base:organisation\/1052 a base:organisation; + base:organisation\#IDOrganisation 1052; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dom Affonso" . + +base:organisation\/1055 a base:organisation; + base:organisation\#IDOrganisation 1055; + base:organisation\#comment ""; + base:organisation\#inst_name "Parque Fluminense" . + +base:organisation\/1058 a base:organisation; + base:organisation\#IDOrganisation 1058; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Cinira Polonio’s theatre company" . + +base:organisation\/1065 a base:organisation; + base:organisation\#IDOrganisation 1065; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New Yorks Stadt Theatre" . + +base:organisation\/107 a base:organisation; + base:organisation\#IDOrganisation 107; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater in Pest"; + base:organisation\#ref-IDLocation base:location\/HU-Pest-00 . + +base:organisation\/1074 a base:organisation; + base:organisation\#IDOrganisation 1074; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Theatrical Fund" . + +base:organisation\/1089 a base:organisation; + base:organisation\#IDOrganisation 1089; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Theatre" . + +base:organisation\/1092 a base:organisation; + base:organisation\#IDOrganisation 1092; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Standard Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/1104 a base:organisation; + base:organisation\#IDOrganisation 1104; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "School of Art" . + +base:organisation\/1107 a base:organisation; + base:organisation\#IDOrganisation 1107; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Temperance Hall, Quessn´Theatre" . + +base:organisation\/1113 a base:organisation; + base:organisation\#IDOrganisation 1113; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Corinthian Theatre; Hindu Theatre; Theater Royal" . + +base:organisation\/1119 a base:organisation; + base:organisation\#IDOrganisation 1119; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Concordia Club" . + +base:organisation\/1122 a base:organisation; + base:organisation\#IDOrganisation 1122; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre, German Teutonia Club" . + +base:organisation\/1125 a base:organisation; + base:organisation\#IDOrganisation 1125; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Schoolroom stage of the barracks" . + +base:organisation\/1128 a base:organisation; + base:organisation\#IDOrganisation 1128; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Rangoon Theatre" . + +base:organisation\/1131 a base:organisation; + base:organisation\#IDOrganisation 1131; + base:organisation\#comment ""; + base:organisation\#inst_name "Geelong" . + +base:organisation\/1134 a base:organisation; + base:organisation\#IDOrganisation 1134; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre; Musik Hall of Honolulu Library" . + +base:organisation\/1146 a base:organisation; + base:organisation\#IDOrganisation 1146; + base:organisation\#comment ""; + base:organisation\#inst_name "Pantages House" . + +base:organisation\/1149 a base:organisation; + base:organisation\#IDOrganisation 1149; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lois stock Theatre" . + +base:organisation\/1152 a base:organisation; + base:organisation\#IDOrganisation 1152; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Arcade Theatre" . + +base:organisation\/1158 a base:organisation; + base:organisation\#IDOrganisation 1158; + base:organisation\#comment ""; + base:organisation\#inst_name "Pantages Playhouse" . + +base:organisation\/1164 a base:organisation; + base:organisation\#IDOrganisation 1164; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago World's Fair" . + +base:organisation\/1167 a base:organisation; + base:organisation\#IDOrganisation 1167; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Huber's Dime Museum" . + +base:organisation\/117 a base:organisation; + base:organisation\#IDOrganisation 117; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Curtis Institute in Philadelphia"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/1170 a base:organisation; + base:organisation\#IDOrganisation 1170; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum vaudeville circuit" . + +base:organisation\/1173 a base:organisation; + base:organisation\#IDOrganisation 1173; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "the Society of American Magicians" . + +base:organisation\/1176 a base:organisation; + base:organisation\#IDOrganisation 1176; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "magic company Martinka & Co." . + +base:organisation\/1179 a base:organisation; + base:organisation\#IDOrganisation 1179; + base:organisation\#comment ""; + base:organisation\#inst_name "Páginas de España/ El Diario Español" . + +base:organisation\/1182 a base:organisation; + base:organisation\#IDOrganisation 1182; + base:organisation\#comment ""; + base:organisation\#inst_name "Hanover Square concert" . + +base:organisation\/1185 a base:organisation; + base:organisation\#IDOrganisation 1185; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Soho Theatre" . + +base:organisation\/1218 a base:organisation; + base:organisation\#IDOrganisation 1218; + base:organisation\#comment ""; + base:organisation\#inst_name "Howard Glover concert" . + +base:organisation\/1221 a base:organisation; + base:organisation\#IDOrganisation 1221; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Sadlers Wells Theatre" . + +base:organisation\/124 a base:organisation; + base:organisation\#IDOrganisation 124; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Metro-Goldwyn-Mayer Studios" . + +base:organisation\/1242 a base:organisation; + base:organisation\#IDOrganisation 1242; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "English Opera Company under Henry Manley" . + +base:organisation\/1245 a base:organisation; + base:organisation\#IDOrganisation 1245; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand English Opera Company" . + +base:organisation\/1248 a base:organisation; + base:organisation\#IDOrganisation 1248; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mary Ann Pyne" . + +base:organisation\/1251 a base:organisation; + base:organisation\#IDOrganisation 1251; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Woods Museum and Metropolitan" . + +base:organisation\/1260 a base:organisation; + base:organisation\#IDOrganisation 1260; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lingards company" . + +base:organisation\/1266 a base:organisation; + base:organisation\#IDOrganisation 1266; + base:organisation\#comment ""; + base:organisation\#inst_name "St. George’s Chapel" . + +base:organisation\/129 a base:organisation; + base:organisation\#IDOrganisation 129; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper am Boulevard in Belgrad"; + base:organisation\#ref-IDLocation base:location\/SRB-BEL-00 . + +base:organisation\/130 a base:organisation; + base:organisation\#IDOrganisation 130; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Serbisches Nationaltheater in Novi Sad"; + base:organisation\#ref-IDLocation base:location\/SRB-NovSad-00 . + +base:organisation\/1310 a base:organisation; + base:organisation\#IDOrganisation 1310; + base:organisation\#comment ""; + base:organisation\#inst_name "F. A. T" . + +base:organisation\/1320 a base:organisation; + base:organisation\#IDOrganisation 1320; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Certain Theatre" . + +base:organisation\/1325 a base:organisation; + base:organisation\#IDOrganisation 1325; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lina Edwin ´s theatre" . + +base:organisation\/133 a base:organisation; + base:organisation\#IDOrganisation 133; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Fifth Avenue Theatre company"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1330 a base:organisation; + base:organisation\#IDOrganisation 1330; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stetson´s theatre" . + +base:organisation\/1335 a base:organisation; + base:organisation\#IDOrganisation 1335; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "St. Louis theatre" . + +base:organisation\/134 a base:organisation; + base:organisation\#IDOrganisation 134; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "A. M. Palmer's company" . + +base:organisation\/1340 a base:organisation; + base:organisation\#IDOrganisation 1340; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Templeton and Co." . + +base:organisation\/1345 a base:organisation; + base:organisation\#IDOrganisation 1345; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "St. Paul´church" . + +base:organisation\/1350 a base:organisation; + base:organisation\#IDOrganisation 1350; + base:organisation\#comment ""; + base:organisation\#inst_name "old Lyceum Theatre" . + +base:organisation\/1365 a base:organisation; + base:organisation\#IDOrganisation 1365; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "James K. Hackett Company" . + +base:organisation\/137 a base:organisation; + base:organisation\#IDOrganisation 137; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Astor Theatre, Boston"; + base:organisation\#ref-IDLocation base:location\/USA-Bost-00 . + +base:organisation\/1400 a base:organisation; + base:organisation\#IDOrganisation 1400; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Henry Millers Theatre" . + +base:organisation\/1405 a base:organisation; + base:organisation\#IDOrganisation 1405; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Ritz Theatre" . + +base:organisation\/141 a base:organisation; + base:organisation\#IDOrganisation 141; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Halévys Oper" . + +base:organisation\/1420 a base:organisation; + base:organisation\#IDOrganisation 1420; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Cort Theatre" . + +base:organisation\/1425 a base:organisation; + base:organisation\#IDOrganisation 1425; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Cosmopolitan Theatre" . + +base:organisation\/1440 a base:organisation; + base:organisation\#IDOrganisation 1440; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Howson English Opera Company" . + +base:organisation\/1445 a base:organisation; + base:organisation\#IDOrganisation 1445; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Square Theatre/" . + +base:organisation\/145 a base:organisation; + base:organisation\#IDOrganisation 145; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Rice’s Theatre Chicago"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/1450 a base:organisation; + base:organisation\#IDOrganisation 1450; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Braga Junior Theatre company" . + +base:organisation\/146 a base:organisation; + base:organisation\#IDOrganisation 146; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "stock companies of Chicago"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1460 a base:organisation; + base:organisation\#IDOrganisation 1460; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Dias Braga theatre company" . + +base:organisation\/1465 a base:organisation; + base:organisation\#IDOrganisation 1465; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Phênix Dramática and Teatro Apollo (maybe also others)" . + +base:organisation\/1475 a base:organisation; + base:organisation\#IDOrganisation 1475; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Tomba theatre company" . + +base:organisation\/1485 a base:organisation; + base:organisation\#IDOrganisation 1485; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Braga Junior Theater company" . + +base:organisation\/149 a base:organisation; + base:organisation\#IDOrganisation 149; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "William E. Burton’s Chambers Street Theatre" . + +base:organisation\/1490 a base:organisation; + base:organisation\#IDOrganisation 1490; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatical Company Dias Braga" . + +base:organisation\/1495 a base:organisation; + base:organisation\#IDOrganisation 1495; + base:organisation\#comment ""; + base:organisation\#inst_name "Carneval production" . + +base:organisation\/1500 a base:organisation; + base:organisation\#IDOrganisation 1500; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Grupo dos Farofas" . + +base:organisation\/1510 a base:organisation; + base:organisation\#IDOrganisation 1510; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Taveira company" . + +base:organisation\/1520 a base:organisation; + base:organisation\#IDOrganisation 1520; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Empresa TeatralFluminense" . + +base:organisation\/1525 a base:organisation; + base:organisation\#IDOrganisation 1525; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Empreza Paschoal Segreto" . + +base:organisation\/1535 a base:organisation; + base:organisation\#IDOrganisation 1535; + base:organisation\#comment ""; + base:organisation\#inst_name "Boston Jubilee Festival" . + +base:organisation\/1545 a base:organisation; + base:organisation\#IDOrganisation 1545; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Circuit Consolidated (later Orpheum Circuit Inc.)" . + +base:organisation\/155 a base:organisation; + base:organisation\#IDOrganisation 155; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Daly's Fifth Avenue Theatre" . + +base:organisation\/1550 a base:organisation; + base:organisation\#IDOrganisation 1550; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "merged with vaudeville circuits" . + +base:organisation\/1555 a base:organisation; + base:organisation\#IDOrganisation 1555; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "merged with the Keith-Albee Circuit" . + +base:organisation\/156 a base:organisation; + base:organisation\#IDOrganisation 156; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mrs. John Drew's Arch Street Theatre of Philadelphia"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/1600 a base:organisation; + base:organisation\#IDOrganisation 1600; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Strampfer -Theater" . + +base:organisation\/161 a base:organisation; + base:organisation\#IDOrganisation 161; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nemetti Theatre" . + +base:organisation\/1615 a base:organisation; + base:organisation\#IDOrganisation 1615; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaudeville Managers Association" . + +base:organisation\/162 a base:organisation; + base:organisation\#IDOrganisation 162; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Herald Square Theatre" . + +base:organisation\/1630 a base:organisation; + base:organisation\#IDOrganisation 1630; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Martin Beck Theater" . + +base:organisation\/1635 a base:organisation; + base:organisation\#IDOrganisation 1635; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio-Keith-Orpheum (RKO)" . + +base:organisation\/164 a base:organisation; + base:organisation\#IDOrganisation 164; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Metro Pictures" . + +base:organisation\/1640 a base:organisation; + base:organisation\#IDOrganisation 1640; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "DOyly Carte Opera Company" . + +base:organisation\/165 a base:organisation; + base:organisation\#IDOrganisation 165; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Passau" . + +base:organisation\/1650 a base:organisation; + base:organisation\#IDOrganisation 1650; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Fifth Avenue Theatre company" . + +base:organisation\/1655 a base:organisation; + base:organisation\#IDOrganisation 1655; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Madison Square Theatre company" . + +base:organisation\/1665 a base:organisation; + base:organisation\#IDOrganisation 1665; + base:organisation\#comment ""; + base:organisation\#inst_name "Rollins College" . + +base:organisation\/167 a base:organisation; + base:organisation\#IDOrganisation 167; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Großherzogliches Hoftheater in Darmstadt"; + base:organisation\#ref-IDLocation base:location\/GER-Darm-00 . + +base:organisation\/1675 a base:organisation; + base:organisation\#IDOrganisation 1675; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Italian Opera" . + +base:organisation\/1680 a base:organisation; + base:organisation\#IDOrganisation 1680; + base:organisation\#comment ""; + base:organisation\#inst_name "Curtis Institute" . + +base:organisation\/1685 a base:organisation; + base:organisation\#IDOrganisation 1685; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Juilliard School of Music" . + +base:organisation\/169 a base:organisation; + base:organisation\#IDOrganisation 169; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Hofheater"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/170 a base:organisation; + base:organisation\#IDOrganisation 170; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Königliche Akademie der Tonkunst" . + +base:organisation\/1700 a base:organisation; + base:organisation\#IDOrganisation 1700; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Forrest Theatre" . + +base:organisation\/1705 a base:organisation; + base:organisation\#IDOrganisation 1705; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaudeville Establishment" . + +base:organisation\/1710 a base:organisation; + base:organisation\#IDOrganisation 1710; + base:organisation\#comment ""; + base:organisation\#inst_name "Amateur Night" . + +base:organisation\/1715 a base:organisation; + base:organisation\#IDOrganisation 1715; + base:organisation\#comment ""; + base:organisation\#inst_name "Ziegfeld Follies" . + +base:organisation\/172 a base:organisation; + base:organisation\#IDOrganisation 172; + base:organisation\#comment ""; + base:organisation\#inst_name "Großherzoglich Badische Hofkapelle Karlsruhe"; + base:organisation\#ref-IDLocation base:location\/GER-Karls-00 . + +base:organisation\/1726 a base:organisation; + base:organisation\#IDOrganisation 1726; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacintho Sen." . + +base:organisation\/1731 a base:organisation; + base:organisation\#IDOrganisation 1731; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de Santa Theresa" . + +base:organisation\/1741 a base:organisation; + base:organisation\#IDOrganisation 1741; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Florindo Joaquim da Silva Theatre Company" . + +base:organisation\/1771 a base:organisation; + base:organisation\#IDOrganisation 1771; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Joaquim Heleodoro’sTheater Company" . + +base:organisation\/1776 a base:organisation; + base:organisation\#IDOrganisation 1776; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Furtado Coelho Theater Company" . + +base:organisation\/1781 a base:organisation; + base:organisation\#IDOrganisation 1781; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Bernardo Joaquim Correa Theatre Company" . + +base:organisation\/1786 a base:organisation; + base:organisation\#IDOrganisation 1786; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Francês (Eldorado)" . + +base:organisation\/1791 a base:organisation; + base:organisation\#IDOrganisation 1791; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lírico Fluminense" . + +base:organisation\/1801 a base:organisation; + base:organisation\#IDOrganisation 1801; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Vasques Theatre Company " . + +base:organisation\/1811 a base:organisation; + base:organisation\#IDOrganisation 1811; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Heller Theater Company (Companhia Phênix Dramática)" . + +base:organisation\/182 a base:organisation; + base:organisation\#IDOrganisation 182; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Breslau"; + base:organisation\#ref-IDLocation base:location\/PL-Bres-00 . + +base:organisation\/1831 a base:organisation; + base:organisation\#IDOrganisation 1831; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santa Isabel" . + +base:organisation\/1846 a base:organisation; + base:organisation\#IDOrganisation 1846; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "New Heller Theater Company (Eden-Teatro)" . + +base:organisation\/185 a base:organisation; + base:organisation\#IDOrganisation 185; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Bernburg"; + base:organisation\#ref-IDLocation base:location\/GER-Bernb-00 . + +base:organisation\/1851 a base:organisation; + base:organisation\#IDOrganisation 1851; + base:organisation\#comment ""; + base:organisation\#inst_name "Recreio Dramático" . + +base:organisation\/1856 a base:organisation; + base:organisation\#IDOrganisation 1856; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Empresaria Garrido & C." . + +base:organisation\/186 a base:organisation; + base:organisation\#IDOrganisation 186; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Magdeburg"; + base:organisation\#ref-IDLocation base:location\/GER-Magdb-00 . + +base:organisation\/1866 a base:organisation; + base:organisation\#IDOrganisation 1866; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Campanhia de Operas Cômicas, Operetas e Mágicas" . + +base:organisation\/187 a base:organisation; + base:organisation\#IDOrganisation 187; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Palace Theatre of Varieties" . + +base:organisation\/1876 a base:organisation; + base:organisation\#IDOrganisation 1876; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia de Operetas Mágicas e Revistas" . + +base:organisation\/1881 a base:organisation; + base:organisation\#IDOrganisation 1881; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Infantil (empresa Palmerino & Co.)" . + +base:organisation\/189 a base:organisation; + base:organisation\#IDOrganisation 189; + base:organisation\#comment ""; + base:organisation\#inst_name "Koster & Bial’s" . + +base:organisation\/1891 a base:organisation; + base:organisation\#IDOrganisation 1891; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Empresa Nazareth & C." . + +base:organisation\/1896 a base:organisation; + base:organisation\#IDOrganisation 1896; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia de Operetas, Mágicas e Revistas" . + +base:organisation\/190 a base:organisation; + base:organisation\#IDOrganisation 190; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Ada Rehan Company" . + +base:organisation\/1906 a base:organisation; + base:organisation\#IDOrganisation 1906; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Infantil" . + +base:organisation\/1911 a base:organisation; + base:organisation\#IDOrganisation 1911; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Grande Companhia de Operetas e Revistas Silva Pinto" . + +base:organisation\/192 a base:organisation; + base:organisation\#IDOrganisation 192; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Modjeska’s repertory company" . + +base:organisation\/1921 a base:organisation; + base:organisation\#IDOrganisation 1921; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Casino de la Rue Cadet" . + +base:organisation\/194 a base:organisation; + base:organisation\#IDOrganisation 194; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Alhambra Theatre Belfast"; + base:organisation\#ref-IDLocation base:location\/IE-Belf-00 . + +base:organisation\/1941 a base:organisation; + base:organisation\#IDOrganisation 1941; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Variétés" . + +base:organisation\/1946 a base:organisation; + base:organisation\#IDOrganisation 1946; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lina Edwins Theater" . + +base:organisation\/195 a base:organisation; + base:organisation\#IDOrganisation 195; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Oxford Music Hall" . + +base:organisation\/1966 a base:organisation; + base:organisation\#IDOrganisation 1966; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Memphis Theatre" . + +base:organisation\/197 a base:organisation; + base:organisation\#IDOrganisation 197; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Swedish Music Academy in Stockholm"; + base:organisation\#ref-IDLocation base:location\/SE-Stock-00 . + +base:organisation\/198 a base:organisation; + base:organisation\#IDOrganisation 198; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nürnberger Theater"; + base:organisation\#ref-IDLocation base:location\/GER-Nur-00 . + +base:organisation\/1986 a base:organisation; + base:organisation\#IDOrganisation 1986; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Natioal Theatre " . + +base:organisation\/199 a base:organisation; + base:organisation\#IDOrganisation 199; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Ringling Brothers Circus" . + +base:organisation\/200 a base:organisation; + base:organisation\#IDOrganisation 200; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Staatsoper" . + +base:organisation\/2006 a base:organisation; + base:organisation\#IDOrganisation 2006; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Manphis Theatre" . + +base:organisation\/202 a base:organisation; + base:organisation\#IDOrganisation 202; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Augsburg" . + +base:organisation\/2036 a base:organisation; + base:organisation\#IDOrganisation 2036; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gran Opera Hause"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/204 a base:organisation; + base:organisation\#IDOrganisation 204; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Pest" . + +base:organisation\/205 a base:organisation; + base:organisation\#IDOrganisation 205; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Conservatory Leipzig" . + +base:organisation\/2061 a base:organisation; + base:organisation\#IDOrganisation 2061; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Eagle Theatre" . + +base:organisation\/207 a base:organisation; + base:organisation\#IDOrganisation 207; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment "of Angelo Neumann"; + base:organisation\#inst_name "Wagner Opera Company" . + +base:organisation\/208 a base:organisation; + base:organisation\#IDOrganisation 208; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New American Opera Company" . + +base:organisation\/210 a base:organisation; + base:organisation\#IDOrganisation 210; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Gustav Heinrichs Company" . + +base:organisation\/2106 a base:organisation; + base:organisation\#IDOrganisation 2106; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Alcazar Lyrique / Théâtre Lyrique Français"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/2111 a base:organisation; + base:organisation\#IDOrganisation 2111; + base:organisation\#comment ""; + base:organisation\#inst_name "Café Cantante" . + +base:organisation\/2116 a base:organisation; + base:organisation\#IDOrganisation 2116; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Montansier" . + +base:organisation\/212 a base:organisation; + base:organisation\#IDOrganisation 212; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Castle Square Opera Company" . + +base:organisation\/2121 a base:organisation; + base:organisation\#IDOrganisation 2121; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Francês (Salle São Januário)" . + +base:organisation\/2126 a base:organisation; + base:organisation\#IDOrganisation 2126; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compagnie Française" . + +base:organisation\/2131 a base:organisation; + base:organisation\#IDOrganisation 2131; + base:organisation\#comment ""; + base:organisation\#inst_name "Café Cantante leaded by Léon DHôte" . + +base:organisation\/2136 a base:organisation; + base:organisation\#IDOrganisation 2136; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Parisiennes" . + +base:organisation\/2156 a base:organisation; + base:organisation\#IDOrganisation 2156; + base:organisation\#comment ""; + base:organisation\#inst_name "Bouffes Fluminenses" . + +base:organisation\/216 a base:organisation; + base:organisation\#IDOrganisation 216; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater zu Stettin" . + +base:organisation\/2171 a base:organisation; + base:organisation\#IDOrganisation 2171; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Ginásio" . + +base:organisation\/218 a base:organisation; + base:organisation\#IDOrganisation 218; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater zu Brünn" . + +base:organisation\/219 a base:organisation; + base:organisation\#IDOrganisation 219; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Landestheater Graz" . + +base:organisation\/222 a base:organisation; + base:organisation\#IDOrganisation 222; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Vereinigte deutsche Theater in Pesth-Ofen" . + +base:organisation\/223 a base:organisation; + base:organisation\#IDOrganisation 223; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Königlich-Städtisches Theater in Brünn" . + +base:organisation\/2231 a base:organisation; + base:organisation\#IDOrganisation 2231; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Franco-Argentino" . + +base:organisation\/224 a base:organisation; + base:organisation\#IDOrganisation 224; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Landwirtschaftliches Theater in Graz" . + +base:organisation\/225 a base:organisation; + base:organisation\#IDOrganisation 225; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Krakau" . + +base:organisation\/226 a base:organisation; + base:organisation\#IDOrganisation 226; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Städtisches Theater Olmütz" . + +base:organisation\/227 a base:organisation; + base:organisation\#IDOrganisation 227; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment "heutiges Gärtnerplatztheater"; + base:organisation\#inst_name "Aktien-Volkstheater"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/228 a base:organisation; + base:organisation\#IDOrganisation 228; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Aachen" . + +base:organisation\/2285 a base:organisation; + base:organisation\#IDOrganisation 2285; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Marlowe Theatre" . + +base:organisation\/229 a base:organisation; + base:organisation\#IDOrganisation 229; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Vereinigten Stadttheater von Rostock und Stralsund" . + +base:organisation\/2290 a base:organisation; + base:organisation\#IDOrganisation 2290; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Palmer’s Theatre" . + +base:organisation\/2295 a base:organisation; + base:organisation\#IDOrganisation 2295; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Old Star Theatre" . + +base:organisation\/231 a base:organisation; + base:organisation\#IDOrganisation 231; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Lübeck" . + +base:organisation\/234 a base:organisation; + base:organisation\#IDOrganisation 234; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Charles Street Theatre in Baltimore" . + +base:organisation\/235 a base:organisation; + base:organisation\#IDOrganisation 235; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lviv Polish Theatre Opera" . + +base:organisation\/236 a base:organisation; + base:organisation\#IDOrganisation 236; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Skarbeck Theatre in Lemberg" . + +base:organisation\/2360 a base:organisation; + base:organisation\#IDOrganisation 2360; + base:organisation\#comment ""; + base:organisation\#inst_name "Lincoln Park" . + +base:organisation\/2365 a base:organisation; + base:organisation\#IDOrganisation 2365; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "summer" . + +base:organisation\/237 a base:organisation; + base:organisation\#IDOrganisation 237; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Rumanian Imperial Theatre in Bucharest" . + +base:organisation\/2370 a base:organisation; + base:organisation\#IDOrganisation 2370; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Spring" . + +base:organisation\/241 a base:organisation; + base:organisation\#IDOrganisation 241; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Boris Tomashefsky’s National Theater" . + +base:organisation\/243 a base:organisation; + base:organisation\#IDOrganisation 243; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Jolson Theatre" . + +base:organisation\/2430 a base:organisation; + base:organisation\#IDOrganisation 2430; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Castle Garden Theatre" . + +base:organisation\/244 a base:organisation; + base:organisation\#IDOrganisation 244; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Miner’s Bowery Theatre Manhattan" . + +base:organisation\/2445 a base:organisation; + base:organisation\#IDOrganisation 2445; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Great Theatre of Santa Anna" . + +base:organisation\/245 a base:organisation; + base:organisation\#IDOrganisation 245; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Sulkowskitheater in Matzleinsdorf" . + +base:organisation\/246 a base:organisation; + base:organisation\#IDOrganisation 246; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Neues Stadttheater Leipzig" . + +base:organisation\/248 a base:organisation; + base:organisation\#IDOrganisation 248; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Berliner Theater" . + +base:organisation\/249 a base:organisation; + base:organisation\#IDOrganisation 249; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Aktientheater, Heilbronn"; + base:organisation\#ref-IDLocation base:location\/GER-HN-00 . + +base:organisation\/2490 a base:organisation; + base:organisation\#IDOrganisation 2490; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Conductor at the Imperial Opera, Vienna" . + +base:organisation\/251 a base:organisation; + base:organisation\#IDOrganisation 251; + base:organisation\#comment ""; + base:organisation\#inst_name "Comödienhaus Frankfurt" . + +base:organisation\/2510 a base:organisation; + base:organisation\#IDOrganisation 2510; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "“CarliCa ren Mar del Plata”" . + +base:organisation\/2515 a base:organisation; + base:organisation\#IDOrganisation 2515; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "“Chaco”" . + +base:organisation\/2535 a base:organisation; + base:organisation\#IDOrganisation 2535; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nacional Cervantes" . + +base:organisation\/2540 a base:organisation; + base:organisation\#IDOrganisation 2540; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Museo de Teatro" . + +base:organisation\/2550 a base:organisation; + base:organisation\#IDOrganisation 2550; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro General San Martín" . + +base:organisation\/256 a base:organisation; + base:organisation\#IDOrganisation 256; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Konzerthaus" . + +base:organisation\/2565 a base:organisation; + base:organisation\#IDOrganisation 2565; + base:organisation\#comment ""; + base:organisation\#inst_name "Comedia Nacional" . + +base:organisation\/2570 a base:organisation; + base:organisation\#IDOrganisation 2570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Real Theatro de San Carlos" . + +base:organisation\/2585 a base:organisation; + base:organisation\#IDOrganisation 2585; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Court of Lisbon" . + +base:organisation\/2590 a base:organisation; + base:organisation\#IDOrganisation 2590; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Aquarium Theatre" . + +base:organisation\/2595 a base:organisation; + base:organisation\#IDOrganisation 2595; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Imperial Theatre" . + +base:organisation\/2600 a base:organisation; + base:organisation\#IDOrganisation 2600; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Paris Opera" . + +base:organisation\/2610 a base:organisation; + base:organisation\#IDOrganisation 2610; + base:organisation\#comment ""; + base:organisation\#inst_name "Volstrung" . + +base:organisation\/2615 a base:organisation; + base:organisation\#IDOrganisation 2615; + base:organisation\#comment ""; + base:organisation\#inst_name "La Scala" . + +base:organisation\/2635 a base:organisation; + base:organisation\#IDOrganisation 2635; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Real Theatre of Lisboa" . + +base:organisation\/264 a base:organisation; + base:organisation\#IDOrganisation 264; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Weber’s Music Hall" . + +base:organisation\/2640 a base:organisation; + base:organisation\#IDOrganisation 2640; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Portuguese Palace" . + +base:organisation\/2645 a base:organisation; + base:organisation\#IDOrganisation 2645; + base:organisation\#comment ""; + base:organisation\#inst_name "Palacio de Oriente en España" . + +base:organisation\/265 a base:organisation; + base:organisation\#IDOrganisation 265; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Theatre" . + +base:organisation\/2650 a base:organisation; + base:organisation\#IDOrganisation 2650; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Casa del Teatro, Teatro Nacional, Teatro Presidente Alvear" . + +base:organisation\/2655 a base:organisation; + base:organisation\#IDOrganisation 2655; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Circo Porteño" . + +base:organisation\/266 a base:organisation; + base:organisation\#IDOrganisation 266; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New Theatre New York" . + +base:organisation\/2660 a base:organisation; + base:organisation\#IDOrganisation 2660; + base:organisation\#comment ""; + base:organisation\#inst_name "Owner of his photography shop where he used to make portraits" . + +base:organisation\/2665 a base:organisation; + base:organisation\#IDOrganisation 2665; + base:organisation\#comment ""; + base:organisation\#inst_name "Owner of a local, where there was a newspaper: El Norte" . + +base:organisation\/2670 a base:organisation; + base:organisation\#IDOrganisation 2670; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Itinerant actor in diverse companies" . + +base:organisation\/2675 a base:organisation; + base:organisation\#IDOrganisation 2675; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The actress works in several theaters in the city" . + +base:organisation\/2680 a base:organisation; + base:organisation\#IDOrganisation 2680; + base:organisation\#comment ""; + base:organisation\#inst_name "English Teacher" . + +base:organisation\/2695 a base:organisation; + base:organisation\#IDOrganisation 2695; + base:organisation\#comment ""; + base:organisation\#inst_name "University Leipzig" . + +base:organisation\/2705 a base:organisation; + base:organisation\#IDOrganisation 2705; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro La Fenice" . + +base:organisation\/271 a base:organisation; + base:organisation\#IDOrganisation 271; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mrs. John Wood company" . + +base:organisation\/2710 a base:organisation; + base:organisation\#IDOrganisation 2710; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Carcano" . + +base:organisation\/2715 a base:organisation; + base:organisation\#IDOrganisation 2715; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro alla Scala" . + +base:organisation\/2722 a base:organisation; + base:organisation\#IDOrganisation 2722; + base:organisation\#comment ""; + base:organisation\#inst_name "HollyWood" . + +base:organisation\/273 a base:organisation; + base:organisation\#IDOrganisation 273; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Annie Russell’s Company" . + +base:organisation\/274 a base:organisation; + base:organisation\#IDOrganisation 274; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lewis Baker’s company" . + +base:organisation\/2746 a base:organisation; + base:organisation\#IDOrganisation 2746; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyceum Theatre on Fourteenth Street" . + +base:organisation\/277 a base:organisation; + base:organisation\#IDOrganisation 277; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago Civic Opera" . + +base:organisation\/278 a base:organisation; + base:organisation\#IDOrganisation 278; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago Musical College" . + +base:organisation\/2786 a base:organisation; + base:organisation\#IDOrganisation 2786; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyceum" . + +base:organisation\/280 a base:organisation; + base:organisation\#IDOrganisation 280; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Dresden"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/281 a base:organisation; + base:organisation\#IDOrganisation 281; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "„altes“ Burgtheater am Michaelerplatz, Vienna" . + +base:organisation\/285 a base:organisation; + base:organisation\#IDOrganisation 285; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Ständisches Theater Prag" . + +base:organisation\/286 a base:organisation; + base:organisation\#IDOrganisation 286; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper in Pest" . + +base:organisation\/287 a base:organisation; + base:organisation\#IDOrganisation 287; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper in Ofen (Buda)" . + +base:organisation\/288 a base:organisation; + base:organisation\#IDOrganisation 288; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Kölner Theater" . + +base:organisation\/289 a base:organisation; + base:organisation\#IDOrganisation 289; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Damrosch Opera Company" . + +base:organisation\/291 a base:organisation; + base:organisation\#IDOrganisation 291; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Regensburg" . + +base:organisation\/2911 a base:organisation; + base:organisation\#IDOrganisation 2911; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Soho Academy"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/2916 a base:organisation; + base:organisation\#IDOrganisation 2916; + base:organisation\#comment ""; + base:organisation\#inst_name "U.S.-Tour" . + +base:organisation\/292 a base:organisation; + base:organisation\#IDOrganisation 292; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Landestheater Salzburg" . + +base:organisation\/2921 a base:organisation; + base:organisation\#IDOrganisation 2921; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Bergère and other French cities" . + +base:organisation\/293 a base:organisation; + base:organisation\#IDOrganisation 293; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "German Theater Lemberg" . + +base:organisation\/2935 a base:organisation; + base:organisation\#IDOrganisation 2935; + base:organisation\#comment ""; + base:organisation\#inst_name "Santa Fe Rosario Street" . + +base:organisation\/294 a base:organisation; + base:organisation\#IDOrganisation 294; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Symphony Orchestra" . + +base:organisation\/295 a base:organisation; + base:organisation\#IDOrganisation 295; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lydia Thompson’s company" . + +base:organisation\/2955 a base:organisation; + base:organisation\#IDOrganisation 2955; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Olimpo de La Plata" . + +base:organisation\/296 a base:organisation; + base:organisation\#IDOrganisation 296; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Abbey Wallack Company" . + +base:organisation\/297 a base:organisation; + base:organisation\#IDOrganisation 297; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Krefeld" . + +base:organisation\/2975 a base:organisation; + base:organisation\#IDOrganisation 2975; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Ideal" . + +base:organisation\/2980 a base:organisation; + base:organisation\#IDOrganisation 2980; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro 25 de Mayo" . + +base:organisation\/2995 a base:organisation; + base:organisation\#IDOrganisation 2995; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companía de “Cómicos de la lengua”" . + +base:organisation\/3005 a base:organisation; + base:organisation\#IDOrganisation 3005; + base:organisation\#comment ""; + base:organisation\#inst_name "Petray Brothers" . + +base:organisation\/302 a base:organisation; + base:organisation\#IDOrganisation 302; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater in St. Petersburg" . + +base:organisation\/3025 a base:organisation; + base:organisation\#IDOrganisation 3025; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companía Dramática Rioplatense (Dir: Alfredo Duhau)" . + +base:organisation\/3045 a base:organisation; + base:organisation\#IDOrganisation 3045; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Argentina de Comedias (Dir: Argentino Gómez)" . + +base:organisation\/305 a base:organisation; + base:organisation\#IDOrganisation 305; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera National de Paris" . + +base:organisation\/3050 a base:organisation; + base:organisation\#IDOrganisation 3050; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Dramática Argentina de La garra" . + +base:organisation\/3055 a base:organisation; + base:organisation\#IDOrganisation 3055; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Argentina de Dramas y Comedias" . + +base:organisation\/306 a base:organisation; + base:organisation\#IDOrganisation 306; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro el Circo" . + +base:organisation\/3060 a base:organisation; + base:organisation\#IDOrganisation 3060; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Argentina de Sainetes y Comedias" . + +base:organisation\/3065 a base:organisation; + base:organisation\#IDOrganisation 3065; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Argentina de Comedia Paulina Singerman" . + +base:organisation\/3070 a base:organisation; + base:organisation\#IDOrganisation 3070; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Nacional de Comedias y Gran Gignol" . + +base:organisation\/3075 a base:organisation; + base:organisation\#IDOrganisation 3075; + base:organisation\#comment ""; + base:organisation\#inst_name "César y Pepe Ratti" . + +base:organisation\/3086 a base:organisation; + base:organisation\#IDOrganisation 3086; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Friedrich-Wilhelmstädtisches Theater" . + +base:organisation\/3091 a base:organisation; + base:organisation\#IDOrganisation 3091; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name """Hannover Stadttheater +""" . + +base:organisation\/3096 a base:organisation; + base:organisation\#IDOrganisation 3096; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name """Wilhelm-Theater Magdenburg +""" . + +base:organisation\/310 a base:organisation; + base:organisation\#IDOrganisation 310; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Costanzi in Rom" . + +base:organisation\/3101 a base:organisation; + base:organisation\#IDOrganisation 3101; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Carl Schultze-Theater Hamburg" . + +base:organisation\/3105 a base:organisation; + base:organisation\#IDOrganisation 3105; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Residenztheater Dresden"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/3110 a base:organisation; + base:organisation\#IDOrganisation 3110; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Montis Operettentheater Berlin" . + +base:organisation\/3115 a base:organisation; + base:organisation\#IDOrganisation 3115; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Gärtnerplatztheater München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/312 a base:organisation; + base:organisation\#IDOrganisation 312; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Regio di Parma" . + +base:organisation\/3120 a base:organisation; + base:organisation\#IDOrganisation 3120; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Staatstheater Wiesbaden" . + +base:organisation\/3125 a base:organisation; + base:organisation\#IDOrganisation 3125; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Sternsches Konservatorium" . + +base:organisation\/3130 a base:organisation; + base:organisation\#IDOrganisation 3130; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Konservatorium Köln" . + +base:organisation\/314 a base:organisation; + base:organisation\#IDOrganisation 314; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Schiller Vaudeville Company" . + +base:organisation\/3140 a base:organisation; + base:organisation\#IDOrganisation 3140; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Academia de Artes y Ciencias Cinematográficas" . + +base:organisation\/3165 a base:organisation; + base:organisation\#IDOrganisation 3165; + base:organisation\#comment ""; + base:organisation\#inst_name "Café Concert, Rivadavia 1200" . + +base:organisation\/3170 a base:organisation; + base:organisation\#IDOrganisation 3170; + base:organisation\#comment ""; + base:organisation\#inst_name "Café Royal Keller" . + +base:organisation\/3180 a base:organisation; + base:organisation\#IDOrganisation 3180; + base:organisation\#comment ""; + base:organisation\#inst_name "Cine Capitol" . + +base:organisation\/3185 a base:organisation; + base:organisation\#IDOrganisation 3185; + base:organisation\#comment ""; + base:organisation\#inst_name "Circo Corrado" . + +base:organisation\/319 a base:organisation; + base:organisation\#IDOrganisation 319; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nuovo" . + +base:organisation\/3190 a base:organisation; + base:organisation\#IDOrganisation 3190; + base:organisation\#comment ""; + base:organisation\#inst_name "Comisión Nacional de Cultura del Ministerio de Justicia e Instrucción Pública" . + +base:organisation\/3195 a base:organisation; + base:organisation\#IDOrganisation 3195; + base:organisation\#comment ""; + base:organisation\#inst_name "Consejo Consultivo de Autores, Actores y Empresarios" . + +base:organisation\/3200 a base:organisation; + base:organisation\#IDOrganisation 3200; + base:organisation\#comment ""; + base:organisation\#inst_name "El Fogón de Montevideo" . + +base:organisation\/3205 a base:organisation; + base:organisation\#IDOrganisation 3205; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "High-Life Theatre" . + +base:organisation\/321 a base:organisation; + base:organisation\#IDOrganisation 321; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Società d'industria e belle arti" . + +base:organisation\/3210 a base:organisation; + base:organisation\#IDOrganisation 3210; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Hotel Royal" . + +base:organisation\/3215 a base:organisation; + base:organisation\#IDOrganisation 3215; + base:organisation\#comment ""; + base:organisation\#inst_name "Filmex" . + +base:organisation\/3225 a base:organisation; + base:organisation\#IDOrganisation 3225; + base:organisation\#comment ""; + base:organisation\#inst_name "National Exhibition of Milano" . + +base:organisation\/3230 a base:organisation; + base:organisation\#IDOrganisation 3230; + base:organisation\#comment ""; + base:organisation\#inst_name "National Exhibition of Turin" . + +base:organisation\/3260 a base:organisation; + base:organisation\#IDOrganisation 3260; + base:organisation\#comment ""; + base:organisation\#inst_name "Salon Centro Gallego" . + +base:organisation\/327 a base:organisation; + base:organisation\#IDOrganisation 327; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Singing school Vienna" . + +base:organisation\/3280 a base:organisation; + base:organisation\#IDOrganisation 3280; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Cómico" . + +base:organisation\/3285 a base:organisation; + base:organisation\#IDOrganisation 3285; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Corrientes" . + +base:organisation\/3295 a base:organisation; + base:organisation\#IDOrganisation 3295; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Eslava" . + +base:organisation\/3310 a base:organisation; + base:organisation\#IDOrganisation 3310; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lara" . + +base:organisation\/3315 a base:organisation; + base:organisation\#IDOrganisation 3315; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lyrico" . + +base:organisation\/3320 a base:organisation; + base:organisation\#IDOrganisation 3320; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Metrópoli" . + +base:organisation\/3340 a base:organisation; + base:organisation\#IDOrganisation 3340; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro París" . + +base:organisation\/3345 a base:organisation; + base:organisation\#IDOrganisation 3345; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Porteño" . + +base:organisation\/3355 a base:organisation; + base:organisation\#IDOrganisation 3355; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Tirso de Molina" . + +base:organisation\/3360 a base:organisation; + base:organisation\#IDOrganisation 3360; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Tívoli" . + +base:organisation\/337 a base:organisation; + base:organisation\#IDOrganisation 337; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Old English Comedy Company" . + +base:organisation\/3370 a base:organisation; + base:organisation\#IDOrganisation 3370; + base:organisation\#comment ""; + base:organisation\#inst_name "Tertulias Los Inmortales" . + +base:organisation\/3375 a base:organisation; + base:organisation\#IDOrganisation 3375; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Municipal" . + +base:organisation\/3380 a base:organisation; + base:organisation\#IDOrganisation 3380; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Revista de Estudios de Teatro (INET)" . + +base:organisation\/3390 a base:organisation; + base:organisation\#IDOrganisation 3390; + base:organisation\#comment ""; + base:organisation\#inst_name "San Juan de Oporto" . + +base:organisation\/3395 a base:organisation; + base:organisation\#IDOrganisation 3395; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedad General de Autores" . + +base:organisation\/3405 a base:organisation; + base:organisation\#IDOrganisation 3405; + base:organisation\#comment ""; + base:organisation\#inst_name "Spanish Army" . + +base:organisation\/3410 a base:organisation; + base:organisation\#IDOrganisation 3410; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Talía, Revista de Teatro y arte" . + +base:organisation\/3430 a base:organisation; + base:organisation\#IDOrganisation 3430; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Anuario Teatral" . + +base:organisation\/3435 a base:organisation; + base:organisation\#IDOrganisation 3435; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Arata-Simari-Franco Company" . + +base:organisation\/3440 a base:organisation; + base:organisation\#IDOrganisation 3440; + base:organisation\#comment ""; + base:organisation\#inst_name "Bambalinas" . + +base:organisation\/346 a base:organisation; + base:organisation\#IDOrganisation 346; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-SanFranc-02 . + +base:organisation\/3465 a base:organisation; + base:organisation\#IDOrganisation 3465; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Israelita de Dramas e Comédias" . + +base:organisation\/3470 a base:organisation; + base:organisation\#IDOrganisation 3470; + base:organisation\#comment ""; + base:organisation\#inst_name "El Mirlo Blanco" . + +base:organisation\/3475 a base:organisation; + base:organisation\#IDOrganisation 3475; + base:organisation\#comment ""; + base:organisation\#inst_name "El Cántaro Roto" . + +base:organisation\/3485 a base:organisation; + base:organisation\#IDOrganisation 3485; + base:organisation\#comment ""; + base:organisation\#inst_name "El imparcial" . + +base:organisation\/3505 a base:organisation; + base:organisation\#IDOrganisation 3505; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Gran Companhia Alemã Israelita" . + +base:organisation\/3515 a base:organisation; + base:organisation\#IDOrganisation 3515; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Grande Companhia Israelita H. Starr" . + +base:organisation\/3520 a base:organisation; + base:organisation\#IDOrganisation 3520; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Guillermo Battaglia Company" . + +base:organisation\/353 a base:organisation; + base:organisation\#IDOrganisation 353; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Burgtheater Wien" . + +base:organisation\/3545 a base:organisation; + base:organisation\#IDOrganisation 3545; + base:organisation\#comment ""; + base:organisation\#inst_name "La verdad" . + +base:organisation\/355 a base:organisation; + base:organisation\#IDOrganisation 355; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lemberger Oper" . + +base:organisation\/3550 a base:organisation; + base:organisation\#IDOrganisation 3550; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "La Patria degl’italiani (newspaper)" . + +base:organisation\/3555 a base:organisation; + base:organisation\#IDOrganisation 3555; + base:organisation\#comment ""; + base:organisation\#inst_name "La república" . + +base:organisation\/356 a base:organisation; + base:organisation\#IDOrganisation 356; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Altona" . + +base:organisation\/3570 a base:organisation; + base:organisation\#IDOrganisation 3570; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Mundial Magazine" . + +base:organisation\/358 a base:organisation; + base:organisation\#IDOrganisation 358; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Riga" . + +base:organisation\/3580 a base:organisation; + base:organisation\#IDOrganisation 3580; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "“Nosotros”, Magazine" . + +base:organisation\/359 a base:organisation; + base:organisation\#IDOrganisation 359; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Linz" . + +base:organisation\/3590 a base:organisation; + base:organisation\#IDOrganisation 3590; + base:organisation\#comment ""; + base:organisation\#inst_name "Novela gratis" . + +base:organisation\/3600 a base:organisation; + base:organisation\#IDOrganisation 3600; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Revista Artística (journal)" . + +base:organisation\/3615 a base:organisation; + base:organisation\#IDOrganisation 3615; + base:organisation\#comment ""; + base:organisation\#inst_name "Tribuna de Buenos Aires" . + +base:organisation\/3620 a base:organisation; + base:organisation\#IDOrganisation 3620; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Walt Disney Company" . + +base:organisation\/3625 a base:organisation; + base:organisation\#IDOrganisation 3625; + base:organisation\#comment ""; + base:organisation\#inst_name "La Femme Chie (Hat shop)" . + +base:organisation\/3635 a base:organisation; + base:organisation\#IDOrganisation 3635; + base:organisation\#comment ""; + base:organisation\#inst_name "Instituto Nacional de Música Festival" . + +base:organisation\/3640 a base:organisation; + base:organisation\#IDOrganisation 3640; + base:organisation\#comment ""; + base:organisation\#inst_name "Victor Records" . + +base:organisation\/3645 a base:organisation; + base:organisation\#IDOrganisation 3645; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro João Caetano" . + +base:organisation\/3665 a base:organisation; + base:organisation\#IDOrganisation 3665; + base:organisation\#comment ""; + base:organisation\#inst_name "Cine Popular" . + +base:organisation\/3675 a base:organisation; + base:organisation\#IDOrganisation 3675; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Excelsior" . + +base:organisation\/3680 a base:organisation; + base:organisation\#IDOrganisation 3680; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Cine-Teatro Brodway" . + +base:organisation\/3690 a base:organisation; + base:organisation\#IDOrganisation 3690; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Farroupilha" . + +base:organisation\/3695 a base:organisation; + base:organisation\#IDOrganisation 3695; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassino Copacabana" . + +base:organisation\/370 a base:organisation; + base:organisation\#IDOrganisation 370; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lexington Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Lex-00 . + +base:organisation\/3700 a base:organisation; + base:organisation\#IDOrganisation 3700; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Tupi" . + +base:organisation\/371 a base:organisation; + base:organisation\#IDOrganisation 371; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Wallner-Theater, Berlin" . + +base:organisation\/3710 a base:organisation; + base:organisation\#IDOrganisation 3710; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio City" . + +base:organisation\/3720 a base:organisation; + base:organisation\#IDOrganisation 3720; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassino Atlântico" . + +base:organisation\/3725 a base:organisation; + base:organisation\#IDOrganisation 3725; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Record" . + +base:organisation\/373 a base:organisation; + base:organisation\#IDOrganisation 373; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kölner Residenztheater"; + base:organisation\#ref-IDLocation base:location\/GER-Col-00 . + +base:organisation\/3730 a base:organisation; + base:organisation\#IDOrganisation 3730; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Coliseu" . + +base:organisation\/3740 a base:organisation; + base:organisation\#IDOrganisation 3740; + base:organisation\#comment ""; + base:organisation\#inst_name "Cine Trianon" . + +base:organisation\/3750 a base:organisation; + base:organisation\#IDOrganisation 3750; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Broadhurst Theatre" . + +base:organisation\/3755 a base:organisation; + base:organisation\#IDOrganisation 3755; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio NBC" . + +base:organisation\/376 a base:organisation; + base:organisation\#IDOrganisation 376; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater am Kurfürstendamm"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/377 a base:organisation; + base:organisation\#IDOrganisation 377; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Saltenburg-Bühnen" . + +base:organisation\/3775 a base:organisation; + base:organisation\#IDOrganisation 3775; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Colony Club" . + +base:organisation\/3785 a base:organisation; + base:organisation\#IDOrganisation 3785; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Paramond Theatre" . + +base:organisation\/380 a base:organisation; + base:organisation\#IDOrganisation 380; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Göttingen"; + base:organisation\#ref-IDLocation base:location\/GER-Goett-00 . + +base:organisation\/3805 a base:organisation; + base:organisation\#IDOrganisation 3805; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassino Icaraí" . + +base:organisation\/381 a base:organisation; + base:organisation\#IDOrganisation 381; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Universität für Musik und darstellende Kunst Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/3810 a base:organisation; + base:organisation\#IDOrganisation 3810; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Nightclub Chez Paree" . + +base:organisation\/3815 a base:organisation; + base:organisation\#IDOrganisation 3815; + base:organisation\#comment ""; + base:organisation\#inst_name "Decca Records" . + +base:organisation\/382 a base:organisation; + base:organisation\#IDOrganisation 382; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mannheimer Hof- und Nationaltheaters"; + base:organisation\#ref-IDLocation base:location\/GER-Mnhm-00 . + +base:organisation\/383 a base:organisation; + base:organisation\#IDOrganisation 383; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Volksbühne" . + +base:organisation\/385 a base:organisation; + base:organisation\#IDOrganisation 385; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Albert-Theater"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/3850 a base:organisation; + base:organisation\#IDOrganisation 3850; + base:organisation\#comment ""; + base:organisation\#inst_name "Cinema Actress and Singer as Freelancer" . + +base:organisation\/3860 a base:organisation; + base:organisation\#IDOrganisation 3860; + base:organisation\#comment ""; + base:organisation\#inst_name "Arrowhead Inn" . + +base:organisation\/387 a base:organisation; + base:organisation\#IDOrganisation 387; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Kammerspiele" . + +base:organisation\/3870 a base:organisation; + base:organisation\#IDOrganisation 3870; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Texaco Show Theatre (TV Show)" . + +base:organisation\/3875 a base:organisation; + base:organisation\#IDOrganisation 3875; + base:organisation\#comment ""; + base:organisation\#inst_name "El Rancho Vegas" . + +base:organisation\/388 a base:organisation; + base:organisation\#IDOrganisation 388; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Horscheltschen Kinderballetts" . + +base:organisation\/3880 a base:organisation; + base:organisation\#IDOrganisation 3880; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Beverly Country Club" . + +base:organisation\/390 a base:organisation; + base:organisation\#IDOrganisation 390; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Görlitz, State Theatre"; + base:organisation\#ref-IDLocation base:location\/GER-Goerl-00 . + +base:organisation\/3905 a base:organisation; + base:organisation\#IDOrganisation 3905; + base:organisation\#comment ""; + base:organisation\#inst_name "Copa City" . + +base:organisation\/3910 a base:organisation; + base:organisation\#IDOrganisation 3910; + base:organisation\#comment ""; + base:organisation\#inst_name "Hollywood Bowl" . + +base:organisation\/3915 a base:organisation; + base:organisation\#IDOrganisation 3915; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago Theatre" . + +base:organisation\/392 a base:organisation; + base:organisation\#IDOrganisation 392; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Wanderndes-Wagner-Theater" . + +base:organisation\/3920 a base:organisation; + base:organisation\#IDOrganisation 3920; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio NBC, Tze big show" . + +base:organisation\/394 a base:organisation; + base:organisation\#IDOrganisation 394; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Symphony Society" . + +base:organisation\/3945 a base:organisation; + base:organisation\#IDOrganisation 3945; + base:organisation\#comment ""; + base:organisation\#inst_name "Syrup Hadacol caravan" . + +base:organisation\/3950 a base:organisation; + base:organisation\#IDOrganisation 3950; + base:organisation\#comment ""; + base:organisation\#inst_name "Chez Peree" . + +base:organisation\/396 a base:organisation; + base:organisation\#IDOrganisation 396; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater zu Laibach" . + +base:organisation\/3965 a base:organisation; + base:organisation\#IDOrganisation 3965; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Baker Hotel" . + +base:organisation\/397 a base:organisation; + base:organisation\#IDOrganisation 397; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Darmstadt" . + +base:organisation\/3970 a base:organisation; + base:organisation\#IDOrganisation 3970; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New Palomar Supper Club" . + +base:organisation\/398 a base:organisation; + base:organisation\#IDOrganisation 398; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Coburg" . + +base:organisation\/3980 a base:organisation; + base:organisation\#IDOrganisation 3980; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Easteman Theatre" . + +base:organisation\/3985 a base:organisation; + base:organisation\#IDOrganisation 3985; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Desert Inn" . + +base:organisation\/3990 a base:organisation; + base:organisation\#IDOrganisation 3990; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Casino New Frontier" . + +base:organisation\/3995 a base:organisation; + base:organisation\#IDOrganisation 3995; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Tropicana Club" . + +base:organisation\/4000 a base:organisation; + base:organisation\#IDOrganisation 4000; + base:organisation\#comment ""; + base:organisation\#inst_name "The Jimmy Durante Show, NBC Channel" . + +base:organisation\/4005 a base:organisation; + base:organisation\#IDOrganisation 4005; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Comunale de Ferrara" . + +base:organisation\/401 a base:organisation; + base:organisation\#IDOrganisation 401; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater in der Josefstadt" . + +base:organisation\/4010 a base:organisation; + base:organisation\#IDOrganisation 4010; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Prager Interimstheater" . + +base:organisation\/4011 a base:organisation; + base:organisation\#IDOrganisation 4011; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Lyrica Italiana" . + +base:organisation\/4016 a base:organisation; + base:organisation\#IDOrganisation 4016; + base:organisation\#comment ""; + base:organisation\#inst_name "Ginásio Dramático Rio Grandense" . + +base:organisation\/4026 a base:organisation; + base:organisation\#IDOrganisation 4026; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grande Companhia de Opereta" . + +base:organisation\/403 a base:organisation; + base:organisation\#IDOrganisation 403; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Pythian Theatre" . + +base:organisation\/4035 a base:organisation; + base:organisation\#IDOrganisation 4035; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Regio" . + +base:organisation\/404 a base:organisation; + base:organisation\#IDOrganisation 404; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Tribüne, Berlin" . + +base:organisation\/405 a base:organisation; + base:organisation\#IDOrganisation 405; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Berliner Residenztheater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/4060 a base:organisation; + base:organisation\#IDOrganisation 4060; + base:organisation\#comment ""; + base:organisation\#inst_name "Paradossi-Consigli" . + +base:organisation\/4065 a base:organisation; + base:organisation\#IDOrganisation 4065; + base:organisation\#comment ""; + base:organisation\#inst_name "Alfredo de Sanctis" . + +base:organisation\/409 a base:organisation; + base:organisation\#IDOrganisation 409; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Motion Picture Company"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/4095 a base:organisation; + base:organisation\#IDOrganisation 4095; + base:organisation\#comment ""; + base:organisation\#inst_name "in collaboration with José López Silva" . + +base:organisation\/410 a base:organisation; + base:organisation\#IDOrganisation 410; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Essanay"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/4100 a base:organisation; + base:organisation\#IDOrganisation 4100; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Maria Guerrero Theatre Company" . + +base:organisation\/411 a base:organisation; + base:organisation\#IDOrganisation 411; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Mutual film"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/4110 a base:organisation; + base:organisation\#IDOrganisation 4110; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Eduardo Vitorino Theatre company" . + +base:organisation\/4115 a base:organisation; + base:organisation\#IDOrganisation 4115; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Carlos d’Oliveira theatre company" . + +base:organisation\/412 a base:organisation; + base:organisation\#IDOrganisation 412; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Savage Opera Company" . + +base:organisation\/4120 a base:organisation; + base:organisation\#IDOrganisation 4120; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Alexandre Herculano" . + +base:organisation\/4125 a base:organisation; + base:organisation\#IDOrganisation 4125; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Eduardo Brazão Theatre Company" . + +base:organisation\/413 a base:organisation; + base:organisation\#IDOrganisation 413; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kurfürsten Oper"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/414 a base:organisation; + base:organisation\#IDOrganisation 414; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Komische Oper"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/4146 a base:organisation; + base:organisation\#IDOrganisation 4146; + base:organisation\#comment ""; + base:organisation\#inst_name "Teacher Education in Theatre" . + +base:organisation\/415 a base:organisation; + base:organisation\#IDOrganisation 415; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "German Opera Company" . + +base:organisation\/4156 a base:organisation; + base:organisation\#IDOrganisation 4156; + base:organisation\#comment ""; + base:organisation\#inst_name "La Colmena Artística" . + +base:organisation\/416 a base:organisation; + base:organisation\#IDOrganisation 416; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofoper Unter den Linden" . + +base:organisation\/4161 a base:organisation; + base:organisation\#IDOrganisation 4161; + base:organisation\#comment ""; + base:organisation\#inst_name "Casa Peuser" . + +base:organisation\/4166 a base:organisation; + base:organisation\#IDOrganisation 4166; + base:organisation\#comment ""; + base:organisation\#inst_name "Imprenta Peuser" . + +base:organisation\/4171 a base:organisation; + base:organisation\#IDOrganisation 4171; + base:organisation\#comment ""; + base:organisation\#inst_name "La Razón" . + +base:organisation\/4181 a base:organisation; + base:organisation\#IDOrganisation 4181; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Sudamericana de Billetes de Banco" . + +base:organisation\/4186 a base:organisation; + base:organisation\#IDOrganisation 4186; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Academia de Bellas Artes" . + +base:organisation\/419 a base:organisation; + base:organisation\#IDOrganisation 419; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Coventgardentheatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/4191 a base:organisation; + base:organisation\#IDOrganisation 4191; + base:organisation\#comment ""; + base:organisation\#inst_name "Librería del Colegio" . + +base:organisation\/4196 a base:organisation; + base:organisation\#IDOrganisation 4196; + base:organisation\#comment ""; + base:organisation\#inst_name "Fray Mocho" . + +base:organisation\/4211 a base:organisation; + base:organisation\#IDOrganisation 4211; + base:organisation\#comment ""; + base:organisation\#inst_name "Aquilino Fernández publishing company" . + +base:organisation\/4216 a base:organisation; + base:organisation\#IDOrganisation 4216; + base:organisation\#comment ""; + base:organisation\#inst_name "Ángel Estrada publishing company" . + +base:organisation\/423 a base:organisation; + base:organisation\#IDOrganisation 423; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Gadski's Company" . + +base:organisation\/4231 a base:organisation; + base:organisation\#IDOrganisation 4231; + base:organisation\#comment ""; + base:organisation\#inst_name "Santa Rosa" . + +base:organisation\/4236 a base:organisation; + base:organisation\#IDOrganisation 4236; + base:organisation\#comment ""; + base:organisation\#inst_name "Duarte Guimarães’ Hause" . + +base:organisation\/424 a base:organisation; + base:organisation\#IDOrganisation 424; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Eastman School of Music" . + +base:organisation\/4241 a base:organisation; + base:organisation\#IDOrganisation 4241; + base:organisation\#comment ""; + base:organisation\#inst_name "Philarmônica Portuense" . + +base:organisation\/4256 a base:organisation; + base:organisation\#IDOrganisation 4256; + base:organisation\#comment ""; + base:organisation\#inst_name "Salon Henri Herz" . + +base:organisation\/4261 a base:organisation; + base:organisation\#IDOrganisation 4261; + base:organisation\#comment ""; + base:organisation\#inst_name "Music Hall Dublin" . + +base:organisation\/4266 a base:organisation; + base:organisation\#IDOrganisation 4266; + base:organisation\#comment ""; + base:organisation\#inst_name "Vauxpall Salon" . + +base:organisation\/427 a base:organisation; + base:organisation\#IDOrganisation 427; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Pilsen Oper"; + base:organisation\#ref-IDLocation base:location\/CZ-Pils-00 . + +base:organisation\/4271 a base:organisation; + base:organisation\#IDOrganisation 4271; + base:organisation\#comment ""; + base:organisation\#inst_name "Palace Garden" . + +base:organisation\/4276 a base:organisation; + base:organisation\#IDOrganisation 4276; + base:organisation\#comment ""; + base:organisation\#inst_name "Orchester of Teatro São Carlos" . + +base:organisation\/4286 a base:organisation; + base:organisation\#IDOrganisation 4286; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Arthur Napoleão e Miguez " . + +base:organisation\/429 a base:organisation; + base:organisation\#IDOrganisation 429; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bremen Opera"; + base:organisation\#ref-IDLocation base:location\/GER-Brem-00 . + +base:organisation\/4296 a base:organisation; + base:organisation\#IDOrganisation 4296; + base:organisation\#comment ""; + base:organisation\#inst_name "Camões tricentenary festival" . + +base:organisation\/430 a base:organisation; + base:organisation\#IDOrganisation 430; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Sondhausen Opera"; + base:organisation\#ref-IDLocation base:location\/GER-Sondh-00 . + +base:organisation\/4301 a base:organisation; + base:organisation\#IDOrganisation 4301; + base:organisation\#comment ""; + base:organisation\#inst_name "Big Festival in Teatro Lírico" . + +base:organisation\/431 a base:organisation; + base:organisation\#IDOrganisation 431; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Halle Opera"; + base:organisation\#ref-IDLocation base:location\/GER-Hall-00 . + +base:organisation\/4311 a base:organisation; + base:organisation\#IDOrganisation 4311; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Arthur Napoleão & Cia. " . + +base:organisation\/4316 a base:organisation; + base:organisation\#IDOrganisation 4316; + base:organisation\#comment ""; + base:organisation\#inst_name "Palácio de Cristal" . + +base:organisation\/432 a base:organisation; + base:organisation\#IDOrganisation 432; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Basel Opera"; + base:organisation\#ref-IDLocation base:location\/CH-Bas-00 . + +base:organisation\/4321 a base:organisation; + base:organisation\#IDOrganisation 4321; + base:organisation\#comment ""; + base:organisation\#inst_name "Club dos Diários" . + +base:organisation\/4326 a base:organisation; + base:organisation\#IDOrganisation 4326; + base:organisation\#comment ""; + base:organisation\#inst_name "Club dos Diários (Cassino Fluminense)" . + +base:organisation\/4331 a base:organisation; + base:organisation\#IDOrganisation 4331; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassino Fluminense" . + +base:organisation\/4336 a base:organisation; + base:organisation\#IDOrganisation 4336; + base:organisation\#comment ""; + base:organisation\#inst_name "Company Sampaio Araujo & Comp." . + +base:organisation\/4340 a base:organisation; + base:organisation\#IDOrganisation 4340; + base:organisation\#comment ""; + base:organisation\#inst_name "La Legia (choral society of Liège)" . + +base:organisation\/4355 a base:organisation; + base:organisation\#IDOrganisation 4355; + base:organisation\#comment ""; + base:organisation\#inst_name "Studied with Mathilde Marchesi" . + +base:organisation\/4360 a base:organisation; + base:organisation\#IDOrganisation 4360; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre de la Gaîté" . + +base:organisation\/437 a base:organisation; + base:organisation\#IDOrganisation 437; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mannheim Oper"; + base:organisation\#ref-IDLocation base:location\/GER-Mnhm-00 . + +base:organisation\/4390 a base:organisation; + base:organisation\#IDOrganisation 4390; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Scala" . + +base:organisation\/4395 a base:organisation; + base:organisation\#IDOrganisation 4395; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre des Galeries St. Hubert" . + +base:organisation\/4405 a base:organisation; + base:organisation\#IDOrganisation 4405; + base:organisation\#comment ""; + base:organisation\#inst_name "Hermitage Theater" . + +base:organisation\/4420 a base:organisation; + base:organisation\#IDOrganisation 4420; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Royal Français" . + +base:organisation\/4425 a base:organisation; + base:organisation\#IDOrganisation 4425; + base:organisation\#comment ""; + base:organisation\#inst_name "Private Concerts" . + +base:organisation\/443 a base:organisation; + base:organisation\#IDOrganisation 443; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Hillersches Konservatorium"; + base:organisation\#ref-IDLocation base:location\/GER-Col-00 . + +base:organisation\/4430 a base:organisation; + base:organisation\#IDOrganisation 4430; + base:organisation\#comment ""; + base:organisation\#inst_name "Ezbekiya Gardens" . + +base:organisation\/4435 a base:organisation; + base:organisation\#IDOrganisation 4435; + base:organisation\#comment ""; + base:organisation\#inst_name "Teutonia Club" . + +base:organisation\/444 a base:organisation; + base:organisation\#IDOrganisation 444; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment "founded by Marchesi, Salvatore"; + base:organisation\#inst_name "Private Singing School"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/4455 a base:organisation; + base:organisation\#IDOrganisation 4455; + base:organisation\#comment ""; + base:organisation\#inst_name "Saturday Club Concert" . + +base:organisation\/4460 a base:organisation; + base:organisation\#IDOrganisation 4460; + base:organisation\#comment ""; + base:organisation\#inst_name "Van Ness Theater" . + +base:organisation\/447 a base:organisation; + base:organisation\#IDOrganisation 447; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nationaltheater in Oslo"; + base:organisation\#ref-IDLocation base:location\/SE-Oslo-00 . + +base:organisation\/4470 a base:organisation; + base:organisation\#IDOrganisation 4470; + base:organisation\#comment ""; + base:organisation\#inst_name "Christian Science Hall" . + +base:organisation\/4475 a base:organisation; + base:organisation\#IDOrganisation 4475; + base:organisation\#comment ""; + base:organisation\#inst_name "Columbia Phonography Company" . + +base:organisation\/448 a base:organisation; + base:organisation\#IDOrganisation 448; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Concert Hall in Bergen"; + base:organisation\#ref-IDLocation base:location\/NOR-Bergen-00 . + +base:organisation\/4485 a base:organisation; + base:organisation\#IDOrganisation 4485; + base:organisation\#comment ""; + base:organisation\#inst_name "Odeon" . + +base:organisation\/4490 a base:organisation; + base:organisation\#IDOrganisation 4490; + base:organisation\#comment ""; + base:organisation\#inst_name "Apollo Club concert" . + +base:organisation\/4495 a base:organisation; + base:organisation\#IDOrganisation 4495; + base:organisation\#comment ""; + base:organisation\#inst_name "Victor Talking Machine Company" . + +base:organisation\/4500 a base:organisation; + base:organisation\#IDOrganisation 4500; + base:organisation\#comment ""; + base:organisation\#inst_name "Homecoming concert" . + +base:organisation\/4505 a base:organisation; + base:organisation\#IDOrganisation 4505; + base:organisation\#comment ""; + base:organisation\#inst_name "Steinway Hall" . + +base:organisation\/4510 a base:organisation; + base:organisation\#IDOrganisation 4510; + base:organisation\#comment ""; + base:organisation\#inst_name "Carnegie Hall" . + +base:organisation\/4515 a base:organisation; + base:organisation\#IDOrganisation 4515; + base:organisation\#comment ""; + base:organisation\#inst_name "Volpe Symphony Orchestra" . + +base:organisation\/452 a base:organisation; + base:organisation\#IDOrganisation 452; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheaterverbund"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4520 a base:organisation; + base:organisation\#IDOrganisation 4520; + base:organisation\#comment ""; + base:organisation\#inst_name "Sings at two private functions" . + +base:organisation\/4535 a base:organisation; + base:organisation\#IDOrganisation 4535; + base:organisation\#comment ""; + base:organisation\#inst_name "Hotel Plaza" . + +base:organisation\/4540 a base:organisation; + base:organisation\#IDOrganisation 4540; + base:organisation\#comment ""; + base:organisation\#inst_name "New Assembly Musicale" . + +base:organisation\/4545 a base:organisation; + base:organisation\#IDOrganisation 4545; + base:organisation\#comment ""; + base:organisation\#inst_name "Professional Women’s League benefit" . + +base:organisation\/4550 a base:organisation; + base:organisation\#IDOrganisation 4550; + base:organisation\#comment ""; + base:organisation\#inst_name "William A. Brady’s Playhouse" . + +base:organisation\/4555 a base:organisation; + base:organisation\#IDOrganisation 4555; + base:organisation\#comment ""; + base:organisation\#inst_name "New York American-Evening Journal Christimas fund benefit" . + +base:organisation\/4560 a base:organisation; + base:organisation\#IDOrganisation 4560; + base:organisation\#comment ""; + base:organisation\#inst_name "Italian earthquake sufferers benefit" . + +base:organisation\/4565 a base:organisation; + base:organisation\#IDOrganisation 4565; + base:organisation\#comment ""; + base:organisation\#inst_name "Century Lyceum" . + +base:organisation\/457 a base:organisation; + base:organisation\#IDOrganisation 457; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opéra de Nice"; + base:organisation\#ref-IDLocation base:location\/FR-Niz-00 . + +base:organisation\/4575 a base:organisation; + base:organisation\#IDOrganisation 4575; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Français" . + +base:organisation\/458 a base:organisation; + base:organisation\#IDOrganisation 458; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opernhaus Zürich"; + base:organisation\#ref-IDLocation base:location\/CH-Zur-00 . + +base:organisation\/4585 a base:organisation; + base:organisation\#IDOrganisation 4585; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadium Orchestra" . + +base:organisation\/4590 a base:organisation; + base:organisation\#IDOrganisation 4590; + base:organisation\#comment ""; + base:organisation\#inst_name "WOR studios" . + +base:organisation\/4595 a base:organisation; + base:organisation\#IDOrganisation 4595; + base:organisation\#comment ""; + base:organisation\#inst_name "Worked in her memoir" . + +base:organisation\/4608 a base:organisation; + base:organisation\#IDOrganisation 4608; + base:organisation\#comment ""; + base:organisation\#inst_name "Le Cassino du Petit Lac"; + base:organisation\#ref-IDLocation base:location\/VN-HAN-00 . + +base:organisation\/461 a base:organisation; + base:organisation\#IDOrganisation 461; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Ventadour, Théâtre de la Renaissance"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/4612 a base:organisation; + base:organisation\#IDOrganisation 4612; + base:organisation\#comment ""; + base:organisation\#inst_name "Arral Blanche Company" . + +base:organisation\/4620 a base:organisation; + base:organisation\#IDOrganisation 4620; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Queensland"; + base:organisation\#ref-IDLocation base:location\/AU-Brisb-00 . + +base:organisation\/4624 a base:organisation; + base:organisation\#IDOrganisation 4624; + base:organisation\#comment ""; + base:organisation\#inst_name "Sir Henry Irving company" . + +base:organisation\/4628 a base:organisation; + base:organisation\#IDOrganisation 4628; + base:organisation\#comment ""; + base:organisation\#inst_name "Liverpool Theatre" . + +base:organisation\/4636 a base:organisation; + base:organisation\#IDOrganisation 4636; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Square Company of Mrs. John Drew and Augustin Daly" . + +base:organisation\/4640 a base:organisation; + base:organisation\#IDOrganisation 4640; + base:organisation\#comment ""; + base:organisation\#inst_name "Augustin Daly’s Company" . + +base:organisation\/4644 a base:organisation; + base:organisation\#IDOrganisation 4644; + base:organisation\#comment ""; + base:organisation\#inst_name "Fine Arts Academy of Paris" . + +base:organisation\/466 a base:organisation; + base:organisation\#IDOrganisation 466; + base:organisation\#comment ""; + base:organisation\#inst_name "Chat Noir"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/467 a base:organisation; + base:organisation\#IDOrganisation 467; + base:organisation\#comment ""; + base:organisation\#inst_name "Simple"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4672 a base:organisation; + base:organisation\#IDOrganisation 4672; + base:organisation\#comment ""; + base:organisation\#inst_name "Robinson's Opera House" . + +base:organisation\/468 a base:organisation; + base:organisation\#IDOrganisation 468; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Bürgertheater"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/470 a base:organisation; + base:organisation\#IDOrganisation 470; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opéra de Monaco"; + base:organisation\#ref-IDLocation base:location\/MC-00 . + +base:organisation\/471 a base:organisation; + base:organisation\#IDOrganisation 471; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper Nizza"; + base:organisation\#ref-IDLocation base:location\/FR-Niz-00 . + +base:organisation\/4720 a base:organisation; + base:organisation\#IDOrganisation 4720; + base:organisation\#comment ""; + base:organisation\#inst_name "Atlanta De Gives Opera House" . + +base:organisation\/4728 a base:organisation; + base:organisation\#IDOrganisation 4728; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Hall"; + base:organisation\#ref-IDLocation base:location\/USA-Kalamz-00 . + +base:organisation\/474 a base:organisation; + base:organisation\#IDOrganisation 474; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Klindworth-Scharwenka Konservatorium"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/475 a base:organisation; + base:organisation\#IDOrganisation 475; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hannover Theater"; + base:organisation\#ref-IDLocation base:location\/GER-HAJ-00 . + +base:organisation\/4752 a base:organisation; + base:organisation\#IDOrganisation 4752; + base:organisation\#comment ""; + base:organisation\#inst_name "Greenwich Theatre" . + +base:organisation\/476 a base:organisation; + base:organisation\#IDOrganisation 476; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gotha Hoftheater"; + base:organisation\#ref-IDLocation base:location\/GER-Goth-00 . + +base:organisation\/4760 a base:organisation; + base:organisation\#IDOrganisation 4760; + base:organisation\#comment ""; + base:organisation\#inst_name "Asociación de Críticos Teatrales" . + +base:organisation\/4764 a base:organisation; + base:organisation\#IDOrganisation 4764; + base:organisation\#comment ""; + base:organisation\#inst_name "Escuela Nacional de Arte Dramático" . + +base:organisation\/477 a base:organisation; + base:organisation\#IDOrganisation 477; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Gesellschaft der Musikfreunde"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4772 a base:organisation; + base:organisation\#IDOrganisation 4772; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Guillermo Battaglia" . + +base:organisation\/478 a base:organisation; + base:organisation\#IDOrganisation 478; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsche Oper in Rotterdam"; + base:organisation\#ref-IDLocation base:location\/NL-Rott-00 . + +base:organisation\/4804 a base:organisation; + base:organisation\#IDOrganisation 4804; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Orfilia Rico (Dir: Julio Sánchez Gardel)" . + +base:organisation\/4808 a base:organisation; + base:organisation\#IDOrganisation 4808; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Fanny Brenna" . + +base:organisation\/4816 a base:organisation; + base:organisation\#IDOrganisation 4816; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Española Concepción Olona" . + +base:organisation\/4820 a base:organisation; + base:organisation\#IDOrganisation 4820; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Argentina de Camila Quiroga" . + +base:organisation\/4824 a base:organisation; + base:organisation\#IDOrganisation 4824; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía El Caracol" . + +base:organisation\/483 a base:organisation; + base:organisation\#IDOrganisation 483; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Real de Madrid"; + base:organisation\#ref-IDLocation base:location\/ES-Mad-00 . + +base:organisation\/4832 a base:organisation; + base:organisation\#IDOrganisation 4832; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Nacional" . + +base:organisation\/4836 a base:organisation; + base:organisation\#IDOrganisation 4836; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Héctor Quiroga" . + +base:organisation\/4840 a base:organisation; + base:organisation\#IDOrganisation 4840; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Ermete Novelli y Tina di Lorenzo" . + +base:organisation\/4844 a base:organisation; + base:organisation\#IDOrganisation 4844; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Enrique Muiño" . + +base:organisation\/4856 a base:organisation; + base:organisation\#IDOrganisation 4856; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Luis Arata" . + +base:organisation\/486 a base:organisation; + base:organisation\#IDOrganisation 486; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal music school"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/4860 a base:organisation; + base:organisation\#IDOrganisation 4860; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Alfredo Camiña, Marcos Caplán y Enrique Serrano" . + +base:organisation\/4880 a base:organisation; + base:organisation\#IDOrganisation 4880; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Novedades" . + +base:organisation\/4888 a base:organisation; + base:organisation\#IDOrganisation 4888; + base:organisation\#comment ""; + base:organisation\#inst_name "Universidad de Buenos Aires" . + +base:organisation\/4892 a base:organisation; + base:organisation\#IDOrganisation 4892; + base:organisation\#comment ""; + base:organisation\#inst_name "Armada Española" . + +base:organisation\/4896 a base:organisation; + base:organisation\#IDOrganisation 4896; + base:organisation\#comment ""; + base:organisation\#inst_name "Cerniowce Theatre in Stanisla" . + +base:organisation\/490 a base:organisation; + base:organisation\#IDOrganisation 490; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Künstlertheater"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/4912 a base:organisation; + base:organisation\#IDOrganisation 4912; + base:organisation\#inst_name "Elliots Academy of Music in Williamsport" . + +base:organisation\/49140 a base:organisation; + base:organisation\#IDOrganisation 49140; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Adler Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/49150 a base:organisation; + base:organisation\#IDOrganisation 49150; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Adolf Gertner Troupe" . + +base:organisation\/492 a base:organisation; + base:organisation\#IDOrganisation 492; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsche Akademie für Musik und darstellende Kunst in Prag"; + base:organisation\#ref-IDLocation base:location\/CZ-Prag-00 . + +base:organisation\/4928 a base:organisation; + base:organisation\#IDOrganisation 4928; + base:organisation\#inst_name "National Gurad Theater in Virginia City" . + +base:organisation\/4932 a base:organisation; + base:organisation\#IDOrganisation 4932; + base:organisation\#inst_name "Guards Hall in Carson City" . + +base:organisation\/4936 a base:organisation; + base:organisation\#IDOrganisation 4936; + base:organisation\#inst_name "Smiths Academy of Music in Reno" . + +base:organisation\/4952 a base:organisation; + base:organisation\#IDOrganisation 4952; + base:organisation\#inst_name "Opera House in Norfolk" . + +base:organisation\/4968 a base:organisation; + base:organisation\#IDOrganisation 4968; + base:organisation\#inst_name "Hollenbergs Theatre in Memphis" . + +base:organisation\/4972 a base:organisation; + base:organisation\#IDOrganisation 4972; + base:organisation\#inst_name "Allen Opera House, Louisville" . + +base:organisation\/49740 a base:organisation; + base:organisation\#IDOrganisation 49740; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Arthur Hopkins' Theatre" . + +base:organisation\/498 a base:organisation; + base:organisation\#IDOrganisation 498; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Herrmanns Company" . + +base:organisation\/4980 a base:organisation; + base:organisation\#IDOrganisation 4980; + base:organisation\#inst_name "Opera House in Lafayette" . + +base:organisation\/4984 a base:organisation; + base:organisation\#IDOrganisation 4984; + base:organisation\#inst_name "Blacks Opera House in Springfield" . + +base:organisation\/499 a base:organisation; + base:organisation\#IDOrganisation 499; + base:organisation\#comment ""; + base:organisation\#inst_name "Winter Garden"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/500 a base:organisation; + base:organisation\#IDOrganisation 500; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Blanche Corelli's Opera Group" . + +base:organisation\/50090 a base:organisation; + base:organisation\#IDOrganisation 50090; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Belloy Troupe" . + +base:organisation\/50110 a base:organisation; + base:organisation\#IDOrganisation 50110; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Bennie Shoengold Troupe" . + +base:organisation\/5028 a base:organisation; + base:organisation\#IDOrganisation 5028; + base:organisation\#inst_name "Corning Hall in Auburn" . + +base:organisation\/5032 a base:organisation; + base:organisation\#IDOrganisation 5032; + base:organisation\#inst_name "Manchester USA Opera House in Manchester USA" . + +base:organisation\/5036 a base:organisation; + base:organisation\#IDOrganisation 5036; + base:organisation\#inst_name "Walker Theatre in Salt Lake City" . + +base:organisation\/50470 a base:organisation; + base:organisation\#IDOrganisation 50470; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Bronstein Troupe" . + +base:organisation\/50580 a base:organisation; + base:organisation\#IDOrganisation 50580; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Bunes Badkhan (Tshizshik)" . + +base:organisation\/506 a base:organisation; + base:organisation\#IDOrganisation 506; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatr Nowosci"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5072 a base:organisation; + base:organisation\#IDOrganisation 5072; + base:organisation\#inst_name "Opera House in Elmira" . + +base:organisation\/5096 a base:organisation; + base:organisation\#IDOrganisation 5096; + base:organisation\#inst_name "Grand Theatre in Indianapolis" . + +base:organisation\/510 a base:organisation; + base:organisation\#IDOrganisation 510; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Vilner Trupe" . + +base:organisation\/5116 a base:organisation; + base:organisation\#IDOrganisation 5116; + base:organisation\#inst_name "Lewisham Hippodrome" . + +base:organisation\/51180 a base:organisation; + base:organisation\#IDOrganisation 51180; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Chorus of the Lemberg Polish Opera" . + +base:organisation\/512 a base:organisation; + base:organisation\#IDOrganisation 512; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Krokever Yidish Teater "; + base:organisation\#ref-IDLocation base:location\/PL-00 . + +base:organisation\/513 a base:organisation; + base:organisation\#IDOrganisation 513; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Artistishe Vinkele" . + +base:organisation\/5132 a base:organisation; + base:organisation\#IDOrganisation 5132; + base:organisation\#inst_name "Regent Theatre (King’s Cross)" . + +base:organisation\/514 a base:organisation; + base:organisation\#IDOrganisation 514; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Elizeum Theater"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/51420 a base:organisation; + base:organisation\#IDOrganisation 51420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Cohen Brothers Troupe" . + +base:organisation\/5156 a base:organisation; + base:organisation\#IDOrganisation 5156; + base:organisation\#inst_name "Haynes Music Hall (Springfield)" . + +base:organisation\/516 a base:organisation; + base:organisation\#IDOrganisation 516; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Varshever Nayer Yidisher Teater"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/517 a base:organisation; + base:organisation\#IDOrganisation 517; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Vilner Yidisher Teater and drama school" . + +base:organisation\/5172 a base:organisation; + base:organisation\#IDOrganisation 5172; + base:organisation\#inst_name "Grand Opera House (Harrisburg)" . + +base:organisation\/5176 a base:organisation; + base:organisation\#IDOrganisation 5176; + base:organisation\#inst_name "Opera House" . + +base:organisation\/5184 a base:organisation; + base:organisation\#IDOrganisation 5184; + base:organisation\#inst_name "Comstock Opera House (Columbus)" . + +base:organisation\/5208 a base:organisation; + base:organisation\#IDOrganisation 5208; + base:organisation\#inst_name "Masonic Theatre (Nashville)" . + +base:organisation\/522 a base:organisation; + base:organisation\#IDOrganisation 522; + base:organisation\#comment ""; + base:organisation\#inst_name "Zionist youth farm" . + +base:organisation\/523 a base:organisation; + base:organisation\#IDOrganisation 523; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kleynkunst Theater Azazel" . + +base:organisation\/5236 a base:organisation; + base:organisation\#IDOrganisation 5236; + base:organisation\#inst_name "Ralston Hall (Macon)" . + +base:organisation\/52360 a base:organisation; + base:organisation\#IDOrganisation 52360; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "David Shvartbard Troupe" . + +base:organisation\/524 a base:organisation; + base:organisation\#IDOrganisation 524; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Jonas Turkow´s travelling company" . + +base:organisation\/5240 a base:organisation; + base:organisation\#IDOrganisation 5240; + base:organisation\#inst_name "Grand Opera House (Atlanta)" . + +base:organisation\/5248 a base:organisation; + base:organisation\#IDOrganisation 5248; + base:organisation\#inst_name "Academy of Music, Baltimore"; + base:organisation\#ref-IDLocation base:location\/USA-Balti-00 . + +base:organisation\/525 a base:organisation; + base:organisation\#IDOrganisation 525; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Traveling company of Zygmunt Turkow and Ida Kaminska" . + +base:organisation\/52520 a base:organisation; + base:organisation\#IDOrganisation 52520; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsche presse verwaltung" . + +base:organisation\/526 a base:organisation; + base:organisation\#IDOrganisation 526; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Vaudeville" . + +base:organisation\/52630 a base:organisation; + base:organisation\#IDOrganisation 52630; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsch Jüdisches Theater"; + base:organisation\#ref-IDLocation base:location\/UA-Czern-00 . + +base:organisation\/5264 a base:organisation; + base:organisation\#IDOrganisation 5264; + base:organisation\#inst_name "Park Theatre (Hannibal)" . + +base:organisation\/52690 a base:organisation; + base:organisation\#IDOrganisation 52690; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "di Idishe federatsye far muziḳ un drama" . + +base:organisation\/52720 a base:organisation; + base:organisation\#IDOrganisation 52720; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Di Tsayt" . + +base:organisation\/52750 a base:organisation; + base:organisation\#IDOrganisation 52750; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Dos artistishe vinkele" . + +base:organisation\/5276 a base:organisation; + base:organisation\#IDOrganisation 5276; + base:organisation\#inst_name "Duncan-Waller Opera House" . + +base:organisation\/528 a base:organisation; + base:organisation\#IDOrganisation 528; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Carcano"; + base:organisation\#ref-IDLocation base:location\/IT-Mila-00 . + +base:organisation\/52960 a base:organisation; + base:organisation\#IDOrganisation 52960; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "E. Relkin Troupe" . + +base:organisation\/530 a base:organisation; + base:organisation\#IDOrganisation 530; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera House Odessa"; + base:organisation\#ref-IDLocation base:location\/UA-Od-00 . + +base:organisation\/53000 a base:organisation; + base:organisation\#IDOrganisation 53000; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Edelhofer Troupe" . + +base:organisation\/5304 a base:organisation; + base:organisation\#IDOrganisation 5304; + base:organisation\#inst_name "Columbia Theatre (Chicago)" . + +base:organisation\/531 a base:organisation; + base:organisation\#IDOrganisation 531; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dal Ferme"; + base:organisation\#ref-IDLocation base:location\/IT-Mila-00 . + +base:organisation\/53230 a base:organisation; + base:organisation\#IDOrganisation 53230; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Elvings Metropolitan Theatre" . + +base:organisation\/534 a base:organisation; + base:organisation\#IDOrganisation 534; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatorium of Milano"; + base:organisation\#ref-IDLocation base:location\/IT-Mila-00 . + +base:organisation\/5341 a base:organisation; + base:organisation\#IDOrganisation 5341; + base:organisation\#inst_name "Academy of Music, Allentown" . + +base:organisation\/53450 a base:organisation; + base:organisation\#IDOrganisation 53450; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Ester Rukhl Kaminska Troupe" . + +base:organisation\/53460 a base:organisation; + base:organisation\#IDOrganisation 53460; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Esther Vaksman Troupe" . + +base:organisation\/53510 a base:organisation; + base:organisation\#IDOrganisation 53510; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Fanny Vaksman Troupe" . + +base:organisation\/5353 a base:organisation; + base:organisation\#IDOrganisation 5353; + base:organisation\#inst_name "Academy of Music, Oswego" . + +base:organisation\/53540 a base:organisation; + base:organisation\#IDOrganisation 53540; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Feldman Troupe" . + +base:organisation\/5357 a base:organisation; + base:organisation\#IDOrganisation 5357; + base:organisation\#inst_name "Academy of Music, Sioux City"; + base:organisation\#ref-IDLocation base:location\/USA-Sioux-00 . + +base:organisation\/53590 a base:organisation; + base:organisation\#IDOrganisation 53590; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Filipesko Troupe" . + +base:organisation\/536 a base:organisation; + base:organisation\#IDOrganisation 536; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment "In one source called “Agramer Oper”"; + base:organisation\#inst_name "Zagreb Opera House"; + base:organisation\#ref-IDLocation base:location\/HR-Zagr-00 . + +base:organisation\/5369 a base:organisation; + base:organisation\#IDOrganisation 5369; + base:organisation\#inst_name "Alpha Opera House, Tacoma"; + base:organisation\#ref-IDLocation base:location\/USA-Tac-00 . + +base:organisation\/5373 a base:organisation; + base:organisation\#IDOrganisation 5373; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Avon Theatre, Stockton"; + base:organisation\#ref-IDLocation base:location\/USA-Stockt-00 . + +base:organisation\/538 a base:organisation; + base:organisation\#IDOrganisation 538; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Neues Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/5385 a base:organisation; + base:organisation\#IDOrganisation 5385; + base:organisation\#inst_name "Binghamton Opera House" . + +base:organisation\/5389 a base:organisation; + base:organisation\#IDOrganisation 5389; + base:organisation\#inst_name "Bowerstock Opera House, Lawrence" . + +base:organisation\/5397 a base:organisation; + base:organisation\#IDOrganisation 5397; + base:organisation\#inst_name "Bunnell´s Theatre, Newtown" . + +base:organisation\/5401 a base:organisation; + base:organisation\#IDOrganisation 5401; + base:organisation\#inst_name "Burtistheatre, Auburn" . + +base:organisation\/54090 a base:organisation; + base:organisation\#IDOrganisation 54090; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Gardetski Quartet" . + +base:organisation\/5413 a base:organisation; + base:organisation\#IDOrganisation 5413; + base:organisation\#inst_name "Columbian Exposition, Chicago" . + +base:organisation\/5417 a base:organisation; + base:organisation\#IDOrganisation 5417; + base:organisation\#inst_name "Columbus Opera House" . + +base:organisation\/54180 a base:organisation; + base:organisation\#IDOrganisation 54180; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "George Beker Troupe" . + +base:organisation\/5421 a base:organisation; + base:organisation\#IDOrganisation 5421; + base:organisation\#inst_name "Crescent Opera House, Fonddu Lac" . + +base:organisation\/5425 a base:organisation; + base:organisation\#IDOrganisation 5425; + base:organisation\#inst_name "Daly Theater, Manhattan" . + +base:organisation\/54280 a base:organisation; + base:organisation\#IDOrganisation 54280; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gilmore's Auditorium"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:organisation\/54340 a base:organisation; + base:organisation\#IDOrganisation 54340; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Glickman and Michalesko Troupe" . + +base:organisation\/5437 a base:organisation; + base:organisation\#IDOrganisation 5437; + base:organisation\#inst_name "Evan´s Opera House, Anaconda" . + +base:organisation\/54380 a base:organisation; + base:organisation\#IDOrganisation 54380; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Golubok Troupe" . + +base:organisation\/544 a base:organisation; + base:organisation\#IDOrganisation 544; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Apollo-Theater, Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/5441 a base:organisation; + base:organisation\#IDOrganisation 5441; + base:organisation\#inst_name "Exposition Building, Portland" . + +base:organisation\/5445 a base:organisation; + base:organisation\#IDOrganisation 5445; + base:organisation\#inst_name "Fourteenth Street Theatre, New York" . + +base:organisation\/5449 a base:organisation; + base:organisation\#IDOrganisation 5449; + base:organisation\#inst_name "French´s Opera House, Santa Ana" . + +base:organisation\/545 a base:organisation; + base:organisation\#IDOrganisation 545; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropoltheater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/5461 a base:organisation; + base:organisation\#IDOrganisation 5461; + base:organisation\#inst_name "Grand Opera House, Atchison" . + +base:organisation\/54680 a base:organisation; + base:organisation\#IDOrganisation 54680; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Groyse Teater" . + +base:organisation\/5469 a base:organisation; + base:organisation\#IDOrganisation 5469; + base:organisation\#inst_name "Grand Opera House, Dayton" . + +base:organisation\/54740 a base:organisation; + base:organisation\#IDOrganisation 54740; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Guzik Troupe" . + +base:organisation\/54910 a base:organisation; + base:organisation\#IDOrganisation 54910; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Hart Troupe" . + +base:organisation\/54920 a base:organisation; + base:organisation\#IDOrganisation 54920; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "HaTsfira" . + +base:organisation\/550 a base:organisation; + base:organisation\#IDOrganisation 550; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Warsaw Theatre"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5501 a base:organisation; + base:organisation\#IDOrganisation 5501; + base:organisation\#inst_name "Greely Opera House" . + +base:organisation\/55010 a base:organisation; + base:organisation\#IDOrganisation 55010; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Hebrew Actors Protective Union" . + +base:organisation\/5505 a base:organisation; + base:organisation\#IDOrganisation 5505; + base:organisation\#inst_name "Green´s Opera House, Vincennes" . + +base:organisation\/5509 a base:organisation; + base:organisation\#IDOrganisation 5509; + base:organisation\#inst_name "Hall´s Opera House, Owensboro" . + +base:organisation\/5513 a base:organisation; + base:organisation\#IDOrganisation 5513; + base:organisation\#inst_name "Hammerstein´s Opera House, New York" . + +base:organisation\/5533 a base:organisation; + base:organisation\#IDOrganisation 5533; + base:organisation\#inst_name "Jacques Opera House, Waterbury" . + +base:organisation\/5537 a base:organisation; + base:organisation\#IDOrganisation 5537; + base:organisation\#inst_name "Keokuk Opera House" . + +base:organisation\/5541 a base:organisation; + base:organisation\#IDOrganisation 5541; + base:organisation\#inst_name "Kerr Opera House, Hastings" . + +base:organisation\/5549 a base:organisation; + base:organisation\#IDOrganisation 5549; + base:organisation\#inst_name "Library Hall, Warren" . + +base:organisation\/5553 a base:organisation; + base:organisation\#IDOrganisation 5553; + base:organisation\#inst_name "Louis Opera House, San Diego" . + +base:organisation\/5557 a base:organisation; + base:organisation\#IDOrganisation 5557; + base:organisation\#inst_name "Lyceum Theater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-02 . + +base:organisation\/5561 a base:organisation; + base:organisation\#IDOrganisation 5561; + base:organisation\#inst_name "Lyceum Theatre, Baltimore" . + +base:organisation\/5565 a base:organisation; + base:organisation\#IDOrganisation 5565; + base:organisation\#inst_name "Metropolitan, St. Paul" . + +base:organisation\/5581 a base:organisation; + base:organisation\#IDOrganisation 5581; + base:organisation\#inst_name "Music Hall, Crawfordsville" . + +base:organisation\/5585 a base:organisation; + base:organisation\#IDOrganisation 5585; + base:organisation\#inst_name "Myers Opera House, Janesville" . + +base:organisation\/55850 a base:organisation; + base:organisation\#IDOrganisation 55850; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Illustrirte Vokh" . + +base:organisation\/5589 a base:organisation; + base:organisation\#IDOrganisation 5589; + base:organisation\#inst_name "New Broadway Theater, Denver" . + +base:organisation\/559 a base:organisation; + base:organisation\#IDOrganisation 559; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Princes Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/560 a base:organisation; + base:organisation\#IDOrganisation 560; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Londoner Palace Music Hall"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/5601 a base:organisation; + base:organisation\#IDOrganisation 5601; + base:organisation\#inst_name "Newark Grand Opera House" . + +base:organisation\/56010 a base:organisation; + base:organisation\#IDOrganisation 56010; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Isidor Hollander Troupe" . + +base:organisation\/5609 a base:organisation; + base:organisation\#IDOrganisation 5609; + base:organisation\#inst_name "Oakland Theatre" . + +base:organisation\/56090 a base:organisation; + base:organisation\#IDOrganisation 56090; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Itzik Mendl Bergman Troupe" . + +base:organisation\/56140 a base:organisation; + base:organisation\#IDOrganisation 56140; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacob Gertner Troupe" . + +base:organisation\/56150 a base:organisation; + base:organisation\#IDOrganisation 56150; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacob P. Adler troupe" . + +base:organisation\/5617 a base:organisation; + base:organisation\#IDOrganisation 5617; + base:organisation\#inst_name "Omaha Opera House" . + +base:organisation\/5621 a base:organisation; + base:organisation\#IDOrganisation 5621; + base:organisation\#inst_name "Opera House, Brantford" . + +base:organisation\/56320 a base:organisation; + base:organisation\#IDOrganisation 56320; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Joseph Kessler Troupe (star tour)" . + +base:organisation\/5633 a base:organisation; + base:organisation\#IDOrganisation 5633; + base:organisation\#inst_name "Opera House, Kansas City" . + +base:organisation\/5637 a base:organisation; + base:organisation\#IDOrganisation 5637; + base:organisation\#inst_name "Opera House, Kearney" . + +base:organisation\/56390 a base:organisation; + base:organisation\#IDOrganisation 56390; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Julius Adler and H. Serotsky Troupe" . + +base:organisation\/5641 a base:organisation; + base:organisation\#IDOrganisation 5641; + base:organisation\#inst_name "Opera House, New Bedford" . + +base:organisation\/56420 a base:organisation; + base:organisation\#IDOrganisation 56420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Julius Nathanson Troupe" . + +base:organisation\/5645 a base:organisation; + base:organisation\#IDOrganisation 5645; + base:organisation\#inst_name "Opera House, Oil City" . + +base:organisation\/5649 a base:organisation; + base:organisation\#IDOrganisation 5649; + base:organisation\#inst_name "Opera House, Poughkeepsie" . + +base:organisation\/5653 a base:organisation; + base:organisation\#IDOrganisation 5653; + base:organisation\#inst_name "Opera House, San Bernardino" . + +base:organisation\/56530 a base:organisation; + base:organisation\#IDOrganisation 56530; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Kamer-teater" . + +base:organisation\/5657 a base:organisation; + base:organisation\#IDOrganisation 5657; + base:organisation\#inst_name "Opera House, Youngstown" . + +base:organisation\/5665 a base:organisation; + base:organisation\#IDOrganisation 5665; + base:organisation\#inst_name "Orange Opera House" . + +base:organisation\/56660 a base:organisation; + base:organisation\#IDOrganisation 56660; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Keni Lipzin Troupe (star tour)" . + +base:organisation\/56670 a base:organisation; + base:organisation\#IDOrganisation 56670; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kessler's Lyric Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/56680 a base:organisation; + base:organisation\#IDOrganisation 56680; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Khayim Abramovitsh Troupe" . + +base:organisation\/5669 a base:organisation; + base:organisation\#IDOrganisation 5669; + base:organisation\#inst_name "Peavey Grand Opera House, Sioux City" . + +base:organisation\/56690 a base:organisation; + base:organisation\#IDOrganisation 56690; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kinder Zhurnal (Children's Journal)" . + +base:organisation\/5673 a base:organisation; + base:organisation\#IDOrganisation 5673; + base:organisation\#inst_name "Plainfield Theatre" . + +base:organisation\/5677 a base:organisation; + base:organisation\#IDOrganisation 5677; + base:organisation\#inst_name "Price´s Opera House, Atchison" . + +base:organisation\/5689 a base:organisation; + base:organisation\#IDOrganisation 5689; + base:organisation\#inst_name "Stillma Music Hall, Plainfield" . + +base:organisation\/56930 a base:organisation; + base:organisation\#IDOrganisation 56930; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Kopilov Troupe" . + +base:organisation\/56970 a base:organisation; + base:organisation\#IDOrganisation 56970; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Krause Troupe" . + +base:organisation\/57030 a base:organisation; + base:organisation\#IDOrganisation 57030; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Kunst vinkl" . + +base:organisation\/5705 a base:organisation; + base:organisation\#IDOrganisation 5705; + base:organisation\#inst_name "Temple Opera House, Duluth" . + +base:organisation\/5709 a base:organisation; + base:organisation\#IDOrganisation 5709; + base:organisation\#inst_name "The Amphitheater Auditorium, Louisville" . + +base:organisation\/5721 a base:organisation; + base:organisation\#IDOrganisation 5721; + base:organisation\#inst_name "Utah Grand Opera House, Salt Lake City" . + +base:organisation\/5725 a base:organisation; + base:organisation\#IDOrganisation 5725; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Victoria Theatre, Victoria"; + base:organisation\#ref-IDLocation base:location\/CA-Vict-00 . + +base:organisation\/5729 a base:organisation; + base:organisation\#IDOrganisation 5729; + base:organisation\#inst_name "Wager Opera House, Bradford" . + +base:organisation\/5733 a base:organisation; + base:organisation\#IDOrganisation 5733; + base:organisation\#inst_name "Warder Grand, Kansas City" . + +base:organisation\/574 a base:organisation; + base:organisation\#IDOrganisation 574; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Herald Square Theater "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/57420 a base:organisation; + base:organisation\#IDOrganisation 57420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Lempkovitsh Troupe" . + +base:organisation\/57470 a base:organisation; + base:organisation\#IDOrganisation 57470; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Levitan Troupe" . + +base:organisation\/5748 a base:organisation; + base:organisation\#IDOrganisation 5748; + base:organisation\#inst_name "Grand Opera House, Pasadena" . + +base:organisation\/57510 a base:organisation; + base:organisation\#IDOrganisation 57510; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Liberesco Troupe" . + +base:organisation\/5752 a base:organisation; + base:organisation\#IDOrganisation 5752; + base:organisation\#inst_name "Opera House in Victoria"; + base:organisation\#ref-IDLocation base:location\/CA-Vict-00 . + +base:organisation\/5756 a base:organisation; + base:organisation\#IDOrganisation 5756; + base:organisation\#inst_name "Proctor´s Opera House in Bridgeport" . + +base:organisation\/57570 a base:organisation; + base:organisation\#IDOrganisation 57570; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Lieberman Theatre" . + +base:organisation\/5764 a base:organisation; + base:organisation\#IDOrganisation 5764; + base:organisation\#inst_name "Horsefield and Woodward touring company" . + +base:organisation\/57640 a base:organisation; + base:organisation\#IDOrganisation 57640; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lira (as drama school)" . + +base:organisation\/57650 a base:organisation; + base:organisation\#IDOrganisation 57650; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lira (as drama society)" . + +base:organisation\/57660 a base:organisation; + base:organisation\#IDOrganisation 57660; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Lit. Dram. Gesellschaft" . + +base:organisation\/5768 a base:organisation; + base:organisation\#IDOrganisation 5768; + base:organisation\#inst_name "Compton Comedy Company" . + +base:organisation\/5772 a base:organisation; + base:organisation\#IDOrganisation 5772; + base:organisation\#inst_name "Brewster’s Millions company" . + +base:organisation\/57720 a base:organisation; + base:organisation\#IDOrganisation 57720; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Littman Troupe" . + +base:organisation\/5776 a base:organisation; + base:organisation\#IDOrganisation 5776; + base:organisation\#inst_name "the Lena Ashwell Players" . + +base:organisation\/578 a base:organisation; + base:organisation\#IDOrganisation 578; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "New York Casino"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/5780 a base:organisation; + base:organisation\#IDOrganisation 5780; + base:organisation\#inst_name "Gertrude Elliott Touring Company" . + +base:organisation\/57830 a base:organisation; + base:organisation\#IDOrganisation 57830; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lublin Municipal Theatre" . + +base:organisation\/58000 a base:organisation; + base:organisation\#IDOrganisation 58000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "M.D. Waxman Troupe" . + +base:organisation\/58060 a base:organisation; + base:organisation\#IDOrganisation 58060; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Madison Street Theater"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/581 a base:organisation; + base:organisation\#IDOrganisation 581; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Journal O Mosquito"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/582 a base:organisation; + base:organisation\#IDOrganisation 582; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Journal Psitt!!!"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/583 a base:organisation; + base:organisation\#IDOrganisation 583; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Journal O Besouro"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/58370 a base:organisation; + base:organisation\#IDOrganisation 58370; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Max Gabel Theatre" . + +base:organisation\/58450 a base:organisation; + base:organisation\#IDOrganisation 58450; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Mendl Elkin's Children Theatre Studio" . + +base:organisation\/58600 a base:organisation; + base:organisation\#IDOrganisation 58600; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Theatre" . + +base:organisation\/58650 a base:organisation; + base:organisation\#IDOrganisation 58650; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Michalesko guest-starring Troupe" . + +base:organisation\/58720 a base:organisation; + base:organisation\#IDOrganisation 58720; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mitelman, Baran and Gizets Troupe" . + +base:organisation\/58730 a base:organisation; + base:organisation\#IDOrganisation 58730; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mitleman Troupe" . + +base:organisation\/58890 a base:organisation; + base:organisation\#IDOrganisation 58890; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Moscow State Jewish Theatre" . + +base:organisation\/58900 a base:organisation; + base:organisation\#IDOrganisation 58900; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Moshe Schorr Troupe" . + +base:organisation\/59230 a base:organisation; + base:organisation\#IDOrganisation 59230; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "National Opera Warsaw" . + +base:organisation\/594 a base:organisation; + base:organisation\#IDOrganisation 594; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dona Amélia"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/596 a base:organisation; + base:organisation\#IDOrganisation 596; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatório"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/59790 a base:organisation; + base:organisation\#IDOrganisation 59790; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Nordisk Film" . + +base:organisation\/598 a base:organisation; + base:organisation\#IDOrganisation 598; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Aura Abranches"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/59800 a base:organisation; + base:organisation\#IDOrganisation 59800; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nord Star Theatre" . + +base:organisation\/59860 a base:organisation; + base:organisation\#IDOrganisation 59860; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Nowa Gazeta" . + +base:organisation\/600 a base:organisation; + base:organisation\#IDOrganisation 600; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santa Teresa"; + base:organisation\#ref-IDLocation base:location\/BR-Niter-00 . + +base:organisation\/60000 a base:organisation; + base:organisation\#IDOrganisation 60000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Olimpic Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-StLouis-00 . + +base:organisation\/603 a base:organisation; + base:organisation\#IDOrganisation 603; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Florindo Joaquim da Silva’s drama company" . + +base:organisation\/605 a base:organisation; + base:organisation\#IDOrganisation 605; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São José"; + base:organisation\#ref-IDLocation base:location\/BR-SaoPau-00 . + +base:organisation\/608 a base:organisation; + base:organisation\#IDOrganisation 608; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Frankfurter Stadttheater"; + base:organisation\#ref-IDLocation base:location\/GER-Ffm-00 . + +base:organisation\/609 a base:organisation; + base:organisation\#IDOrganisation 609; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Central-Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/60900 a base:organisation; + base:organisation\#IDOrganisation 60900; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "People's Theater London" . + +base:organisation\/60930 a base:organisation; + base:organisation\#IDOrganisation 60930; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Peretz Society Drama studio" . + +base:organisation\/610 a base:organisation; + base:organisation\#IDOrganisation 610; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oskar-Braun-Operettengesellschaft" . + +base:organisation\/611 a base:organisation; + base:organisation\#IDOrganisation 611; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kurtheater"; + base:organisation\#ref-IDLocation base:location\/GER-Freud-00 . + +base:organisation\/61140 a base:organisation; + base:organisation\#IDOrganisation 61140; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Poale Zion (\"Workers of Zion\")" . + +base:organisation\/612 a base:organisation; + base:organisation\#IDOrganisation 612; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Lobkowicz Konservatorium"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/613 a base:organisation; + base:organisation\#IDOrganisation 613; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Opera House"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/61390 a base:organisation; + base:organisation\#IDOrganisation 61390; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Progresiv dramatik klub (Progressive Drama Club)" . + +base:organisation\/614 a base:organisation; + base:organisation\#IDOrganisation 614; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/61420 a base:organisation; + base:organisation\#IDOrganisation 61420; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Public Theatre (Folks Theatre)" . + +base:organisation\/61480 a base:organisation; + base:organisation\#IDOrganisation 61480; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Rabinovitsh Troupe" . + +base:organisation\/615 a base:organisation; + base:organisation\#IDOrganisation 615; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nationaltheater Prag"; + base:organisation\#ref-IDLocation base:location\/CZ-Prag-00 . + +base:organisation\/61660 a base:organisation; + base:organisation\#IDOrganisation 61660; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Rappel Troupe" . + +base:organisation\/617 a base:organisation; + base:organisation\#IDOrganisation 617; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de São Carlos"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/618 a base:organisation; + base:organisation\#IDOrganisation 618; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de Trindade"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/619 a base:organisation; + base:organisation\#IDOrganisation 619; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatory Lissabon" . + +base:organisation\/620 a base:organisation; + base:organisation\#IDOrganisation 620; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro da Sociedade Filo-Dramática"; + base:organisation\#ref-IDLocation base:location\/BR-Recif-00 . + +base:organisation\/62040 a base:organisation; + base:organisation\#IDOrganisation 62040; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosenberg and Spivakovski Troupe" . + +base:organisation\/621 a base:organisation; + base:organisation\#IDOrganisation 621; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Público"; + base:organisation\#ref-IDLocation base:location\/BR-Recif-00 . + +base:organisation\/62280 a base:organisation; + base:organisation\#IDOrganisation 62280; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sabsey Troupe" . + +base:organisation\/62440 a base:organisation; + base:organisation\#IDOrganisation 62440; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Samolesko Troupe" . + +base:organisation\/62500 a base:organisation; + base:organisation\#IDOrganisation 62500; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sarah Adler Troupe" . + +base:organisation\/62520 a base:organisation; + base:organisation\#IDOrganisation 62520; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Satz Public Theatre" . + +base:organisation\/62670 a base:organisation; + base:organisation\#IDOrganisation 62670; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Serotsky and Weissman Troupe" . + +base:organisation\/628 a base:organisation; + base:organisation\#IDOrganisation 628; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santo Antônio"; + base:organisation\#ref-IDLocation base:location\/BR-Recif-00 . + +base:organisation\/629 a base:organisation; + base:organisation\#IDOrganisation 629; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro-Circo Cosmopolita" . + +base:organisation\/62900 a base:organisation; + base:organisation\#IDOrganisation 62900; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sniegoff Troupe" . + +base:organisation\/630 a base:organisation; + base:organisation\#IDOrganisation 630; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Amadora Dramática Familiar" . + +base:organisation\/63200 a base:organisation; + base:organisation\#IDOrganisation 63200; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Spivakovski and Weinstock Troupe" . + +base:organisation\/63210 a base:organisation; + base:organisation\#IDOrganisation 63210; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Spivakovski Troupe" . + +base:organisation\/63220 a base:organisation; + base:organisation\#IDOrganisation 63220; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Spivakovsky and Sh. Krause Troupe" . + +base:organisation\/633 a base:organisation; + base:organisation\#IDOrganisation 633; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "J. A. Moniz theatre company" . + +base:organisation\/63670 a base:organisation; + base:organisation\#IDOrganisation 63670; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Stein Quartet" . + +base:organisation\/637 a base:organisation; + base:organisation\#IDOrganisation 637; + base:organisation\#comment ""; + base:organisation\#inst_name "Argentinian Council for Education"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/63730 a base:organisation; + base:organisation\#IDOrganisation 63730; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Stramer Troupe" . + +base:organisation\/639 a base:organisation; + base:organisation\#IDOrganisation 639; + base:organisation\#comment ""; + base:organisation\#inst_name "El bañista"; + base:organisation\#ref-IDLocation base:location\/ARG-MdPl-00 . + +base:organisation\/640 a base:organisation; + base:organisation\#IDOrganisation 640; + base:organisation\#comment ""; + base:organisation\#inst_name "El Ateneo Artístico"; + base:organisation\#ref-IDLocation base:location\/ARG-MdPl-00 . + +base:organisation\/650 a base:organisation; + base:organisation\#IDOrganisation 650; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dona Amélia" . + +base:organisation\/651 a base:organisation; + base:organisation\#IDOrganisation 651; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro da Rua dos Condes" . + +base:organisation\/654 a base:organisation; + base:organisation\#IDOrganisation 654; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Afonso Taveira Theater Company" . + +base:organisation\/658 a base:organisation; + base:organisation\#IDOrganisation 658; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "ACTT" . + +base:organisation\/65910 a base:organisation; + base:organisation\#IDOrganisation 65910; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "theater Solovtsov" . + +base:organisation\/660 a base:organisation; + base:organisation\#IDOrganisation 660; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Revue Theater Company of Carlos Leal" . + +base:organisation\/661 a base:organisation; + base:organisation\#IDOrganisation 661; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "José Clímaco’s company" . + +base:organisation\/662 a base:organisation; + base:organisation\#IDOrganisation 662; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Éden Teatro" . + +base:organisation\/663 a base:organisation; + base:organisation\#IDOrganisation 663; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Portuguesa de Revistas of Jorge Grave in Politeama" . + +base:organisation\/664 a base:organisation; + base:organisation\#IDOrganisation 664; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Grande Companhia de Revista " . + +base:organisation\/66410 a base:organisation; + base:organisation\#IDOrganisation 66410; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Lyceum Theatre" . + +base:organisation\/66500 a base:organisation; + base:organisation\#IDOrganisation 66500; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Monument-National Theatre" . + +base:organisation\/66550 a base:organisation; + base:organisation\#IDOrganisation 66550; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Peoples Theatre Detroit" . + +base:organisation\/66570 a base:organisation; + base:organisation\#IDOrganisation 66570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Public Theatre" . + +base:organisation\/66580 a base:organisation; + base:organisation\#IDOrganisation 66580; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Roumanian Opera Company" . + +base:organisation\/666 a base:organisation; + base:organisation\#IDOrganisation 666; + base:organisation\#comment ""; + base:organisation\#inst_name "Artistas Associados (Parque Mayer)"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/66610 a base:organisation; + base:organisation\#IDOrganisation 66610; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Russian State Theatre" . + +base:organisation\/66650 a base:organisation; + base:organisation\#IDOrganisation 66650; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "The St.Petersburg State Conservatory" . + +base:organisation\/667 a base:organisation; + base:organisation\#IDOrganisation 667; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company Mateus Rosa Ltd" . + +base:organisation\/66700 a base:organisation; + base:organisation\#IDOrganisation 66700; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "The Vilna Troupe (Azro/Alomis branch)" . + +base:organisation\/669 a base:organisation; + base:organisation\#IDOrganisation 669; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical company of Teatro do Ginásio" . + +base:organisation\/66970 a base:organisation; + base:organisation\#IDOrganisation 66970; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Tshistogorski troupe" . + +base:organisation\/66980 a base:organisation; + base:organisation\#IDOrganisation 66980; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Tsimerman Theatre" . + +base:organisation\/67200 a base:organisation; + base:organisation\#IDOrganisation 67200; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Unzer teater" . + +base:organisation\/673 a base:organisation; + base:organisation\#IDOrganisation 673; + base:organisation\#comment ""; + base:organisation\#inst_name "Vale do Café"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/67370 a base:organisation; + base:organisation\#IDOrganisation 67370; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaynshtoks, Vaynshtayns, and Goldschmidt Troupe" . + +base:organisation\/67480 a base:organisation; + base:organisation\#IDOrganisation 67480; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Vikt" . + +base:organisation\/675 a base:organisation; + base:organisation\#IDOrganisation 675; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Comércio" . + +base:organisation\/67540 a base:organisation; + base:organisation\#IDOrganisation 67540; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Vine Court" . + +base:organisation\/677 a base:organisation; + base:organisation\#IDOrganisation 677; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Germano Francisco de Oliveira’s theatre company" . + +base:organisation\/67720 a base:organisation; + base:organisation\#IDOrganisation 67720; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Weinstock-Schorr Troupe" . + +base:organisation\/678 a base:organisation; + base:organisation\#IDOrganisation 678; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Particular do Ginásio do Comércio " . + +base:organisation\/679 a base:organisation; + base:organisation\#IDOrganisation 679; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Alves Meira Theatre Company" . + +base:organisation\/67950 a base:organisation; + base:organisation\#IDOrganisation 67950; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Wolgeschaffen Troupe" . + +base:organisation\/68190 a base:organisation; + base:organisation\#IDOrganisation 68190; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Yidishn folks teater" . + +base:organisation\/682 a base:organisation; + base:organisation\#IDOrganisation 682; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Empresa do artista Heller company" . + +base:organisation\/68240 a base:organisation; + base:organisation\#IDOrganisation 68240; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Yosef Veynshtok and Leon Berger Troupe" . + +base:organisation\/68290 a base:organisation; + base:organisation\#IDOrganisation 68290; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Zaslavsky Troupe" . + +base:organisation\/68310 a base:organisation; + base:organisation\#IDOrganisation 68310; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Zhitomirski Troupe" . + +base:organisation\/68330 a base:organisation; + base:organisation\#IDOrganisation 68330; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Ziegler Troupe" . + +base:organisation\/68350 a base:organisation; + base:organisation\#IDOrganisation 68350; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Zuntog-blat" . + +base:organisation\/684 a base:organisation; + base:organisation\#IDOrganisation 684; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "José Antônio do Vale’s dramatic company" . + +base:organisation\/685 a base:organisation; + base:organisation\#IDOrganisation 685; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Luiz" . + +base:organisation\/68870 a base:organisation; + base:organisation\#IDOrganisation 68870; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gradina Pomul verde"; + base:organisation\#ref-IDLocation base:location\/ROU-Buch-00 . + +base:organisation\/689 a base:organisation; + base:organisation\#IDOrganisation 689; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santa Tereza"; + base:organisation\#ref-IDLocation base:location\/BR-Niter-00 . + +base:organisation\/69 a base:organisation; + base:organisation\#IDOrganisation 69; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Bergeres Theaters"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/69090 a base:organisation; + base:organisation\#IDOrganisation 69090; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Cantor Yeruchem Hktn" . + +base:organisation\/69120 a base:organisation; + base:organisation\#IDOrganisation 69120; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Di yidish-orientalishe Troupe" . + +base:organisation\/692 a base:organisation; + base:organisation\#IDOrganisation 692; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Helena Balsemão Company" . + +base:organisation\/69200 a base:organisation; + base:organisation\#IDOrganisation 69200; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Germania Theatre" . + +base:organisation\/69230 a base:organisation; + base:organisation\#IDOrganisation 69230; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Hador" . + +base:organisation\/69240 a base:organisation; + base:organisation\#IDOrganisation 69240; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "HaMelitz" . + +base:organisation\/69250 a base:organisation; + base:organisation\#IDOrganisation 69250; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Hartenshteyn-Spivakovsky's Troupe" . + +base:organisation\/69260 a base:organisation; + base:organisation\#IDOrganisation 69260; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "HaTsofe" . + +base:organisation\/69280 a base:organisation; + base:organisation\#IDOrganisation 69280; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Israel Gradner's Troupe" . + +base:organisation\/69290 a base:organisation; + base:organisation\#IDOrganisation 69290; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Jewish Art Theatre (The New Yiddish Theatre)" . + +base:organisation\/693 a base:organisation; + base:organisation\#IDOrganisation 693; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Helena Balsemão's wax flower store"; + base:organisation\#ref-IDLocation base:location\/BR-SaoPau-00 . + +base:organisation\/69300 a base:organisation; + base:organisation\#IDOrganisation 69300; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Jewish National Labor Union" . + +base:organisation\/69310 a base:organisation; + base:organisation\#IDOrganisation 69310; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Khaverah m'sivta haskalah" . + +base:organisation\/69320 a base:organisation; + base:organisation\#IDOrganisation 69320; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Kiev artists cooperative" . + +base:organisation\/69360 a base:organisation; + base:organisation\#IDOrganisation 69360; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lateiner's Theatre" . + +base:organisation\/69380 a base:organisation; + base:organisation\#IDOrganisation 69380; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Liverpool Troupe" . + +base:organisation\/69390 a base:organisation; + base:organisation\#IDOrganisation 69390; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Lubin film company" . + +base:organisation\/69400 a base:organisation; + base:organisation\#IDOrganisation 69400; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Manchester professional Yiddish Troupe" . + +base:organisation\/69450 a base:organisation; + base:organisation\#IDOrganisation 69450; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Newark theatre" . + +base:organisation\/69480 a base:organisation; + base:organisation\#IDOrganisation 69480; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Princes Club" . + +base:organisation\/69490 a base:organisation; + base:organisation\#IDOrganisation 69490; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Professional Yiddish Actors Union in Poland" . + +base:organisation\/69520 a base:organisation; + base:organisation\#IDOrganisation 69520; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Samuel Goldenburg’s Drama Club" . + +base:organisation\/69560 a base:organisation; + base:organisation\#IDOrganisation 69560; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Smith Theatre" . + +base:organisation\/69580 a base:organisation; + base:organisation\#IDOrganisation 69580; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "The Actor's Union Local 5" . + +base:organisation\/69600 a base:organisation; + base:organisation\#IDOrganisation 69600; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre and Art (Zylbercweig)" . + +base:organisation\/69620 a base:organisation; + base:organisation\#IDOrganisation 69620; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "The Bukovina Israelite Folk Page (weekly journal)" . + +base:organisation\/69724 a base:organisation; + base:organisation\#IDOrganisation 69724; + base:organisation\#inst_name "Chamberlain Brown Players" . + +base:organisation\/69728 a base:organisation; + base:organisation\#IDOrganisation 69728; + base:organisation\#inst_name "Kingsway" . + +base:organisation\/69732 a base:organisation; + base:organisation\#IDOrganisation 69732; + base:organisation\#inst_name "Alexander Marsh Shakespearean Company" . + +base:organisation\/69740 a base:organisation; + base:organisation\#IDOrganisation 69740; + base:organisation\#inst_name "Bristol Little Theatre" . + +base:organisation\/69744 a base:organisation; + base:organisation\#IDOrganisation 69744; + base:organisation\#inst_name "Ben Greet Repertory" . + +base:organisation\/69748 a base:organisation; + base:organisation\#IDOrganisation 69748; + base:organisation\#inst_name "Henry Baynton Company" . + +base:organisation\/69752 a base:organisation; + base:organisation\#IDOrganisation 69752; + base:organisation\#inst_name "Royal Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-Leeds-00 . + +base:organisation\/69764 a base:organisation; + base:organisation\#IDOrganisation 69764; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Mariinsky" . + +base:organisation\/69772 a base:organisation; + base:organisation\#IDOrganisation 69772; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Young Yiddish" . + +base:organisation\/69776 a base:organisation; + base:organisation\#IDOrganisation 69776; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "NOWY DZIENNIK (\"The New Daily\")" . + +base:organisation\/69780 a base:organisation; + base:organisation\#IDOrganisation 69780; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Wolgeschaffen's troupe" . + +base:organisation\/69784 a base:organisation; + base:organisation\#IDOrganisation 69784; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Actors' union" . + +base:organisation\/69788 a base:organisation; + base:organisation\#IDOrganisation 69788; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovski and Fiszon's troupe" . + +base:organisation\/69792 a base:organisation; + base:organisation\#IDOrganisation 69792; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Moshe Schorr's troupe" . + +base:organisation\/69796 a base:organisation; + base:organisation\#IDOrganisation 69796; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Jacob Spivakovski" . + +base:organisation\/69800 a base:organisation; + base:organisation\#IDOrganisation 69800; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Nowy Theatre" . + +base:organisation\/69808 a base:organisation; + base:organisation\#IDOrganisation 69808; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Schwartz's troupe" . + +base:organisation\/69812 a base:organisation; + base:organisation\#IDOrganisation 69812; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Jacob P. Adler's troupe" . + +base:organisation\/69816 a base:organisation; + base:organisation\#IDOrganisation 69816; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Avraham Fishzon's troupe" . + +base:organisation\/69828 a base:organisation; + base:organisation\#IDOrganisation 69828; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Lazar Bernstein's troupe" . + +base:organisation\/69836 a base:organisation; + base:organisation\#IDOrganisation 69836; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Krause's troupe" . + +base:organisation\/69844 a base:organisation; + base:organisation\#IDOrganisation 69844; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kopilov's troupe" . + +base:organisation\/69848 a base:organisation; + base:organisation\#IDOrganisation 69848; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Guzik's troupe" . + +base:organisation\/69852 a base:organisation; + base:organisation\#IDOrganisation 69852; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Kunst vinkl (Artist corner)" . + +base:organisation\/69864 a base:organisation; + base:organisation\#IDOrganisation 69864; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Dramatic Arts (Amatuer)" . + +base:organisation\/69868 a base:organisation; + base:organisation\#IDOrganisation 69868; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "The Yiddish literary troupe" . + +base:organisation\/69872 a base:organisation; + base:organisation\#IDOrganisation 69872; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yiddish literary troupe" . + +base:organisation\/69876 a base:organisation; + base:organisation\#IDOrganisation 69876; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Lublin's municipal theatre" . + +base:organisation\/69892 a base:organisation; + base:organisation\#IDOrganisation 69892; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mogulesco" . + +base:organisation\/69896 a base:organisation; + base:organisation\#IDOrganisation 69896; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Liberesco" . + +base:organisation\/69900 a base:organisation; + base:organisation\#IDOrganisation 69900; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Berger" . + +base:organisation\/69904 a base:organisation; + base:organisation\#IDOrganisation 69904; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Hurwitz" . + +base:organisation\/69908 a base:organisation; + base:organisation\#IDOrganisation 69908; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mordechai Segalesco" . + +base:organisation\/69916 a base:organisation; + base:organisation\#IDOrganisation 69916; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Gradner" . + +base:organisation\/69924 a base:organisation; + base:organisation\#IDOrganisation 69924; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Royal Theatre Drama School" . + +base:organisation\/69928 a base:organisation; + base:organisation\#IDOrganisation 69928; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#inst_name "Nordish Film Company" . + +base:organisation\/69932 a base:organisation; + base:organisation\#IDOrganisation 69932; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Satz’s Public Theatre (Folks Theatre)" . + +base:organisation\/69936 a base:organisation; + base:organisation\#IDOrganisation 69936; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Zhitomirski's Troupe" . + +base:organisation\/69944 a base:organisation; + base:organisation\#IDOrganisation 69944; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Levitan's Troupe" . + +base:organisation\/69948 a base:organisation; + base:organisation\#IDOrganisation 69948; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Hart's Troupe" . + +base:organisation\/69952 a base:organisation; + base:organisation\#IDOrganisation 69952; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Ziegler's Troupe" . + +base:organisation\/69956 a base:organisation; + base:organisation\#IDOrganisation 69956; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Stramer's Troupe" . + +base:organisation\/69960 a base:organisation; + base:organisation\#IDOrganisation 69960; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Russian State Theatre" . + +base:organisation\/69964 a base:organisation; + base:organisation\#IDOrganisation 69964; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sam Adler-Meerson troupe" . + +base:organisation\/69968 a base:organisation; + base:organisation\#IDOrganisation 69968; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mitleman’s troupe" . + +base:organisation\/69972 a base:organisation; + base:organisation\#IDOrganisation 69972; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yiddish Dramatic Theatre (Hirshbein troupe)" . + +base:organisation\/69976 a base:organisation; + base:organisation\#IDOrganisation 69976; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Feinman's Artistic Temple (Feinman's Yiddish People's Theatre)" . + +base:organisation\/69980 a base:organisation; + base:organisation\#IDOrganisation 69980; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sarah Adler’s troupe" . + +base:organisation\/69988 a base:organisation; + base:organisation\#IDOrganisation 69988; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Keni Lipzin" . + +base:organisation\/69996 a base:organisation; + base:organisation\#IDOrganisation 69996; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Schwartz’s Irving Place Theatre" . + +base:organisation\/70000 a base:organisation; + base:organisation\#IDOrganisation 70000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Arthur Hopkins' English-language theatre" . + +base:organisation\/70004 a base:organisation; + base:organisation\#IDOrganisation 70004; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Irving Place Theatre (The New Yiddish Art Theatre)" . + +base:organisation\/70008 a base:organisation; + base:organisation\#IDOrganisation 70008; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Wurtzburg's university" . + +base:organisation\/70012 a base:organisation; + base:organisation\#IDOrganisation 70012; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Polish operetta theatre" . + +base:organisation\/70016 a base:organisation; + base:organisation\#IDOrganisation 70016; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "David Shvartbard's troupe" . + +base:organisation\/70024 a base:organisation; + base:organisation\#IDOrganisation 70024; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Edelhofer's troupe" . + +base:organisation\/70028 a base:organisation; + base:organisation\#IDOrganisation 70028; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Goldfaden" . + +base:organisation\/70032 a base:organisation; + base:organisation\#IDOrganisation 70032; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "German-Yiddish" . + +base:organisation\/70044 a base:organisation; + base:organisation\#IDOrganisation 70044; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Vik't" . + +base:organisation\/70056 a base:organisation; + base:organisation\#IDOrganisation 70056; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#inst_name "Quartet of Gardetski" . + +base:organisation\/70060 a base:organisation; + base:organisation\#IDOrganisation 70060; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "The Warsaw governmental opera" . + +base:organisation\/70064 a base:organisation; + base:organisation\#IDOrganisation 70064; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#inst_name "Rock (stein) quartet" . + +base:organisation\/70072 a base:organisation; + base:organisation\#IDOrganisation 70072; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovsky and Sh. Krause's troupe" . + +base:organisation\/70076 a base:organisation; + base:organisation\#IDOrganisation 70076; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "the Windsor Theatre" . + +base:organisation\/70080 a base:organisation; + base:organisation\#IDOrganisation 70080; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mike Thomashefsky's Troupe" . + +base:organisation\/70084 a base:organisation; + base:organisation\#IDOrganisation 70084; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Variety with Gabel" . + +base:organisation\/70088 a base:organisation; + base:organisation\#IDOrganisation 70088; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Thomashefsky's troupe" . + +base:organisation\/70096 a base:organisation; + base:organisation\#IDOrganisation 70096; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "The Hebrew Actor's Protective Union of America" . + +base:organisation\/70100 a base:organisation; + base:organisation\#IDOrganisation 70100; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Russian amateur productions" . + +base:organisation\/70104 a base:organisation; + base:organisation\#IDOrganisation 70104; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Tsimerman's theatre" . + +base:organisation\/70112 a base:organisation; + base:organisation\#IDOrganisation 70112; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Amatuer productions" . + +base:organisation\/70116 a base:organisation; + base:organisation\#IDOrganisation 70116; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "the first Yiddish troupe in South Africa." . + +base:organisation\/70120 a base:organisation; + base:organisation\#IDOrganisation 70120; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Kugel's \"Theatre and Arts" . + +base:organisation\/70128 a base:organisation; + base:organisation\#IDOrganisation 70128; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "A Kamer-Teater" . + +base:organisation\/70132 a base:organisation; + base:organisation\#IDOrganisation 70132; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Theatre Society" . + +base:organisation\/70136 a base:organisation; + base:organisation\#IDOrganisation 70136; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Professional Yiddish Artists Union in Poland" . + +base:organisation\/70140 a base:organisation; + base:organisation\#IDOrganisation 70140; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "the Arbeter Ring camp \"Kinderland" . + +base:organisation\/70144 a base:organisation; + base:organisation\#IDOrganisation 70144; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Unzer Theatre" . + +base:organisation\/70148 a base:organisation; + base:organisation\#IDOrganisation 70148; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Children's Theatre Studio" . + +base:organisation\/70152 a base:organisation; + base:organisation\#IDOrganisation 70152; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Zuntog blat" . + +base:organisation\/70156 a base:organisation; + base:organisation\#IDOrganisation 70156; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Fraye yidishe folksbine" . + +base:organisation\/70160 a base:organisation; + base:organisation\#IDOrganisation 70160; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Di fraye idishe folks-bihne" . + +base:organisation\/70164 a base:organisation; + base:organisation\#IDOrganisation 70164; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Forward (newspaper)" . + +base:organisation\/70168 a base:organisation; + base:organisation\#IDOrganisation 70168; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Di varhayt" . + +base:organisation\/70172 a base:organisation; + base:organisation\#IDOrganisation 70172; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der tog" . + +base:organisation\/70176 a base:organisation; + base:organisation\#IDOrganisation 70176; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Poalei Zion movement" . + +base:organisation\/70180 a base:organisation; + base:organisation\#IDOrganisation 70180; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "National Radical Yiddish School" . + +base:organisation\/70184 a base:organisation; + base:organisation\#IDOrganisation 70184; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Yiddish Teacher's Seminar" . + +base:organisation\/70188 a base:organisation; + base:organisation\#IDOrganisation 70188; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "the first Yiddish children's journal in America" . + +base:organisation\/70192 a base:organisation; + base:organisation\#IDOrganisation 70192; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "People's Relief\" and Yiddish congress" . + +base:organisation\/70196 a base:organisation; + base:organisation\#IDOrganisation 70196; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Progressive Dramatic Club" . + +base:organisation\/70204 a base:organisation; + base:organisation\#IDOrganisation 70204; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#inst_name "Goldfaden's Chorus" . + +base:organisation\/70212 a base:organisation; + base:organisation\#IDOrganisation 70212; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Groyses Theatre" . + +base:organisation\/70216 a base:organisation; + base:organisation\#IDOrganisation 70216; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Tsukunft (Newspaper)" . + +base:organisation\/70220 a base:organisation; + base:organisation\#IDOrganisation 70220; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Ilustrirte vokh (Newspaper)" . + +base:organisation\/70224 a base:organisation; + base:organisation\#IDOrganisation 70224; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Yiddish Folks Theatre" . + +base:organisation\/70228 a base:organisation; + base:organisation\#IDOrganisation 70228; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "independet Hebrew brochure" . + +base:organisation\/70232 a base:organisation; + base:organisation\#IDOrganisation 70232; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Yiddish vaudeville theatres" . + +base:organisation\/70236 a base:organisation; + base:organisation\#IDOrganisation 70236; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "summer theatre, Second Avenue Theatre" . + +base:organisation\/70240 a base:organisation; + base:organisation\#IDOrganisation 70240; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "National Theatre, Irving Place Theatre" . + +base:organisation\/70244 a base:organisation; + base:organisation\#IDOrganisation 70244; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Zakhariah Fishl Filipesko's troupe" . + +base:organisation\/70248 a base:organisation; + base:organisation\#IDOrganisation 70248; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Segalesko's troupe" . + +base:organisation\/70252 a base:organisation; + base:organisation\#IDOrganisation 70252; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Akselrad's troupe" . + +base:organisation\/70256 a base:organisation; + base:organisation\#IDOrganisation 70256; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Cohen brothers' troupe" . + +base:organisation\/70260 a base:organisation; + base:organisation\#IDOrganisation 70260; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Morris Lieblich's troupe" . + +base:organisation\/70268 a base:organisation; + base:organisation\#IDOrganisation 70268; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kompaneyets' operetta troupe" . + +base:organisation\/70276 a base:organisation; + base:organisation\#IDOrganisation 70276; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Hall on Manhattan Avenue" . + +base:organisation\/70280 a base:organisation; + base:organisation\#IDOrganisation 70280; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Amateurs" . + +base:organisation\/70288 a base:organisation; + base:organisation\#IDOrganisation 70288; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Lennox" . + +base:organisation\/70292 a base:organisation; + base:organisation\#IDOrganisation 70292; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Littman's troupe" . + +base:organisation\/703 a base:organisation; + base:organisation\#IDOrganisation 703; + base:organisation\#comment ""; + base:organisation\#inst_name "The North-China Daily News" . + +base:organisation\/70300 a base:organisation; + base:organisation\#IDOrganisation 70300; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Lempkovitsh's troupe" . + +base:organisation\/70304 a base:organisation; + base:organisation\#IDOrganisation 70304; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Meerson and Sam Adler's troupe" . + +base:organisation\/70308 a base:organisation; + base:organisation\#IDOrganisation 70308; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sam Wallerstein's troupe" . + +base:organisation\/70312 a base:organisation; + base:organisation\#IDOrganisation 70312; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Publication Committee of the Lexicon of the Yiddish Theatre." . + +base:organisation\/70320 a base:organisation; + base:organisation\#IDOrganisation 70320; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Meyerson's troupe" . + +base:organisation\/70324 a base:organisation; + base:organisation\#IDOrganisation 70324; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Ester Rukhl Kaminska's troupe" . + +base:organisation\/70328 a base:organisation; + base:organisation\#IDOrganisation 70328; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Adler-Spivakovsky's troupe" . + +base:organisation\/70332 a base:organisation; + base:organisation\#IDOrganisation 70332; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Segalesco's troupe" . + +base:organisation\/70336 a base:organisation; + base:organisation\#IDOrganisation 70336; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yuvelier's troupe" . + +base:organisation\/70344 a base:organisation; + base:organisation\#IDOrganisation 70344; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Local Yiddish dramatic circle" . + +base:organisation\/70348 a base:organisation; + base:organisation\#IDOrganisation 70348; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Yidishe tsaytung" . + +base:organisation\/70352 a base:organisation; + base:organisation\#IDOrganisation 70352; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Fishzon's production" . + +base:organisation\/70356 a base:organisation; + base:organisation\#IDOrganisation 70356; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Feldman's troupe" . + +base:organisation\/70360 a base:organisation; + base:organisation\#IDOrganisation 70360; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Meerson's troupe" . + +base:organisation\/70368 a base:organisation; + base:organisation\#IDOrganisation 70368; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Folk Singer" . + +base:organisation\/70372 a base:organisation; + base:organisation\#IDOrganisation 70372; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Broder Singer" . + +base:organisation\/70376 a base:organisation; + base:organisation\#IDOrganisation 70376; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Khayim Abramovitsh's troupe" . + +base:organisation\/70380 a base:organisation; + base:organisation\#IDOrganisation 70380; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Itzik Mendl Bergman's troupe" . + +base:organisation\/70388 a base:organisation; + base:organisation\#IDOrganisation 70388; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yosef Veynshtok and Leon Berger's troupe" . + +base:organisation\/70392 a base:organisation; + base:organisation\#IDOrganisation 70392; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Aba and Leah Kompaneyets' troupe" . + +base:organisation\/70404 a base:organisation; + base:organisation\#IDOrganisation 70404; + base:organisation\#inst_name "concerts" . + +base:organisation\/70412 a base:organisation; + base:organisation\#IDOrganisation 70412; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Freye [folks] bine" . + +base:organisation\/70416 a base:organisation; + base:organisation\#IDOrganisation 70416; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Elias Glickman's troupe" . + +base:organisation\/70420 a base:organisation; + base:organisation\#IDOrganisation 70420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Jacob Gertner's troupe" . + +base:organisation\/70424 a base:organisation; + base:organisation\#IDOrganisation 70424; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Lexicon of Yiddish Theatre" . + +base:organisation\/70432 a base:organisation; + base:organisation\#IDOrganisation 70432; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "singing association (\"Hazamir\")" . + +base:organisation\/70436 a base:organisation; + base:organisation\#IDOrganisation 70436; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Yidish tagenblat" . + +base:organisation\/70440 a base:organisation; + base:organisation\#IDOrganisation 70440; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "the Jewish Federation of Music and Drama" . + +base:organisation\/70444 a base:organisation; + base:organisation\#IDOrganisation 70444; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Music school" . + +base:organisation\/70452 a base:organisation; + base:organisation\#IDOrganisation 70452; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Kessler's Theatre on Second Avenue" . + +base:organisation\/70456 a base:organisation; + base:organisation\#IDOrganisation 70456; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "German's Folks Theatre" . + +base:organisation\/70460 a base:organisation; + base:organisation\#IDOrganisation 70460; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "the Rumanian Opera House" . + +base:organisation\/70468 a base:organisation; + base:organisation\#IDOrganisation 70468; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Italian opera troupe" . + +base:organisation\/70472 a base:organisation; + base:organisation\#IDOrganisation 70472; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Thomashefsky's National Theatre" . + +base:organisation\/70476 a base:organisation; + base:organisation\#IDOrganisation 70476; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Ukrainian troupe under the direction of E. Relkin" . + +base:organisation\/70480 a base:organisation; + base:organisation\#IDOrganisation 70480; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Detroit theatre" . + +base:organisation\/70484 a base:organisation; + base:organisation\#IDOrganisation 70484; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Hebrew school" . + +base:organisation\/70488 a base:organisation; + base:organisation\#IDOrganisation 70488; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Hatsufah" . + +base:organisation\/70492 a base:organisation; + base:organisation\#IDOrganisation 70492; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der Fraynd" . + +base:organisation\/70496 a base:organisation; + base:organisation\#IDOrganisation 70496; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Haynt" . + +base:organisation\/70500 a base:organisation; + base:organisation\#IDOrganisation 70500; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Dos varshaver togblat" . + +base:organisation\/70504 a base:organisation; + base:organisation\#IDOrganisation 70504; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Moment" . + +base:organisation\/70512 a base:organisation; + base:organisation\#IDOrganisation 70512; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "The Artistic Corner" . + +base:organisation\/70516 a base:organisation; + base:organisation\#IDOrganisation 70516; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "the worker's circle" . + +base:organisation\/70520 a base:organisation; + base:organisation\#IDOrganisation 70520; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "George Beker's provincial troupe" . + +base:organisation\/70524 a base:organisation; + base:organisation\#IDOrganisation 70524; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Muranov Theatre (Kompaneyets troupe)" . + +base:organisation\/70528 a base:organisation; + base:organisation\#IDOrganisation 70528; + base:organisation\#inst_name "Yiddish provincial troupes" . + +base:organisation\/70532 a base:organisation; + base:organisation\#IDOrganisation 70532; + base:organisation\#inst_name "Russian theatre" . + +base:organisation\/70536 a base:organisation; + base:organisation\#IDOrganisation 70536; + base:organisation\#inst_name "Provincial troupe" . + +base:organisation\/70540 a base:organisation; + base:organisation\#IDOrganisation 70540; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Unzer lebn" . + +base:organisation\/70544 a base:organisation; + base:organisation\#IDOrganisation 70544; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Literarishe bleter" . + +base:organisation\/70548 a base:organisation; + base:organisation\#IDOrganisation 70548; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "the Polish Publication Committee of (first volume) the \"Lexicon of the Yiddish Theatre" . + +base:organisation\/70552 a base:organisation; + base:organisation\#IDOrganisation 70552; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Hasif" . + +base:organisation\/70556 a base:organisation; + base:organisation\#IDOrganisation 70556; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "HaTzfira" . + +base:organisation\/70560 a base:organisation; + base:organisation\#IDOrganisation 70560; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Dos yudishe vort" . + +base:organisation\/70564 a base:organisation; + base:organisation\#IDOrganisation 70564; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Yud" . + +base:organisation\/70568 a base:organisation; + base:organisation\#IDOrganisation 70568; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "the German press department" . + +base:organisation\/70572 a base:organisation; + base:organisation\#IDOrganisation 70572; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Nova Gazetta" . + +base:organisation\/70580 a base:organisation; + base:organisation\#IDOrganisation 70580; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Vilna gymnasium" . + +base:organisation\/70584 a base:organisation; + base:organisation\#IDOrganisation 70584; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Yudishe bibliotek" . + +base:organisation\/70588 a base:organisation; + base:organisation\#IDOrganisation 70588; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Arbeter Ring" . + +base:organisation\/70592 a base:organisation; + base:organisation\#IDOrganisation 70592; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Kaminski troupe" . + +base:organisation\/70596 a base:organisation; + base:organisation\#IDOrganisation 70596; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Moscow's Jewish State Theatre" . + +base:organisation\/70600 a base:organisation; + base:organisation\#IDOrganisation 70600; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mogulesko's troupe" . + +base:organisation\/70604 a base:organisation; + base:organisation\#IDOrganisation 70604; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Zhignitsa'" . + +base:organisation\/70608 a base:organisation; + base:organisation\#IDOrganisation 70608; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#inst_name "Circus 'Sidali'" . + +base:organisation\/70616 a base:organisation; + base:organisation\#IDOrganisation 70616; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Actors Union, Local 2" . + +base:organisation\/70620 a base:organisation; + base:organisation\#IDOrganisation 70620; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Irving Palace Theatre" . + +base:organisation\/70624 a base:organisation; + base:organisation\#IDOrganisation 70624; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Art Theatre (Schnitzer's)" . + +base:organisation\/70628 a base:organisation; + base:organisation\#IDOrganisation 70628; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#inst_name "Film production" . + +base:organisation\/70632 a base:organisation; + base:organisation\#IDOrganisation 70632; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Hollander's troupe" . + +base:organisation\/70636 a base:organisation; + base:organisation\#IDOrganisation 70636; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Julius Nathanson's troupe" . + +base:organisation\/70640 a base:organisation; + base:organisation\#IDOrganisation 70640; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Glickman and Michalesko's troupe" . + +base:organisation\/70644 a base:organisation; + base:organisation\#IDOrganisation 70644; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Brownsville Lyric Theatre" . + +base:organisation\/70652 a base:organisation; + base:organisation\#IDOrganisation 70652; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "(Israel) Gradner troupe" . + +base:organisation\/70656 a base:organisation; + base:organisation\#IDOrganisation 70656; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Vaynshtoks, the Vaynshtayns, and Goldschmidt's troupe" . + +base:organisation\/70660 a base:organisation; + base:organisation\#IDOrganisation 70660; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Tshistogorski's troupe" . + +base:organisation\/70664 a base:organisation; + base:organisation\#IDOrganisation 70664; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Victoria"; + base:organisation\#ref-IDLocation base:location\/PL-Lod-00 . + +base:organisation\/70672 a base:organisation; + base:organisation\#IDOrganisation 70672; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Yaakov Ber Gimpel's troupe" . + +base:organisation\/70676 a base:organisation; + base:organisation\#IDOrganisation 70676; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "The Yiddish Actor's Union in America" . + +base:organisation\/70680 a base:organisation; + base:organisation\#IDOrganisation 70680; + base:organisation\#inst_name "Pinchas Thomashefsky" . + +base:organisation\/70684 a base:organisation; + base:organisation\#IDOrganisation 70684; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#inst_name "State conservatory" . + +base:organisation\/70692 a base:organisation; + base:organisation\#IDOrganisation 70692; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "the first Yiddish actors' union in America" . + +base:organisation\/70696 a base:organisation; + base:organisation\#IDOrganisation 70696; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "amatuer groupe" . + +base:organisation\/707 a base:organisation; + base:organisation\#IDOrganisation 707; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Parish Church" . + +base:organisation\/70700 a base:organisation; + base:organisation\#IDOrganisation 70700; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Yiddish vaudeville theatre" . + +base:organisation\/70704 a base:organisation; + base:organisation\#IDOrganisation 70704; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "English vaudeville theatre" . + +base:organisation\/70708 a base:organisation; + base:organisation\#IDOrganisation 70708; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Yiddish Actor's Union" . + +base:organisation\/70712 a base:organisation; + base:organisation\#IDOrganisation 70712; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Lexicon of the Yiddish Theatre" . + +base:organisation\/70716 a base:organisation; + base:organisation\#IDOrganisation 70716; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "amature" . + +base:organisation\/70724 a base:organisation; + base:organisation\#IDOrganisation 70724; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Monument National Theatre" . + +base:organisation\/70732 a base:organisation; + base:organisation\#IDOrganisation 70732; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Gradner's troupe" . + +base:organisation\/70740 a base:organisation; + base:organisation\#IDOrganisation 70740; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yiddish-German Theatre" . + +base:organisation\/70748 a base:organisation; + base:organisation\#IDOrganisation 70748; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Krause-Spivakovski's troupe" . + +base:organisation\/70752 a base:organisation; + base:organisation\#IDOrganisation 70752; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Bronstein's troupe" . + +base:organisation\/70756 a base:organisation; + base:organisation\#IDOrganisation 70756; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sabsey's troupe" . + +base:organisation\/70760 a base:organisation; + base:organisation\#IDOrganisation 70760; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kaminska's United Troupe" . + +base:organisation\/70764 a base:organisation; + base:organisation\#IDOrganisation 70764; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Moshkovich's troupe" . + +base:organisation\/70768 a base:organisation; + base:organisation\#IDOrganisation 70768; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "The dramatic studio of the Peretz Society" . + +base:organisation\/70772 a base:organisation; + base:organisation\#IDOrganisation 70772; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "First Yiddish state theatre" . + +base:organisation\/70776 a base:organisation; + base:organisation\#IDOrganisation 70776; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Maurice Schwartz's troupe" . + +base:organisation\/70780 a base:organisation; + base:organisation\#IDOrganisation 70780; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Glickman's Palace Theatre" . + +base:organisation\/70784 a base:organisation; + base:organisation\#IDOrganisation 70784; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Lit. Dram. Gezelshaft" . + +base:organisation\/70788 a base:organisation; + base:organisation\#IDOrganisation 70788; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "the Yiddish Actors Union" . + +base:organisation\/70792 a base:organisation; + base:organisation\#IDOrganisation 70792; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Bunes Badkhan (Tshizshik)," . + +base:organisation\/70796 a base:organisation; + base:organisation\#IDOrganisation 70796; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "German Thalia Theatre" . + +base:organisation\/708 a base:organisation; + base:organisation\#IDOrganisation 708; + base:organisation\#comment ""; + base:organisation\#inst_name "St. Andrew's Cathedral" . + +base:organisation\/70800 a base:organisation; + base:organisation\#IDOrganisation 70800; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Serotsky and Weissman's Yiddish itinerant troupe" . + +base:organisation\/70804 a base:organisation; + base:organisation\#IDOrganisation 70804; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Yiddish Pavilion Theatre" . + +base:organisation\/70808 a base:organisation; + base:organisation\#IDOrganisation 70808; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Feinman's Kunst-temple (Arts Temple)" . + +base:organisation\/70812 a base:organisation; + base:organisation\#IDOrganisation 70812; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Adler's theatre" . + +base:organisation\/70816 a base:organisation; + base:organisation\#IDOrganisation 70816; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "The dramatic union" . + +base:organisation\/70820 a base:organisation; + base:organisation\#IDOrganisation 70820; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "formerly the Roumanian Opera House" . + +base:organisation\/70828 a base:organisation; + base:organisation\#IDOrganisation 70828; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Herald" . + +base:organisation\/70832 a base:organisation; + base:organisation\#IDOrganisation 70832; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Weinstock-Schorr" . + +base:organisation\/70836 a base:organisation; + base:organisation\#IDOrganisation 70836; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Weincourt Theatre" . + +base:organisation\/70840 a base:organisation; + base:organisation\#IDOrganisation 70840; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "amateur productions from Goldfaden's plays" . + +base:organisation\/70844 a base:organisation; + base:organisation\#IDOrganisation 70844; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#inst_name "chorus of a Yiddish theatre" . + +base:organisation\/70848 a base:organisation; + base:organisation\#IDOrganisation 70848; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Vaksman's troupe" . + +base:organisation\/70852 a base:organisation; + base:organisation\#IDOrganisation 70852; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Feinman Yiddish Theatre" . + +base:organisation\/70860 a base:organisation; + base:organisation\#IDOrganisation 70860; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Moshkovitsh's troupe" . + +base:organisation\/70864 a base:organisation; + base:organisation\#IDOrganisation 70864; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Fannyv Vaksman's troupe" . + +base:organisation\/70868 a base:organisation; + base:organisation\#IDOrganisation 70868; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Theater on Grand Street" . + +base:organisation\/70872 a base:organisation; + base:organisation\#IDOrganisation 70872; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yosef Vaynshtok's theater company" . + +base:organisation\/70876 a base:organisation; + base:organisation\#IDOrganisation 70876; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Gimpel's theater company" . + +base:organisation\/70880 a base:organisation; + base:organisation\#IDOrganisation 70880; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Dritn Street Theatre" . + +base:organisation\/70884 a base:organisation; + base:organisation\#IDOrganisation 70884; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Lenox Theatre" . + +base:organisation\/70888 a base:organisation; + base:organisation\#IDOrganisation 70888; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Hopkinson" . + +base:organisation\/70892 a base:organisation; + base:organisation\#IDOrganisation 70892; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Goldfaden Union" . + +base:organisation\/70896 a base:organisation; + base:organisation\#IDOrganisation 70896; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Vaudville" . + +base:organisation\/709 a base:organisation; + base:organisation\#IDOrganisation 709; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Singapore Amateur Music Society" . + +base:organisation\/70900 a base:organisation; + base:organisation\#IDOrganisation 70900; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Goldfaden's dramatic school" . + +base:organisation\/70908 a base:organisation; + base:organisation\#IDOrganisation 70908; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#inst_name "Local cinema" . + +base:organisation\/70912 a base:organisation; + base:organisation\#IDOrganisation 70912; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Rosenberg and Spivakovski's troupe" . + +base:organisation\/70916 a base:organisation; + base:organisation\#IDOrganisation 70916; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovski and Weinstock's troupe" . + +base:organisation\/70920 a base:organisation; + base:organisation\#IDOrganisation 70920; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Marinsky's Theatre" . + +base:organisation\/70928 a base:organisation; + base:organisation\#IDOrganisation 70928; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "El Dorado Theatre" . + +base:organisation\/70932 a base:organisation; + base:organisation\#IDOrganisation 70932; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Goldfaden troupe" . + +base:organisation\/70936 a base:organisation; + base:organisation\#IDOrganisation 70936; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Michalesko's guest-starring troupe" . + +base:organisation\/70940 a base:organisation; + base:organisation\#IDOrganisation 70940; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Yosef Goldshmidt's theatre" . + +base:organisation\/70944 a base:organisation; + base:organisation\#IDOrganisation 70944; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "M.D. Waxman's theatre" . + +base:organisation\/70948 a base:organisation; + base:organisation\#IDOrganisation 70948; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Jacob Silbert's theatre" . + +base:organisation\/70952 a base:organisation; + base:organisation\#IDOrganisation 70952; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Morris Akselrad's theatre" . + +base:organisation\/70956 a base:organisation; + base:organisation\#IDOrganisation 70956; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Warsaw Central Theatre" . + +base:organisation\/70960 a base:organisation; + base:organisation\#IDOrganisation 70960; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kompaneyets' theatre" . + +base:organisation\/70964 a base:organisation; + base:organisation\#IDOrganisation 70964; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Jacob Silbert's tour" . + +base:organisation\/70980 a base:organisation; + base:organisation\#IDOrganisation 70980; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Nowvy Theatre" . + +base:organisation\/70984 a base:organisation; + base:organisation\#IDOrganisation 70984; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Solovtsov Theatre" . + +base:organisation\/70988 a base:organisation; + base:organisation\#IDOrganisation 70988; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Julius Adler and H. Serotsky" . + +base:organisation\/70992 a base:organisation; + base:organisation\#IDOrganisation 70992; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Joseph Kessler" . + +base:organisation\/70996 a base:organisation; + base:organisation\#IDOrganisation 70996; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "HaCarmel (periodical)" . + +base:organisation\/710 a base:organisation; + base:organisation\#IDOrganisation 710; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Holy Trinity Church" . + +base:organisation\/71000 a base:organisation; + base:organisation\#IDOrganisation 71000; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Belloy's troupe" . + +base:organisation\/71004 a base:organisation; + base:organisation\#IDOrganisation 71004; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Rabinovitsh's troupe" . + +base:organisation\/71008 a base:organisation; + base:organisation\#IDOrganisation 71008; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Meeerson's troupe" . + +base:organisation\/71012 a base:organisation; + base:organisation\#IDOrganisation 71012; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sam Adler and Spivakovski's troupe" . + +base:organisation\/71016 a base:organisation; + base:organisation\#IDOrganisation 71016; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Kaminska's troupe" . + +base:organisation\/71020 a base:organisation; + base:organisation\#IDOrganisation 71020; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Rappel's troupe" . + +base:organisation\/71024 a base:organisation; + base:organisation\#IDOrganisation 71024; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sniegoff's troupe" . + +base:organisation\/71028 a base:organisation; + base:organisation\#IDOrganisation 71028; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Vilna Yiddish Theatre Society" . + +base:organisation\/71032 a base:organisation; + base:organisation\#IDOrganisation 71032; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Azro's section of the Vilna Troupe" . + +base:organisation\/71036 a base:organisation; + base:organisation\#IDOrganisation 71036; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Amphion" . + +base:organisation\/71040 a base:organisation; + base:organisation\#IDOrganisation 71040; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Lemberg Polish Opera" . + +base:organisation\/71044 a base:organisation; + base:organisation\#IDOrganisation 71044; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Gimpel's Yiddish Theatre" . + +base:organisation\/71048 a base:organisation; + base:organisation\#IDOrganisation 71048; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Elving's Theatre" . + +base:organisation\/71056 a base:organisation; + base:organisation\#IDOrganisation 71056; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Juvelier's guest-starring troupe" . + +base:organisation\/71064 a base:organisation; + base:organisation\#IDOrganisation 71064; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Third Street Theatre" . + +base:organisation\/71068 a base:organisation; + base:organisation\#IDOrganisation 71068; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Konshtat's school" . + +base:organisation\/71072 a base:organisation; + base:organisation\#IDOrganisation 71072; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovski's troupe" . + +base:organisation\/71076 a base:organisation; + base:organisation\#IDOrganisation 71076; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovski's troupe (Kreuze)" . + +base:organisation\/71080 a base:organisation; + base:organisation\#IDOrganisation 71080; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Zaslavsky" . + +base:organisation\/71084 a base:organisation; + base:organisation\#IDOrganisation 71084; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "the \"first Yiddish artists union\", and the Yiddish cooperative troupes" . + +base:organisation\/71092 a base:organisation; + base:organisation\#IDOrganisation 71092; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Folks-teater" . + +base:organisation\/71096 a base:organisation; + base:organisation\#IDOrganisation 71096; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mitelman, Baran and Gizets" . + +base:organisation\/711 a base:organisation; + base:organisation\#IDOrganisation 711; + base:organisation\#comment ""; + base:organisation\#inst_name "Masonic" . + +base:organisation\/71100 a base:organisation; + base:organisation\#IDOrganisation 71100; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Treitler's troupe" . + +base:organisation\/71108 a base:organisation; + base:organisation\#IDOrganisation 71108; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Golubok's troupe" . + +base:organisation\/71112 a base:organisation; + base:organisation\#IDOrganisation 71112; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Silbert's troupe" . + +base:organisation\/71116 a base:organisation; + base:organisation\#IDOrganisation 71116; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Yiddish vaudeville production" . + +base:organisation\/71120 a base:organisation; + base:organisation\#IDOrganisation 71120; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Samolesko's troupe" . + +base:organisation\/71124 a base:organisation; + base:organisation\#IDOrganisation 71124; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Local Yiddish dramatic society" . + +base:organisation\/71136 a base:organisation; + base:organisation\#IDOrganisation 71136; + base:organisation\#inst_name "lawyer, notary and judge" . + +base:organisation\/71140 a base:organisation; + base:organisation\#IDOrganisation 71140; + base:organisation\#inst_name "costum house" . + +base:organisation\/71144 a base:organisation; + base:organisation\#IDOrganisation 71144; + base:organisation\#inst_name "Odesky Vyenstnik" . + +base:organisation\/71148 a base:organisation; + base:organisation\#IDOrganisation 71148; + base:organisation\#inst_name "Department of Weights and Measures" . + +base:organisation\/71156 a base:organisation; + base:organisation\#IDOrganisation 71156; + base:organisation\#inst_name "Russian production" . + +base:organisation\/71160 a base:organisation; + base:organisation\#IDOrganisation 71160; + base:organisation\#inst_name "Yiddish theatre" . + +base:organisation\/71164 a base:organisation; + base:organisation\#IDOrganisation 71164; + base:organisation\#inst_name "Madison Street Theatre" . + +base:organisation\/71168 a base:organisation; + base:organisation\#IDOrganisation 71168; + base:organisation\#inst_name "Sigmund Feinman" . + +base:organisation\/71172 a base:organisation; + base:organisation\#IDOrganisation 71172; + base:organisation\#inst_name "Mogulesko and Finkel's troupe" . + +base:organisation\/71180 a base:organisation; + base:organisation\#IDOrganisation 71180; + base:organisation\#inst_name "Amatuer" . + +base:organisation\/71184 a base:organisation; + base:organisation\#IDOrganisation 71184; + base:organisation\#inst_name "Smiferopol State School" . + +base:organisation\/71188 a base:organisation; + base:organisation\#IDOrganisation 71188; + base:organisation\#inst_name "Yisroylic (Newspaper)" . + +base:organisation\/71192 a base:organisation; + base:organisation\#IDOrganisation 71192; + base:organisation\#inst_name "Chutei Zahav (Golden Threads)" . + +base:organisation\/71196 a base:organisation; + base:organisation\#IDOrganisation 71196; + base:organisation\#inst_name "Lebanon Society" . + +base:organisation\/712 a base:organisation; + base:organisation\#IDOrganisation 712; + base:organisation\#comment ""; + base:organisation\#inst_name "Victorian Choir"; + base:organisation\#ref-IDLocation base:location\/AUS-Vict-00 . + +base:organisation\/71200 a base:organisation; + base:organisation\#IDOrganisation 71200; + base:organisation\#inst_name "Shimon Mark's Garden" . + +base:organisation\/71204 a base:organisation; + base:organisation\#IDOrganisation 71204; + base:organisation\#inst_name "Hotel Weibel" . + +base:organisation\/71208 a base:organisation; + base:organisation\#IDOrganisation 71208; + base:organisation\#inst_name "Lazar Kapedshoy’s" . + +base:organisation\/71212 a base:organisation; + base:organisation\#IDOrganisation 71212; + base:organisation\#inst_name "Goldfaden's Theatre" . + +base:organisation\/71216 a base:organisation; + base:organisation\#IDOrganisation 71216; + base:organisation\#inst_name "Remeslany (Handicraft) Club" . + +base:organisation\/71220 a base:organisation; + base:organisation\#IDOrganisation 71220; + base:organisation\#inst_name "Mariinsky Theatre" . + +base:organisation\/71228 a base:organisation; + base:organisation\#IDOrganisation 71228; + base:organisation\#inst_name "German club" . + +base:organisation\/71232 a base:organisation; + base:organisation\#IDOrganisation 71232; + base:organisation\#inst_name "Odessa Handicraft Workers Club" . + +base:organisation\/71236 a base:organisation; + base:organisation\#IDOrganisation 71236; + base:organisation\#inst_name "Buff Theatre (later renamed El Dorado and now Boguslovski)" . + +base:organisation\/71240 a base:organisation; + base:organisation\#IDOrganisation 71240; + base:organisation\#inst_name "Abraham Goldfaden's Theatre" . + +base:organisation\/71244 a base:organisation; + base:organisation\#IDOrganisation 71244; + base:organisation\#inst_name "probe numer" . + +base:organisation\/71252 a base:organisation; + base:organisation\#IDOrganisation 71252; + base:organisation\#inst_name "Hebrew Dramatic Club" . + +base:organisation\/71256 a base:organisation; + base:organisation\#IDOrganisation 71256; + base:organisation\#inst_name "Fantasy Parisian Theatre" . + +base:organisation\/71260 a base:organisation; + base:organisation\#IDOrganisation 71260; + base:organisation\#inst_name "Jignitsa Theatre" . + +base:organisation\/71264 a base:organisation; + base:organisation\#IDOrganisation 71264; + base:organisation\#inst_name "Minikes Yontev Blat" . + +base:organisation\/714 a base:organisation; + base:organisation\#IDOrganisation 714; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "English Cathedral"; + base:organisation\#ref-IDLocation base:location\/SG-00 . + +base:organisation\/715 a base:organisation; + base:organisation\#IDOrganisation 715; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "de Violon de principo Theatre de Milan" . + +base:organisation\/716 a base:organisation; + base:organisation\#IDOrganisation 716; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Municipal Orchestra and Band of Shanghai" . + +base:organisation\/717 a base:organisation; + base:organisation\#IDOrganisation 717; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Queen's Theatre" . + +base:organisation\/718 a base:organisation; + base:organisation\#IDOrganisation 718; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Municipal Orchestra and Band of Shanghai"; + base:organisation\#ref-IDLocation base:location\/CN-SH-00 . + +base:organisation\/71824 a base:organisation; + base:organisation\#IDOrganisation 71824; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "פּאמול ווערדי - Pomul verde" . + +base:organisation\/71828 a base:organisation; + base:organisation\#IDOrganisation 71828; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "⁨⁨Di ṿahrhayṭ⁩ - ⁨דיא ווארהייט" . + +base:organisation\/71832 a base:organisation; + base:organisation\#IDOrganisation 71832; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der Ṭog⁩ - ⁨דער טאג" . + +base:organisation\/71836 a base:organisation; + base:organisation\#IDOrganisation 71836; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Yidishe Natsionale Radikale Shul" . + +base:organisation\/71844 a base:organisation; + base:organisation\#IDOrganisation 71844; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Di tsukunft- די צוקונפט" . + +base:organisation\/71848 a base:organisation; + base:organisation\#IDOrganisation 71848; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Mordechai Segalesko Troupe" . + +base:organisation\/71856 a base:organisation; + base:organisation\#IDOrganisation 71856; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Di idishe tsayṭung⁩ - ⁨די אידישע" . + +base:organisation\/71864 a base:organisation; + base:organisation\#IDOrganisation 71864; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Yidishes ṭogblaṭ⁩ - ⁨יידישעס טאגעבלאט⁩⁩" . + +base:organisation\/71872 a base:organisation; + base:organisation\#IDOrganisation 71872; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Nord Star\" Theatre" . + +base:organisation\/71876 a base:organisation; + base:organisation\#IDOrganisation 71876; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "ha-Dor⁩ - ⁨הדור" . + +base:organisation\/71880 a base:organisation; + base:organisation\#IDOrganisation 71880; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "ha-Tsofeh ⁩ - ⁨הצפה" . + +base:organisation\/71884 a base:organisation; + base:organisation\#IDOrganisation 71884; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "⁨⁨Der Fraynd⁩ - ⁨דער פֿרײַנד⁩⁩" . + +base:organisation\/71888 a base:organisation; + base:organisation\#IDOrganisation 71888; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Haynṭ⁩ - ⁨היינט⁩⁩" . + +base:organisation\/71896 a base:organisation; + base:organisation\#IDOrganisation 71896; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der Momenṭ⁩ - ⁨דער מאמענט⁩⁩" . + +base:organisation\/719 a base:organisation; + base:organisation\#IDOrganisation 719; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Gymnasio Dramático" . + +base:organisation\/71900 a base:organisation; + base:organisation\#IDOrganisation 71900; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Unzer Leben⁩ - ⁨אונזער לעבען" . + +base:organisation\/71904 a base:organisation; + base:organisation\#IDOrganisation 71904; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Di Tsayt --די צײט" . + +base:organisation\/71908 a base:organisation; + base:organisation\#IDOrganisation 71908; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Literarisze Bleter⁩ - ⁨ליטערארישע בלעטער" . + +base:organisation\/71916 a base:organisation; + base:organisation\#IDOrganisation 71916; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "דער יודישער העראלד - The Jewish herald / Jewish herald" . + +base:organisation\/71920 a base:organisation; + base:organisation\#IDOrganisation 71920; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "ha-Karmel⁩ - ⁨הכרמל" . + +base:organisation\/71950 a base:organisation; + base:organisation\#IDOrganisation 71950; + base:organisation\#inst_name """Wynberg Town Hall (Cape Town) +""" . + +base:organisation\/71955 a base:organisation; + base:organisation\#IDOrganisation 71955; + base:organisation\#inst_name "Masonic Hall (Cape Town)" . + +base:organisation\/71972 a base:organisation; + base:organisation\#IDOrganisation 71972; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Academy of Music, Macon"; + base:organisation\#ref-IDLocation base:location\/USA-Mac-00 . + +base:organisation\/71974 a base:organisation; + base:organisation\#IDOrganisation 71974; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Academy of Music, Charleston"; + base:organisation\#ref-IDLocation base:location\/UAS-Charls-00 . + +base:organisation\/71975 a base:organisation; + base:organisation\#IDOrganisation 71975; + base:organisation\#inst_name "Tanzman-Spivakovski troupe" . + +base:organisation\/72055 a base:organisation; + base:organisation\#IDOrganisation 72055; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Temple Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Fort-00 . + +base:organisation\/72080 a base:organisation; + base:organisation\#IDOrganisation 72080; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Oliver Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-LincN-00 . + +base:organisation\/721 a base:organisation; + base:organisation\#IDOrganisation 721; + base:organisation\#comment ""; + base:organisation\#inst_name "Shubert Brothers" . + +base:organisation\/72107 a base:organisation; + base:organisation\#IDOrganisation 72107; + base:organisation\#inst_name "Cours d’esthétique appliquée"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/72112 a base:organisation; + base:organisation\#IDOrganisation 72112; + base:organisation\#inst_name "Stolzenfels Castle" . + +base:organisation\/72117 a base:organisation; + base:organisation\#IDOrganisation 72117; + base:organisation\#inst_name "Neues Palais"; + base:organisation\#ref-IDLocation base:location\/GER-Potsd-00 . + +base:organisation\/72122 a base:organisation; + base:organisation\#IDOrganisation 72122; + base:organisation\#inst_name "Lower Rhine Music Festival" . + +base:organisation\/72137 a base:organisation; + base:organisation\#IDOrganisation 72137; + base:organisation\#inst_name "Reuß-Ebersdorf" . + +base:organisation\/72142 a base:organisation; + base:organisation\#IDOrganisation 72142; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Potsdamer Stadttheater"; + base:organisation\#ref-IDLocation base:location\/GER-Potsd-00 . + +base:organisation\/72147 a base:organisation; + base:organisation\#IDOrganisation 72147; + base:organisation\#inst_name "Paris Opera at Salle Le Peletier"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/72152 a base:organisation; + base:organisation\#IDOrganisation 72152; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Victoria Theatre"; + base:organisation\#ref-IDLocation base:location\/AUS-Bal-00 . + +base:organisation\/72157 a base:organisation; + base:organisation\#IDOrganisation 72157; + base:organisation\#inst_name "Hope Chapel"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72162 a base:organisation; + base:organisation\#IDOrganisation 72162; + base:organisation\#inst_name "St. James Hall"; + base:organisation\#ref-IDLocation base:location\/UK-Ldn-00 . + +base:organisation\/72167 a base:organisation; + base:organisation\#IDOrganisation 72167; + base:organisation\#inst_name "Adelphi Theatre in Baltimore" . + +base:organisation\/72172 a base:organisation; + base:organisation\#IDOrganisation 72172; + base:organisation\#inst_name "Wiener Hofopern Orchester"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/72182 a base:organisation; + base:organisation\#IDOrganisation 72182; + base:organisation\#inst_name "Prague’s Vinohrady Theater"; + base:organisation\#ref-IDLocation base:location\/CZ-Prag-00 . + +base:organisation\/72194 a base:organisation; + base:organisation\#IDOrganisation 72194; + base:organisation\#inst_name "Iris de paz (play)" . + +base:organisation\/72199 a base:organisation; + base:organisation\#IDOrganisation 72199; + base:organisation\#inst_name "Compañía de Joaquín Arjona" . + +base:organisation\/722 a base:organisation; + base:organisation\#IDOrganisation 722; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Teatro Cassino " . + +base:organisation\/72204 a base:organisation; + base:organisation\#IDOrganisation 72204; + base:organisation\#inst_name "Compañía de Alfredo Maza" . + +base:organisation\/72209 a base:organisation; + base:organisation\#IDOrganisation 72209; + base:organisation\#inst_name "“Empresa nacional” (campaña argentina para valorizar autores nacionales)" . + +base:organisation\/72214 a base:organisation; + base:organisation\#IDOrganisation 72214; + base:organisation\#inst_name "Compañía de María Guerrero" . + +base:organisation\/72219 a base:organisation; + base:organisation\#IDOrganisation 72219; + base:organisation\#inst_name "Consejo Directivo" . + +base:organisation\/72224 a base:organisation; + base:organisation\#IDOrganisation 72224; + base:organisation\#inst_name "PSI Partido Socialista" . + +base:organisation\/72234 a base:organisation; + base:organisation\#IDOrganisation 72234; + base:organisation\#inst_name "Elenco Nacional encabezado por Enrique de Rosas" . + +base:organisation\/72239 a base:organisation; + base:organisation\#IDOrganisation 72239; + base:organisation\#inst_name "Elenco Nacional encabezado por Blanca Podestá" . + +base:organisation\/72244 a base:organisation; + base:organisation\#IDOrganisation 72244; + base:organisation\#inst_name "Elenco Nacional encabezado por Angela Tesada" . + +base:organisation\/72249 a base:organisation; + base:organisation\#IDOrganisation 72249; + base:organisation\#inst_name "Circo Arena" . + +base:organisation\/72259 a base:organisation; + base:organisation\#IDOrganisation 72259; + base:organisation\#inst_name "Periódico Escuela" . + +base:organisation\/72264 a base:organisation; + base:organisation\#IDOrganisation 72264; + base:organisation\#inst_name "Periódico El Pueblo" . + +base:organisation\/72269 a base:organisation; + base:organisation\#IDOrganisation 72269; + base:organisation\#inst_name "Periódico La Vanguardia" . + +base:organisation\/72274 a base:organisation; + base:organisation\#IDOrganisation 72274; + base:organisation\#inst_name "Periódico Nación Catalana" . + +base:organisation\/72279 a base:organisation; + base:organisation\#IDOrganisation 72279; + base:organisation\#inst_name "Periódico de la Acción Socialista" . + +base:organisation\/72284 a base:organisation; + base:organisation\#IDOrganisation 72284; + base:organisation\#inst_name "Federación Socialista de Buenos Aires" . + +base:organisation\/72289 a base:organisation; + base:organisation\#IDOrganisation 72289; + base:organisation\#inst_name "Centro Socialista de Montevideo" . + +base:organisation\/72294 a base:organisation; + base:organisation\#IDOrganisation 72294; + base:organisation\#inst_name "Ministerio de Agricultura y Economía" . + +base:organisation\/72299 a base:organisation; + base:organisation\#IDOrganisation 72299; + base:organisation\#inst_name "Partido Socialista Unificado de Catalonia" . + +base:organisation\/72309 a base:organisation; + base:organisation\#IDOrganisation 72309; + base:organisation\#inst_name "Teatro de la Zarzuela" . + +base:organisation\/72324 a base:organisation; + base:organisation\#IDOrganisation 72324; + base:organisation\#inst_name "Ateneo Hispanoamericano" . + +base:organisation\/72329 a base:organisation; + base:organisation\#IDOrganisation 72329; + base:organisation\#inst_name "Teatro Pasatiempo" . + +base:organisation\/72349 a base:organisation; + base:organisation\#IDOrganisation 72349; + base:organisation\#inst_name "Instituto de Literatura Iberoamericana" . + +base:organisation\/72359 a base:organisation; + base:organisation\#IDOrganisation 72359; + base:organisation\#inst_name "Radio del Estado" . + +base:organisation\/72364 a base:organisation; + base:organisation\#IDOrganisation 72364; + base:organisation\#inst_name "Diario Clarín" . + +base:organisation\/72369 a base:organisation; + base:organisation\#IDOrganisation 72369; + base:organisation\#inst_name "Radio Industry" . + +base:organisation\/72374 a base:organisation; + base:organisation\#IDOrganisation 72374; + base:organisation\#inst_name "Revista “Sudamérica”" . + +base:organisation\/72379 a base:organisation; + base:organisation\#IDOrganisation 72379; + base:organisation\#inst_name "Courriere Française" . + +base:organisation\/72389 a base:organisation; + base:organisation\#IDOrganisation 72389; + base:organisation\#inst_name "Biblioteca Nacional de la República Argentina" . + +base:organisation\/72399 a base:organisation; + base:organisation\#IDOrganisation 72399; + base:organisation\#inst_name "Alma Gallega" . + +base:organisation\/724 a base:organisation; + base:organisation\#IDOrganisation 724; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Braga Junior’s theater company" . + +base:organisation\/72404 a base:organisation; + base:organisation\#IDOrganisation 72404; + base:organisation\#inst_name "Teatro Popular Gallego" . + +base:organisation\/72409 a base:organisation; + base:organisation\#IDOrganisation 72409; + base:organisation\#inst_name "Centro Republicano Español" . + +base:organisation\/72414 a base:organisation; + base:organisation\#IDOrganisation 72414; + base:organisation\#inst_name "Teatro Universitario" . + +base:organisation\/72419 a base:organisation; + base:organisation\#IDOrganisation 72419; + base:organisation\#inst_name "Universidad Popular" . + +base:organisation\/72424 a base:organisation; + base:organisation\#IDOrganisation 72424; + base:organisation\#inst_name "Centro de Choferes de Uruguay" . + +base:organisation\/72429 a base:organisation; + base:organisation\#IDOrganisation 72429; + base:organisation\#inst_name "Teatro Mitre" . + +base:organisation\/72434 a base:organisation; + base:organisation\#IDOrganisation 72434; + base:organisation\#inst_name "Ministerio de Instrucción Pública" . + +base:organisation\/72464 a base:organisation; + base:organisation\#IDOrganisation 72464; + base:organisation\#inst_name "Gruppe Junger Schauspieler" . + +base:organisation\/72473 a base:organisation; + base:organisation\#IDOrganisation 72473; + base:organisation\#inst_name "Fordham University" . + +base:organisation\/72478 a base:organisation; + base:organisation\#IDOrganisation 72478; + base:organisation\#inst_name "New York Hunter College" . + +base:organisation\/72483 a base:organisation; + base:organisation\#IDOrganisation 72483; + base:organisation\#inst_name "Sommertheater (in Schwedt an der Oder)" . + +base:organisation\/72488 a base:organisation; + base:organisation\#IDOrganisation 72488; + base:organisation\#inst_name "Verlag Hesse und Becker" . + +base:organisation\/72498 a base:organisation; + base:organisation\#IDOrganisation 72498; + base:organisation\#inst_name "Sommertheater"; + base:organisation\#ref-IDLocation base:location\/PL-Bresl-00 . + +base:organisation\/72503 a base:organisation; + base:organisation\#IDOrganisation 72503; + base:organisation\#inst_name "Staatliche Schauspielschule"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/72508 a base:organisation; + base:organisation\#IDOrganisation 72508; + base:organisation\#inst_name "Staatstheater Frankfurt" . + +base:organisation\/72513 a base:organisation; + base:organisation\#IDOrganisation 72513; + base:organisation\#inst_name "Hessisches Landestheater (Darmstadt)" . + +base:organisation\/72518 a base:organisation; + base:organisation\#IDOrganisation 72518; + base:organisation\#inst_name "Städtische Oper"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/72523 a base:organisation; + base:organisation\#IDOrganisation 72523; + base:organisation\#inst_name "Schauspielhaus Zürich" . + +base:organisation\/72533 a base:organisation; + base:organisation\#IDOrganisation 72533; + base:organisation\#inst_name "Glyndebourne Mozart Festival (England)" . + +base:organisation\/72538 a base:organisation; + base:organisation\#IDOrganisation 72538; + base:organisation\#inst_name "University of Southern California (Los Angeles)" . + +base:organisation\/72543 a base:organisation; + base:organisation\#IDOrganisation 72543; + base:organisation\#inst_name "Bund herrschaftsloser Sozialisten (BhS) (Vienna)" . + +base:organisation\/72548 a base:organisation; + base:organisation\#IDOrganisation 72548; + base:organisation\#inst_name "Theatre Libre" . + +base:organisation\/72553 a base:organisation; + base:organisation\#IDOrganisation 72553; + base:organisation\#inst_name "Odeon Theatre" . + +base:organisation\/72558 a base:organisation; + base:organisation\#IDOrganisation 72558; + base:organisation\#inst_name "Drülbedayii Osmani"; + base:organisation\#ref-IDLocation base:location\/TR-Ist-00 . + +base:organisation\/727 a base:organisation; + base:organisation\#IDOrganisation 727; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Souza Bastos’ company" . + +base:organisation\/728 a base:organisation; + base:organisation\#IDOrganisation 728; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Faria e Sampaio theater company" . + +base:organisation\/73 a base:organisation; + base:organisation\#IDOrganisation 73; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Königl. Hoftheater in München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/73063 a base:organisation; + base:organisation\#IDOrganisation 73063; + base:organisation\#inst_name "Greenwich Village Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73068 a base:organisation; + base:organisation\#IDOrganisation 73068; + base:organisation\#inst_name "Plymouth Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73073 a base:organisation; + base:organisation\#IDOrganisation 73073; + base:organisation\#inst_name "Apollo Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73078 a base:organisation; + base:organisation\#IDOrganisation 73078; + base:organisation\#inst_name "39th Street Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73083 a base:organisation; + base:organisation\#IDOrganisation 73083; + base:organisation\#inst_name "Guild Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73088 a base:organisation; + base:organisation\#IDOrganisation 73088; + base:organisation\#inst_name "Mansfield Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73093 a base:organisation; + base:organisation\#IDOrganisation 73093; + base:organisation\#inst_name "Klaw Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/731 a base:organisation; + base:organisation\#IDOrganisation 731; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Film Production companies Lux and Pathé Frères" . + +base:organisation\/73133 a base:organisation; + base:organisation\#IDOrganisation 73133; + base:organisation\#inst_name "Erlangers Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73143 a base:organisation; + base:organisation\#IDOrganisation 73143; + base:organisation\#inst_name "Selwyn Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73148 a base:organisation; + base:organisation\#IDOrganisation 73148; + base:organisation\#inst_name "Morosco Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73153 a base:organisation; + base:organisation\#IDOrganisation 73153; + base:organisation\#inst_name "Longacre Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73158 a base:organisation; + base:organisation\#IDOrganisation 73158; + base:organisation\#inst_name "Alvin Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73163 a base:organisation; + base:organisation\#IDOrganisation 73163; + base:organisation\#inst_name "Adelphi Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73168 a base:organisation; + base:organisation\#IDOrganisation 73168; + base:organisation\#inst_name "Music Box Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73173 a base:organisation; + base:organisation\#IDOrganisation 73173; + base:organisation\#inst_name "Broadway Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73178 a base:organisation; + base:organisation\#IDOrganisation 73178; + base:organisation\#inst_name "Phoenix Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73183 a base:organisation; + base:organisation\#IDOrganisation 73183; + base:organisation\#inst_name "Booth Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73188 a base:organisation; + base:organisation\#IDOrganisation 73188; + base:organisation\#inst_name "Ambassador Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/73193 a base:organisation; + base:organisation\#IDOrganisation 73193; + base:organisation\#inst_name "Erkenntnis und Befreiung (Newspaper)" . + +base:organisation\/732 a base:organisation; + base:organisation\#IDOrganisation 732; + base:organisation\#comment ""; + base:organisation\#inst_name "Continental-Kunstfilm of Berlin" . + +base:organisation\/733 a base:organisation; + base:organisation\#IDOrganisation 733; + base:organisation\#comment ""; + base:organisation\#inst_name "Misu-Film Co." . + +base:organisation\/735 a base:organisation; + base:organisation\#IDOrganisation 735; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Mr. Joe Cowell’s theatre " . + +base:organisation\/738 a base:organisation; + base:organisation\#IDOrganisation 738; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Perl Museum" . + +base:organisation\/739 a base:organisation; + base:organisation\#IDOrganisation 739; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Albany Museum" . + +base:organisation\/740 a base:organisation; + base:organisation\#IDOrganisation 740; + base:organisation\#comment ""; + base:organisation\#inst_name "Ludlow & Smith" . + +base:organisation\/741 a base:organisation; + base:organisation\#IDOrganisation 741; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Henry Brown’s Circus" . + +base:organisation\/742 a base:organisation; + base:organisation\#IDOrganisation 742; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Holborn Amphytheatre" . + +base:organisation\/745 a base:organisation; + base:organisation\#IDOrganisation 745; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "American Company" . + +base:organisation\/750 a base:organisation; + base:organisation\#IDOrganisation 750; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Frank Brown Company" . + +base:organisation\/751 a base:organisation; + base:organisation\#IDOrganisation 751; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Circo-Teatro Podestá" . + +base:organisation\/755 a base:organisation; + base:organisation\#IDOrganisation 755; + base:organisation\#comment ""; + base:organisation\#inst_name "Tent in Florida Street" . + +base:organisation\/757 a base:organisation; + base:organisation\#IDOrganisation 757; + base:organisation\#comment ""; + base:organisation\#inst_name "Buckingham Palace" . + +base:organisation\/758 a base:organisation; + base:organisation\#IDOrganisation 758; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Circus Tent" . + +base:organisation\/760 a base:organisation; + base:organisation\#IDOrganisation 760; + base:organisation\#comment ""; + base:organisation\#inst_name "Private drama association of the city of Vinha do Minho" . + +base:organisation\/766 a base:organisation; + base:organisation\#IDOrganisation 766; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Alcázar" . + +base:organisation\/770 a base:organisation; + base:organisation\#IDOrganisation 770; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Petit-Théâtre da Place de la Bastille" . + +base:organisation\/773 a base:organisation; + base:organisation\#IDOrganisation 773; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Alcazar "; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/776 a base:organisation; + base:organisation\#IDOrganisation 776; + base:organisation\#comment ""; + base:organisation\#inst_name "Bataclan" . + +base:organisation\/779 a base:organisation; + base:organisation\#IDOrganisation 779; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Louit" . + +base:organisation\/782 a base:organisation; + base:organisation\#IDOrganisation 782; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Alcazar Lírico Fluminense"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/788 a base:organisation; + base:organisation\#IDOrganisation 788; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Fantaisies Parisiennes" . + +base:organisation\/791 a base:organisation; + base:organisation\#IDOrganisation 791; + base:organisation\#comment ""; + base:organisation\#inst_name "Chatelet " . + +base:organisation\/797 a base:organisation; + base:organisation\#IDOrganisation 797; + base:organisation\#comment ""; + base:organisation\#inst_name "Folies Dramatiques" . + +base:organisation\/803 a base:organisation; + base:organisation\#IDOrganisation 803; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Príncipe Imperial" . + +base:organisation\/806 a base:organisation; + base:organisation\#IDOrganisation 806; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Souza Bastos’ theatre company" . + +base:organisation\/812 a base:organisation; + base:organisation\#IDOrganisation 812; + base:organisation\#comment ""; + base:organisation\#inst_name "Red Cross" . + +base:organisation\/815 a base:organisation; + base:organisation\#IDOrganisation 815; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Salitre or Variedades" . + +base:organisation\/818 a base:organisation; + base:organisation\#IDOrganisation 818; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dom Fernando" . + +base:organisation\/833 a base:organisation; + base:organisation\#IDOrganisation 833; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Lírica Nacional" . + +base:organisation\/839 a base:organisation; + base:organisation\#IDOrganisation 839; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical Company of Martins Oliveira" . + +base:organisation\/842 a base:organisation; + base:organisation\#IDOrganisation 842; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical Company of Germano" . + +base:organisation\/845 a base:organisation; + base:organisation\#IDOrganisation 845; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Inglesa" . + +base:organisation\/851 a base:organisation; + base:organisation\#IDOrganisation 851; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "traveling theater companies" . + +base:organisation\/854 a base:organisation; + base:organisation\#IDOrganisation 854; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Organizes itinerant theater companies in the provinces" . + +base:organisation\/857 a base:organisation; + base:organisation\#IDOrganisation 857; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dom Afonso" . + +base:organisation\/860 a base:organisation; + base:organisation\#IDOrganisation 860; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro o Príncipe Real" . + +base:organisation\/863 a base:organisation; + base:organisation\#IDOrganisation 863; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "He worked in a public office (not theatre related)" . + +base:organisation\/872 a base:organisation; + base:organisation\#IDOrganisation 872; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Free Theatre (name based on André Antoine company)" . + +base:organisation\/875 a base:organisation; + base:organisation\#IDOrganisation 875; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Escola da Arte de Representar" . + +base:organisation\/88 a base:organisation; + base:organisation\#IDOrganisation 88; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Magdeburger Theatergesellschaft"; + base:organisation\#ref-IDLocation base:location\/GER-Magdb-00 . + +base:organisation\/881 a base:organisation; + base:organisation\#IDOrganisation 881; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatory" . + +base:organisation\/887 a base:organisation; + base:organisation\#IDOrganisation 887; + base:organisation\#comment ""; + base:organisation\#inst_name "Privet Theacher" . + +base:organisation\/89 a base:organisation; + base:organisation\#IDOrganisation 89; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Königsberg"; + base:organisation\#ref-IDLocation base:location\/RUS-Kali-00 . + +base:organisation\/890 a base:organisation; + base:organisation\#IDOrganisation 890; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Rehearses in Porto for the presentation at Teatro da Trindade in Lisbon" . + +base:organisation\/893 a base:organisation; + base:organisation\#IDOrganisation 893; + base:organisation\#comment ""; + base:organisation\#inst_name "Invicta Film (Cinema)" . + +base:organisation\/899 a base:organisation; + base:organisation\#IDOrganisation 899; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Sá da Bandeira" . + +base:organisation\/90 a base:organisation; + base:organisation\#IDOrganisation 90; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Rigaer Stadttheater"; + base:organisation\#ref-IDLocation base:location\/LV-RIX-00 . + +base:organisation\/905 a base:organisation; + base:organisation\#IDOrganisation 905; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "João Grave theater company" . + +base:organisation\/908 a base:organisation; + base:organisation\#IDOrganisation 908; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Nova Companhia de Declamação theater company" . + +base:organisation\/914 a base:organisation; + base:organisation\#IDOrganisation 914; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Clemente Pinto theatre company" . + +base:organisation\/920 a base:organisation; + base:organisation\#IDOrganisation 920; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Maria Victória"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/923 a base:organisation; + base:organisation\#IDOrganisation 923; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Hortense Luz theatre company" . + +base:organisation\/926 a base:organisation; + base:organisation\#IDOrganisation 926; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Alves da Cunha Theatre Company" . + +base:organisation\/929 a base:organisation; + base:organisation\#IDOrganisation 929; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rey-Colaço-Robles Monteiro theatre company" . + +base:organisation\/932 a base:organisation; + base:organisation\#IDOrganisation 932; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rey-Colaço-Robles Monteiro theater company" . + +base:organisation\/935 a base:organisation; + base:organisation\#IDOrganisation 935; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Erico Braga-Lucília Simões theater company" . + +base:organisation\/938 a base:organisation; + base:organisation\#IDOrganisation 938; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Maria das Neves theater company" . + +base:organisation\/941 a base:organisation; + base:organisation\#IDOrganisation 941; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Teatral Portuguesa" . + +base:organisation\/944 a base:organisation; + base:organisation\#IDOrganisation 944; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "“Sociedad Gimnástica”" . + +base:organisation\/947 a base:organisation; + base:organisation\#IDOrganisation 947; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Real Circus" . + +base:organisation\/953 a base:organisation; + base:organisation\#IDOrganisation 953; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de París" . + +base:organisation\/959 a base:organisation; + base:organisation\#IDOrganisation 959; + base:organisation\#comment ""; + base:organisation\#inst_name "Plaza del Parque" . + +base:organisation\/962 a base:organisation; + base:organisation\#IDOrganisation 962; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Circo Chiarini" . + +base:organisation\/968 a base:organisation; + base:organisation\#IDOrganisation 968; + base:organisation\#comment ""; + base:organisation\#inst_name "Politeama Humberto Primo" . + +base:organisation\/971 a base:organisation; + base:organisation\#IDOrganisation 971; + base:organisation\#comment ""; + base:organisation\#inst_name "Politeama Gálvez" . + +base:organisation\/974 a base:organisation; + base:organisation\#IDOrganisation 974; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Landständische Theater" . + +base:organisation\/977 a base:organisation; + base:organisation\#IDOrganisation 977; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "K.k. priviligiertes Theater" . + +base:organisation\/980 a base:organisation; + base:organisation\#IDOrganisation 980; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "K. städtisches Theater" . + +base:organisation\/983 a base:organisation; + base:organisation\#IDOrganisation 983; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Großherzogliches Hoftheater" . + +base:organisation\/99 a base:organisation; + base:organisation\#IDOrganisation 99; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsche Oper in Amsterdam"; + base:organisation\#ref-IDLocation base:location\/NL-AMS-00 . + +base:organisation\/995 a base:organisation; + base:organisation\#IDOrganisation 995; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Ständisches Theater" . + +base:person\/\%C3\%81lvAug-00 a base:person; + base:person\#IDPerson "ÁlvAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Álvarez"; + base:person\#first_name "Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbeCar-00 a base:person; + base:person\#IDPerson "AbeCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abesser"; + base:person\#first_name "Caroline"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbeKar-00 a base:person; + base:person\#IDPerson "AbeKar-00"; + base:person\#family_name "von Abel"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbeMir-00 a base:person; + base:person\#IDPerson "AbeMir-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abendroth"; + base:person\#first_name "Mira"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AboBes-00 a base:person; + base:person\#IDPerson "AboBes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abott"; + base:person\#first_name "Bessie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbrDol-00 a base:person; + base:person\#IDPerson "AbrDol-00"; + base:person\#family_name "Abril"; + base:person\#first_name "Dolores"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbrIgn-00 a base:person; + base:person\#IDPerson "AbrIgn-00"; + base:person\#family_name "Abramowicz"; + base:person\#first_name "Ignacy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbrMau-00 a base:person; + base:person\#IDPerson "AbrMau-00"; + base:person\#family_name "Abravanel"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AckCha-00 a base:person; + base:person\#IDPerson "AckCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ackerman"; + base:person\#first_name "Charlie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdaAdo-00 a base:person; + base:person\#IDPerson "AdaAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adam"; + base:person\#first_name "Adolphe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdaSuz-00 a base:person; + base:person\#IDPerson "AdaSuz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adams"; + base:person\#first_name "Suzanne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeBer-00 a base:person; + base:person\#IDPerson "AdeBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ader"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeCar-00 a base:person; + base:person\#IDPerson "AdeCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adelaide"; + base:person\#first_name "Carmela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeEmi-00 a base:person; + base:person\#IDPerson "AdeEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeleide"; + base:person\#first_name "Emília"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeErn-00 a base:person; + base:person\#IDPerson "AdeErn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Ernesto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeEva-00 a base:person; + base:person\#IDPerson "AdeEva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Eva"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeJoh-00 a base:person; + base:person\#IDPerson "AdeJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Johannes Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdeMar-00 a base:person; + base:person\#IDPerson "AdeMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "María Inés"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdePau-00 a base:person; + base:person\#IDPerson "AdePau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adeler"; + base:person\#first_name "Paul Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdiAda-00 a base:person; + base:person\#IDPerson "AdiAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adini"; + base:person\#first_name "Ada"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlJul-1122 a base:person; + base:person\#IDPerson "AdlJul-1122"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlJul-1123 a base:person; + base:person\#IDPerson "AdlJul-1123"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlSar-00 a base:person; + base:person\#IDPerson "AdlSar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Sara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlSar-1126 a base:person; + base:person\#IDPerson "AdlSar-1126"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Sarah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlThe-00 a base:person; + base:person\#IDPerson "AdlThe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adler"; + base:person\#first_name "Therese"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdoWil-00 a base:person; + base:person\#IDPerson "AdoWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Adolfi"; + base:person\#first_name "Wilhelm"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AgrMan-00 a base:person; + base:person\#IDPerson "AgrMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Agromayor"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Agusta-00 a base:person; + base:person\#IDPerson "Agusta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Irusta"; + base:person\#first_name "Agustín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AheBri-00 a base:person; + base:person\#IDPerson "AheBri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aherne"; + base:person\#first_name "Brian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlbIre-00 a base:person; + base:person\#IDPerson "AlbIre-00"; + base:person\#family_name "Alba"; + base:person\#first_name "Irene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Alblez-00 a base:person; + base:person\#IDPerson "Alblez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Albros-00 a base:person; + base:person\#IDPerson "Albros-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ballesteros"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlcCor-00 a base:person; + base:person\#IDPerson "AlcCor-00"; + base:person\#family_name "Alcorta"; + base:person\#first_name "Cornelia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AleLea-00 a base:person; + base:person\#IDPerson "AleLea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alem"; + base:person\#first_name "Leandro N."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AleNor-00 a base:person; + base:person\#IDPerson "AleNor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aleandro"; + base:person\#first_name "Norma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AleSho-00 a base:person; + base:person\#IDPerson "AleSho-00"; + base:person\#family_name "Aleichem"; + base:person\#first_name "Sholem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlmAra-00 a base:person; + base:person\#IDPerson "AlmAra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Almeida"; + base:person\#first_name "Aracy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlmHar-00 a base:person; + base:person\#IDPerson "AlmHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Almeida"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlmJ\.-00 a base:person; + base:person\#IDPerson "AlmJ.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Almarcha"; + base:person\#first_name "J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AloAli-00 a base:person; + base:person\#IDPerson "AloAli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Alicia Carlota"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AloCar-00 a base:person; + base:person\#IDPerson "AloCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Carlos Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AloEnr-00 a base:person; + base:person\#IDPerson "AloEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Enrico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AloEnr-01 a base:person; + base:person\#IDPerson "AloEnr-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Enrique José Rinaldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AloSil-00 a base:person; + base:person\#IDPerson "AloSil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aloisi"; + base:person\#first_name "Silvia Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AltAnn-00 a base:person; + base:person\#IDPerson "AltAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alt"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AltBor-1144 a base:person; + base:person\#IDPerson "AltBor-1144"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Altman"; + base:person\#first_name "Boris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AlvFra-00 a base:person; + base:person\#IDPerson "AlvFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alves"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlvLuc-00 a base:person; + base:person\#IDPerson "AlvLuc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alves"; + base:person\#first_name "Lucio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmaAni-00 a base:person; + base:person\#IDPerson "AmaAni-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bertani"; + base:person\#first_name "Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmaBla-00 a base:person; + base:person\#IDPerson "AmaBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amaro"; + base:person\#first_name "Blanquita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmeDon-00 a base:person; + base:person\#IDPerson "AmeDon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ameche"; + base:person\#first_name "Don"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmeSte-00 a base:person; + base:person\#IDPerson "AmeSte-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ames"; + base:person\#first_name "Stephen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmoAle-00 a base:person; + base:person\#IDPerson "AmoAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amodio"; + base:person\#first_name "Alessandro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AmsJoh-00 a base:person; + base:person\#IDPerson "AmsJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amsler"; + base:person\#first_name "Johann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Anance-00 a base:person; + base:person\#IDPerson "Anance-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "France"; + base:person\#first_name "Anatole"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndAnt-00 a base:person; + base:person\#IDPerson "AndAnt-00"; + base:person\#family_name "Anderes"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndDan-00 a base:person; + base:person\#IDPerson "AndDan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Andrews"; + base:person\#first_name "Dana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndFed-00 a base:person; + base:person\#IDPerson "AndFed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Andeirus"; + base:person\#first_name "Federico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndGeo-00 a base:person; + base:person\#IDPerson "AndGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Andrews"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndJul-00 a base:person; + base:person\#IDPerson "AndJul-00"; + base:person\#family_name "Andrada"; + base:person\#first_name "Julio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndLil-00 a base:person; + base:person\#IDPerson "AndLil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Andrews"; + base:person\#first_name "Lily"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndMon-00 a base:person; + base:person\#IDPerson "AndMon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Andrieux"; + base:person\#first_name "Monsieur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AntMac-00 a base:person; + base:person\#IDPerson "AntMac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Macedo"; + base:person\#first_name "Antônio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Anttta-00 a base:person; + base:person\#IDPerson "Anttta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Botta"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ApaMan-00 a base:person; + base:person\#IDPerson "ApaMan-00"; + base:person\#family_name "Aparicio"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AraLui-01 a base:person; + base:person\#IDPerson "AraLui-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aragoneses"; + base:person\#first_name "Luis de Gorbea"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AraMan-00 a base:person; + base:person\#IDPerson "AraMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aragoneses"; + base:person\#first_name "Manuel de Gorbea"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AraMar-00 a base:person; + base:person\#IDPerson "AraMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Aragoneses Urquijo"; + base:person\#first_name "María de la Encarnación"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AraSam-00 a base:person; + base:person\#IDPerson "AraSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Araújo"; + base:person\#first_name "Sampaio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArcPhy-00 a base:person; + base:person\#IDPerson "ArcPhy-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Archibald"; + base:person\#first_name "Phyllis"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArdRob-00 a base:person; + base:person\#IDPerson "ArdRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ardissone"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AreFra-00 a base:person; + base:person\#IDPerson "AreFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arellano"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArjJoa-00 a base:person; + base:person\#IDPerson "ArjJoa-00"; + base:person\#family_name "Arjona"; + base:person\#first_name "Joaquín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArkTer-00 a base:person; + base:person\#IDPerson "ArkTer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arkel"; + base:person\#first_name "Teresa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArnEva-00 a base:person; + base:person\#IDPerson "ArnEva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arnús"; + base:person\#first_name "Evaristo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArnGus-00 a base:person; + base:person\#IDPerson "ArnGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arnold"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArnSig-00 a base:person; + base:person\#IDPerson "ArnSig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arnoldson"; + base:person\#first_name "Sigrid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AroCar-00 a base:person; + base:person\#IDPerson "AroCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arolf"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArtD\%C3\%A9s-00 a base:person; + base:person\#IDPerson "ArtDés-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Artot"; + base:person\#first_name "Désirée"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AshPeg-00 a base:person; + base:person\#IDPerson "AshPeg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ashcroft"; + base:person\#first_name "Peggy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AstNan-00 a base:person; + base:person\#IDPerson "AstNan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Astor"; + base:person\#first_name "Nancy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AudEdm-00 a base:person; + base:person\#IDPerson "AudEdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Audran"; + base:person\#first_name "Edmond"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AusJan-00 a base:person; + base:person\#IDPerson "AusJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goodwin Austin"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AusMar-00 a base:person; + base:person\#IDPerson "AusMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Austerlitz"; + base:person\#first_name "Marianna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AveL\%C3\%ADv-00 a base:person; + base:person\#IDPerson "AveLív-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Avellar"; + base:person\#first_name "Lívia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AxaRos-00 a base:person; + base:person\#IDPerson "AxaRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Axamethy"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AylNel-00 a base:person; + base:person\#IDPerson "AylNel-00"; + base:person\#family_name "Ayllón"; + base:person\#first_name "Nelly"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/B\%C3\%B6rIls-00 a base:person; + base:person\#IDPerson "BörIls-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Börnstein"; + base:person\#first_name "Ilse"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/B\%C3\%B6tMax-00 a base:person; + base:person\#IDPerson "BötMax-00"; + base:person\#family_name "Böttcher"; + base:person\#first_name "Maximilian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BadCes-00 a base:person; + base:person\#IDPerson "BadCes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Badiali"; + base:person\#first_name "Cesare"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BaiLil-00 a base:person; + base:person\#IDPerson "BaiLil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bailey"; + base:person\#first_name "Lilian"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BakMik-00 a base:person; + base:person\#IDPerson "BakMik-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bakunin"; + base:person\#first_name "Mikhail"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalMic-01 a base:person; + base:person\#IDPerson "BalMic-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Balcon"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalPep-00 a base:person; + base:person\#IDPerson "BalPep-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Balaguer"; + base:person\#first_name "Pepe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalWil-00 a base:person; + base:person\#IDPerson "BalWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Balacz-Bognár"; + base:person\#first_name "Wilhelmine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BanMau-00 a base:person; + base:person\#IDPerson "BanMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bandmann"; + base:person\#first_name "Maurice Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BanTal-00 a base:person; + base:person\#IDPerson "BanTal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bankhead"; + base:person\#first_name "Tallulah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BanTra-00 a base:person; + base:person\#IDPerson "BanTra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Banton"; + base:person\#first_name "Travis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarAnt-00 a base:person; + base:person\#IDPerson "BarAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrientos"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarGeo-00 a base:person; + base:person\#IDPerson "BarGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrett"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarJam-00 a base:person; + base:person\#IDPerson "BarJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrie"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarJoa-00 a base:person; + base:person\#IDPerson "BarJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barry"; + base:person\#first_name "Joan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarJos-00 a base:person; + base:person\#IDPerson "BarJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barros"; + base:person\#first_name "Josué"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarLeo-00 a base:person; + base:person\#IDPerson "BarLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barletta"; + base:person\#first_name "Leónidas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarLex-00 a base:person; + base:person\#IDPerson "BarLex-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barker"; + base:person\#first_name "Lex"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarMan-00 a base:person; + base:person\#IDPerson "BarMan-00"; + base:person\#family_name "Barrera"; + base:person\#first_name "Manuela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarMar-01 a base:person; + base:person\#IDPerson "BarMar-01"; + base:person\#family_name "Bard"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarP\%C3\%ADo-00 a base:person; + base:person\#IDPerson "BarPío-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Baroja"; + base:person\#first_name "Pío"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarRod-00 a base:person; + base:person\#IDPerson "BarRod-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrie"; + base:person\#first_name "Rodney"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarSal-00 a base:person; + base:person\#IDPerson "BarSal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bartolozzi"; + base:person\#first_name "Salvador"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarTho-00 a base:person; + base:person\#IDPerson "BarTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barry"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarTho-01 a base:person; + base:person\#IDPerson "BarTho-01"; + base:person\#family_name "Barry"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BasHam-00 a base:person; + base:person\#IDPerson "BasHam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bassett"; + base:person\#first_name "Hamilton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BatHez-00 a base:person; + base:person\#IDPerson "BatHez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bateman"; + base:person\#first_name "Hezekiah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BatWal-00 a base:person; + base:person\#IDPerson "BatWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Batchelor"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BauAbr-728 a base:person; + base:person\#IDPerson "BauAbr-728"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Baum"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BauCha-00 a base:person; + base:person\#IDPerson "BauCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Baudelaire"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BavLud-00 a base:person; + base:person\#IDPerson "BavLud-00"; + base:person\#family_name "of Bavaria"; + base:person\#first_name "King Ludwig I"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BavThe-00 a base:person; + base:person\#IDPerson "BavThe-00"; + base:person\#family_name "of Bavaria"; + base:person\#first_name "Queen Therese"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BaxJan-00 a base:person; + base:person\#IDPerson "BaxJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Baxter"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Be\%C3\%9FMar-00 a base:person; + base:person\#IDPerson "BeßMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beßner"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bea-00 a base:person; + base:person\#IDPerson "Bea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beaconsfield"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeaRog-00 a base:person; + base:person\#IDPerson "BeaRog-00"; + base:person\#family_name "de Beauvoir"; + base:person\#first_name "Roger"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BebIda-00 a base:person; + base:person\#IDPerson "BebIda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beber"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BecJ-00 a base:person; + base:person\#IDPerson "BecJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beckwith"; + base:person\#first_name "J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BedJac-00 a base:person; + base:person\#IDPerson "BedJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beddington"; + base:person\#first_name "Jack"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeeLol-00 a base:person; + base:person\#IDPerson "BeeLol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beeth"; + base:person\#first_name "Lola"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BehMah-00 a base:person; + base:person\#IDPerson "BehMah-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooch Behar"; + base:person\#first_name "Maharajah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeiBer-00 a base:person; + base:person\#IDPerson "BeiBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beit"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeiJoh-00 a base:person; + base:person\#IDPerson "BeiJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beith"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelAdo-00 a base:person; + base:person\#IDPerson "BelAdo-00"; + base:person\#family_name "de Belleyme"; + base:person\#first_name "Adolphe"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelAle-00 a base:person; + base:person\#IDPerson "BelAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bell"; + base:person\#first_name "Alexander Graham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelAug-00 a base:person; + base:person\#IDPerson "BelAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Belguth"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelEle-00 a base:person; + base:person\#IDPerson "BelEle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Belmont"; + base:person\#first_name "Eleanor"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelEmi-00 a base:person; + base:person\#IDPerson "BelEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Belay"; + base:person\#first_name "Emilie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelGio-00 a base:person; + base:person\#IDPerson "BelGio-00"; + base:person\#family_name "Belletti"; + base:person\#first_name "Giovanni"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelKyr-00 a base:person; + base:person\#IDPerson "BelKyr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bellew"; + base:person\#first_name "Kyrle"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelSam-00 a base:person; + base:person\#IDPerson "BelSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bellachini"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenBer-00 a base:person; + base:person\#IDPerson "BenBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Benda"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenFel-00 a base:person; + base:person\#IDPerson "BenFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bendowna"; + base:person\#first_name "Felicja"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenFel-01 a base:person; + base:person\#IDPerson "BenFel-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Benda"; + base:person\#first_name "Feliks"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenJ\%C3\%B3z-00 a base:person; + base:person\#IDPerson "BenJóz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bendowa"; + base:person\#first_name "Józefa"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenJul-00 a base:person; + base:person\#IDPerson "BenJul-00"; + base:person\#family_name "Benedict"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenLil-00 a base:person; + base:person\#IDPerson "BenLil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bennet"; + base:person\#first_name "Lilian"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenRob-00 a base:person; + base:person\#IDPerson "BenRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Benchley"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenSzy-00 a base:person; + base:person\#IDPerson "BenSzy-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Benda"; + base:person\#first_name "Szymon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenTho-00 a base:person; + base:person\#IDPerson "BenTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bennett"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenWla-00 a base:person; + base:person\#IDPerson "BenWla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Benda"; + base:person\#first_name "Wladyslaw"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Benlas-00 a base:person; + base:person\#IDPerson "Benlas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Puértolas"; + base:person\#first_name "Benita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerAlo-00 a base:person; + base:person\#IDPerson "BerAlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berla"; + base:person\#first_name "Alois"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerBer-00 a base:person; + base:person\#IDPerson "BerBer-00"; + base:person\#family_name "Bernstein "; + base:person\#first_name "Berel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerBus-00 a base:person; + base:person\#IDPerson "BerBus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berkeley"; + base:person\#first_name "Busby"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerCar-00 a base:person; + base:person\#IDPerson "BerCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bergmann"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerCha-00 a base:person; + base:person\#IDPerson "BerCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beriot"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerCha-01 a base:person; + base:person\#IDPerson "BerCha-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beresford"; + base:person\#first_name "Charlie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerEmi-00 a base:person; + base:person\#IDPerson "BerEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berté"; + base:person\#first_name "Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerFra-00 a base:person; + base:person\#IDPerson "BerFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Börnstein"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerFra-01 a base:person; + base:person\#IDPerson "BerFra-01"; + base:person\#family_name "von Berks"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerFra-02 a base:person; + base:person\#IDPerson "BerFra-02"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berstl"; + base:person\#first_name "Franziska"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerHer-1279 a base:person; + base:person\#IDPerson "BerHer-1279"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Berman"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BerJua-00 a base:person; + base:person\#IDPerson "BerJua-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berenguer"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerLaz-00 a base:person; + base:person\#IDPerson "BerLaz-00"; + base:person\#family_name "Bernstein"; + base:person\#first_name "Lazer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerLeo-00 a base:person; + base:person\#IDPerson "BerLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berg"; + base:person\#first_name "Leopoldine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerLud-00 a base:person; + base:person\#IDPerson "BerLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berger"; + base:person\#first_name "Ludmilla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerNor-00 a base:person; + base:person\#IDPerson "BerNor-00"; + base:person\#family_name "Berstl"; + base:person\#first_name "Norbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerNor-01 a base:person; + base:person\#IDPerson "BerNor-01"; + base:person\#family_name "Berstl"; + base:person\#first_name "Norbert"; + base:person\#gender base:Gender-male . + +base:person\/BerRob-00 a base:person; + base:person\#IDPerson "BerRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bernhardt"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerWil-00 a base:person; + base:person\#IDPerson "BerWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beresford"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerWil-01 a base:person; + base:person\#IDPerson "BerWil-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berstl"; + base:person\#first_name "Wilhelm"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerYek-1272 a base:person; + base:person\#IDPerson "BerYek-1272"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Berkovitsh"; + base:person\#first_name "Yekhiel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BetFra-00 a base:person; + base:person\#IDPerson "BetFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Betz"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BevRic-00 a base:person; + base:person\#IDPerson "BevRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beville"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BewAli-00 a base:person; + base:person\#IDPerson "BewAli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bewicke"; + base:person\#first_name "Alicia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeyAli-00 a base:person; + base:person\#IDPerson "BeyAli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raiff Bey"; + base:person\#first_name "Ali"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeyJac-00 a base:person; + base:person\#IDPerson "BeyJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beyer"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BiaAlf-00 a base:person; + base:person\#IDPerson "BiaAlf-00"; + base:person\#family_name "Bianchi"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BiaBia-00 a base:person; + base:person\#IDPerson "BiaBia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bianchi"; + base:person\#first_name "Bianca"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieEdu-00 a base:person; + base:person\#IDPerson "BieEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Edouard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieEug-00 a base:person; + base:person\#IDPerson "BieEug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Eugénie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieFan-00 a base:person; + base:person\#IDPerson "BieFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieGus-00 a base:person; + base:person\#IDPerson "BieGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Gustave"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieJea-00 a base:person; + base:person\#IDPerson "BieJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert Hirn"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieJoh-00 a base:person; + base:person\#IDPerson "BieJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bielitz"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieMar-00 a base:person; + base:person\#IDPerson "BieMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Marie Madelaine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BieWen-00 a base:person; + base:person\#IDPerson "BieWen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bielczizky"; + base:person\#first_name "Wenzel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BilPau-00 a base:person; + base:person\#IDPerson "BilPau-00"; + base:person\#family_name "Bildt"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bis-00 a base:person; + base:person\#IDPerson "Bis-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bishop"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BisC-00 a base:person; + base:person\#IDPerson "BisC-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bishop"; + base:person\#first_name "C. R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BisDav-00 a base:person; + base:person\#IDPerson "BisDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bispham"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bla-00 a base:person; + base:person\#IDPerson "Bla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Admiral Blanc"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaCam-00 a base:person; + base:person\#IDPerson "BlaCam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Black"; + base:person\#first_name "Campbell"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaCon-00 a base:person; + base:person\#IDPerson "BlaCon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blanes"; + base:person\#first_name "Consolación"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaGar-00 a base:person; + base:person\#IDPerson "BlaGar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Black"; + base:person\#first_name "García"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaJoh-00 a base:person; + base:person\#IDPerson "BlaJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blasel"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaKar-00 a base:person; + base:person\#IDPerson "BlaKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blasel"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BlaWil-00 a base:person; + base:person\#IDPerson "BlaWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blake"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BleLeo-00 a base:person; + base:person\#IDPerson "BleLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blech"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BliDal-3689 a base:person; + base:person\#IDPerson "BliDal-3689"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Blin"; + base:person\#first_name "Dalburkh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BliSam-00 a base:person; + base:person\#IDPerson "BliSam-00"; + base:person\#family_name "Blixen"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BloCla-00 a base:person; + base:person\#IDPerson "BloCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bloodgood"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BloEd-00 a base:person; + base:person\#IDPerson "BloEd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bloom"; + base:person\#first_name "Ed Bloom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BloMor-00 a base:person; + base:person\#IDPerson "BloMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blodeck"; + base:person\#first_name "Moritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BluEli-00 a base:person; + base:person\#IDPerson "BluEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blume"; + base:person\#first_name "Elise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BluFri-00 a base:person; + base:person\#IDPerson "BluFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blum"; + base:person\#first_name "Fritzi"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BluMax-1344 a base:person; + base:person\#IDPerson "BluMax-1344"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Blumenfeld"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Boc-00 a base:person; + base:person\#IDPerson "Boc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bocage"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BodCar-00 a base:person; + base:person\#IDPerson "BodCar-00"; + base:person\#family_name "Bodanskie"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BodEli-00 a base:person; + base:person\#IDPerson "BodEli-00"; + base:person\#family_name "Bodanzky"; + base:person\#first_name "Elizabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BodHan-00 a base:person; + base:person\#IDPerson "BodHan-00"; + base:person\#family_name "Bodansky"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male . + +base:person\/BodIre-00 a base:person; + base:person\#IDPerson "BodIre-00"; + base:person\#family_name "Bodansky"; + base:person\#first_name "Irene"; + base:person\#gender base:Gender-female . + +base:person\/BodRen-00 a base:person; + base:person\#IDPerson "BodRen-00"; + base:person\#family_name "Bodansky"; + base:person\#first_name "Renate"; + base:person\#gender base:Gender-female . + +base:person\/BogFri-00 a base:person; + base:person\#IDPerson "BogFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Bognár"; + base:person\#first_name "Friederike"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BolPau-00 a base:person; + base:person\#IDPerson "BolPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bolos"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BonFlo-00 a base:person; + base:person\#IDPerson "BonFlo-00"; + base:person\#family_name "Bonino"; + base:person\#first_name "Flor"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BonFra-00 a base:person; + base:person\#IDPerson "BonFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bonet"; + base:person\#first_name "Francesc"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BonGer-00 a base:person; + base:person\#IDPerson "BonGer-00"; + base:person\#family_name "Bonomi"; + base:person\#first_name "Gerónimo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BonTeo-00 a base:person; + base:person\#IDPerson "BonTeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bonaplata"; + base:person\#first_name "Teodoro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooAgn-00 a base:person; + base:person\#IDPerson "BooAgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Booth"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooAlg-00 a base:person; + base:person\#IDPerson "BooAlg-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Algernon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooAme-00 a base:person; + base:person\#IDPerson "BooAme-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Amelia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooHen-00 a base:person; + base:person\#IDPerson "BooHen-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooJan-00 a base:person; + base:person\#IDPerson "BooJan-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooJoh-00 a base:person; + base:person\#IDPerson "BooJoh-00"; + base:person\#family_name "Booth"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooJos-00 a base:person; + base:person\#IDPerson "BooJos-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Joseph Adrian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooMar-00 a base:person; + base:person\#IDPerson "BooMar-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooRos-00 a base:person; + base:person\#IDPerson "BooRos-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Rosalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BopRau-00 a base:person; + base:person\#IDPerson "BopRau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bopp"; + base:person\#first_name "Raul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosAda-00 a base:person; + base:person\#IDPerson "BosAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Boshell"; + base:person\#first_name "Ada"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosAng-00 a base:person; + base:person\#IDPerson "BosAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bosio"; + base:person\#first_name "Angelina Bosio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosHei-00 a base:person; + base:person\#IDPerson "BosHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bossenberger"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosHen-00 a base:person; + base:person\#IDPerson "BosHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Bose"; + base:person\#first_name "Henriette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosHer-00 a base:person; + base:person\#IDPerson "BosHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bosetti"; + base:person\#first_name "Hermine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BosHob-00 a base:person; + base:person\#IDPerson "BosHob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bosworth"; + base:person\#first_name "Hobart Bosworth"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BoyI-00 a base:person; + base:person\#IDPerson "BoyI-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Boyd"; + base:person\#first_name "Colonel I. H. "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BozOli-00 a base:person; + base:person\#IDPerson "BozOli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bozán"; + base:person\#first_name "Olinda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BozSof-00 a base:person; + base:person\#IDPerson "BozSof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bozán"; + base:person\#first_name "Sofía"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Br\%C3\%BCAma-00 a base:person; + base:person\#IDPerson "BrüAma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brühl"; + base:person\#first_name "Amalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bra-00 a base:person; + base:person\#IDPerson "Bra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braga"; + base:person\#first_name "Junior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bra-01 a base:person; + base:person\#IDPerson "Bra-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "Bradley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bra-02 a base:person; + base:person\#IDPerson "Bra-02"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Von Brand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Bra-03 a base:person; + base:person\#IDPerson "Bra-03"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Braga Junior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraAdo-00 a base:person; + base:person\#IDPerson "BraAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brakl"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraDia-00 a base:person; + base:person\#IDPerson "BraDia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braga"; + base:person\#first_name "Dias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraEmi-00 a base:person; + base:person\#IDPerson "BraEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brachvogel"; + base:person\#first_name "Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraJos-00 a base:person; + base:person\#IDPerson "BraJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braga"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraLui-00 a base:person; + base:person\#IDPerson "BraLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braga"; + base:person\#first_name "Luiz Junior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraMat-00 a base:person; + base:person\#IDPerson "BraMat-00"; + base:person\#family_name "Brandt"; + base:person\#first_name "Mathilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraNar-00 a base:person; + base:person\#IDPerson "BraNar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Braga"; + base:person\#first_name "Narciso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraThe-00 a base:person; + base:person\#IDPerson "BraThe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Braunecker-Schäfer"; + base:person\#first_name "Therese Reichfreiin"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreAne-00 a base:person; + base:person\#IDPerson "BreAne-00"; + base:person\#family_name "Brener"; + base:person\#first_name "Aneta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreFan-00 a base:person; + base:person\#IDPerson "BreFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brenna"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreSho-00 a base:person; + base:person\#IDPerson "BreSho-00"; + base:person\#family_name "Breen"; + base:person\#first_name "Sholom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreSho-3697 a base:person; + base:person\#IDPerson "BreSho-3697"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Breen"; + base:person\#first_name "Sholom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BreSof-00 a base:person; + base:person\#IDPerson "BreSof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brehm-Fritsch"; + base:person\#first_name "Sofie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BriBil-00 a base:person; + base:person\#IDPerson "BriBil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bristow"; + base:person\#first_name "Billie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BriGeo-00 a base:person; + base:person\#IDPerson "BriGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bristow"; + base:person\#first_name "George F. Bristow"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BriPas-00 a base:person; + base:person\#IDPerson "BriPas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brignoli"; + base:person\#first_name "Pasquale Brignoli"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroDol-00 a base:person; + base:person\#IDPerson "BroDol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dolly-Brown"; + base:person\#first_name "Dolinda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroEdw-00 a base:person; + base:person\#IDPerson "BroEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Edward "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroFay-00 a base:person; + base:person\#IDPerson "BroFay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nicholas (Nicholas Brothers)"; + base:person\#first_name "Fayard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroFra-01 a base:person; + base:person\#IDPerson "BroFra-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Frank Henry Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHar-00 a base:person; + base:person\#IDPerson "BroHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nicholas (Nicholas Brothers)"; + base:person\#first_name "Harold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHaw-00 a base:person; + base:person\#IDPerson "BroHaw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bromley"; + base:person\#first_name "Haworth"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHen-00 a base:person; + base:person\#IDPerson "BroHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHen-01 a base:person; + base:person\#IDPerson "BroHen-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown Jr."; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHen-02 a base:person; + base:person\#IDPerson "BroHen-02"; + base:person\#family_name "Brougham"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroJes-00 a base:person; + base:person\#IDPerson "BroJes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Jessie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroKet-00 a base:person; + base:person\#IDPerson "BroKet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Ketty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroMar-00 a base:person; + base:person\#IDPerson "BroMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bronenberg"; + base:person\#first_name "Marcos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroMor-00 a base:person; + base:person\#IDPerson "BroMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Broda"; + base:person\#first_name "Moritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroMos-1400 a base:person; + base:person\#IDPerson "BroMos-1400"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Broderzon"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BroPhi-01 a base:person; + base:person\#IDPerson "BroPhi-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Broch"; + base:person\#first_name "Philipp"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroPro-00 a base:person; + base:person\#IDPerson "BroPro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Professor Brown"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruBea-00 a base:person; + base:person\#IDPerson "BruBea-00"; + base:person\#family_name "Brubkide"; + base:person\#first_name "Beatriz"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruBre-00 a base:person; + base:person\#IDPerson "BruBre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brunton"; + base:person\#first_name "Bressie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruLou-00 a base:person; + base:person\#IDPerson "BruLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brunton"; + base:person\#first_name "Louisa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruMur-00 a base:person; + base:person\#IDPerson "BruMur-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brunskill"; + base:person\#first_name "Muriel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruNig-00 a base:person; + base:person\#IDPerson "BruNig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bruce"; + base:person\#first_name "Nigel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruSig-00 a base:person; + base:person\#IDPerson "BruSig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bruckmann"; + base:person\#first_name "Sigismond "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BucChr-00 a base:person; + base:person\#IDPerson "BucChr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Buchner"; + base:person\#first_name "Christina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BucJos-00 a base:person; + base:person\#IDPerson "BucJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Buchner"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BucMar-00 a base:person; + base:person\#IDPerson "BucMar-00"; + base:person\#family_name "Buchanan"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BulEdu-00 a base:person; + base:person\#IDPerson "BulEdu-00"; + base:person\#family_name "von Bülow"; + base:person\#first_name "Eduard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BunAlf-00 a base:person; + base:person\#IDPerson "BunAlf-00"; + base:person\#family_name "Bunn"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BurCha-00 a base:person; + base:person\#IDPerson "BurCha-00"; + base:person\#family_name "Burr"; + base:person\#first_name "Charles Chauncey"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BurHen-00 a base:person; + base:person\#IDPerson "BurHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Burkhardt"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BurJos-00 a base:person; + base:person\#IDPerson "BurJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Burke"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BurJua-00 a base:person; + base:person\#IDPerson "BurJua-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Burghi"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BusFerr-00 a base:person; + base:person\#IDPerson "BusFerr-00"; + base:person\#family_name "Busoni"; + base:person\#first_name "Ferruccio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ButAlf-00 a base:person; + base:person\#IDPerson "ButAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Butt"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Byn-00 a base:person; + base:person\#IDPerson "Byn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Byng"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/C\%C3\%B3rArt-00 a base:person; + base:person\#IDPerson "CórArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Córdova"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ca\%C3\%B1Fer-00 a base:person; + base:person\#IDPerson "CañFer-00"; + base:person\#family_name "Cañameres"; + base:person\#first_name "Ferran"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CabAlf-00 a base:person; + base:person\#IDPerson "CabAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cabel"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CabMan-00 a base:person; + base:person\#IDPerson "CabMan-00"; + base:person\#family_name "Caba"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CabMar-00 a base:person; + base:person\#IDPerson "CabMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cabré"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CahCha-01 a base:person; + base:person\#IDPerson "CahCha-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cahier"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CaiHum-00 a base:person; + base:person\#IDPerson "CaiHum-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cairo"; + base:person\#first_name "Humberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CalEmm-00 a base:person; + base:person\#IDPerson "CalEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Calvé"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CalEnr-00 a base:person; + base:person\#IDPerson "CalEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Calzolari"; + base:person\#first_name "Enrico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CalJam-00 a base:person; + base:person\#IDPerson "CalJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caldwell"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CalMme-00 a base:person; + base:person\#IDPerson "CalMme-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Calve"; + base:person\#first_name "Mme."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CalSyl-00 a base:person; + base:person\#IDPerson "CalSyl-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caldas"; + base:person\#first_name "Sylvio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamAlf-00 a base:person; + base:person\#IDPerson "CamAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Camiña"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamBea-00 a base:person; + base:person\#IDPerson "CamBea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cameron"; + base:person\#first_name "Beatrice"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamCar-00 a base:person; + base:person\#IDPerson "CamCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Campi"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamCle-00 a base:person; + base:person\#IDPerson "CamCle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Campanini"; + base:person\#first_name "Cleofonte"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamCon-00 a base:person; + base:person\#IDPerson "CamCon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Camara"; + base:person\#first_name "Constanza Pacini de Camara"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamFra-00 a base:person; + base:person\#IDPerson "CamFra-00"; + base:person\#family_name "Campmany"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CamVin-00 a base:person; + base:person\#IDPerson "CamVin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Camp"; + base:person\#first_name "Vincent"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CanMar-00 a base:person; + base:person\#IDPerson "CanMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Candiani"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CaoJos-00 a base:person; + base:person\#IDPerson "CaoJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cao"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CapMar-00 a base:person; + base:person\#IDPerson "CapMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caplán"; + base:person\#first_name "Marcos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarAde-00 a base:person; + base:person\#IDPerson "CarAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Di Carlo"; + base:person\#first_name "Adelia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarAlb-00 a base:person; + base:person\#IDPerson "CarAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carre"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarAle-00 a base:person; + base:person\#IDPerson "CarAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cartwright"; + base:person\#first_name "Alex. J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarAnn-00 a base:person; + base:person\#IDPerson "CarAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cary"; + base:person\#first_name "Annie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarArt-00 a base:person; + base:person\#IDPerson "CarArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berenguer Carisomo"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarCec-00 a base:person; + base:person\#IDPerson "CarCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carvalho"; + base:person\#first_name "Cecilia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarEdu-00 a base:person; + base:person\#IDPerson "CarEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caruso"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarEdu-01 a base:person; + base:person\#IDPerson "CarEdu-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carmona"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarEva-00 a base:person; + base:person\#IDPerson "CarEva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carriego"; + base:person\#first_name "Evaristo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarHug-00 a base:person; + base:person\#IDPerson "CarHug-00"; + base:person\#family_name "Carlton"; + base:person\#first_name "Hugh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarJoa-00 a base:person; + base:person\#IDPerson "CarJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cardoso"; + base:person\#first_name "Joaquim Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarJub-00 a base:person; + base:person\#IDPerson "CarJub-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carvalho"; + base:person\#first_name "Jubert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarJul-00 a base:person; + base:person\#IDPerson "CarJul-00"; + base:person\#family_name "Caro"; + base:person\#first_name "Julio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarKar-00 a base:person; + base:person\#IDPerson "CarKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ritter von Carro"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarLeo-00 a base:person; + base:person\#IDPerson "CarLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carvalho"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarLin-00 a base:person; + base:person\#IDPerson "CarLin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cary"; + base:person\#first_name "Lina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarMad-00 a base:person; + base:person\#IDPerson "CarMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carroll"; + base:person\#first_name "Madeleine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarTho-00 a base:person; + base:person\#IDPerson "CarTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carlyle"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarTra-00 a base:person; + base:person\#IDPerson "CarTra-00"; + base:person\#family_name "Carlsen"; + base:person\#first_name "Traute"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarVic-00 a base:person; + base:person\#IDPerson "CarVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Viana de Carvalho"; + base:person\#first_name "Victorino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Carlba-00 a base:person; + base:person\#IDPerson "Carlba-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Villalba"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasAnd-00 a base:person; + base:person\#IDPerson "CasAnd-00"; + base:person\#family_name "Casal"; + base:person\#first_name "Andrea"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasFer-00 a base:person; + base:person\#IDPerson "CasFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Castaldo"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasGui-00 a base:person; + base:person\#IDPerson "CasGui-00"; + base:person\#family_name "Casali"; + base:person\#first_name "Guillermo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasJos-01 a base:person; + base:person\#IDPerson "CasJos-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González Castillo"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasNic-00 a base:person; + base:person\#IDPerson "CasNic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Castle"; + base:person\#first_name "Nick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CatJen-00 a base:person; + base:person\#IDPerson "CatJen-00"; + base:person\#family_name "Catherin"; + base:person\#first_name "Jenny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CayGeo-00 a base:person; + base:person\#IDPerson "CayGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cayman"; + base:person\#first_name "Georgia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CebRam-00 a base:person; + base:person\#IDPerson "CebRam-00"; + base:person\#family_name "Cebrián"; + base:person\#first_name "Ramón"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CelMad-00 a base:person; + base:person\#IDPerson "CelMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Celeste"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ch\%C5\%82Kar-00 a base:person; + base:person\#IDPerson "ChłKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chłapowski"; + base:person\#first_name "Karol"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChaCom-00 a base:person; + base:person\#IDPerson "ChaCom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chambrum"; + base:person\#first_name "Comte"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChaEdw-00 a base:person; + base:person\#IDPerson "ChaEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chapman"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChaLou-00 a base:person; + base:person\#IDPerson "ChaLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Charlton"; + base:person\#first_name "Loudon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChaPau-00 a base:person; + base:person\#IDPerson "ChaPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chaloupka"; + base:person\#first_name "Pauline"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChaRos-00 a base:person; + base:person\#IDPerson "ChaRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chacel"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CheCec-00 a base:person; + base:person\#IDPerson "CheCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chesterton"; + base:person\#first_name "Cecil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CheLeo-00 a base:person; + base:person\#IDPerson "CheLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chenat"; + base:person\#first_name "Leonie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CheLui-00 a base:person; + base:person\#IDPerson "CheLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cherubini"; + base:person\#first_name "Luigi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CheMon-00 a base:person; + base:person\#IDPerson "CheMon-00"; + base:person\#family_name "Chenal"; + base:person\#first_name "Mons"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChiPri-00 a base:person; + base:person\#IDPerson "ChiPri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chimay"; + base:person\#first_name "Prince"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChmAda-00 a base:person; + base:person\#IDPerson "ChmAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chmielowski"; + base:person\#first_name "Adam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChoFry-00 a base:person; + base:person\#IDPerson "ChoFry-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Chopin"; + base:person\#first_name "Fryderyk Chopin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChrSop-00 a base:person; + base:person\#IDPerson "ChrSop-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Christ"; + base:person\#first_name "Sophie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ChuFre-00 a base:person; + base:person\#IDPerson "ChuFre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Church"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CiaTeo-00 a base:person; + base:person\#IDPerson "CiaTeo-00"; + base:person\#family_name "Ciacchi"; + base:person\#first_name "Teobaldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CibBen-00 a base:person; + base:person\#IDPerson "CibBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cibrián"; + base:person\#first_name "Benito"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CirJul-00 a base:person; + base:person\#IDPerson "CirJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cirera"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaAda-00 a base:person; + base:person\#IDPerson "ClaAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clair"; + base:person\#first_name "Ada"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaAsi-00 a base:person; + base:person\#IDPerson "ClaAsi-00"; + base:person\#family_name "Clarke"; + base:person\#first_name "Asia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaHar-00 a base:person; + base:person\#IDPerson "ClaHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clark"; + base:person\#first_name "Harry Clark"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaHen-00 a base:person; + base:person\#IDPerson "ClaHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clay"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaHer-00 a base:person; + base:person\#IDPerson "ClaHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Claar-Delia"; + base:person\#first_name "Hermine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaJoh-00 a base:person; + base:person\#IDPerson "ClaJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clark"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaKat-00 a base:person; + base:person\#IDPerson "ClaKat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Claxton"; + base:person\#first_name "Kate"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CleArc-00 a base:person; + base:person\#IDPerson "CleArc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cleghorn"; + base:person\#first_name "Archibald Scott"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CleGeo-00 a base:person; + base:person\#IDPerson "CleGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clemenceau"; + base:person\#first_name "Georges"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CliJos-00 a base:person; + base:person\#IDPerson "CliJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clímaco"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CloSop-00 a base:person; + base:person\#IDPerson "CloSop-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cloßegg"; + base:person\#first_name "Sophie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CobArt-00 a base:person; + base:person\#IDPerson "CobArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cobalet"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CocCha-00 a base:person; + base:person\#IDPerson "CocCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cochran"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CodWF-00 a base:person; + base:person\#IDPerson "CodWF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cody"; + base:person\#first_name "W.F. Cody"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CohHar-00 a base:person; + base:person\#IDPerson "CohHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cohn"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CoiHen-00 a base:person; + base:person\#IDPerson "CoiHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coit"; + base:person\#first_name "Henry A. Coit"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ColCar-00 a base:person; + base:person\#IDPerson "ColCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coletti"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ColOre-00 a base:person; + base:person\#IDPerson "ColOre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coliva"; + base:person\#first_name "Orestes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ColPau-00 a base:person; + base:person\#IDPerson "ColPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Colson"; + base:person\#first_name "Pauline Colson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ColRon-00 a base:person; + base:person\#IDPerson "ColRon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Colman"; + base:person\#first_name "Ronald"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConAle-00 a base:person; + base:person\#IDPerson "ConAle-00"; + base:person\#family_name "Conte"; + base:person\#first_name "Alejandro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConHar-00 a base:person; + base:person\#IDPerson "ConHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Conway"; + base:person\#first_name "W. Hart"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConJul-00 a base:person; + base:person\#IDPerson "ConJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Conradi"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConLea-00 a base:person; + base:person\#IDPerson "ConLea-00"; + base:person\#family_name "Conti"; + base:person\#first_name "Lea"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConN\%2FA-00 a base:person; + base:person\#IDPerson "ConN/A-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Consigli"; + base:person\#first_name "N/A"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConRos-00 a base:person; + base:person\#IDPerson "ConRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Contreras"; + base:person\#first_name "Rosita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ConW-00 a base:person; + base:person\#IDPerson "ConW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Conway"; + base:person\#first_name "W."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooGar-00 a base:person; + base:person\#IDPerson "CooGar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooper"; + base:person\#first_name "Gary"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooGeo-00 a base:person; + base:person\#IDPerson "CooGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooper"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooGla-00 a base:person; + base:person\#IDPerson "CooGla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooper"; + base:person\#first_name "Gladys"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooJam-00 a base:person; + base:person\#IDPerson "CooJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooper"; + base:person\#first_name "James Fenimore "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooJan-00 a base:person; + base:person\#IDPerson "CooJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coombs"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CooTho-00 a base:person; + base:person\#IDPerson "CooTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cooper"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CoqCon-00 a base:person; + base:person\#IDPerson "CoqCon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coquelin"; + base:person\#first_name "Constant Benoît"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CorBer-00 a base:person; + base:person\#IDPerson "CorBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Correa"; + base:person\#first_name "Bernardo Joaquim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CorJoh-00 a base:person; + base:person\#IDPerson "CorJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Corning"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CorJul-00 a base:person; + base:person\#IDPerson "CorJul-00"; + base:person\#family_name "Corro"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CorLov-00 a base:person; + base:person\#IDPerson "CorLov-00"; + base:person\#family_name "Corinth"; + base:person\#first_name "Lovis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CorMic-00 a base:person; + base:person\#IDPerson "CorMic-00"; + base:person\#family_name "de Corail"; + base:person\#first_name "Michel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Cos-00 a base:person; + base:person\#IDPerson "Cos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Junior"; + base:person\#first_name "Costa Junior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CosMar-00 a base:person; + base:person\#IDPerson "CosMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Costa"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CosS\%C3\%A9r-00 a base:person; + base:person\#IDPerson "CosSér-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Corrêa da Costa"; + base:person\#first_name "Sérgio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CouLeo-00 a base:person; + base:person\#IDPerson "CouLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Couqui"; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CowJos-00 a base:person; + base:person\#IDPerson "CowJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cowell"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CowJow-00 a base:person; + base:person\#IDPerson "CowJow-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cowell"; + base:person\#first_name "Jow"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CraCar-00 a base:person; + base:person\#IDPerson "CraCar-00"; + base:person\#family_name "Craelius"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CraPat-00 a base:person; + base:person\#IDPerson "CraPat-00"; + base:person\#family_name "Craigie"; + base:person\#first_name "Patrick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CraPat-01 a base:person; + base:person\#IDPerson "CraPat-01"; + base:person\#family_name "Craigie, Senior"; + base:person\#first_name "Patrick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CreLai-00 a base:person; + base:person\#IDPerson "CreLai-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cregar"; + base:person\#first_name "Laird"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CriQue-00 a base:person; + base:person\#IDPerson "CriQue-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cristina"; + base:person\#first_name "Queen María Cristina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CubLui-00 a base:person; + base:person\#IDPerson "CubLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cubas"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CugXav-00 a base:person; + base:person\#IDPerson "CugXav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cugat"; + base:person\#first_name "Xavier"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CulRol-00 a base:person; + base:person\#IDPerson "CulRol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Culver"; + base:person\#first_name "Roland"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CumIrv-00 a base:person; + base:person\#IDPerson "CumIrv-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cumming"; + base:person\#first_name "Irving"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CumJoh-00 a base:person; + base:person\#IDPerson "CumJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cummins"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CunAma-00 a base:person; + base:person\#IDPerson "CunAma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cunha"; + base:person\#first_name "Amaro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CunJos-00 a base:person; + base:person\#IDPerson "CunJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cunha"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CurJos-00 a base:person; + base:person\#IDPerson "CurJos-00"; + base:person\#family_name "Curtius"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CurLud-00 a base:person; + base:person\#IDPerson "CurLud-00"; + base:person\#family_name "Curtius"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CurMar-00 a base:person; + base:person\#IDPerson "CurMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barone del Curto"; + base:person\#first_name "María Lidia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CurMic-00 a base:person; + base:person\#IDPerson "CurMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Curtiz"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CusCha-00 a base:person; + base:person\#IDPerson "CusCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cushman"; + base:person\#first_name "Charlotte"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CzaAda-00 a base:person; + base:person\#IDPerson "CzaAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Czabon"; + base:person\#first_name "Adalbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/D\%C3\%ADAEmi-00 a base:person; + base:person\#IDPerson "DíAEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Díaz"; + base:person\#first_name "Emilio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/D\%C3\%ADMFer-00 a base:person; + base:person\#IDPerson "DíMFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Díaz de Mendoza"; + base:person\#first_name "Fernando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/D\%C3\%ADaMar-00 a base:person; + base:person\#IDPerson "DíaMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Díaz"; + base:person\#first_name "Marujita"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/D\%C3\%ADaPab-00 a base:person; + base:person\#IDPerson "DíaPab-00"; + base:person\#family_name "Díaz"; + base:person\#first_name "Pablo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DLeo-00 a base:person; + base:person\#IDPerson "DLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "D."; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DahCon-00 a base:person; + base:person\#IDPerson "DahCon-00"; + base:person\#family_name "Dahn"; + base:person\#first_name "Constanze"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DalAla-00 a base:person; + base:person\#IDPerson "DalAla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dale"; + base:person\#first_name "Alan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DalBea-00 a base:person; + base:person\#IDPerson "DalBea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beauford B."; + base:person\#first_name "Dale"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DanGeo-00 a base:person; + base:person\#IDPerson "DanGeo-00"; + base:person\#family_name "Daniels"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DanJul-00 a base:person; + base:person\#IDPerson "DanJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Danbe"; + base:person\#first_name "Jules"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DarRub-00 a base:person; + base:person\#IDPerson "DarRub-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Darío"; + base:person\#first_name "Rubén"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavAct-00 a base:person; + base:person\#IDPerson "DavAct-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davis"; + base:person\#first_name "Acton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavED-00 a base:person; + base:person\#IDPerson "DavED-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davies"; + base:person\#first_name "E.D."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavJoh-00 a base:person; + base:person\#IDPerson "DavJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davis"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavTho-00 a base:person; + base:person\#IDPerson "DavTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davies"; + base:person\#first_name "Thomas E. Davies"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavWil-00 a base:person; + base:person\#IDPerson "DavWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davidge"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DayBla-00 a base:person; + base:person\#IDPerson "DayBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dayne"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeBAnt-00 a base:person; + base:person\#IDPerson "DeBAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Bassi"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeFMan-00 a base:person; + base:person\#IDPerson "DeFMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Falla"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeLGreg-00 a base:person; + base:person\#IDPerson "DeLGreg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Laferrere"; + base:person\#first_name "Gregorio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeLTeo-00 a base:person; + base:person\#IDPerson "DeLTeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de las Llanderas"; + base:person\#first_name "Teodoro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeNRos-00 a base:person; + base:person\#IDPerson "DeNRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Novión"; + base:person\#first_name "Rosario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeTAnt-00 a base:person; + base:person\#IDPerson "DeTAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Tomaso"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeVLe\%C3\%B3-00 a base:person; + base:person\#IDPerson "DeVLeó-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Vedia"; + base:person\#first_name "Leónidas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeaJos-00 a base:person; + base:person\#IDPerson "DeaJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dealessi"; + base:person\#first_name "Josefina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DebMad-00 a base:person; + base:person\#IDPerson "DebMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Debriege"; + base:person\#first_name "Mademoiselle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DecBru-00 a base:person; + base:person\#IDPerson "DecBru-00"; + base:person\#family_name "Decarli"; + base:person\#first_name "Bruno"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DegGli-00 a base:person; + base:person\#IDPerson "DegGli-00"; + base:person\#family_name "Degenstein"; + base:person\#first_name "Glicke"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelFra-01 a base:person; + base:person\#IDPerson "DelFra-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Delsarte"; + base:person\#first_name "François"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelHug-00 a base:person; + base:person\#IDPerson "DelHug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "del Carril"; + base:person\#first_name "Hugo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelLeo-00 a base:person; + base:person\#IDPerson "DelLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Delibes"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelMar-00 a base:person; + base:person\#IDPerson "DelMar-00"; + base:person\#family_name "Delannoy"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DelRal-00 a base:person; + base:person\#IDPerson "DelRal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Delmore"; + base:person\#first_name "Ralph Delmore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DemCec-00 a base:person; + base:person\#IDPerson "DemCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "DeMille"; + base:person\#first_name "Cecil"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DemMar-00 a base:person; + base:person\#IDPerson "DemMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Demini"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DenMar-00 a base:person; + base:person\#IDPerson "DenMar-00"; + base:person\#family_name "Denker"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Deo-00 a base:person; + base:person\#IDPerson "Deo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Deolinda"; + base:person\#first_name "Deolinda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DepErn-00 a base:person; + base:person\#IDPerson "DepErn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Depas"; + base:person\#first_name "Ernest"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DesSus-00 a base:person; + base:person\#IDPerson "DesSus-00"; + base:person\#family_name "Després"; + base:person\#first_name "Susana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DevDav-00 a base:person; + base:person\#IDPerson "DevDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Devant"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DevMad-00 a base:person; + base:person\#IDPerson "DevMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Devaux"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DiFPe-00 a base:person; + base:person\#IDPerson "DiFPe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "di Filippo"; + base:person\#first_name "Peppino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Dia-00 a base:person; + base:person\#IDPerson "Dia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Junior"; + base:person\#first_name "Dias Junior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DieHan-00 a base:person; + base:person\#IDPerson "DieHan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dierhammer"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DieMar-00 a base:person; + base:person\#IDPerson "DieMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dietrich"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DilLou-00 a base:person; + base:person\#IDPerson "DilLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dillon"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DipAnd-00 a base:person; + base:person\#IDPerson "DipAnd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dippel"; + base:person\#first_name "Andreas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DisArm-00 a base:person; + base:person\#IDPerson "DisArm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Discépolo"; + base:person\#first_name "Armando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DisEnr-00 a base:person; + base:person\#IDPerson "DisEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Discépolo"; + base:person\#first_name "Enrique Santos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DisWal-00 a base:person; + base:person\#IDPerson "DisWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Disney"; + base:person\#first_name "Walt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DomJoh-00 a base:person; + base:person\#IDPerson "DomJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dominis"; + base:person\#first_name "John Owen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DonGae-00 a base:person; + base:person\#IDPerson "DonGae-00"; + base:person\#family_name "Donizetti"; + base:person\#first_name "Gaetano"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DonMag-00 a base:person; + base:person\#IDPerson "DonMag-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Donato"; + base:person\#first_name "Magda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DonRob-00 a base:person; + base:person\#IDPerson "DonRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Donat"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DorEm\%C3\%A9-00 a base:person; + base:person\#IDPerson "DorEmé-00"; + base:person\#family_name "Doris"; + base:person\#first_name "Emé"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DorK\%C3\%A4t-00 a base:person; + base:person\#IDPerson "DorKät-00"; + base:person\#family_name "Dorsch"; + base:person\#first_name "Käthe"; + base:person\#gender base:Gender-female . + +base:person\/DorMar-00 a base:person; + base:person\#IDPerson "DorMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Doro"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DouSho-00 a base:person; + base:person\#IDPerson "DouSho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Douglas"; + base:person\#first_name "Sholto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DowWal-00 a base:person; + base:person\#IDPerson "DowWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Downey"; + base:person\#first_name "Wallace"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DraFra-00 a base:person; + base:person\#IDPerson "DraFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Drake"; + base:person\#first_name "Frances"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DreMax-00 a base:person; + base:person\#IDPerson "DreMax-00"; + base:person\#family_name "Dreyfus"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Dru-00 a base:person; + base:person\#IDPerson "Dru-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Drury"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DruJoh-00 a base:person; + base:person\#IDPerson "DruJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Druten"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DuaUrb-00 a base:person; + base:person\#IDPerson "DuaUrb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duarte"; + base:person\#first_name "Urbano"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DucCha-00 a base:person; + base:person\#IDPerson "DucCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ducommun"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DufJoh-00 a base:person; + base:person\#IDPerson "DufJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duff"; + base:person\#first_name "John C. Duff"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DuhAlf-00 a base:person; + base:person\#IDPerson "DuhAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duhau"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DujAle-00 a base:person; + base:person\#IDPerson "DujAle-00"; + base:person\#family_name "Dujarier"; + base:person\#first_name "Alexandre Henri"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DukGra-00 a base:person; + base:person\#IDPerson "DukGra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duke of Baden"; + base:person\#first_name "Grand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DumAle-00 a base:person; + base:person\#IDPerson "DumAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dumas"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DumJul-00 a base:person; + base:person\#IDPerson "DumJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dumont-Suvanny"; + base:person\#first_name "Julie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DupAug-00 a base:person; + base:person\#IDPerson "DupAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dupont"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DupPau-00 a base:person; + base:person\#IDPerson "DupPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dupuis"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DurTil-00 a base:person; + base:person\#IDPerson "DurTil-00"; + base:person\#family_name "Durieux"; + base:person\#first_name "Tilla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DusEle-00 a base:person; + base:person\#IDPerson "DusEle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duse"; + base:person\#first_name "Eleanora"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DusLou-00 a base:person; + base:person\#IDPerson "DusLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dustmann"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EamEmm-00 a base:person; + base:person\#IDPerson "EamEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eames"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EasRon-00 a base:person; + base:person\#IDPerson "EasRon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Easterbrook"; + base:person\#first_name "Ronald"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EbeOtt-00 a base:person; + base:person\#IDPerson "EbeOtt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ebersberg"; + base:person\#first_name "Ottokar Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EchAsu-00 a base:person; + base:person\#IDPerson "EchAsu-00"; + base:person\#family_name "Echeverría"; + base:person\#first_name "Asunción"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EckCar-00 a base:person; + base:person\#IDPerson "EckCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eckert"; + base:person\#first_name "Carl "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdeAsh-00 a base:person; + base:person\#IDPerson "EdeAsh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eden"; + base:person\#first_name "Ashley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdeSon-1540 a base:person; + base:person\#IDPerson "EdeSon-1540"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Edelman"; + base:person\#first_name "Sonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EdiDuk-00 a base:person; + base:person\#IDPerson "EdiDuk-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "of Edinburgh"; + base:person\#first_name "Duke"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdiRob-3688 a base:person; + base:person\#IDPerson "EdiRob-3688"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Edison"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/EdsTho-00 a base:person; + base:person\#IDPerson "EdsTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Edson"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdwGeo-00 a base:person; + base:person\#IDPerson "EdwGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Edwards"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EggIva-00 a base:person; + base:person\#IDPerson "EggIva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eggert Hedenblad"; + base:person\#first_name "Ivar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EigCha-00 a base:person; + base:person\#IDPerson "EigCha-00"; + base:person\#family_name "Eigenschenk"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EinLiz-00 a base:person; + base:person\#IDPerson "EinLiz-00"; + base:person\#family_name "Einhorn"; + base:person\#first_name "Liza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/El\%C3\%ADDel-00 a base:person; + base:person\#IDPerson "ElíDel-00"; + base:person\#family_name "Elías"; + base:person\#first_name "Delia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElaViv-00 a base:person; + base:person\#IDPerson "ElaViv-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elaine"; + base:person\#first_name "Vivian"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElfAda-00 a base:person; + base:person\#IDPerson "ElfAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elflein"; + base:person\#first_name "Ada"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EllGer-00 a base:person; + base:person\#IDPerson "EllGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elliott"; + base:person\#first_name "Gertrude"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EllMax-00 a base:person; + base:person\#IDPerson "EllMax-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elliot"; + base:person\#first_name "Maxine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EllMrs-00 a base:person; + base:person\#IDPerson "EllMrs-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ellet"; + base:person\#first_name "Mrs."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElmJoh-00 a base:person; + base:person\#IDPerson "ElmJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elmblad"; + base:person\#first_name "Johannes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElpJoh-00 a base:person; + base:person\#IDPerson "ElpJoh-00"; + base:person\#family_name "Elphinstone"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElvMau-00 a base:person; + base:person\#IDPerson "ElvMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Elvey"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EmmRob-00 a base:person; + base:person\#IDPerson "EmmRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Emmet"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EnrHar-00 a base:person; + base:person\#IDPerson "EnrHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Enriqueta-Codona"; + base:person\#first_name "Harriet"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Enrrri-00 a base:person; + base:person\#IDPerson "Enrrri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferri"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EpsJac-00 a base:person; + base:person\#IDPerson "EpsJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Epstein"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ErnLou-00 a base:person; + base:person\#IDPerson "ErnLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ernest"; + base:person\#first_name "Louis Ernest"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EstFer-00 a base:person; + base:person\#IDPerson "EstFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gutiérrez"; + base:person\#first_name "Fermín Estrella"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EstJua-00 a base:person; + base:person\#IDPerson "EstJua-00"; + base:person\#family_name "Estrada"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EstSla-00 a base:person; + base:person\#IDPerson "EstSla-00"; + base:person\#family_name "Estrin"; + base:person\#first_name "Slava" . + +base:person\/EttRos-00 a base:person; + base:person\#IDPerson "EttRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ettinger"; + base:person\#first_name "Rose"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EysEdm-00 a base:person; + base:person\#IDPerson "EysEdm-00"; + base:person\#family_name "Eysler"; + base:person\#first_name "Edmund"; + base:person\#gender base:Gender-male . + +base:person\/F\%C3\%83\%C2\%A9Fra-00 a base:person; + base:person\#IDPerson "FéFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fétis"; + base:person\#first_name "Francois-Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FalArm-00 a base:person; + base:person\#IDPerson "FalArm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Falconi"; + base:person\#first_name "Armando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FalEdw-00 a base:person; + base:person\#IDPerson "FalEdw-00"; + base:person\#family_name "Falck"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FarCar-00 a base:person; + base:person\#IDPerson "FarCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Faria"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FarGoe-00 a base:person; + base:person\#IDPerson "FarGoe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Farren"; + base:person\#first_name "Goerge"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FarJoh-00 a base:person; + base:person\#IDPerson "FarJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Farrow"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FayAli-00 a base:person; + base:person\#IDPerson "FayAli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Faye"; + base:person\#first_name "Alice"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FecCha-00 a base:person; + base:person\#IDPerson "FecCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fechter"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FehGat-00 a base:person; + base:person\#IDPerson "FehGat-00"; + base:person\#family_name "Fehdmer"; + base:person\#first_name "Gattin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FeiDin-817 a base:person; + base:person\#IDPerson "FeiDin-817"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Feinman"; + base:person\#first_name "Dina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FeiLil-1627 a base:person; + base:person\#IDPerson "FeiLil-1627"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Feinman"; + base:person\#first_name "Lili"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FelAnn-00 a base:person; + base:person\#IDPerson "FelAnn-00"; + base:person\#family_name "Fellborg"; + base:person\#first_name "Anne-Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FenGeo-01 a base:person; + base:person\#IDPerson "FenGeo-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fentum"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FeoHan-00 a base:person; + base:person\#IDPerson "FeoHan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Feodor von Milde"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerBro-00 a base:person; + base:person\#IDPerson "FerBro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferry"; + base:person\#first_name "Broughty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerCha-00 a base:person; + base:person\#IDPerson "FerCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fergusson"; + base:person\#first_name "Charlie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerCon-00 a base:person; + base:person\#IDPerson "FerCon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferrer"; + base:person\#first_name "Concepción"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerEdi-00 a base:person; + base:person\#IDPerson "FerEdi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fergusson "; + base:person\#first_name "Edith"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerGui-00 a base:person; + base:person\#IDPerson "FerGui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferrero"; + base:person\#first_name "Guillermo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerJam-00 a base:person; + base:person\#IDPerson "FerJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fergusson"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerLeo-00 a base:person; + base:person\#IDPerson "FerLeo-00"; + base:person\#family_name "Fernández"; + base:person\#first_name "Leonor"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerMil-00 a base:person; + base:person\#IDPerson "FerMil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fernandes"; + base:person\#first_name "Millôr"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerSev-00 a base:person; + base:person\#IDPerson "FerSev-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fernández"; + base:person\#first_name "Severo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerSof-00 a base:person; + base:person\#IDPerson "FerSof-00"; + base:person\#family_name "Fernández"; + base:person\#first_name "Sofía"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Feroog-00 a base:person; + base:person\#IDPerson "Feroog-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moog"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FeuHan-00 a base:person; + base:person\#IDPerson "FeuHan-00"; + base:person\#family_name "Feuchtwang"; + base:person\#first_name "Hanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FidJos-00 a base:person; + base:person\#IDPerson "FidJos-00"; + base:person\#family_name "Fiddes"; + base:person\#first_name "Josephine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FieAle-00 a base:person; + base:person\#IDPerson "FieAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Field"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FieJos-00 a base:person; + base:person\#IDPerson "FieJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Field"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FieM-00 a base:person; + base:person\#IDPerson "FieM-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Field"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FiePeg-00 a base:person; + base:person\#IDPerson "FiePeg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Field"; + base:person\#first_name "Peggy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FilMar-00 a base:person; + base:person\#IDPerson "FilMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fillunger"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FinJet-00 a base:person; + base:person\#IDPerson "FinJet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Finkenstein"; + base:person\#first_name "Jettka"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FinMor-700 a base:person; + base:person\#IDPerson "FinMor-700"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Finkel"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Fio-00 a base:person; + base:person\#IDPerson "Fio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "Fiorentino "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FisAle-00 a base:person; + base:person\#IDPerson "FisAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fisher"; + base:person\#first_name "Alexina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FisJim-00 a base:person; + base:person\#IDPerson "FisJim-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fisk"; + base:person\#first_name "Jim Fisk"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FisMis-00 a base:person; + base:person\#IDPerson "FisMis-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fiszon"; + base:person\#first_name "Misha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FitCly-00 a base:person; + base:person\#IDPerson "FitCly-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fitch"; + base:person\#first_name "Clyde"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FlaKir-00 a base:person; + base:person\#IDPerson "FlaKir-00"; + base:person\#family_name "Flagstad"; + base:person\#first_name "Kirsten"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FloRob-00 a base:person; + base:person\#IDPerson "FloRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Flores"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FlyErr-00 a base:person; + base:person\#IDPerson "FlyErr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Flynn"; + base:person\#first_name "Errol"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FlyTho-00 a base:person; + base:person\#IDPerson "FlyTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Flynn"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FlyTom-00 a base:person; + base:person\#IDPerson "FlyTom-00"; + base:person\#family_name "Flynn"; + base:person\#first_name "Tom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FoeA-00 a base:person; + base:person\#IDPerson "FoeA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Foerster"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FolMir-00 a base:person; + base:person\#IDPerson "FolMir-00"; + base:person\#family_name "Follin"; + base:person\#first_name "Miriam"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FolNoe-00 a base:person; + base:person\#IDPerson "FolNoe-00"; + base:person\#family_name "Follin"; + base:person\#first_name "Noel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Fon-00 a base:person; + base:person\#IDPerson "Fon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fontana"; + base:person\#first_name "Fontana"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FonAll-00 a base:person; + base:person\#IDPerson "FonAll-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fonseca"; + base:person\#first_name "Alloysio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FonJoa-00 a base:person; + base:person\#IDPerson "FonJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fontaine"; + base:person\#first_name "Joan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForC\.-00 a base:person; + base:person\#IDPerson "ForC.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forester"; + base:person\#first_name "C."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForJoh-00 a base:person; + base:person\#IDPerson "ForJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forster"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForWal-00 a base:person; + base:person\#IDPerson "ForWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forde"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FouJea-00 a base:person; + base:person\#IDPerson "FouJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Foureaux"; + base:person\#first_name "Jean-Baptiste"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Fra-00 a base:person; + base:person\#IDPerson "Fra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "Francis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraBru-00 a base:person; + base:person\#IDPerson "FraBru-00"; + base:person\#family_name "Frank"; + base:person\#first_name "Bruno"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraEsc-00 a base:person; + base:person\#IDPerson "FraEsc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fraga Rivadulla"; + base:person\#first_name "Esclavitud"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraEva-01 a base:person; + base:person\#IDPerson "FraEva-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Franco"; + base:person\#first_name "Eva"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraGeo-00 a base:person; + base:person\#IDPerson "FraGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frank"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraLin-00 a base:person; + base:person\#IDPerson "FraLin-00"; + base:person\#family_name "Fraser"; + base:person\#first_name "Lindley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraLud-00 a base:person; + base:person\#IDPerson "FraLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fränkel"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraMon-00 a base:person; + base:person\#IDPerson "FraMon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Franceschi"; + base:person\#first_name "Monseñor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraMor-00 a base:person; + base:person\#IDPerson "FraMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frauscher"; + base:person\#first_name "Moritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FreCar-00 a base:person; + base:person\#IDPerson "FreCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frédéric"; + base:person\#first_name "Caroline"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FreErm-00 a base:person; + base:person\#IDPerson "FreErm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frezzolini"; + base:person\#first_name "Erminia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FreLaz-1681 a base:person; + base:person\#IDPerson "FreLaz-1681"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Freed"; + base:person\#first_name "Lazar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FreNic-00 a base:person; + base:person\#IDPerson "FreNic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fregues"; + base:person\#first_name "Nicolás"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FriEgo-00 a base:person; + base:person\#IDPerson "FriEgo-00"; + base:person\#family_name "Friedell"; + base:person\#first_name "Egon"; + base:person\#gender base:Gender-male . + +base:person\/FriJ-00 a base:person; + base:person\#IDPerson "FriJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Friedrich"; + base:person\#first_name "J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FriMar-00 a base:person; + base:person\#IDPerson "FriMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frick"; + base:person\#first_name "Maria Luiza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FriRos-00 a base:person; + base:person\#IDPerson "FriRos-00"; + base:person\#family_name "Fridman"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FriSof-00 a base:person; + base:person\#IDPerson "FriSof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fridman"; + base:person\#first_name "Sofia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FryA-00 a base:person; + base:person\#IDPerson "FryA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fry"; + base:person\#first_name "A. H. Fry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FryEdw-00 a base:person; + base:person\#IDPerson "FryEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fry"; + base:person\#first_name "Edward P. Fry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FryWil-00 a base:person; + base:person\#IDPerson "FryWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fry"; + base:person\#first_name "William Henry Fry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FshSta-00 a base:person; + base:person\#IDPerson "FshSta-00"; + base:person\#family_name "Fshibishevski"; + base:person\#first_name "Stanislaw"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FugLuc-00 a base:person; + base:person\#IDPerson "FugLuc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fugure"; + base:person\#first_name "Lucien"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FulLoi-00 a base:person; + base:person\#IDPerson "FulLoi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fuller"; + base:person\#first_name "Loie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FurWil-00 a base:person; + base:person\#IDPerson "FurWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Furst"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/G\%C3\%A1mSeb-00 a base:person; + base:person\#IDPerson "GámSeb-00"; + base:person\#family_name "Gámez"; + base:person\#first_name "Sebastián"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/G\%C3\%BCnJul-00 a base:person; + base:person\#IDPerson "GünJul-00"; + base:person\#family_name "Günther"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalAnt-00 a base:person; + base:person\#IDPerson "GalAnt-00"; + base:person\#family_name "Galé"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalDel-00 a base:person; + base:person\#IDPerson "GalDel-00"; + base:person\#family_name "Gallo"; + base:person\#first_name "Delfín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalHer-00 a base:person; + base:person\#IDPerson "GalHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Galfy"; + base:person\#first_name "Hermine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalIsa-00 a base:person; + base:person\#IDPerson "GalIsa-00"; + base:person\#family_name "Galé"; + base:person\#first_name "Isabel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalJos-01 a base:person; + base:person\#IDPerson "GalJos-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Galé"; + base:person\#first_name "Josefa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalLui-00 a base:person; + base:person\#IDPerson "GalLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Galhardo"; + base:person\#first_name "Luíz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalPed-00 a base:person; + base:person\#IDPerson "GalPed-00"; + base:person\#family_name "Galé"; + base:person\#first_name "Pedro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GanCre-00 a base:person; + base:person\#IDPerson "GanCre-00"; + base:person\#family_name "Ganser"; + base:person\#first_name "Crescentia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarAlb-00 a base:person; + base:person\#IDPerson "GarAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garcia"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarC-00 a base:person; + base:person\#IDPerson "GarC-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garnsey"; + base:person\#first_name "C. F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarCes-00 a base:person; + base:person\#IDPerson "GarCes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garnier"; + base:person\#first_name "Cesar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarEdu-00 a base:person; + base:person\#IDPerson "GarEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garrido"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarFed-00 a base:person; + base:person\#IDPerson "GarFed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sanchiz"; + base:person\#first_name "Federico García"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarGre-00 a base:person; + base:person\#IDPerson "GarGre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garson"; + base:person\#first_name "Greer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarGus-00 a base:person; + base:person\#IDPerson "GarGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Garcia"; + base:person\#first_name "Gustave"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarMax-00 a base:person; + base:person\#IDPerson "GarMax-00"; + base:person\#family_name "Garrison"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarPil-00 a base:person; + base:person\#IDPerson "GarPil-00"; + base:person\#family_name "García"; + base:person\#first_name "Pilar"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GatAdo-00 a base:person; + base:person\#IDPerson "GatAdo-00"; + base:person\#family_name "Gatien-Arnoult"; + base:person\#first_name "Adolphe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GauEst-00 a base:person; + base:person\#IDPerson "GauEst-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gautier"; + base:person\#first_name "Estelle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GauTh\%C3\%83-00 a base:person; + base:person\#IDPerson "GauThÃ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gautier"; + base:person\#first_name "Théophile"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GebOtt-00 a base:person; + base:person\#IDPerson "GebOtt-00"; + base:person\#family_name "Gebühr"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male . + +base:person\/GerAdm-00 a base:person; + base:person\#IDPerson "GerAdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gervais"; + base:person\#first_name "Admiral"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GerAdo-1753 a base:person; + base:person\#IDPerson "GerAdo-1753"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gertner"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GerC-00 a base:person; + base:person\#IDPerson "GerC-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gerlick"; + base:person\#first_name "C. J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GerEte-00 a base:person; + base:person\#IDPerson "GerEte-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gerster"; + base:person\#first_name "Etelka"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GerJea-00 a base:person; + base:person\#IDPerson "GerJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gerville-Reache"; + base:person\#first_name "Jeanne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GeyLud-00 a base:person; + base:person\#IDPerson "GeyLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Geyer"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GibW-00 a base:person; + base:person\#IDPerson "GibW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gibson"; + base:person\#first_name "W. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GieJoh-00 a base:person; + base:person\#IDPerson "GieJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gielgud"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilBil-00 a base:person; + base:person\#IDPerson "GilBil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gilbert"; + base:person\#first_name "Billy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilEdw-00 a base:person; + base:person\#IDPerson "GilEdw-00"; + base:person\#family_name "Gilbert"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilEli-00 a base:person; + base:person\#IDPerson "GilEli-00"; + base:person\#family_name "Gilbert"; + base:person\#first_name "Elizabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilFra-00 a base:person; + base:person\#IDPerson "GilFra-00"; + base:person\#family_name "Gillot"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilJoh-00 a base:person; + base:person\#IDPerson "GilJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gilbert"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilSid-00 a base:person; + base:person\#IDPerson "GilSid-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gilliat"; + base:person\#first_name "Sidney"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GimYaa-1768 a base:person; + base:person\#IDPerson "GimYaa-1768"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gimpel"; + base:person\#first_name "Yaakov Ber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GioSil-00 a base:person; + base:person\#IDPerson "GioSil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Giovanetti"; + base:person\#first_name "Silvio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GiuGiu-00 a base:person; + base:person\#IDPerson "GiuGiu-00"; + base:person\#family_name "Giusti"; + base:person\#first_name "Giuseppe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GlaCar-00 a base:person; + base:person\#IDPerson "GlaCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gladys"; + base:person\#first_name "Carrie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GlaIra-00 a base:person; + base:person\#IDPerson "GlaIra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Glackens"; + base:person\#first_name "Ira"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GloEdw-00 a base:person; + base:person\#IDPerson "GloEdw-00"; + base:person\#family_name "Glover"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GluSam-00 a base:person; + base:person\#IDPerson "GluSam-00"; + base:person\#family_name "Glusberg"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GodGer-00 a base:person; + base:person\#IDPerson "GodGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Godier"; + base:person\#first_name "Gertrud"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GodPau-00 a base:person; + base:person\#IDPerson "GodPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goddard"; + base:person\#first_name "Paulette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GoeCur-00 a base:person; + base:person\#IDPerson "GoeCur-00"; + base:person\#family_name "Goetz"; + base:person\#first_name "Curt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolAvr-1865 a base:person; + base:person\#IDPerson "GolAvr-1865"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Golubok"; + base:person\#first_name "Avraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolBec-00 a base:person; + base:person\#IDPerson "GolBec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goldstein"; + base:person\#first_name "Becky"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolLei-757 a base:person; + base:person\#IDPerson "GolLei-757"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gold"; + base:person\#first_name "Leibush"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolLey-1852 a base:person; + base:person\#IDPerson "GolLey-1852"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldstein"; + base:person\#first_name "Leyzer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolMal-00 a base:person; + base:person\#IDPerson "GolMal-00"; + base:person\#family_name "Goldschmied"; + base:person\#first_name "Malvina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolMax-3699 a base:person; + base:person\#IDPerson "GolMax-3699"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldberg"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GolOtt-00 a base:person; + base:person\#IDPerson "GolOtt-00"; + base:person\#family_name "Goldschmidt"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolRum-00 a base:person; + base:person\#IDPerson "GolRum-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goldfaden"; + base:person\#first_name "Rumania"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolSam-00 a base:person; + base:person\#IDPerson "GolSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goldwyn"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolSam-01 a base:person; + base:person\#IDPerson "GolSam-01"; + base:person\#family_name "Goldinburg"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolSer-00 a base:person; + base:person\#IDPerson "GolSer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goldstein"; + base:person\#first_name "Serke"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolSop-723 a base:person; + base:person\#IDPerson "GolSop-723"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldstein"; + base:person\#first_name "Sophie (Karp)"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Golar-00 a base:person; + base:person\#IDPerson "Golar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goldstein"; + base:person\#first_name "Sara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GomArg-00 a base:person; + base:person\#IDPerson "GomArg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gómez"; + base:person\#first_name "Argentino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GonBer-00 a base:person; + base:person\#IDPerson "GonBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González Arrili"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GonChi-00 a base:person; + base:person\#IDPerson "GonChi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gonzaga"; + base:person\#first_name "Chiquinha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GonSan-00 a base:person; + base:person\#IDPerson "GonSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "González"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorArt-00 a base:person; + base:person\#IDPerson "GorArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gordon"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorCor-00 a base:person; + base:person\#IDPerson "GorCor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gordon"; + base:person\#first_name "Cora"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorJan-00 a base:person; + base:person\#IDPerson "GorJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gordon"; + base:person\#first_name "Jan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorMar-00 a base:person; + base:person\#IDPerson "GorMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gorostiza"; + base:person\#first_name "Margarita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorMar-01 a base:person; + base:person\#IDPerson "GorMar-01"; + base:person\#family_name "Goring"; + base:person\#first_name "Marius"; + base:person\#gender base:Gender-male . + +base:person\/GotJoh-00 a base:person; + base:person\#IDPerson "GotJoh-00"; + base:person\#family_name "Gottowt"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GouEdm-00 a base:person; + base:person\#IDPerson "GouEdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Goulding"; + base:person\#first_name "Edmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GoyPed-00 a base:person; + base:person\#IDPerson "GoyPed-00"; + base:person\#family_name "Goyena"; + base:person\#first_name "Pedro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraAni-00 a base:person; + base:person\#IDPerson "GraAni-00"; + base:person\#family_name "Grander"; + base:person\#first_name "Anita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraBet-00 a base:person; + base:person\#IDPerson "GraBet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grable"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraCar-00 a base:person; + base:person\#IDPerson "GraCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grant"; + base:person\#first_name "Cary"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraEnr-00 a base:person; + base:person\#IDPerson "GraEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Granados"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraEve-00 a base:person; + base:person\#IDPerson "GraEve-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gray"; + base:person\#first_name "Eve"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraFM-00 a base:person; + base:person\#IDPerson "GraFM-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gratton"; + base:person\#first_name "F. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraGen-00 a base:person; + base:person\#IDPerson "GraGen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jr."; + base:person\#first_name "General"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraIsr-00 a base:person; + base:person\#IDPerson "GraIsr-00"; + base:person\#family_name "Grander"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraJ-00 a base:person; + base:person\#IDPerson "GraJ-00"; + base:person\#family_name "Grant"; + base:person\#first_name "J.G."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraJac-00 a base:person; + base:person\#IDPerson "GraJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grau"; + base:person\#first_name "Jacob Grau"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraJoa-00 a base:person; + base:person\#IDPerson "GraJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grave"; + base:person\#first_name "João"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GreCha-00 a base:person; + base:person\#IDPerson "GreCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Greenwood"; + base:person\#first_name "Charlotte"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GreEdw-00 a base:person; + base:person\#IDPerson "GreEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Greville"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GreJac-00 a base:person; + base:person\#IDPerson "GreJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gretillat"; + base:person\#first_name "Jacques"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gri-00 a base:person; + base:person\#IDPerson "Gri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Griffin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gro-00 a base:person; + base:person\#IDPerson "Gro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grobien"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroPie-00 a base:person; + base:person\#IDPerson "GroPie-00"; + base:person\#family_name "Groussac"; + base:person\#first_name "Pierre"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroRud-00 a base:person; + base:person\#IDPerson "GroRud-00"; + base:person\#family_name "Grossmann"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroSus-00 a base:person; + base:person\#IDPerson "GroSus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grosso"; + base:person\#first_name "Susana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GruEmm-00 a base:person; + base:person\#IDPerson "GruEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grua"; + base:person\#first_name "Emmy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GueJos-00 a base:person; + base:person\#IDPerson "GueJos-00"; + base:person\#family_name "Guerrero"; + base:person\#first_name "Josefa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gui-00 a base:person; + base:person\#IDPerson "Gui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Guiltzou"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiAna-00 a base:person; + base:person\#IDPerson "GuiAna-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Ana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiCar-00 a base:person; + base:person\#IDPerson "GuiCar-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiEls-00 a base:person; + base:person\#IDPerson "GuiEls-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Elsa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiIn\%C3\%A9-00 a base:person; + base:person\#IDPerson "GuiIné-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Inés"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiLeo-00 a base:person; + base:person\#IDPerson "GuiLeo-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Leonor"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiLil-00 a base:person; + base:person\#IDPerson "GuiLil-00"; + base:person\#family_name "Guisti"; + base:person\#first_name "Liliana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiSac-00 a base:person; + base:person\#IDPerson "GuiSac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Guitry"; + base:person\#first_name "Sacha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuiYve-00 a base:person; + base:person\#IDPerson "GuiYve-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Guilbert"; + base:person\#first_name "Yvette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GunFan-00 a base:person; + base:person\#IDPerson "GunFan-00"; + base:person\#family_name "von Günther"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GunKar-00 a base:person; + base:person\#IDPerson "GunKar-00"; + base:person\#family_name "von Günther"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GunMad-00 a base:person; + base:person\#IDPerson "GunMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gunsbourg"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GurJos-00 a base:person; + base:person\#IDPerson "GurJos-00"; + base:person\#family_name "Gurvich"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GusMax-00 a base:person; + base:person\#IDPerson "GusMax-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gusofsky"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GutMil-1949 a base:person; + base:person\#IDPerson "GutMil-1949"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gutman"; + base:person\#first_name "Milani"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GweEdm-00 a base:person; + base:person\#IDPerson "GweEdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gwenn"; + base:person\#first_name "Edmond"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/H\%C3\%A9rLou-00 a base:person; + base:person\#IDPerson "HérLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Héritte-Viardot"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/H\%C3\%B6rPau-00 a base:person; + base:person\#IDPerson "HörPau-00"; + base:person\#family_name "Hörbiger"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HRH-00 a base:person; + base:person\#IDPerson "HRH-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "H."; + base:person\#first_name "H. R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Haa-00 a base:person; + base:person\#IDPerson "Haa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Von Haase"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HaaK\%C3\%A4t-00 a base:person; + base:person\#IDPerson "HaaKät-00"; + base:person\#family_name "Haack"; + base:person\#first_name "Käte"; + base:person\#gender base:Gender-female . + +base:person\/HagCar-00 a base:person; + base:person\#IDPerson "HagCar-00"; + base:person\#family_name "Hagemann"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HagCha-00 a base:person; + base:person\#IDPerson "HagCha-00"; + base:person\#family_name "von Hagn"; + base:person\#first_name "Charlotte"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Hai-00 a base:person; + base:person\#IDPerson "Hai-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Haig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ham-00 a base:person; + base:person\#IDPerson "Ham-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hampson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HamHar-00 a base:person; + base:person\#IDPerson "HamHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ham"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarAug-00 a base:person; + base:person\#IDPerson "HarAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Harris"; + base:person\#first_name "Augustus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarCed-00 a base:person; + base:person\#IDPerson "HarCed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hardwicke"; + base:person\#first_name "Cedric"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarJoa-00 a base:person; + base:person\#IDPerson "HarJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Harrison"; + base:person\#first_name "Joan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarOrv-00 a base:person; + base:person\#IDPerson "HarOrv-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Harrold"; + base:person\#first_name "Orville"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarOsw-00 a base:person; + base:person\#IDPerson "HarOsw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Harker"; + base:person\#first_name "Oswald Harker"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarRex-00 a base:person; + base:person\#IDPerson "HarRex-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Harrison"; + base:person\#first_name "Rex"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HarTho-00 a base:person; + base:person\#IDPerson "HarTho-00"; + base:person\#family_name "Harris"; + base:person\#first_name "Thomas Lake"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HauMar-00 a base:person; + base:person\#IDPerson "HauMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Haupt"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HauMis-00 a base:person; + base:person\#IDPerson "HauMis-00"; + base:person\#family_name "Hauser"; + base:person\#first_name "Miska"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HavOli-00 a base:person; + base:person\#IDPerson "HavOli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Havilland"; + base:person\#first_name "Olivia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HawFra-00 a base:person; + base:person\#IDPerson "HawFra-00"; + base:person\#family_name "Hawks"; + base:person\#first_name "Francis Lister"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HawNat-00 a base:person; + base:person\#IDPerson "HawNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hawthorne"; + base:person\#first_name "Nathaniel Hawthorne"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeaEdi-00 a base:person; + base:person\#IDPerson "HeaEdi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Head"; + base:person\#first_name "Edith"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HecBen-00 a base:person; + base:person\#IDPerson "HecBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hecht"; + base:person\#first_name "Ben"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HegJea-00 a base:person; + base:person\#IDPerson "HegJea-00"; + base:person\#family_name "Hegner"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeiAnn-00 a base:person; + base:person\#IDPerson "HeiAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heinrich"; + base:person\#first_name "Annemarie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeiHub-00 a base:person; + base:person\#IDPerson "HeiHub-00"; + base:person\#family_name "Heinich"; + base:person\#first_name "Hubert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeiMar-00 a base:person; + base:person\#IDPerson "HeiMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heilbronn"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeiMel-00 a base:person; + base:person\#IDPerson "HeiMel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heim"; + base:person\#first_name "Melitta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelAnt-00 a base:person; + base:person\#IDPerson "HelAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heller"; + base:person\#first_name "Antônio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelHel-00 a base:person; + base:person\#IDPerson "HelHel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Helmut"; + base:person\#first_name "Helmut"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelJoa-00 a base:person; + base:person\#IDPerson "HelJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heliodoro"; + base:person\#first_name "Joaquim Heliodoro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelLil-00 a base:person; + base:person\#IDPerson "HelLil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hellman"; + base:person\#first_name "Lillian"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HemDav-00 a base:person; + base:person\#IDPerson "HemDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hempstead"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HenJon-00 a base:person; + base:person\#IDPerson "HenJon-00"; + base:person\#family_name "Henning"; + base:person\#first_name "Jonathan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HenPau-00 a base:person; + base:person\#IDPerson "HenPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Henried"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HenRut-00 a base:person; + base:person\#IDPerson "HenRut-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Henderson"; + base:person\#first_name "Ruth Henderson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HenSon-00 a base:person; + base:person\#IDPerson "HenSon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Henie"; + base:person\#first_name "Sonja"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerAnn-00 a base:person; + base:person\#IDPerson "HerAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herschel"; + base:person\#first_name "Anne"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerFel-00 a base:person; + base:person\#IDPerson "HerFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herrmann)"; + base:person\#first_name "Felix Kretschman (later Felix Herrmann)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerFlo-00 a base:person; + base:person\#IDPerson "HerFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hervé"; + base:person\#first_name "Florimond"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerGeo-00 a base:person; + base:person\#IDPerson "HerGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herwegh"; + base:person\#first_name "Georg"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerGui-00 a base:person; + base:person\#IDPerson "HerGui-00"; + base:person\#family_name "Herzfeld"; + base:person\#first_name "Guido"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerMar-00 a base:person; + base:person\#IDPerson "HerMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herleroy"; + base:person\#first_name "Marguerite"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerSam-00 a base:person; + base:person\#IDPerson "HerSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herrmann"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeySop-00 a base:person; + base:person\#IDPerson "HeySop-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heyman"; + base:person\#first_name "Sophie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HieHel-00 a base:person; + base:person\#IDPerson "HieHel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hieser"; + base:person\#first_name "Helene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HieIda-00 a base:person; + base:person\#IDPerson "HieIda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hiedler"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HieWil-00 a base:person; + base:person\#IDPerson "HieWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hield"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HilCha-00 a base:person; + base:person\#IDPerson "HilCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hill"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HilMal-00 a base:person; + base:person\#IDPerson "HilMal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hill"; + base:person\#first_name "Malter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HinIsa-00 a base:person; + base:person\#IDPerson "HinIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hinckley"; + base:person\#first_name "Isabella Hinckley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HinPau-00 a base:person; + base:person\#IDPerson "HinPau-00"; + base:person\#family_name "Hindemith"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male . + +base:person\/HirGeo-00 a base:person; + base:person\#IDPerson "HirGeo-00"; + base:person\#family_name "Hirschfeld"; + base:person\#first_name "Georg"; + base:person\#gender base:Gender-male . + +base:person\/HirMar-00 a base:person; + base:person\#IDPerson "HirMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hirn"; + base:person\#first_name "Marie Madelaine Lugensland"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HirPer-2006 a base:person; + base:person\#IDPerson "HirPer-2006"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Hirshbein"; + base:person\#first_name "Peretz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/HisSam-00 a base:person; + base:person\#IDPerson "HisSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hischman"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HitAlm-00 a base:person; + base:person\#IDPerson "HitAlm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hitchcock"; + base:person\#first_name "Alma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Hod-00 a base:person; + base:person\#IDPerson "Hod-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hodges"; + base:person\#first_name "H. C."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HodBra-00 a base:person; + base:person\#IDPerson "HodBra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hodges"; + base:person\#first_name "Bra."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HoeJos-00 a base:person; + base:person\#IDPerson "HoeJos-00"; + base:person\#family_name "Hoermann"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HofAnt-00 a base:person; + base:person\#IDPerson "HofAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hoffman"; + base:person\#first_name "Antonina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HofJan-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116341890"; + base:person\#IDPerson "HofJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n2005074081"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w65d8tf9#resources"; + base:person\#VIAF "https://viaf.org/viaf/37664433"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q87272"; + base:person\#birthdate "1896-07-30"^^xsd:date; + base:person\#birthdate_max "1896-07-30"^^xsd:date; + base:person\#deathdate "1988-06-30"^^xsd:date; + base:person\#deathdate_max "1988-06-30"^^xsd:date; + base:person\#family_name "Hofer"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Film Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:person\/HogMic-00 a base:person; + base:person\#IDPerson "HogMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hogan"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolDr-00 a base:person; + base:person\#IDPerson "HolDr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Holmes"; + base:person\#first_name "Dr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolGeo-00 a base:person; + base:person\#IDPerson "HolGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Holland"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolH-00 a base:person; + base:person\#IDPerson "HolH-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hollister"; + base:person\#first_name "H. R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolJos-00 a base:person; + base:person\#IDPerson "HolJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hollmann"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HomOsk-00 a base:person; + base:person\#IDPerson "HomOsk-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Homolka"; + base:person\#first_name "Oskar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HopBer-00 a base:person; + base:person\#IDPerson "HopBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hope"; + base:person\#first_name "Beresford"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HorEdw-00 a base:person; + base:person\#IDPerson "HorEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Horton"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HotLeo-00 a base:person; + base:person\#IDPerson "HotLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "D'Hôte"; + base:person\#first_name "Léon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HouBer-00 a base:person; + base:person\#IDPerson "HouBer-00"; + base:person\#family_name "Houssay"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HouEdw-00 a base:person; + base:person\#IDPerson "HouEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "House"; + base:person\#first_name "Edward H."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HouGen-00 a base:person; + base:person\#IDPerson "HouGen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Houston"; + base:person\#first_name "General"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HouM\%C3\%A1x-00 a base:person; + base:person\#IDPerson "HouMáx-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hourquet"; + base:person\#first_name "Máxima Hourquet"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HovHer-00 a base:person; + base:person\#IDPerson "HovHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hover"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HowBro-00 a base:person; + base:person\#IDPerson "HowBro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Howard"; + base:person\#first_name "Bronson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HowVio-00 a base:person; + base:person\#IDPerson "HowVio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Howard"; + base:person\#first_name "Violet"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HoyCha-00 a base:person; + base:person\#IDPerson "HoyCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hoyt"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HugVic-00 a base:person; + base:person\#IDPerson "HugVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hugo"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HulJam-00 a base:person; + base:person\#IDPerson "HulJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hulden"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HulPat-00 a base:person; + base:person\#IDPerson "HulPat-00"; + base:person\#family_name "Hull"; + base:person\#first_name "Patrick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HumJes-00 a base:person; + base:person\#IDPerson "HumJes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Humphreys"; + base:person\#first_name "Jeseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HusEdu-00 a base:person; + base:person\#IDPerson "HusEdu-00"; + base:person\#family_name "Husserls"; + base:person\#first_name "Eduard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HutAlf-00 a base:person; + base:person\#IDPerson "HutAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hutwell"; + base:person\#first_name "Alfred S."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HydC-00 a base:person; + base:person\#IDPerson "HydC-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hyde"; + base:person\#first_name "C. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IbaCar-00 a base:person; + base:person\#IDPerson "IbaCar-00"; + base:person\#family_name "Ibarguren"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IbaNar-00 a base:person; + base:person\#IDPerson "IbaNar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ibáñez Menta"; + base:person\#first_name "Narciso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IbaVic-00 a base:person; + base:person\#IDPerson "IbaVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ibáñez"; + base:person\#first_name "Vicente Blasco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IffAug-00 a base:person; + base:person\#IDPerson "IffAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Iffert"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IglRaf-00 a base:person; + base:person\#IDPerson "IglRaf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Iglesias"; + base:person\#first_name "Rafael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IhlAug-00 a base:person; + base:person\#IDPerson "IhlAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ihle"; + base:person\#first_name "Auguste"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IhlPet-00 a base:person; + base:person\#IDPerson "IhlPet-00"; + base:person\#family_name "Ihle"; + base:person\#first_name "Peter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IhmHen-00 a base:person; + base:person\#IDPerson "IhmHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ihman"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IiK\%C3\%B6n-00 a base:person; + base:person\#IDPerson "IiKön-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "II"; + base:person\#first_name "König"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IncRam-00 a base:person; + base:person\#IDPerson "IncRam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Inclán"; + base:person\#first_name "Ramón"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IreNat-00 a base:person; + base:person\#IDPerson "IreNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Iretzkaya"; + base:person\#first_name "Natalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IriFlo-00 a base:person; + base:person\#IDPerson "IriFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Iriarte"; + base:person\#first_name "Florencio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IsaNat-00 a base:person; + base:person\#IDPerson "IsaNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Isaaconitch"; + base:person\#first_name "Nathan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IshChr-00 a base:person; + base:person\#IDPerson "IshChr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Isherwood"; + base:person\#first_name "Christopher"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ItuJua-00 a base:person; + base:person\#IDPerson "ItuJua-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Iturigui"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JMei-00 a base:person; + base:person\#IDPerson "JMei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "J."; + base:person\#first_name "Meitl"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JNat-00 a base:person; + base:person\#IDPerson "JNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "Nathan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JacBla-00 a base:person; + base:person\#IDPerson "JacBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jackson"; + base:person\#first_name "Black"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JacJac-902 a base:person; + base:person\#IDPerson "JacJac-902"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Jacobs"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/JafCar-00 a base:person; + base:person\#IDPerson "JafCar-00"; + base:person\#family_name "Jaffé"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JamTho-00 a base:person; + base:person\#IDPerson "JamTho-00"; + base:person\#family_name "James"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JarGus-00 a base:person; + base:person\#IDPerson "JarGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jaretzky"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JauJea-00 a base:person; + base:person\#IDPerson "JauJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jaurés"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JeaIsa-00 a base:person; + base:person\#IDPerson "JeaIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jeans"; + base:person\#first_name "Isabel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JefBes-00 a base:person; + base:person\#IDPerson "JefBes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jefferson"; + base:person\#first_name "Bess"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JerMar-00 a base:person; + base:person\#IDPerson "JerMar-00"; + base:person\#family_name "Jeritza"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JimEnr-00 a base:person; + base:person\#IDPerson "JimEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jiménez"; + base:person\#first_name "Don Enrique Romero "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JoaJos-01 a base:person; + base:person\#IDPerson "JoaJos-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Joachim"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JoaMar-00 a base:person; + base:person\#IDPerson "JoaMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Joachim"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Joh-00 a base:person; + base:person\#IDPerson "Joh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohEdw-00 a base:person; + base:person\#IDPerson "JohEdw-00"; + base:person\#family_name "Johnson"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohJB-00 a base:person; + base:person\#IDPerson "JohJB-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Johnson"; + base:person\#first_name "J.B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohLou-00 a base:person; + base:person\#IDPerson "JohLou-00"; + base:person\#family_name "Johansson"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohWil-00 a base:person; + base:person\#IDPerson "JohWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Johson"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JonBen-00 a base:person; + base:person\#IDPerson "JonBen-00"; + base:person\#family_name "Jones"; + base:person\#first_name "Benjamin Naphtali"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JonFre-00 a base:person; + base:person\#IDPerson "JonFre-00"; + base:person\#family_name "Jone"; + base:person\#first_name "Fred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JonJoh-00 a base:person; + base:person\#IDPerson "JonJoh-00"; + base:person\#family_name "Jones"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JorGeo-00 a base:person; + base:person\#IDPerson "JorGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jordan"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JosHof-00 a base:person; + base:person\#IDPerson "JosHof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hofmann"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Joslla-00 a base:person; + base:person\#IDPerson "Joslla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padilla"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JoyJam-00 a base:person; + base:person\#IDPerson "JoyJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Joyce"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Jr\.Jun-00 a base:person; + base:person\#IDPerson "Jr.Jun-00"; + base:person\#family_name "Jr."; + base:person\#first_name "Junius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ju\%C3\%A1Rog-00 a base:person; + base:person\#IDPerson "JuáRog-00"; + base:person\#family_name "Juárez"; + base:person\#first_name "Rogelio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Jud-00 a base:person; + base:person\#IDPerson "Jud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Judd"; + base:person\#first_name "Colonel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Julrsa-00 a base:person; + base:person\#IDPerson "Julrsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Traversa"; + base:person\#first_name "Julio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JunCar-00 a base:person; + base:person\#IDPerson "JunCar-00"; + base:person\#family_name "Jun."; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JunJos-00 a base:person; + base:person\#IDPerson "JunJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Junior"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JurJor-00 a base:person; + base:person\#IDPerson "JurJor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jury"; + base:person\#first_name "Jorge Zuhair"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/K\%C3\%A1lEmm-00 a base:person; + base:person\#IDPerson "KálEmm-00"; + base:person\#family_name "Kálmán"; + base:person\#first_name "Emmerich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KahHei-00 a base:person; + base:person\#IDPerson "KahHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kahl"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KaiGeo-00 a base:person; + base:person\#IDPerson "KaiGeo-00"; + base:person\#family_name "Kaiser"; + base:person\#first_name "Georg"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KalKin-00 a base:person; + base:person\#IDPerson "KalKin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kalakaua"; + base:person\#first_name "King"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KalMar-00 a base:person; + base:person\#IDPerson "KalMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kalergis-Muchanow"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KamAvr-3613 a base:person; + base:person\#IDPerson "KamAvr-3613"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kaminski"; + base:person\#first_name "Avraham Yitzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KamEst-3610 a base:person; + base:person\#IDPerson "KamEst-3610"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kaminska"; + base:person\#first_name "Esther-Rukhl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KapI-00 a base:person; + base:person\#IDPerson "KapI-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kapena"; + base:person\#first_name "I. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KarBor-00 a base:person; + base:person\#IDPerson "KarBor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Karloff"; + base:person\#first_name "Boris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KarEus-00 a base:person; + base:person\#IDPerson "KarEus-00"; + base:person\#family_name "Karwowski"; + base:person\#first_name "Eustache"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KarMax-703 a base:person; + base:person\#IDPerson "KarMax-703"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Karp"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KarWil-00 a base:person; + base:person\#IDPerson "KarWil-00"; + base:person\#family_name "Karczag"; + base:person\#first_name "Wilhelm"; + base:person\#gender base:Gender-male . + +base:person\/KatAwa-00 a base:person; + base:person\#IDPerson "KatAwa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Katsnoshin"; + base:person\#first_name "Awata Katsnoshin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KatDia-00 a base:person; + base:person\#IDPerson "KatDia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Katzman"; + base:person\#first_name "Diana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KauHer-2100 a base:person; + base:person\#IDPerson "KauHer-2100"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Kaufman"; + base:person\#first_name "Hershl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KayFri-00 a base:person; + base:person\#IDPerson "KayFri-00"; + base:person\#family_name "Kayßler"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KeaEdm-00 a base:person; + base:person\#IDPerson "KeaEdm-00"; + base:person\#family_name "Kean"; + base:person\#first_name "Edmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KeeJor-00 a base:person; + base:person\#IDPerson "KeeJor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Keen"; + base:person\#first_name "Jorge"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KeeJor-01 a base:person; + base:person\#IDPerson "KeeJor-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Keen Barrientos"; + base:person\#first_name "Jorge Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KeeLau-01 a base:person; + base:person\#IDPerson "KeeLau-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Keene"; + base:person\#first_name "Laura Keene"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Kel-00 a base:person; + base:person\#IDPerson "Kel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Keller"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelBla-00 a base:person; + base:person\#IDPerson "KelBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kelleher"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelCla-00 a base:person; + base:person\#IDPerson "KelCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kellogg"; + base:person\#first_name "Clara Louise Kellogg"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelFan-00 a base:person; + base:person\#IDPerson "KelFan-00"; + base:person\#family_name "Kelly"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelHar-00 a base:person; + base:person\#IDPerson "KelHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kellar"; + base:person\#first_name "Harry Kellar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelHer-00 a base:person; + base:person\#IDPerson "KelHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kelsey"; + base:person\#first_name "Herbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KelMar-00 a base:person; + base:person\#IDPerson "KelMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kelly"; + base:person\#first_name "Mary Therese"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KemCha-00 a base:person; + base:person\#IDPerson "KemCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kemble"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KemFan-00 a base:person; + base:person\#IDPerson "KemFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kemble"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ken-00 a base:person; + base:person\#IDPerson "Ken-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kenny"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KenHen-00 a base:person; + base:person\#IDPerson "KenHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kendall"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KenJud-00 a base:person; + base:person\#IDPerson "KenJud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kenny"; + base:person\#first_name "Judge"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KerBea-00 a base:person; + base:person\#IDPerson "KerBea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kernic"; + base:person\#first_name "Beatrice"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KesJ-761 a base:person; + base:person\#IDPerson "KesJ-761"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kessler"; + base:person\#first_name "J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KieGus-00 a base:person; + base:person\#IDPerson "KieGus-00"; + base:person\#family_name "Kiepenheuer"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KilQui-00 a base:person; + base:person\#IDPerson "KilQui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kilby"; + base:person\#first_name "Quincy Kilby"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KinGeo-00 a base:person; + base:person\#IDPerson "KinGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "King"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KinLeo-00 a base:person; + base:person\#IDPerson "KinLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kinskey"; + base:person\#first_name "Leonid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KirBol-00 a base:person; + base:person\#IDPerson "KirBol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kiralfy"; + base:person\#first_name "Bolossy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KirEmm-00 a base:person; + base:person\#IDPerson "KirEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kirch-Moerdes"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KirImr-00 a base:person; + base:person\#IDPerson "KirImr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kiralfy"; + base:person\#first_name "Imre Kiralfy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KleCes-00 a base:person; + base:person\#IDPerson "KleCes-00"; + base:person\#family_name "Klein"; + base:person\#first_name "Cesar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KleLeo-00 a base:person; + base:person\#IDPerson "KleLeo-00"; + base:person\#family_name "von Klenze"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KleOtt-00 a base:person; + base:person\#IDPerson "KleOtt-00"; + base:person\#family_name "Klemperer"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KleRud-00 a base:person; + base:person\#IDPerson "KleRud-00"; + base:person\#family_name "Klein-Rohden"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KloEri-00 a base:person; + base:person\#IDPerson "KloEri-00"; + base:person\#family_name "Klossowski"; + base:person\#first_name "Erich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KniEsm-00 a base:person; + base:person\#IDPerson "KniEsm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Knight"; + base:person\#first_name "Esmond"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KniJos-00 a base:person; + base:person\#IDPerson "KniJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Knight"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ko\%C5\%BASta-00 a base:person; + base:person\#IDPerson "KoźSta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Koźmian"; + base:person\#first_name "Stanisław"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KobLeo-975 a base:person; + base:person\#IDPerson "KobLeo-975"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kobrin"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KoeTil-00 a base:person; + base:person\#IDPerson "KoeTil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Koenen"; + base:person\#first_name "Tilly"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KolWal-00 a base:person; + base:person\#IDPerson "KolWal-00"; + base:person\#family_name "Kollo"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male . + +base:person\/KorAle-00 a base:person; + base:person\#IDPerson "KorAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Korda"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KorMad-00 a base:person; + base:person\#IDPerson "KorMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kornfeld"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Kra-00 a base:person; + base:person\#IDPerson "Kra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Von Krause"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraArt-00 a base:person; + base:person\#IDPerson "KraArt-00"; + base:person\#family_name "Kraußneck"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraGab-00 a base:person; + base:person\#IDPerson "KraGab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Krauss"; + base:person\#first_name "Gabrielle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraJ\%C3\%B3z-00 a base:person; + base:person\#IDPerson "KraJóz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kraszewski"; + base:person\#first_name "Józef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraMax-00 a base:person; + base:person\#IDPerson "KraMax-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kraeme-Helm"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraPhi-KraPhi-967 a base:person; + base:person\#IDPerson "KraPhi-KraPhi-967"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Krantz"; + base:person\#first_name "Philip"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Kre-00 a base:person; + base:person\#IDPerson "Kre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Von Krencki"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KreFra-00 a base:person; + base:person\#IDPerson "KreFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Krenn"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KreJoh-00 a base:person; + base:person\#IDPerson "KreJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kretschman"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KreKre-00 a base:person; + base:person\#IDPerson "KreKre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kretschman"; + base:person\#first_name "Kretschman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KroPet-00 a base:person; + base:person\#IDPerson "KroPet-00"; + base:person\#family_name "Kropotkin"; + base:person\#first_name "Peter"; + base:person\#gender base:Gender-male . + +base:person\/KugHel-00 a base:person; + base:person\#IDPerson "KugHel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kugelmann"; + base:person\#first_name "Helene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KurMax-3748 a base:person; + base:person\#IDPerson "KurMax-3748"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kurtz"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/L\%C3\%B3pIre-00 a base:person; + base:person\#IDPerson "LópIre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López Heredia"; + base:person\#first_name "Irene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/L\%C3\%B3pLuc-00 a base:person; + base:person\#IDPerson "LópLuc-00"; + base:person\#family_name "López"; + base:person\#first_name "Lucio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/L\%E2\%80\%99aPau-00 a base:person; + base:person\#IDPerson "L’aPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "L’Allemand"; + base:person\#first_name "Pauline"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LabFre-00 a base:person; + base:person\#IDPerson "LabFre-00"; + base:person\#family_name "Lablache"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LabLeo-00 a base:person; + base:person\#IDPerson "LabLeo-00"; + base:person\#family_name "de Laborde"; + base:person\#first_name "Léon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LabLui-00 a base:person; + base:person\#IDPerson "LabLui-00"; + base:person\#family_name "Lablache"; + base:person\#first_name "Luigi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LacAl-00 a base:person; + base:person\#IDPerson "LacAl-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lackey"; + base:person\#first_name "Al Lackey"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LacBen-00 a base:person; + base:person\#IDPerson "LacBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lacerda"; + base:person\#first_name "Benedito"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LacCle-00 a base:person; + base:person\#IDPerson "LacCle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lackey"; + base:person\#first_name "Clever"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LacMig-00 a base:person; + base:person\#IDPerson "LacMig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lacreau"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LacNar-00 a base:person; + base:person\#IDPerson "LacNar-00"; + base:person\#family_name "Laclau"; + base:person\#first_name "Narciso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LadC\%C3\%A9s-00 a base:person; + base:person\#IDPerson "LadCés-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ladeira"; + base:person\#first_name "César"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LadIgn-00 a base:person; + base:person\#IDPerson "LadIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ladurner"; + base:person\#first_name "Ignaz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LaeCar-00 a base:person; + base:person\#IDPerson "LaeCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Laemmle"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LafMau-00 a base:person; + base:person\#IDPerson "LafMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lafarge"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LamFer-00 a base:person; + base:person\#IDPerson "LamFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lamas"; + base:person\#first_name "Fernando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LamGio-00 a base:person; + base:person\#IDPerson "LamGio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lamperti"; + base:person\#first_name "Giovanni Battista Lamperti"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LamLib-00 a base:person; + base:person\#IDPerson "LamLib-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lamarque"; + base:person\#first_name "Libertad"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LanFri-00 a base:person; + base:person\#IDPerson "LanFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lang"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LanG-00 a base:person; + base:person\#IDPerson "LanG-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lanning"; + base:person\#first_name "G."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LanGus-00 a base:person; + base:person\#IDPerson "LanGus-00"; + base:person\#family_name "Landauer"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male . + +base:person\/LarJea-00 a base:person; + base:person\#IDPerson "LarJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lardinois"; + base:person\#first_name "Jean Gregoire"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LarMon-00 a base:person; + base:person\#IDPerson "LarMon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Larteur"; + base:person\#first_name "Monsieur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LasAbe-00 a base:person; + base:person\#IDPerson "LasAbe-00"; + base:person\#family_name "Lastra"; + base:person\#first_name "Abelardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LasBel-00 a base:person; + base:person\#IDPerson "LasBel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lasky"; + base:person\#first_name "Bela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LasHul-00 a base:person; + base:person\#IDPerson "LasHul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lashanska"; + base:person\#first_name "Hulda Lashanska"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LatC\%C3\%A9s-00 a base:person; + base:person\#IDPerson "LatCés-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lattes"; + base:person\#first_name "César"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LatIze-927 a base:person; + base:person\#IDPerson "LatIze-927"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Latayner"; + base:person\#first_name "Izela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LauCha-00 a base:person; + base:person\#IDPerson "LauCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Laughton"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LauFra-00 a base:person; + base:person\#IDPerson "LauFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Launder"; + base:person\#first_name "Frank"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LauHar-00 a base:person; + base:person\#IDPerson "LauHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lauder"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LauJes-00 a base:person; + base:person\#IDPerson "LauJes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Laussot"; + base:person\#first_name "Jessie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LauVic-00 a base:person; + base:person\#IDPerson "LauVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Launay"; + base:person\#first_name "Victor de Launay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LawGer-00 a base:person; + base:person\#IDPerson "LawGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lawrence"; + base:person\#first_name "Gertrude"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LawJel-00 a base:person; + base:person\#IDPerson "LawJel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lawrowskaja"; + base:person\#first_name "Jelena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Le\%C3\%A3Rit-00 a base:person; + base:person\#IDPerson "LeãRit-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leão"; + base:person\#first_name "Rita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LebWil-00 a base:person; + base:person\#IDPerson "LebWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "LeBaron"; + base:person\#first_name "Willian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LedAlp-00 a base:person; + base:person\#IDPerson "LedAlp-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leduc"; + base:person\#first_name "Alphonse"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeeAnn-00 a base:person; + base:person\#IDPerson "LeeAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lee"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LefMar-00 a base:person; + base:person\#IDPerson "LefMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leffler-Burckhard"; + base:person\#first_name "Martha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LegFat-00 a base:person; + base:person\#IDPerson "LegFat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Legrange"; + base:person\#first_name "Father"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LegMir-00 a base:person; + base:person\#IDPerson "LegMir-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Legrand"; + base:person\#first_name "Mirtha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LehFra-00 a base:person; + base:person\#IDPerson "LehFra-00"; + base:person\#family_name "Lehár"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiEli-00 a base:person; + base:person\#IDPerson "LeiEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leisinger"; + base:person\#first_name "Elisabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiEri-00 a base:person; + base:person\#IDPerson "LeiEri-00"; + base:person\#family_name "Leinsdorf"; + base:person\#first_name "Erich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiFra-00 a base:person; + base:person\#IDPerson "LeiFra-00"; + base:person\#family_name "Leigh"; + base:person\#first_name "Francis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiFri-00 a base:person; + base:person\#IDPerson "LeiFri-00"; + base:person\#family_name "Leider"; + base:person\#first_name "Frida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiLud-00 a base:person; + base:person\#IDPerson "LeiLud-00"; + base:person\#family_name "Leibinger"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeiViv-00 a base:person; + base:person\#IDPerson "LeiViv-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leigh"; + base:person\#first_name "Vivien"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LemLui-00 a base:person; + base:person\#IDPerson "LemLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lemmi"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeoFra-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/121071146"; + base:person\#IDPerson "LeoFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000083655301"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89004077"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cr6pf6"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/24797418/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1172149"; + base:person\#birthdate "1864-10-24"^^xsd:date; + base:person\#birthdate_max "1864-10-24"^^xsd:date; + base:person\#deathdate "1949-02-08"^^xsd:date; + base:person\#deathdate_max "1949-02-08"^^xsd:date; + base:person\#family_name "Leoni"; + base:person\#first_name "Franco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Franco-Leoni.png"; + base:person\#image_source "https://en.wikipedia.org/wiki/Franco_Leoni#/media/File:Franco-Leoni.png"; + base:person\#profession """Opera Composer +"""; + base:person\#ref-IDBirthPlace base:location\/IT-Mila-00; + base:person\#ref-IDDeathPlace base:location\/UK-Dov-00 . + +base:person\/LeoFri-00 a base:person; + base:person\#IDPerson "LeoFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leondhardt"; + base:person\#first_name "Friedericke"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeoGeo-00 a base:person; + base:person\#IDPerson "LeoGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leopold"; + base:person\#first_name "George Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeoRud-00 a base:person; + base:person\#IDPerson "LeoRud-00"; + base:person\#family_name "Leonhard"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LerMad-00 a base:person; + base:person\#IDPerson "LerMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leroy"; + base:person\#first_name "Madam"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LevFre-00 a base:person; + base:person\#IDPerson "LevFre-00"; + base:person\#family_name "Leveson-Gower"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LewGus-00 a base:person; + base:person\#IDPerson "LewGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Williams"; + base:person\#first_name "Gus Williams"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LewJef-00 a base:person; + base:person\#IDPerson "LewJef-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lewis"; + base:person\#first_name "Jeffreys"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LewJer-00 a base:person; + base:person\#IDPerson "LewJer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lewis"; + base:person\#first_name "Jerry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LewRic-00 a base:person; + base:person\#IDPerson "LewRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lewey"; + base:person\#first_name "Richard Lewey"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LeyAgn-00 a base:person; + base:person\#IDPerson "LeyAgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Leydhecker"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LibJac-00 a base:person; + base:person\#IDPerson "LibJac-00"; + base:person\#family_name "Libert"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LieAlb-00 a base:person; + base:person\#IDPerson "LieAlb-00"; + base:person\#family_name "Lieven"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LieRud-00 a base:person; + base:person\#IDPerson "LieRud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Liechtenstein"; + base:person\#first_name "Rudolph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lik-00 a base:person; + base:person\#IDPerson "Lik-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Likelike"; + base:person\#first_name "Princess"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lil-00 a base:person; + base:person\#IDPerson "Lil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Princess Liliuokalani"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LinNic-00 a base:person; + base:person\#IDPerson "LinNic-00"; + base:person\#family_name "Lind"; + base:person\#first_name "Niclas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LipBil-00 a base:person; + base:person\#IDPerson "LipBil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lipscomb"; + base:person\#first_name "Bill"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LisFer-00 a base:person; + base:person\#IDPerson "LisFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Liszt"; + base:person\#first_name "Ferenc Liszt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LitArc-00 a base:person; + base:person\#IDPerson "LitArc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Little"; + base:person\#first_name "Archibald John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LitFel-00 a base:person; + base:person\#IDPerson "LitFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Litvinne"; + base:person\#first_name "Felia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LitWil-00 a base:person; + base:person\#IDPerson "LitWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Little"; + base:person\#first_name "William John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LlaIgn-00 a base:person; + base:person\#IDPerson "LlaIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Llanderas"; + base:person\#first_name "Ignacio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LlaMar-00 a base:person; + base:person\#IDPerson "LlaMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Llanderas"; + base:person\#first_name "María"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LlaPil-00 a base:person; + base:person\#IDPerson "LlaPil-00"; + base:person\#family_name "Llauch"; + base:person\#first_name "Pilar"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LloEsp-00 a base:person; + base:person\#IDPerson "LloEsp-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Llopis"; + base:person\#first_name "Esperanza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LobCha-00 a base:person; + base:person\#IDPerson "LobCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lobbett"; + base:person\#first_name "Charls"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LobKon-00 a base:person; + base:person\#IDPerson "LobKon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lobojka"; + base:person\#first_name "Konstanty"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LobPri-00 a base:person; + base:person\#IDPerson "LobPri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lobanov"; + base:person\#first_name "Prince"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LocMar-00 a base:person; + base:person\#IDPerson "LocMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lockwood"; + base:person\#first_name "Margaret"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LodJoh-00 a base:person; + base:person\#IDPerson "LodJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Loder"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lof-00 a base:person; + base:person\#IDPerson "Lof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Loftus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LomHer-00 a base:person; + base:person\#IDPerson "LomHer-00"; + base:person\#family_name "Lom"; + base:person\#first_name "Herbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lon-00 a base:person; + base:person\#IDPerson "Lon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Longden"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LonCha-00 a base:person; + base:person\#IDPerson "LonCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "London"; + base:person\#first_name "Charmian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LonJ\.H-00 a base:person; + base:person\#IDPerson "LonJ.H-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Long"; + base:person\#first_name "J.H."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LonJac-00 a base:person; + base:person\#IDPerson "LonJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "London"; + base:person\#first_name "Jack"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LorDom-00 a base:person; + base:person\#IDPerson "LorDom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lorini"; + base:person\#first_name "Domenico Lorini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LorPet-00 a base:person; + base:person\#IDPerson "LorPet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lorre"; + base:person\#first_name "Peter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LorRob-00 a base:person; + base:person\#IDPerson "LorRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Loraine"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LosLin-00 a base:person; + base:person\#IDPerson "LosLin-00"; + base:person\#family_name "Lossen"; + base:person\#first_name "Lina"; + base:person\#gender base:Gender-female . + +base:person\/LouisN-00 a base:person; + base:person\#IDPerson "LouisN-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Louis "; + base:person\#first_name "N."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LozEmi-00 a base:person; + base:person\#IDPerson "LozEmi-00"; + base:person\#family_name "Lozada"; + base:person\#first_name "Emilio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaAlo-00 a base:person; + base:person\#IDPerson "LuaAlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Oliveira (Bando da Lua)"; + base:person\#first_name "Aloysio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaH\%C3\%A9l-00 a base:person; + base:person\#IDPerson "LuaHél-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jordão Pereira (Bando da Lua)"; + base:person\#first_name "Hélio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaIrm-00 a base:person; + base:person\#IDPerson "LuaIrm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ozorio (Bando da Lua)"; + base:person\#first_name "Irmãos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaIvo-00 a base:person; + base:person\#IDPerson "LuaIvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Astolfi (Bando da Lua)"; + base:person\#first_name "Ivo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaNes-00 a base:person; + base:person\#IDPerson "LuaNes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amaral (Bando da Lua)"; + base:person\#first_name "Nestor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LucEle-00 a base:person; + base:person\#IDPerson "LucEle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lucena"; + base:person\#first_name "Elena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LucRaf-00 a base:person; + base:person\#IDPerson "LucRaf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lucci"; + base:person\#first_name "Rafael "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LudNoa-00 a base:person; + base:person\#IDPerson "LudNoa-00"; + base:person\#family_name "Ludlow"; + base:person\#first_name "Noah"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ludfer-00 a base:person; + base:person\#IDPerson "Ludfer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schaeffer"; + base:person\#first_name "Ludovico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugAug-00 a base:person; + base:person\#IDPerson "LugAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugCam-00 a base:person; + base:person\#IDPerson "LugCam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Camilo José Tomás Francisco Cristóbal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugJus-00 a base:person; + base:person\#IDPerson "LugJus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Justo Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugMan-00 a base:person; + base:person\#IDPerson "LugMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Manuel Eugenio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugMar-00 a base:person; + base:person\#IDPerson "LugMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "María de la Encarnación Fortunata"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugMer-00 a base:person; + base:person\#IDPerson "LugMer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lugones"; + base:person\#first_name "Mercedes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugMer-01 a base:person; + base:person\#IDPerson "LugMer-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Mercedes Encarnación Genoveva Esparta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LugRic-00 a base:person; + base:person\#IDPerson "LugRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López de Gomara Lugones"; + base:person\#first_name "Ricardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Luiori-00 a base:person; + base:person\#IDPerson "Luiori-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Amadori"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LukShm-00 a base:person; + base:person\#IDPerson "LukShm-00"; + base:person\#family_name "Lukatsher"; + base:person\#first_name "Shmuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lun-00 a base:person; + base:person\#IDPerson "Lun-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lunalila"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuqVir-00 a base:person; + base:person\#IDPerson "LuqVir-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Luque"; + base:person\#first_name "Virginia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LurYos-3724 a base:person; + base:person\#IDPerson "LurYos-3724"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Luria"; + base:person\#first_name "Dr. Yosef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LusTit-00 a base:person; + base:person\#IDPerson "LusTit-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lusiardo"; + base:person\#first_name "Tito"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Lyt-00 a base:person; + base:person\#IDPerson "Lyt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lytton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/M\%C3\%A9aMad-00 a base:person; + base:person\#IDPerson "MéaMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Méaly"; + base:person\#first_name "Mademoiselle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/M\%C3\%BClAle-00 a base:person; + base:person\#IDPerson "MülAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Müller"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/M\%C3\%BClChr-00 a base:person; + base:person\#IDPerson "MülChr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Müller"; + base:person\#first_name "Christian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/M\%C3\%BClLeo-00 a base:person; + base:person\#IDPerson "MülLeo-00"; + base:person\#family_name "Müller"; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/M\%C3\%BClTra-00 a base:person; + base:person\#IDPerson "MülTra-00"; + base:person\#family_name "Müller"; + base:person\#first_name "Traugott"; + base:person\#gender base:Gender-male . + +base:person\/MHer-00 a base:person; + base:person\#IDPerson "MHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "M."; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mac-00 a base:person; + base:person\#IDPerson "Mac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "MacDonald"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacAng-00 a base:person; + base:person\#IDPerson "MacAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "MacPhail"; + base:person\#first_name "Angus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacCar-00 a base:person; + base:person\#IDPerson "MacCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Machado"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacCla-00 a base:person; + base:person\#IDPerson "MacCla-00"; + base:person\#family_name "Mackay"; + base:person\#first_name "Clarence"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacGis-00 a base:person; + base:person\#IDPerson "MacGis-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Machado"; + base:person\#first_name "Gisela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacM-00 a base:person; + base:person\#IDPerson "MacM-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Macfarlane"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacWil-00 a base:person; + base:person\#IDPerson "MacWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Macready"; + base:person\#first_name "William Charles Macready"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MaeFra-00 a base:person; + base:person\#IDPerson "MaeFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maeder"; + base:person\#first_name "Frank"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MaeFre-00 a base:person; + base:person\#IDPerson "MaeFre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maeder"; + base:person\#first_name "Fred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MaeGas-00 a base:person; + base:person\#IDPerson "MaeGas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maeder"; + base:person\#first_name "Gaspard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MaeJam-00 a base:person; + base:person\#IDPerson "MaeJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maeder"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mag-00 a base:person; + base:person\#IDPerson "Mag-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Magrew"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MagPas-00 a base:person; + base:person\#IDPerson "MagPas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Magno"; + base:person\#first_name "Paschoal Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MalArn-00 a base:person; + base:person\#IDPerson "MalArn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Malfatti"; + base:person\#first_name "Arnaldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MalEdu-00 a base:person; + base:person\#IDPerson "MalEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mallea"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MalHei-00 a base:person; + base:person\#IDPerson "MalHei-00"; + base:person\#family_name "von Maltzahn"; + base:person\#first_name "Baron Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MalJam-00 a base:person; + base:person\#IDPerson "MalJam-00"; + base:person\#family_name "Malmesbury"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MalLui-00 a base:person; + base:person\#IDPerson "MalLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Malpertuit"; + base:person\#first_name "Luien"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManEdd-00 a base:person; + base:person\#IDPerson "ManEdd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mannix"; + base:person\#first_name "Eddie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManJoa-00 a base:person; + base:person\#IDPerson "ManJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Manén"; + base:person\#first_name "Joan"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManJoe-00 a base:person; + base:person\#IDPerson "ManJoe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mankiewicz"; + base:person\#first_name "Joe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManJos-732 a base:person; + base:person\#IDPerson "ManJos-732"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mandelkern"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ManLou-3690 a base:person; + base:person\#IDPerson "ManLou-3690"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Manne"; + base:person\#first_name "Louie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ManLuc-00 a base:person; + base:person\#IDPerson "ManLuc-00"; + base:person\#family_name "Mansilla"; + base:person\#first_name "Lucio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManMar-00 a base:person; + base:person\#IDPerson "ManMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mannering"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManRos-00 a base:person; + base:person\#IDPerson "ManRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Manetti"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Manero-00 a base:person; + base:person\#IDPerson "Manero-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Romero"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MapHen-00 a base:person; + base:person\#IDPerson "MapHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mapleson"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarA-00 a base:person; + base:person\#IDPerson "MarA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marquis"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarAde-00 a base:person; + base:person\#IDPerson "MarAde-00"; + base:person\#family_name "Martín"; + base:person\#first_name "Adela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarAnd-00 a base:person; + base:person\#IDPerson "MarAnd-00"; + base:person\#family_name "Martínez"; + base:person\#first_name "Andrés"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarAnn-00 a base:person; + base:person\#IDPerson "MarAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maretzek"; + base:person\#first_name "Anna Maretzek"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarBer-00 a base:person; + base:person\#IDPerson "MarBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Markham"; + base:person\#first_name "Beryl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarCar-00 a base:person; + base:person\#IDPerson "MarCar-00"; + base:person\#family_name "Martín"; + base:person\#first_name "Carmelo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarChr-00 a base:person; + base:person\#IDPerson "MarChr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Martin"; + base:person\#first_name "Chris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarEli-00 a base:person; + base:person\#IDPerson "MarEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marbury"; + base:person\#first_name "Elizabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarEmi-00 a base:person; + base:person\#IDPerson "MarEmi-00"; + base:person\#family_name "Mario"; + base:person\#first_name "Emilio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarFra-00 a base:person; + base:person\#IDPerson "MarFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arellano"; + base:person\#first_name "Margot"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarGio-00 a base:person; + base:person\#IDPerson "MarGio-00"; + base:person\#family_name "Martinelli"; + base:person\#first_name "Giovanni"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarGlo-00 a base:person; + base:person\#IDPerson "MarGlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sierra"; + base:person\#first_name "Gloria Martínez"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarGre-00 a base:person; + base:person\#IDPerson "MarGre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sierra"; + base:person\#first_name "Gregorio Martínez"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarGro-00 a base:person; + base:person\#IDPerson "MarGro-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marx"; + base:person\#first_name "Groucho"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarJea-00 a base:person; + base:person\#IDPerson "MarJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Martin"; + base:person\#first_name "Jean-Blaise"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarJos-00 a base:person; + base:person\#IDPerson "MarJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Markovitz"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarMad-00 a base:person; + base:person\#IDPerson "MarMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marguerites"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarMar-00 a base:person; + base:person\#IDPerson "MarMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Martins"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarMar-01 a base:person; + base:person\#IDPerson "MarMar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maria"; + base:person\#first_name "Marylka"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarMax-01 a base:person; + base:person\#IDPerson "MarMax-01"; + base:person\#family_name "Marx"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarMax-2402 a base:person; + base:person\#IDPerson "MarMax-2402"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Marienhof"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MarMig-00 a base:person; + base:person\#IDPerson "MarMig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Martín"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarQue-00 a base:person; + base:person\#IDPerson "MarQue-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mario"; + base:person\#first_name "Queena Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarR-00 a base:person; + base:person\#IDPerson "MarR-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Martin"; + base:person\#first_name "R. Martin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarRap-00 a base:person; + base:person\#IDPerson "MarRap-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maretzek"; + base:person\#first_name "Raphael Maretzek"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarRos-00 a base:person; + base:person\#IDPerson "MarRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marini"; + base:person\#first_name "Rosa Marini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarTon-00 a base:person; + base:person\#IDPerson "MarTon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marco"; + base:person\#first_name "Tony"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarVic-00 a base:person; + base:person\#IDPerson "MarVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Margueritte"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasAug-00 a base:person; + base:person\#IDPerson "MasAug-00"; + base:person\#family_name "Masson"; + base:person\#first_name "Auguste"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasEri-00 a base:person; + base:person\#IDPerson "MasEri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maschwitz"; + base:person\#first_name "Eric"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasF-00 a base:person; + base:person\#IDPerson "MasF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Masini"; + base:person\#first_name "F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasFri-00 a base:person; + base:person\#IDPerson "MasFri-00"; + base:person\#family_name "Massary"; + base:person\#first_name "Fritzi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasJoh-00 a base:person; + base:person\#IDPerson "MasJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mason"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasRay-00 a base:person; + base:person\#IDPerson "MasRay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Massey"; + base:person\#first_name "Raymond"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MatCha-00 a base:person; + base:person\#IDPerson "MatCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mathews"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MatMar-00 a base:person; + base:person\#IDPerson "MatMar-00"; + base:person\#family_name "Matzenauer"; + base:person\#first_name "Margarete"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MatMs\.-00 a base:person; + base:person\#IDPerson "MatMs.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mathews"; + base:person\#first_name "Ms."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MauGeo-00 a base:person; + base:person\#IDPerson "MauGeo-00"; + base:person\#family_name "von Maurer"; + base:person\#first_name "Georg"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MauJea-00 a base:person; + base:person\#IDPerson "MauJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maubourg"; + base:person\#first_name "Jeanne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MaxJoh-00 a base:person; + base:person\#IDPerson "MaxJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maxwell"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayAla-00 a base:person; + base:person\#IDPerson "MayAla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "May"; + base:person\#first_name "Alan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayBen-00 a base:person; + base:person\#IDPerson "MayBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mayr"; + base:person\#first_name "Benedikt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayEug-00 a base:person; + base:person\#IDPerson "MayEug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mayer"; + base:person\#first_name "Eugenie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayLou-00 a base:person; + base:person\#IDPerson "MayLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mayer"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayMan-00 a base:person; + base:person\#IDPerson "MayMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mayol"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayMar-00 a base:person; + base:person\#IDPerson "MayMar-00"; + base:person\#family_name "Maya"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MayRob-00 a base:person; + base:person\#IDPerson "MayRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Maywood"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MazAlf-00 a base:person; + base:person\#IDPerson "MazAlf-00"; + base:person\#family_name "Maza"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MazEnr-00 a base:person; + base:person\#IDPerson "MazEnr-00"; + base:person\#family_name "Mazza"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/McaJoy-00 a base:person; + base:person\#IDPerson "McaJoy-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "McArden"; + base:person\#first_name "Joy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/McmG-00 a base:person; + base:person\#IDPerson "McmG-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mcminis"; + base:person\#first_name "G.R."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeaGeo-00 a base:person; + base:person\#IDPerson "MeaGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meader"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeaHar-00 a base:person; + base:person\#IDPerson "MeaHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mear"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Meck-00 a base:person; + base:person\#IDPerson "Meck-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mecklenburg"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeiLou-00 a base:person; + base:person\#IDPerson "MeiLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meisslinger"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MelGeo-00 a base:person; + base:person\#IDPerson "MelGeo-00"; + base:person\#family_name "Meller"; + base:person\#first_name "Georges"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MelLau-00 a base:person; + base:person\#IDPerson "MelLau-00"; + base:person\#family_name "Melchior"; + base:person\#first_name "Lauritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Men-00 a base:person; + base:person\#IDPerson "Men-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mendel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MenEle-00 a base:person; + base:person\#IDPerson "MenEle-00"; + base:person\#family_name "Mendelssohn"; + base:person\#first_name "Eleonore"; + base:person\#gender base:Gender-female . + +base:person\/MenEul-00 a base:person; + base:person\#IDPerson "MenEul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mendizábal"; + base:person\#first_name "Eulalia Mendizábal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MenLon-00 a base:person; + base:person\#IDPerson "MenLon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mendes"; + base:person\#first_name "Lontine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MenLot-00 a base:person; + base:person\#IDPerson "MenLot-00"; + base:person\#family_name "Mendes"; + base:person\#first_name "Lothar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MenWil-00 a base:person; + base:person\#IDPerson "MenWil-00"; + base:person\#family_name "Mengelberg"; + base:person\#first_name "Willem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MerCec-00 a base:person; + base:person\#IDPerson "MerCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Merguillier"; + base:person\#first_name "Cecile"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MerFra-00 a base:person; + base:person\#IDPerson "MerFra-00"; + base:person\#family_name "Méry"; + base:person\#first_name "François"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MerRos-00 a base:person; + base:person\#IDPerson "MerRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Méryss"; + base:person\#first_name "Rose"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MerTit-00 a base:person; + base:person\#IDPerson "MerTit-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Merello"; + base:person\#first_name "Tita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MesCus-00 a base:person; + base:person\#IDPerson "MesCus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mesquita"; + base:person\#first_name "Custódio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MesHen-00 a base:person; + base:person\#IDPerson "MesHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mesquita"; + base:person\#first_name "Henrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MetJoh-00 a base:person; + base:person\#IDPerson "MetJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Methua"; + base:person\#first_name "John Guido"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyCor-00 a base:person; + base:person\#IDPerson "MeyCor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meysenheim"; + base:person\#first_name "Cornelie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyS\%C3\%A8b-00 a base:person; + base:person\#IDPerson "MeySèb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meysenberg"; + base:person\#first_name "Sèbastien"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MicSim-00 a base:person; + base:person\#IDPerson "MicSim-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Michou"; + base:person\#first_name "Simone Anna Ader"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MigLeo-00 a base:person; + base:person\#IDPerson "MigLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miguéz"; + base:person\#first_name "Leopoldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilAgn-00 a base:person; + base:person\#IDPerson "MilAgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mille"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilHen-00 a base:person; + base:person\#IDPerson "MilHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miller"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilLlu-00 a base:person; + base:person\#IDPerson "MilLlu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Millet"; + base:person\#first_name "Lluís"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilNik-00 a base:person; + base:person\#IDPerson "MilNik-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miloslavsky"; + base:person\#first_name "Nikolay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilRay-00 a base:person; + base:person\#IDPerson "MilRay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Milland"; + base:person\#first_name "Ray"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MinMar-00 a base:person; + base:person\#IDPerson "MinMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Minter"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MioMar-00 a base:person; + base:person\#IDPerson "MioMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mioland-Carvalho"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MirAur-00 a base:person; + base:person\#IDPerson "MirAur-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miranda"; + base:person\#first_name "Aurora"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MirMar-00 a base:person; + base:person\#IDPerson "MirMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miranda"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MitAar-2495 a base:person; + base:person\#IDPerson "MitAar-2495"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mittelman"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MitWil-00 a base:person; + base:person\#IDPerson "MitWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mitchell"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MocFra-00 a base:person; + base:person\#IDPerson "MocFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mocho"; + base:person\#first_name "Fray"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ModMar-00 a base:person; + base:person\#IDPerson "ModMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Modjeska"; + base:person\#first_name "Marylka"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ModRud-00 a base:person; + base:person\#IDPerson "ModRud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Modrzejewski"; + base:person\#first_name "Rudolph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MoiAle-00 a base:person; + base:person\#IDPerson "MoiAle-00"; + base:person\#family_name "Moissi"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MolAmy-00 a base:person; + base:person\#IDPerson "MolAmy-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mollison"; + base:person\#first_name "Amy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MolJim-00 a base:person; + base:person\#IDPerson "MolJim-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mollison"; + base:person\#first_name "Jim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonIgn-00 a base:person; + base:person\#IDPerson "MonIgn-00"; + base:person\#family_name "Moncada"; + base:person\#first_name "Ignacio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonIvo-00 a base:person; + base:person\#IDPerson "MonIvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montagu"; + base:person\#first_name "Ivor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonJoa-00 a base:person; + base:person\#IDPerson "MonJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montero"; + base:person\#first_name "Joaquín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonMad-00 a base:person; + base:person\#IDPerson "MonMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montbazon"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonMad-01 a base:person; + base:person\#IDPerson "MonMad-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montrouge"; + base:person\#first_name "Madame"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonMar-00 a base:person; + base:person\#IDPerson "MonMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montebello"; + base:person\#first_name "Marquis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonMon-00 a base:person; + base:person\#IDPerson "MonMon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montrouge"; + base:person\#first_name "Monsieur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MonRic-00 a base:person; + base:person\#IDPerson "MonRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montalban"; + base:person\#first_name "Ricardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mor-00 a base:person; + base:person\#IDPerson "Mor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morrison"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mor-01 a base:person; + base:person\#IDPerson "Mor-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morse"; + base:person\#first_name "Captain"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorAar-3747 a base:person; + base:person\#IDPerson "MorAar-3747"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Morgenbasser"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MorCar-00 a base:person; + base:person\#IDPerson "MorCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morganti"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorCla-00 a base:person; + base:person\#IDPerson "MorCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morris"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorGen-00 a base:person; + base:person\#IDPerson "MorGen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morris"; + base:person\#first_name "General"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorIda-00 a base:person; + base:person\#IDPerson "MorIda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morin"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorMic-00 a base:person; + base:person\#IDPerson "MorMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morgen"; + base:person\#first_name "Michèle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorPau-00 a base:person; + base:person\#IDPerson "MorPau-00"; + base:person\#family_name "Morgan"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male . + +base:person\/MorRos-00 a base:person; + base:person\#IDPerson "MorRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moreno"; + base:person\#first_name "Rosita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorSav-00 a base:person; + base:person\#IDPerson "MorSav-00"; + base:person\#family_name "Morton"; + base:person\#first_name "Savile"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorVin-00 a base:person; + base:person\#IDPerson "MorVin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Moraes"; + base:person\#first_name "Vinicius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mos-00 a base:person; + base:person\#IDPerson "Mos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mosenthal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MosCol-00 a base:person; + base:person\#IDPerson "MosCol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mosely"; + base:person\#first_name "Colonel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MosWil-00 a base:person; + base:person\#IDPerson "MosWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moscherosch"; + base:person\#first_name "Wilhem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MotVia-00 a base:person; + base:person\#IDPerson "MotVia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mota"; + base:person\#first_name "Viana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MouD\%C3\%A9c-00 a base:person; + base:person\#IDPerson "MouDéc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moura"; + base:person\#first_name "Décio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MouJan-00 a base:person; + base:person\#IDPerson "MouJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mount"; + base:person\#first_name "Jane Mount"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mow-00 a base:person; + base:person\#IDPerson "Mow-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mowbary"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MowAla-00 a base:person; + base:person\#IDPerson "MowAla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mowbray"; + base:person\#first_name "Alan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MowMor-00 a base:person; + base:person\#IDPerson "MowMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morris"; + base:person\#first_name "Mowbry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MoyWLL-00 a base:person; + base:person\#IDPerson "MoyWLL-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moyne"; + base:person\#first_name "W.L.Le"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MraHol-00 a base:person; + base:person\#IDPerson "MraHol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Holwill"; + base:person\#first_name "Mra."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Mu\%C3\%B1Pep-00 a base:person; + base:person\#IDPerson "MuñPep-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Muñoz"; + base:person\#first_name "Pepita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MucSer-00 a base:person; + base:person\#IDPerson "MucSer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Muchanow"; + base:person\#first_name "Sergiusz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MulMar-00 a base:person; + base:person\#IDPerson "MulMar-00"; + base:person\#family_name "Müller"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MumJoh-00 a base:person; + base:person\#IDPerson "MumJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mumford"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MurIlm-00 a base:person; + base:person\#IDPerson "MurIlm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Murska"; + base:person\#first_name "Ilma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MurJam-00 a base:person; + base:person\#IDPerson "MurJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Murdoch"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MurJoh-00 a base:person; + base:person\#IDPerson "MurJoh-00"; + base:person\#family_name "Murray"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MurP-00 a base:person; + base:person\#IDPerson "MurP-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Murray"; + base:person\#first_name "P. F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MusOsc-00 a base:person; + base:person\#IDPerson "MusOsc-00"; + base:person\#family_name "von Mussinan"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MuxPer-00 a base:person; + base:person\#IDPerson "MuxPer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mux"; + base:person\#first_name "Perla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MuzEma-00 a base:person; + base:person\#IDPerson "MuzEma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Muzio"; + base:person\#first_name "Emanuele Muzio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MycWal-00 a base:person; + base:person\#IDPerson "MycWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mycroft"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/N\.PNPW-00 a base:person; + base:person\#IDPerson "N.PNPW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "N.P.Willis"; + base:person\#first_name "N.P.Willis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NakM-3687 a base:person; + base:person\#IDPerson "NakM-3687"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Nakhamkus"; + base:person\#first_name "M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/NapAle-00 a base:person; + base:person\#IDPerson "NapAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Napoleão"; + base:person\#first_name "Alexandre"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NapAlf-00 a base:person; + base:person\#IDPerson "NapAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Napoleão"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NapAnn-00 a base:person; + base:person\#IDPerson "NapAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Napoleão"; + base:person\#first_name "Annibal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NapBar-00 a base:person; + base:person\#IDPerson "NapBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Naples"; + base:person\#first_name "Barbaja in Naples"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NatDor-00 a base:person; + base:person\#IDPerson "NatDor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nathan"; + base:person\#first_name "Dora"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NatRob-00 a base:person; + base:person\#IDPerson "NatRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nathan"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NavFan-00 a base:person; + base:person\#IDPerson "NavFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Navarro"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NeiMic-00 a base:person; + base:person\#IDPerson "NeiMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Neill"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NelBar-00 a base:person; + base:person\#IDPerson "NelBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nelson"; + base:person\#first_name "Barry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NelWil-00 a base:person; + base:person\#IDPerson "NelWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nelson"; + base:person\#first_name "William Rushton Nelson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NepAlb-00 a base:person; + base:person\#IDPerson "NepAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nepomuceno"; + base:person\#first_name "Alberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NerEst-00 a base:person; + base:person\#IDPerson "NerEst-00"; + base:person\#family_name "Neroslavska"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NetArc-00 a base:person; + base:person\#IDPerson "NetArc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nettlefold"; + base:person\#first_name "Archibald"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NeuIgn-00 a base:person; + base:person\#IDPerson "NeuIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Neufeld"; + base:person\#first_name "Ignacy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NeuYet-00 a base:person; + base:person\#IDPerson "NeuYet-00"; + base:person\#family_name "Neumann"; + base:person\#first_name "Yet"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NevMar-00 a base:person; + base:person\#IDPerson "NevMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "das Neves"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NewDen-00 a base:person; + base:person\#IDPerson "NewDen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Newton"; + base:person\#first_name "Denbigh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NewHer-00 a base:person; + base:person\#IDPerson "NewHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Newmark"; + base:person\#first_name "Herbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NewPau-00 a base:person; + base:person\#IDPerson "NewPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Newman"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NewRic-00 a base:person; + base:person\#IDPerson "NewRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Newcombe"; + base:person\#first_name "Richard S. Newcombe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NewW-00 a base:person; + base:person\#IDPerson "NewW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Newton"; + base:person\#first_name "W."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicDud-00 a base:person; + base:person\#IDPerson "NicDud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nichols"; + base:person\#first_name "Dudley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicFan-00 a base:person; + base:person\#IDPerson "NicFan-00"; + base:person\#family_name "Nicolls"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicFri-00 a base:person; + base:person\#IDPerson "NicFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nicolai"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicJas-00 a base:person; + base:person\#IDPerson "NicJas-00"; + base:person\#family_name "Nicolls"; + base:person\#first_name "Jasper"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicOtt-00 a base:person; + base:person\#IDPerson "NicOtt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nicolai"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NicSel-00 a base:person; + base:person\#IDPerson "NicSel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nicklass-Kempner"; + base:person\#first_name "Selma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NieCar-00 a base:person; + base:person\#IDPerson "NieCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Novo de Niemeyer"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NieFri-00 a base:person; + base:person\#IDPerson "NieFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nietzsche"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NivDav-00 a base:person; + base:person\#IDPerson "NivDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Niven"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NoeLou-00 a base:person; + base:person\#IDPerson "NoeLou-00"; + base:person\#family_name "Noetel"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NoePhi-00 a base:person; + base:person\#IDPerson "NoePhi-00"; + base:person\#family_name "Noetel"; + base:person\#first_name "Philipp"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NogMat-00 a base:person; + base:person\#IDPerson "NogMat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nogueiras"; + base:person\#first_name "Mathilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NouAdo-00 a base:person; + base:person\#IDPerson "NouAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nourrit"; + base:person\#first_name "Adolphe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NovErm-00 a base:person; + base:person\#IDPerson "NovErm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Novelli"; + base:person\#first_name "Ermette"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NovFau-00 a base:person; + base:person\#IDPerson "NovFau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Novaes"; + base:person\#first_name "Faustino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NovIvo-00 a base:person; + base:person\#IDPerson "NovIvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Novello"; + base:person\#first_name "Ivor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NugEll-00 a base:person; + base:person\#IDPerson "NugEll-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nugent"; + base:person\#first_name "Elliott"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NumAlf-00 a base:person; + base:person\#IDPerson "NumAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Numese"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NunJo\%C3\%A3-00 a base:person; + base:person\#IDPerson "NunJoã-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nunes"; + base:person\#first_name "João"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NusFri-00 a base:person; + base:person\#IDPerson "NusFri-00"; + base:person\#family_name "Nußbammer"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ObeMer-00 a base:person; + base:person\#IDPerson "ObeMer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Oberon"; + base:person\#first_name "Merle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ObeSop-2587 a base:person; + base:person\#IDPerson "ObeSop-2587"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Oberlander"; + base:person\#first_name "Sophia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ObrPac-00 a base:person; + base:person\#IDPerson "ObrPac-00"; + base:person\#family_name "Obregón"; + base:person\#first_name "Paco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OcaCar-00 a base:person; + base:person\#IDPerson "OcaCar-00"; + base:person\#family_name "Ocaña"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OcaVic-00 a base:person; + base:person\#IDPerson "OcaVic-00"; + base:person\#family_name "Ocampo"; + base:person\#first_name "Victoria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OgdDor-00 a base:person; + base:person\#IDPerson "OgdDor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ogden"; + base:person\#first_name "Dorcy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OliJos-00 a base:person; + base:person\#IDPerson "OliJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Oliveira"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OliLau-00 a base:person; + base:person\#IDPerson "OliLau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Olivier"; + base:person\#first_name "Laurence"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OlmSab-00 a base:person; + base:person\#IDPerson "OlmSab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Olmos"; + base:person\#first_name "Sabina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OndAnn-00 a base:person; + base:person\#IDPerson "OndAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ondra"; + base:person\#first_name "Anny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OneJam-00 a base:person; + base:person\#IDPerson "OneJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "O’Neil"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OpiAdo-00 a base:person; + base:person\#IDPerson "OpiAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Opid"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrgAgl-00 a base:person; + base:person\#IDPerson "OrgAgl-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Orgeni"; + base:person\#first_name "Aglaja"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrgDan-00 a base:person; + base:person\#IDPerson "OrgDan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Orgolini"; + base:person\#first_name "Dante"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrlQue-00 a base:person; + base:person\#IDPerson "OrlQue-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Orleans"; + base:person\#first_name "Queen Amelia of Orleans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrtBar-00 a base:person; + base:person\#IDPerson "OrtBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ortega"; + base:person\#first_name "Barão"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrtDol-00 a base:person; + base:person\#IDPerson "OrtDol-00"; + base:person\#family_name "Ortega"; + base:person\#first_name "Dolores"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrtFra-00 a base:person; + base:person\#IDPerson "OrtFra-00"; + base:person\#family_name "Ortega"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OrtMec-00 a base:person; + base:person\#IDPerson "OrtMec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ortiz"; + base:person\#first_name "Mecha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OscGus-00 a base:person; + base:person\#IDPerson "OscGus-00"; + base:person\#family_name "Oscar"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OstIsi-00 a base:person; + base:person\#IDPerson "OstIsi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ostrer"; + base:person\#first_name "Isidore"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OstMau-00 a base:person; + base:person\#IDPerson "OstMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ostrer"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OthGra-00 a base:person; + base:person\#IDPerson "OthGra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Othelo"; + base:person\#first_name "Grande"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OttThe-00 a base:person; + base:person\#IDPerson "OttThe-00"; + base:person\#family_name "Otto"; + base:person\#first_name "Theologe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OweJoh-00 a base:person; + base:person\#IDPerson "OweJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Owens"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OxcJoh-00 a base:person; + base:person\#IDPerson "OxcJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Oxcenford"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/P\%C3\%A9rBen-00 a base:person; + base:person\#IDPerson "PérBen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pérez Galdós"; + base:person\#first_name "Benito"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/P\%C3\%A9rRog-00 a base:person; + base:person\#IDPerson "PérRog-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pérez"; + base:person\#first_name "Rogelio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Paa-00 a base:person; + base:person\#IDPerson "Paa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Paalen"; + base:person\#first_name "Bella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PacFel-00 a base:person; + base:person\#IDPerson "PacFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pacini"; + base:person\#first_name "Felicia Quintero de Pacini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PacJoa-00 a base:person; + base:person\#IDPerson "PacJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pacheco"; + base:person\#first_name "Joaquim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PacPie-00 a base:person; + base:person\#IDPerson "PacPie-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pacini"; + base:person\#first_name "Pietro Pacini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadFau-00 a base:person; + base:person\#IDPerson "PadFau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "Fausto Padín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadIgn-00 a base:person; + base:person\#IDPerson "PadIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Paderewski"; + base:person\#first_name "Ignacy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadJul-00 a base:person; + base:person\#IDPerson "PadJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "Julio Padín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadMan-01 a base:person; + base:person\#IDPerson "PadMan-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "Manuel Padín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadMar-00 a base:person; + base:person\#IDPerson "PadMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montagney Artôt de Pa"; + base:person\#first_name "Marguerite-Josephine-Désirée"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadMar-01 a base:person; + base:person\#IDPerson "PadMar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "María"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadMar-02 a base:person; + base:person\#IDPerson "PadMar-02"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "Margarita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadMar-03 a base:person; + base:person\#IDPerson "PadMar-03"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Padín"; + base:person\#first_name "Mariana Aída"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadPil-00 a base:person; + base:person\#IDPerson "PadPil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Padín"; + base:person\#first_name "Pilar Padín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PadVic-00 a base:person; + base:person\#IDPerson "PadVic-00"; + base:person\#family_name "Padula"; + base:person\#first_name "Vicente"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalA-00 a base:person; + base:person\#IDPerson "PalA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Palmer"; + base:person\#first_name "A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalAlf-00 a base:person; + base:person\#IDPerson "PalAlf-00"; + base:person\#family_name "Palacios"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalHer-00 a base:person; + base:person\#IDPerson "PalHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pallme"; + base:person\#first_name "Herrman A.J. Pallme"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalMax-00 a base:person; + base:person\#IDPerson "PalMax-00"; + base:person\#family_name "Pallenberg"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PanEtt-00 a base:person; + base:person\#IDPerson "PanEtt-00"; + base:person\#family_name "Panizza"; + base:person\#first_name "Ettore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PanHer-00 a base:person; + base:person\#IDPerson "PanHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pan"; + base:person\#first_name "Hermes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PanMon-00 a base:person; + base:person\#IDPerson "PanMon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pancelet"; + base:person\#first_name "Monsieur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PanSan-00 a base:person; + base:person\#IDPerson "PanSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Panzas"; + base:person\#first_name "Sancho Panzas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Pap\%C5\%81uc-00 a base:person; + base:person\#IDPerson "PapŁuc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Paprowski"; + base:person\#first_name "Łucjan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PapAug-00 a base:person; + base:person\#IDPerson "PapAug-00"; + base:person\#family_name "Papon"; + base:person\#first_name "Auguste"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PapRos-00 a base:person; + base:person\#IDPerson "PapRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Papier"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Par-00 a base:person; + base:person\#IDPerson "Par-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Paradossi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParCar-00 a base:person; + base:person\#IDPerson "ParCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parravicini"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParDor-00 a base:person; + base:person\#IDPerson "ParDor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parker"; + base:person\#first_name "Dorothy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParH-00 a base:person; + base:person\#IDPerson "ParH-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parmeiee"; + base:person\#first_name "H.A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParJoh-00 a base:person; + base:person\#IDPerson "ParJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parry"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParMar-00 a base:person; + base:person\#IDPerson "ParMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parpagnoli"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParTer-00 a base:person; + base:person\#IDPerson "ParTer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parodi"; + base:person\#first_name "Teresa Parodi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParWil-00 a base:person; + base:person\#IDPerson "ParWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parkinson"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PasArt-00 a base:person; + base:person\#IDPerson "PasArt-00"; + base:person\#family_name "Pastor"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PasCom-00 a base:person; + base:person\#IDPerson "PasCom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pasha"; + base:person\#first_name "Cominos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PasJoe-00 a base:person; + base:person\#IDPerson "PasJoe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pasternak"; + base:person\#first_name "Joe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PasTeo-00 a base:person; + base:person\#IDPerson "PasTeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pastor"; + base:person\#first_name "Teodoro de las Llanderas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PatGra-00 a base:person; + base:person\#IDPerson "PatGra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pattison"; + base:person\#first_name "Granville S. Pattison"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PatSal-00 a base:person; + base:person\#IDPerson "PatSal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Patti"; + base:person\#first_name "Salvatore Patti"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PauMar-00 a base:person; + base:person\#IDPerson "PauMar-00"; + base:person\#family_name "Paudler"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PauTat-00 a base:person; + base:person\#IDPerson "PauTat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Paulova"; + base:person\#first_name "Tatiana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PavTat-00 a base:person; + base:person\#IDPerson "PavTat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pavlova"; + base:person\#first_name "Tatiana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PayJoh-00 a base:person; + base:person\#IDPerson "PayJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Payne"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PayRob-00 a base:person; + base:person\#IDPerson "PayRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Payró"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PayThe-00 a base:person; + base:person\#IDPerson "PayThe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Payne"; + base:person\#first_name "Theodore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeaGeo-00 a base:person; + base:person\#IDPerson "PeaGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pearson"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PecHan-00 a base:person; + base:person\#IDPerson "PecHan-00"; + base:person\#family_name "Pechmann"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Pedcci-00 a base:person; + base:person\#IDPerson "Pedcci-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quartucci"; + base:person\#first_name "Pedro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeeRob-00 a base:person; + base:person\#IDPerson "PeeRob-00"; + base:person\#family_name "Peel"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeiCau-00 a base:person; + base:person\#IDPerson "PeiCau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peixoto"; + base:person\#first_name "Cauby"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeiEli-00 a base:person; + base:person\#IDPerson "PeiEli-00"; + base:person\#family_name "Peißner"; + base:person\#first_name "Elias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeiLui-00 a base:person; + base:person\#IDPerson "PeiLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peixoto"; + base:person\#first_name "Luiz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PenAlc-00 a base:person; + base:person\#IDPerson "PenAlc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Penna"; + base:person\#first_name "Alceu"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PenAlo-00 a base:person; + base:person\#IDPerson "PenAlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pennarini"; + base:person\#first_name "Aloys"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PesAle-00 a base:person; + base:person\#IDPerson "PesAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peshkov"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PesFeo-00 a base:person; + base:person\#IDPerson "PesFeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peshkov"; + base:person\#first_name "Feodor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PesSer-00 a base:person; + base:person\#IDPerson "PesSer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peschko"; + base:person\#first_name "Sergej"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PetEle-00 a base:person; + base:person\#IDPerson "PetEle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Petrelli"; + base:person\#first_name "Eleanor"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PetIvo-00 a base:person; + base:person\#IDPerson "PetIvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Petray"; + base:person\#first_name "Ivo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PeuJac-00 a base:person; + base:person\#IDPerson "PeuJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peuser"; + base:person\#first_name "Jacobo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PezCay-00 a base:person; + base:person\#IDPerson "PezCay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pezzi"; + base:person\#first_name "Cayetano"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PhiAde-00 a base:person; + base:person\#IDPerson "PhiAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Phillips"; + base:person\#first_name "Adelaide Phillips"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PhiGeo-00 a base:person; + base:person\#IDPerson "PhiGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Phillip"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PhiMar-00 a base:person; + base:person\#IDPerson "PhiMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Philippi"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PicPab-00 a base:person; + base:person\#IDPerson "PicPab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Picasso"; + base:person\#first_name "Pablo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PicPed-00 a base:person; + base:person\#IDPerson "PicPed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pico"; + base:person\#first_name "Pedro E."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PinCha-00 a base:person; + base:person\#IDPerson "PinCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pinheiro"; + base:person\#first_name "Chaby"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PinJos-00 a base:person; + base:person\#IDPerson "PinJos-00"; + base:person\#family_name "Pinsa"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PinRos-00 a base:person; + base:person\#IDPerson "PinRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pino"; + base:person\#first_name "Rosario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PinWal-00 a base:person; + base:person\#IDPerson "PinWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pinheiro"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PiqCat-00 a base:person; + base:person\#IDPerson "PiqCat-00"; + base:person\#family_name "Piquemal"; + base:person\#first_name "Catherine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PisErw-00 a base:person; + base:person\#IDPerson "PisErw-00"; + base:person\#family_name "Piscator"; + base:person\#first_name "Erwin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaAnt-00 a base:person; + base:person\#IDPerson "PlaAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Plana"; + base:person\#first_name "Antonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaChr-00 a base:person; + base:person\#IDPerson "PlaChr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Planer"; + base:person\#first_name "Christine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaPol-00 a base:person; + base:person\#IDPerson "PlaPol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Plançon"; + base:person\#first_name "Pol"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaRos-00 a base:person; + base:person\#IDPerson "PlaRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de la Plata"; + base:person\#first_name "Rosita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PlaTho-00 a base:person; + base:person\#IDPerson "PlaTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Placide"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PodArt-00 a base:person; + base:person\#IDPerson "PodArt-00"; + base:person\#family_name "Podestá"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PolMan-00 a base:person; + base:person\#IDPerson "PolMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Poli"; + base:person\#first_name "Manolita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PomEri-00 a base:person; + base:person\#IDPerson "PomEri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pommer"; + base:person\#first_name "Erich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PonA-00 a base:person; + base:person\#IDPerson "PonA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ponchielli"; + base:person\#first_name "A"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PonAn\%C3\%AD-00 a base:person; + base:person\#IDPerson "PonAní-00"; + base:person\#family_name "Ponce"; + base:person\#first_name "Aníbal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PonJoh-00 a base:person; + base:person\#IDPerson "PonJoh-00"; + base:person\#family_name "Ponsonby"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PorJav-00 a base:person; + base:person\#IDPerson "PorJav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Portales"; + base:person\#first_name "Javier"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PotLid-2690 a base:person; + base:person\#IDPerson "PotLid-2690"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Pototska"; + base:person\#first_name "Lidia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PowTyr-00 a base:person; + base:person\#IDPerson "PowTyr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Power"; + base:person\#first_name "Tyrone"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PozJ\.\+-3657 a base:person; + base:person\#IDPerson "PozJ. -3657"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Poznansky"; + base:person\#first_name "J. K."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PreEug-00 a base:person; + base:person\#IDPerson "PreEug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Presbrey"; + base:person\#first_name "Eugene Wiley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PreSer-00 a base:person; + base:person\#IDPerson "PreSer-00"; + base:person\#family_name "Preti"; + base:person\#first_name "Servilia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PriCar-00 a base:person; + base:person\#IDPerson "PriCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pringle"; + base:person\#first_name "Carrie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PugRau-00 a base:person; + base:person\#IDPerson "PugRau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pugno"; + base:person\#first_name "Raul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PykLou-00 a base:person; + base:person\#IDPerson "PykLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pyk"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PynJam-00 a base:person; + base:person\#IDPerson "PynJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pyne"; + base:person\#first_name "James Kendrick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QueIsa-00 a base:person; + base:person\#IDPerson "QueIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Queen of Spain Isabella II"; + base:person\#first_name "Isabella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QuiFer-00 a base:person; + base:person\#IDPerson "QuiFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quijano"; + base:person\#first_name "Fernando"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QuiH\%C3\%A9c-00 a base:person; + base:person\#IDPerson "QuiHéc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quiroga"; + base:person\#first_name "Héctor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QuiHor-00 a base:person; + base:person\#IDPerson "QuiHor-00"; + base:person\#family_name "Quiroga"; + base:person\#first_name "Horacio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RacMan-00 a base:person; + base:person\#IDPerson "RacMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rachi"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RadAma-00 a base:person; + base:person\#IDPerson "RadAma-00"; + base:person\#family_name "Radberg"; + base:person\#first_name "Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RadLui-00 a base:person; + base:person\#IDPerson "RadLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Radecke"; + base:person\#first_name "Luise"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RaeCat-00 a base:person; + base:person\#IDPerson "RaeCat-00"; + base:person\#family_name "Rae"; + base:person\#first_name "Catherine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RaeWil-00 a base:person; + base:person\#IDPerson "RaeWil-00"; + base:person\#family_name "Rae"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafAgu-00 a base:person; + base:person\#IDPerson "RafAgu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Agustina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafAng-00 a base:person; + base:person\#IDPerson "RafAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Ángel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafAnt-00 a base:person; + base:person\#IDPerson "RafAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafAug-00 a base:person; + base:person\#IDPerson "RafAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rafael"; + base:person\#first_name "Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafJua-00 a base:person; + base:person\#IDPerson "RafJua-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Juana Victoria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafLui-00 a base:person; + base:person\#IDPerson "RafLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Luisa Josefa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafMag-00 a base:person; + base:person\#IDPerson "RafMag-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Magdalena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafMar-00 a base:person; + base:person\#IDPerson "RafMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Margarita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RafRos-00 a base:person; + base:person\#IDPerson "RafRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raffetto"; + base:person\#first_name "Luisa Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RaiCla-00 a base:person; + base:person\#IDPerson "RaiCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rains"; + base:person\#first_name "Claude"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RaiMae-00 a base:person; + base:person\#IDPerson "RaiMae-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Raimondi "; + base:person\#first_name "Maestro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RamJos-00 a base:person; + base:person\#IDPerson "RamJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ramírez"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RanArt-00 a base:person; + base:person\#IDPerson "RanArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rank"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RapLau-00 a base:person; + base:person\#IDPerson "RapLau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rappoldi"; + base:person\#first_name "Laura"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RapLis-2735 a base:person; + base:person\#IDPerson "RapLis-2735"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rappel"; + base:person\#first_name "Lisa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RapWin-00 a base:person; + base:person\#IDPerson "RapWin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rapacki"; + base:person\#first_name "Wincenty"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RatBas-00 a base:person; + base:person\#IDPerson "RatBas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rathbone"; + base:person\#first_name "Basil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RatCes-00 a base:person; + base:person\#IDPerson "RatCes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ratti"; + base:person\#first_name "César"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RatPep-00 a base:person; + base:person\#IDPerson "RatPep-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ratti"; + base:person\#first_name "Pepe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RazJos-00 a base:person; + base:person\#IDPerson "RazJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Razzano"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReaCha-00 a base:person; + base:person\#IDPerson "ReaCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reade"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Reb-00 a base:person; + base:person\#IDPerson "Reb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rebecca"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RebAnd-00 a base:person; + base:person\#IDPerson "RebAnd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rebouças"; + base:person\#first_name "André"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReeMrs-00 a base:person; + base:person\#IDPerson "ReeMrs-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reed"; + base:person\#first_name "Mrs.German"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReeRol-00 a base:person; + base:person\#IDPerson "ReeRol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reed"; + base:person\#first_name "Roland Reed"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReeTho-00 a base:person; + base:person\#IDPerson "ReeTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reed"; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RehArt-00 a base:person; + base:person\#IDPerson "RehArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rehan"; + base:person\#first_name "Arthut"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiAnt-00 a base:person; + base:person\#IDPerson "ReiAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reicha"; + base:person\#first_name "Anton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiCar-00 a base:person; + base:person\#IDPerson "ReiCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reinecke"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiEma-3490 a base:person; + base:person\#IDPerson "ReiEma-3490"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Reicher"; + base:person\#first_name "Emanuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ReiHug-00 a base:person; + base:person\#IDPerson "ReiHug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reinhold"; + base:person\#first_name "Hugo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiLui-00 a base:person; + base:person\#IDPerson "ReiLui-00"; + base:person\#family_name "Reissig"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReiRac-00 a base:person; + base:person\#IDPerson "ReiRac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reingold"; + base:person\#first_name "Rachel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RetJan-00 a base:person; + base:person\#IDPerson "RetJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Retallick"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReuAug-00 a base:person; + base:person\#IDPerson "ReuAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Reuss"; + base:person\#first_name "Augusta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReuHei-00 a base:person; + base:person\#IDPerson "ReuHei-00"; + base:person\#family_name "von Reuß-Lobenstein-Ebersdorf"; + base:person\#first_name "Prince Heinrich LXXII."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReyCar-00 a base:person; + base:person\#IDPerson "ReyCar-00"; + base:person\#family_name "Reyes"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ReyLui-00 a base:person; + base:person\#IDPerson "ReyLui-00"; + base:person\#family_name "Reynoso"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicJay-00 a base:person; + base:person\#IDPerson "RicJay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rice"; + base:person\#first_name "Jay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicMr\.-00 a base:person; + base:person\#IDPerson "RicMr.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rice"; + base:person\#first_name "Mr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicPet-00 a base:person; + base:person\#IDPerson "RicPet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Richings"; + base:person\#first_name "Peter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicWil-00 a base:person; + base:person\#IDPerson "RicWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rice"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RidEli-00 a base:person; + base:person\#IDPerson "RidEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Riddle"; + base:person\#first_name "Eliza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RieHug-00 a base:person; + base:person\#IDPerson "RieHug-00"; + base:person\#family_name "Riesenfeld"; + base:person\#first_name "Hugo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RieJul-00 a base:person; + base:person\#IDPerson "RieJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rietz"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RieKar-00 a base:person; + base:person\#IDPerson "RieKar-00"; + base:person\#family_name "Riedel"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RilBet-00 a base:person; + base:person\#IDPerson "RilBet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Riley"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RipAnt-00 a base:person; + base:person\#IDPerson "RipAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ripa"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RisRob-00 a base:person; + base:person\#IDPerson "RisRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Riskin"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RitJul-00 a base:person; + base:person\#IDPerson "RitJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ritter"; + base:person\#first_name "Julie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RitKar-00 a base:person; + base:person\#IDPerson "RitKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ritter"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RivCip-00 a base:person; + base:person\#IDPerson "RivCip-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rivas Chérif"; + base:person\#first_name "Cipriano"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RivDie-00 a base:person; + base:person\#IDPerson "RivDie-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rivera"; + base:person\#first_name "Diego"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RivN\%2FA-00 a base:person; + base:person\#IDPerson "RivN/A-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rivera"; + base:person\#first_name "N/A"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RoaAma-00 a base:person; + base:person\#IDPerson "RoaAma-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vives Roig"; + base:person\#first_name "Amadeu"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Rob-00 a base:person; + base:person\#IDPerson "Rob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Robin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobAgn-00 a base:person; + base:person\#IDPerson "RobAgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Robertson"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobBru-00 a base:person; + base:person\#IDPerson "RobBru-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roberts"; + base:person\#first_name "Bruce"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobEug-00 a base:person; + base:person\#IDPerson "RobEug-00"; + base:person\#family_name "Robert"; + base:person\#first_name "Eugen"; + base:person\#gender base:Gender-male . + +base:person\/RobJua-00 a base:person; + base:person\#IDPerson "RobJua-00"; + base:person\#family_name "Robles"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobMay-00 a base:person; + base:person\#IDPerson "RobMay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Robson"; + base:person\#first_name "May"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobPau-00 a base:person; + base:person\#IDPerson "RobPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Robeson"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobSue-00 a base:person; + base:person\#IDPerson "RobSue-00"; + base:person\#family_name "Robinson"; + base:person\#first_name "Sue"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RobWil-00 a base:person; + base:person\#IDPerson "RobWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Robinson"; + base:person\#first_name "William E. (Chung Ling Soo)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RodEdu-00 a base:person; + base:person\#IDPerson "RodEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rodrigues"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RoeEli-00 a base:person; + base:person\#IDPerson "RoeEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roediger"; + base:person\#first_name "Elisabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RoeGus-00 a base:person; + base:person\#IDPerson "RoeGus-00"; + base:person\#family_name "Roethe"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RogCha-00 a base:person; + base:person\#IDPerson "RogCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rogers"; + base:person\#first_name "Charles T."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RohJor-00 a base:person; + base:person\#IDPerson "RohJor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rohde"; + base:person\#first_name "Jorge"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RokVik-00 a base:person; + base:person\#IDPerson "RokVik-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rokitansky"; + base:person\#first_name "Viktor Rokitansky"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RolJoa-00 a base:person; + base:person\#IDPerson "RolJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rolla"; + base:person\#first_name "Joaquim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RolWol-00 a base:person; + base:person\#IDPerson "RolWol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rolland"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Rom-00 a base:person; + base:person\#IDPerson "Rom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Romilly"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RomC\%C3\%A9s-00 a base:person; + base:person\#IDPerson "RomCés-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Romero"; + base:person\#first_name "César"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RomFra-00 a base:person; + base:person\#IDPerson "RomFra-00"; + base:person\#family_name "Romero"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RomFre-00 a base:person; + base:person\#IDPerson "RomFre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Romilly"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RonFel-00 a base:person; + base:person\#IDPerson "RonFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ronconi"; + base:person\#first_name "Felice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RonGio-00 a base:person; + base:person\#IDPerson "RonGio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ronconi"; + base:person\#first_name "Giorgio Ronconi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RooThi-00 a base:person; + base:person\#IDPerson "RooThi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roorda"; + base:person\#first_name "Thies"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosAba-3749 a base:person; + base:person\#IDPerson "RosAba-3749"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosenzweig"; + base:person\#first_name "Aba"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosBil-00 a base:person; + base:person\#IDPerson "RosBil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rose"; + base:person\#first_name "Billie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosCar-00 a base:person; + base:person\#IDPerson "RosCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosa"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosCha-00 a base:person; + base:person\#IDPerson "RosCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ross"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosJoh-00 a base:person; + base:person\#IDPerson "RosJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosine"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosMax-878 a base:person; + base:person\#IDPerson "RosMax-878"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rosenthal"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RosNoe-00 a base:person; + base:person\#IDPerson "RosNoe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosa"; + base:person\#first_name "Noel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosTom-00 a base:person; + base:person\#IDPerson "RosTom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rose"; + base:person\#first_name "Tomy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosYak-00 a base:person; + base:person\#IDPerson "RosYak-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosenfeld"; + base:person\#first_name "Yakov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RotHan-00 a base:person; + base:person\#IDPerson "RotHan-00"; + base:person\#family_name "Rothe"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RotSil-00 a base:person; + base:person\#IDPerson "RotSil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roth"; + base:person\#first_name "Silvana"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Rou-00 a base:person; + base:person\#IDPerson "Rou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rousby"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RozTor-3700 a base:person; + base:person\#IDPerson "RozTor-3700"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Roza"; + base:person\#first_name "Torklad"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RubAnt-00 a base:person; + base:person\#IDPerson "RubAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rubinstein"; + base:person\#first_name "Anton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RubArt-00 a base:person; + base:person\#IDPerson "RubArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rubinstein"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RudMme-00 a base:person; + base:person\#IDPerson "RudMme-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rudensdorff"; + base:person\#first_name "Mme."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RuiPep-00 a base:person; + base:person\#IDPerson "RuiPep-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ruiz"; + base:person\#first_name "Pepa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RulTit-00 a base:person; + base:person\#IDPerson "RulTit-00"; + base:person\#family_name "Rulfo"; + base:person\#first_name "Titta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RumJos-916 a base:person; + base:person\#IDPerson "RumJos-916"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Rumshinsky"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/RusIsa-00 a base:person; + base:person\#IDPerson "RusIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rush"; + base:person\#first_name "Isadore Rush"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RusJos-00 a base:person; + base:person\#IDPerson "RusJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Russell"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RusSan-00 a base:person; + base:person\#IDPerson "RusSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rusiñol"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RusTom-00 a base:person; + base:person\#IDPerson "RusTom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Russel"; + base:person\#first_name "Tommy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/S\%C3\%A1Ber-00 a base:person; + base:person\#IDPerson "SáBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sá"; + base:person\#first_name "Bernardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/S\%C3\%A1nFlo-00 a base:person; + base:person\#IDPerson "SánFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sánchez"; + base:person\#first_name "Florencio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SacJos-00 a base:person; + base:person\#IDPerson "SacJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sacks"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SaeRoq-00 a base:person; + base:person\#IDPerson "SaeRoq-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saenz Peña "; + base:person\#first_name "Roque"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SagRob-00 a base:person; + base:person\#IDPerson "SagRob-00"; + base:person\#family_name "Saghini"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SahHei-00 a base:person; + base:person\#IDPerson "SahHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Sahr"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SaiCam-00 a base:person; + base:person\#IDPerson "SaiCam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saint-Saëns"; + base:person\#first_name "Camille"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SalHei-00 a base:person; + base:person\#IDPerson "SalHei-00"; + base:person\#family_name "Salfner"; + base:person\#first_name "Heinz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SalMaf-00 a base:person; + base:person\#IDPerson "SalMaf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Salvatini"; + base:person\#first_name "Mafalda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SamFra-00 a base:person; + base:person\#IDPerson "SamFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sampaio"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SamG\.b-00 a base:person; + base:person\#IDPerson "SamG.b-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Samuelson"; + base:person\#first_name "G.B"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SamMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/13485411X"; + base:person\#IDPerson "SamMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000118277372"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no92006160"; + base:person\#VIAF "https://viaf.org/viaf/88077692"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q426361"; + base:person\#birthdate "1868-12-13"^^xsd:date; + base:person\#birthdate_max "1868-12-13"^^xsd:date; + base:person\#deathdate "1930-01-24"^^xsd:date; + base:person\#deathdate_max "1930-01-24"^^xsd:date; + base:person\#family_name "Sammarco"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Bariton"; + base:person\#ref-IDBirthPlace base:location\/IT-Sici-00; + base:person\#ref-IDDeathPlace base:location\/IT-Mila-00 . + +base:person\/SamMor-00 a base:person; + base:person\#IDPerson "SamMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sampaio"; + base:person\#first_name "Moreira "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanEle-00 a base:person; + base:person\#IDPerson "SanEle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sanz"; + base:person\#first_name "Elena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanGeo-00 a base:person; + base:person\#IDPerson "SanGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sand"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanIsm-00 a base:person; + base:person\#IDPerson "SanIsm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "dos Santos"; + base:person\#first_name "Isménia "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanJac-880 a base:person; + base:person\#IDPerson "SanJac-880"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Sandler"; + base:person\#first_name "Jacob Koppel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SanJam-00 a base:person; + base:person\#IDPerson "SanJam-00"; + base:person\#family_name "Sanders"; + base:person\#first_name "James B."; + base:person\#gender base:Gender-male . + +base:person\/SanJul-00 a base:person; + base:person\#IDPerson "SanJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sánchez Gardel"; + base:person\#first_name "Julio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanLui-00 a base:person; + base:person\#IDPerson "SanLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sandrini"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanNur-00 a base:person; + base:person\#IDPerson "SanNur-00"; + base:person\#family_name "Santacana"; + base:person\#first_name "Nuri"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanRos-00 a base:person; + base:person\#IDPerson "SanRos-00"; + base:person\#family_name "Santacana"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanSib-00 a base:person; + base:person\#IDPerson "SanSib-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sanderson"; + base:person\#first_name "Sibyl"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanW\%C5\%82a-00 a base:person; + base:person\#IDPerson "SanWła-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sanguszko"; + base:person\#first_name "Władysław"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SarAng-00 a base:person; + base:person\#IDPerson "SarAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saracco"; + base:person\#first_name "Angel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SarDom-00 a base:person; + base:person\#IDPerson "SarDom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sarmiento"; + base:person\#first_name "Domingo Faustino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SarHar-00 a base:person; + base:person\#IDPerson "SarHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sargent"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SavAnt-00 a base:person; + base:person\#IDPerson "SavAnt-00"; + base:person\#family_name "Savé"; + base:person\#first_name "Antonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SavFra-00 a base:person; + base:person\#IDPerson "SavFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saville"; + base:person\#first_name "Frances"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SavVic-00 a base:person; + base:person\#IDPerson "SavVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saville"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScaAde-00 a base:person; + base:person\#IDPerson "ScaAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scarsez"; + base:person\#first_name "Adele"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScaPie-00 a base:person; + base:person\#IDPerson "ScaPie-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scarsez"; + base:person\#first_name "Pierre"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Sch-01 a base:person; + base:person\#IDPerson "Sch-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scharland"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchAma-00 a base:person; + base:person\#IDPerson "SchAma-00"; + base:person\#family_name "Schreiner"; + base:person\#first_name "Amalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchAme-00 a base:person; + base:person\#IDPerson "SchAme-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schmautz-Schütky"; + base:person\#first_name "Amelie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchAns-2854 a base:person; + base:person\#IDPerson "SchAns-2854"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schorr"; + base:person\#first_name "Anshel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchArt-00 a base:person; + base:person\#IDPerson "SchArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schopenhauers"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchArt-01 a base:person; + base:person\#IDPerson "SchArt-01"; + base:person\#family_name "Schnitzler"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchAug-00 a base:person; + base:person\#IDPerson "SchAug-00"; + base:person\#family_name "Schreiner"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchCar-00 a base:person; + base:person\#IDPerson "SchCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schaefer Gallo"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchDr\.-00 a base:person; + base:person\#IDPerson "SchDr.-00"; + base:person\#family_name "Schmieden"; + base:person\#first_name "Dr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchFra-01 a base:person; + base:person\#IDPerson "SchFra-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schmidt"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchFra-02 a base:person; + base:person\#IDPerson "SchFra-02"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schott"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchFri-00 a base:person; + base:person\#IDPerson "SchFri-00"; + base:person\#family_name "Schayer"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchFri-01 a base:person; + base:person\#IDPerson "SchFri-01"; + base:person\#family_name "Schorr"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchHan-00 a base:person; + base:person\#IDPerson "SchHan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schmidt"; + base:person\#first_name "Hans "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchHer-00 a base:person; + base:person\#IDPerson "SchHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schumann"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchJos-00 a base:person; + base:person\#IDPerson "SchJos-00"; + base:person\#family_name "Schildkraus"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchJul-00 a base:person; + base:person\#IDPerson "SchJul-00"; + base:person\#family_name "von Schwandt"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchLou-2852 a base:person; + base:person\#IDPerson "SchLou-2852"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schnitzer"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchMar-00 a base:person; + base:person\#IDPerson "SchMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schröder-Hanfstaengl"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchMau-2863 a base:person; + base:person\#IDPerson "SchMau-2863"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schwartz"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchMon-3744 a base:person; + base:person\#IDPerson "SchMon-3744"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Schoengold"; + base:person\#first_name "Montshikl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SchMos-00 a base:person; + base:person\#IDPerson "SchMos-00"; + base:person\#family_name "Schorr"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchRei-00 a base:person; + base:person\#IDPerson "SchRei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schünzel"; + base:person\#first_name "Reinhold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchSig-00 a base:person; + base:person\#IDPerson "SchSig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schira"; + base:person\#first_name "Signor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScoAle-00 a base:person; + base:person\#IDPerson "ScoAle-00"; + base:person\#family_name "Scotti"; + base:person\#first_name "Alejandro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScoBtr-00 a base:person; + base:person\#IDPerson "ScoBtr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scott"; + base:person\#first_name "Btrs."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScoC\.-00 a base:person; + base:person\#IDPerson "ScoC.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scott"; + base:person\#first_name "C."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScoJos-00 a base:person; + base:person\#IDPerson "ScoJos-00"; + base:person\#family_name "Scoville"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ScoM-00 a base:person; + base:person\#IDPerson "ScoM-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Scott"; + base:person\#first_name "M.M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SebDav-00 a base:person; + base:person\#IDPerson "SebDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sebastian"; + base:person\#first_name "Dave"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SecAnt-00 a base:person; + base:person\#IDPerson "SecAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Secchi"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SeeGer-00 a base:person; + base:person\#IDPerson "SeeGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Seeger"; + base:person\#first_name "Gertrud"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SefJoh-00 a base:person; + base:person\#IDPerson "SefJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sefton"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Seg\%C3\%81ng-00 a base:person; + base:person\#IDPerson "SegÁng-00"; + base:person\#family_name "Segura"; + base:person\#first_name "Ángel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SelDav-00 a base:person; + base:person\#IDPerson "SelDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Selznick"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SelMyr-00 a base:person; + base:person\#IDPerson "SelMyr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Selznick"; + base:person\#first_name "Myron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SemGot-00 a base:person; + base:person\#IDPerson "SemGot-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Semper"; + base:person\#first_name "Gottfried"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SemJoh-00 a base:person; + base:person\#IDPerson "SemJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sembach"; + base:person\#first_name "Johannes "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerDag-00 a base:person; + base:person\#IDPerson "SerDag-00"; + base:person\#family_name "Servaes"; + base:person\#first_name "Dagny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerEst-00 a base:person; + base:person\#IDPerson "SerEst-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Serrador"; + base:person\#first_name "Esteban"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerTul-00 a base:person; + base:person\#IDPerson "SerTul-00"; + base:person\#family_name "Serafin"; + base:person\#first_name "Tulio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerVer-00 a base:person; + base:person\#IDPerson "SerVer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sergine"; + base:person\#first_name "Vera"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SeyIgn-00 a base:person; + base:person\#IDPerson "SeyIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Seyfried"; + base:person\#first_name "Ignaz von Seyfried"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShaEff-00 a base:person; + base:person\#IDPerson "ShaEff-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Shannon"; + base:person\#first_name "Effie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShaTed-00 a base:person; + base:person\#IDPerson "ShaTed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Shapiro"; + base:person\#first_name "Ted"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SheJan-00 a base:person; + base:person\#IDPerson "SheJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sherriff"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SheRob-00 a base:person; + base:person\#IDPerson "SheRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sherwood"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShoAba-00 a base:person; + base:person\#IDPerson "ShoAba-00"; + base:person\#family_name "Shoengold"; + base:person\#first_name "Aba"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShoBen-2939 a base:person; + base:person\#IDPerson "ShoBen-2939"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Shoengold"; + base:person\#first_name "Benny"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SidPhi-00 a base:person; + base:person\#IDPerson "SidPhi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sidney"; + base:person\#first_name "Philip"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SidSyl-00 a base:person; + base:person\#IDPerson "SidSyl-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sidney"; + base:person\#first_name "Sylvia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SieHen-00 a base:person; + base:person\#IDPerson "SieHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sienkiewicz"; + base:person\#first_name "Henryk"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SieMar-00 a base:person; + base:person\#IDPerson "SieMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Siems"; + base:person\#first_name "Margarethe"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SilGul-00 a base:person; + base:person\#IDPerson "SilGul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "da Silveira"; + base:person\#first_name "Gulherme"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SilJos-00 a base:person; + base:person\#IDPerson "SilJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "López Silva"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SilSyn-00 a base:person; + base:person\#IDPerson "SilSyn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Silva"; + base:person\#first_name "Synval"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Sim-00 a base:person; + base:person\#IDPerson "Sim-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simmonson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimEdm-00 a base:person; + base:person\#IDPerson "SimEdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simpson"; + base:person\#first_name "Edmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimEdw-00 a base:person; + base:person\#IDPerson "SimEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simpson"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimFri-00 a base:person; + base:person\#IDPerson "SimFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simrock"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimJam-00 a base:person; + base:person\#IDPerson "SimJam-00"; + base:person\#family_name "Simmonds"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimMor-720 a base:person; + base:person\#IDPerson "SimMor-720"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/simonoff-moshe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1489."""; + base:person\#birthdate "1859-05-01"^^xsd:date; + base:person\#birthdate_max "1859-05-31"^^xsd:date; + base:person\#family_name "Simonoff"; + base:person\#first_name "Morris"; + base:person\#fuzzybirthdate "May 1859"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-simonoff-moshe.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/S/simonoff-moshe.htm"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-58; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/Sim_2979 a base:person; + base:person\#IDPerson "Sim_2979"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/simon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1484."""; + base:person\#first_name "Simon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/SinAbe-2985 a base:person; + base:person\#IDPerson "SinAbe-2985"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/sincoff-abe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1494."""; + base:person\#VIAF "https://viaf.org/en/viaf/15158259326702301841"; + base:person\#Wikipedia "https://de.m.wikipedia.org/wiki/Datei:Rumanian-khasene.jpg"; + base:person\#birthdate "1885-01-01"^^xsd:date; + base:person\#birthdate_max "1885-12-31"^^xsd:date; + base:person\#family_name "Sincoff"; + base:person\#first_name "Abe"; + base:person\#fuzzybirthdate "1885"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-sincoff-abraham.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/S/sincoff-abe.htm "; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#religion "Jewish" . + +base:person\/SinJoh-00 a base:person; + base:person\#IDPerson "SinJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sinclair"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SkeGeo-00 a base:person; + base:person\#IDPerson "SkeGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Skerrett"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmaEdw-00 a base:person; + base:person\#IDPerson "SmaEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Small"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmaRau-00 a base:person; + base:person\#IDPerson "SmaRau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smandek"; + base:person\#first_name "Raul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiA-00 a base:person; + base:person\#IDPerson "SmiA-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "A.L."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiAde-00 a base:person; + base:person\#IDPerson "SmiAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Adele Smith (born Owles; stage name Adele Dewey)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiAub-00 a base:person; + base:person\#IDPerson "SmiAub-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Aubrey"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiCha-00 a base:person; + base:person\#IDPerson "SmiCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiFra-00 a base:person; + base:person\#IDPerson "SmiFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Frazer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiMam-00 a base:person; + base:person\#IDPerson "SmiMam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Mamie Smith"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SmiSol-00 a base:person; + base:person\#IDPerson "SmiSol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Smith"; + base:person\#first_name "Sol"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SniLeo-3003 a base:person; + base:person\#IDPerson "SniLeo-3003"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#family_name "Sniegoff"; + base:person\#first_name "Leonid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SobFlo-00 a base:person; + base:person\#IDPerson "SobFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sobieniowski"; + base:person\#first_name "Florian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Sol-00 a base:person; + base:person\#IDPerson "Sol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Solomon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SonHen-00 a base:person; + base:person\#IDPerson "SonHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sontag"; + base:person\#first_name "Henriette Sontag"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SorC\%C3\%A9c-00 a base:person; + base:person\#IDPerson "SorCéc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sorel"; + base:person\#first_name "Cécile"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SorEze-00 a base:person; + base:person\#IDPerson "SorEze-00"; + base:person\#family_name "Soria"; + base:person\#first_name "Ezequiel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouAnt-00 a base:person; + base:person\#IDPerson "SouAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Souza"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouAra-00 a base:person; + base:person\#IDPerson "SouAra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Southesk"; + base:person\#first_name "Arabella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouGab-00 a base:person; + base:person\#IDPerson "SouGab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Soulacroix"; + base:person\#first_name "Gabriel-Valentin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouGil-00 a base:person; + base:person\#IDPerson "SouGil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Souto"; + base:person\#first_name "Gilberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouJoa-00 a base:person; + base:person\#IDPerson "SouJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Souza"; + base:person\#first_name "Joaquim Augusto Ribeiro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SouPer-00 a base:person; + base:person\#IDPerson "SouPer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Souza"; + base:person\#first_name "Pereira"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SpoHil-00 a base:person; + base:person\#IDPerson "SpoHil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Spong"; + base:person\#first_name "Hilda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StaAde-00 a base:person; + base:person\#IDPerson "StaAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stanhope"; + base:person\#first_name "Adelina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StaGis-00 a base:person; + base:person\#IDPerson "StaGis-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Staudigl"; + base:person\#first_name "Gisela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StaGuy-00 a base:person; + base:person\#IDPerson "StaGuy-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Standing"; + base:person\#first_name "Guy"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StaIrv-00 a base:person; + base:person\#IDPerson "StaIrv-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Starr"; + base:person\#first_name "Irving"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StaLau-00 a base:person; + base:person\#IDPerson "StaLau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stallings"; + base:person\#first_name "Laurence"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ste-00 a base:person; + base:person\#IDPerson "Ste-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Steward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteAnt-00 a base:person; + base:person\#IDPerson "SteAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sterling"; + base:person\#first_name "Antoinette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteCar-00 a base:person; + base:person\#IDPerson "SteCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Steinmann-Lampe"; + base:person\#first_name "Caroline"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteCar-01 a base:person; + base:person\#IDPerson "SteCar-01"; + base:person\#family_name "Steinheim"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male . + +base:person\/SteCec-00 a base:person; + base:person\#IDPerson "SteCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Steiner"; + base:person\#first_name "Cecília"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteHan-00 a base:person; + base:person\#IDPerson "SteHan-00"; + base:person\#family_name "Sternberg"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteHno-00 a base:person; + base:person\#IDPerson "SteHno-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stevanovich"; + base:person\#first_name "Hnos."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteMr\.-00 a base:person; + base:person\#IDPerson "SteMr.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stevenson"; + base:person\#first_name "Mr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteMrs-00 a base:person; + base:person\#IDPerson "SteMrs-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stephens"; + base:person\#first_name "Mrs."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteRob-00 a base:person; + base:person\#IDPerson "SteRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stevenson"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteSpe-00 a base:person; + base:person\#IDPerson "SteSpe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Steavenson"; + base:person\#first_name "Speaker"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteWil-01 a base:person; + base:person\#IDPerson "SteWil-01"; + base:person\#family_name "Stewart"; + base:person\#first_name "William Morris "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StiEdw-00 a base:person; + base:person\#IDPerson "StiEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stirling"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StiGio-00 a base:person; + base:person\#IDPerson "StiGio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stigelli"; + base:person\#first_name "Giorgio Stigelli"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StiMax-00 a base:person; + base:person\#IDPerson "StiMax-00"; + base:person\#family_name "Stirner"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male . + +base:person\/Sto-00 a base:person; + base:person\#IDPerson "Sto-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stout "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StoRob-00 a base:person; + base:person\#IDPerson "StoRob-00"; + base:person\#family_name "Stolz"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male . + +base:person\/StoSte-00 a base:person; + base:person\#IDPerson "StoSte-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stocker"; + base:person\#first_name "Stefan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Str-00 a base:person; + base:person\#IDPerson "Str-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Streich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StrAgn-00 a base:person; + base:person\#IDPerson "StrAgn-00"; + base:person\#family_name "Straub"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StrIgo-00 a base:person; + base:person\#IDPerson "StrIgo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stravinsky"; + base:person\#first_name "Igor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StrOsc-00 a base:person; + base:person\#IDPerson "StrOsc-00"; + base:person\#family_name "Straus"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male . + +base:person\/StuFra-01 a base:person; + base:person\#IDPerson "StuFra-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stucken"; + base:person\#first_name "Frank van der Stucken"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StuJoh-00 a base:person; + base:person\#IDPerson "StuJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sturges"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SulLud-00 a base:person; + base:person\#IDPerson "SulLud-00"; + base:person\#family_name "Sulkowski"; + base:person\#first_name "Prince Ludwig Johann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SusEnr-00 a base:person; + base:person\#IDPerson "SusEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Susini"; + base:person\#first_name "Enrique T."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SwaH\.-00 a base:person; + base:person\#IDPerson "SwaH.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Swanson"; + base:person\#first_name "H."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SwiMrs-00 a base:person; + base:person\#IDPerson "SwiMrs-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Swinbourne"; + base:person\#first_name "Mrs."; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SypJul-00 a base:person; + base:person\#IDPerson "SypJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sypniewski"; + base:person\#first_name "Julian"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SzyJ\%C3\%B3z-00 a base:person; + base:person\#IDPerson "SzyJóz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Szymon"; + base:person\#first_name "Józef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TanHei-00 a base:person; + base:person\#IDPerson "TanHei-00"; + base:person\#family_name "von der Tann"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TasAle-00 a base:person; + base:person\#IDPerson "TasAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taskin"; + base:person\#first_name "Alexandre"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TasLui-00 a base:person; + base:person\#IDPerson "TasLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tasso"; + base:person\#first_name "Luisa "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TasVal-00 a base:person; + base:person\#IDPerson "TasVal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tassier"; + base:person\#first_name "Valentine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TauCur-00 a base:person; + base:person\#IDPerson "TauCur-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taucher"; + base:person\#first_name "Curt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TauHar-00 a base:person; + base:person\#IDPerson "TauHar-00"; + base:person\#family_name "Taubmann"; + base:person\#first_name "Harold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TauJos-3698 a base:person; + base:person\#IDPerson "TauJos-3698"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Taubers"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TauVis-00 a base:person; + base:person\#IDPerson "TauVis-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taunay"; + base:person\#first_name "Visconde"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TavAfo-00 a base:person; + base:person\#IDPerson "TavAfo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taveira"; + base:person\#first_name "Afonso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TayDou-00 a base:person; + base:person\#IDPerson "TayDou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taylor"; + base:person\#first_name "Douglas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TayMar-00 a base:person; + base:person\#IDPerson "TayMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taylor"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TayTom-00 a base:person; + base:person\#IDPerson "TayTom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taylor"; + base:person\#first_name "Tom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TemFay-00 a base:person; + base:person\#IDPerson "TemFay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Templeton"; + base:person\#first_name "Fay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TemJoh-00 a base:person; + base:person\#IDPerson "TemJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Templeton"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TerAnt-00 a base:person; + base:person\#IDPerson "TerAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Terry"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TesAng-00 a base:person; + base:person\#IDPerson "TesAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tesada"; + base:person\#first_name "Ángela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThaHea-00 a base:person; + base:person\#IDPerson "ThaHea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thatcher"; + base:person\#first_name "Heather"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/The-00 a base:person; + base:person\#IDPerson "The-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Theodore"; + base:person\#first_name "Theodore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TheLou-00 a base:person; + base:person\#IDPerson "TheLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thern"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThiBer-00 a base:person; + base:person\#IDPerson "ThiBer-00"; + base:person\#family_name "Thierry"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoBes-770 a base:person; + base:person\#IDPerson "ThoBes-770"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Thomashefsky"; + base:person\#first_name "Bessie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ThoCha-00 a base:person; + base:person\#IDPerson "ThoCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thorne"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoHen-00 a base:person; + base:person\#IDPerson "ThoHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thoreau"; + base:person\#first_name "Henry David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoThe-00 a base:person; + base:person\#IDPerson "ThoThe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thomas"; + base:person\#first_name "Theodore Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThuEmm-00 a base:person; + base:person\#IDPerson "ThuEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thursby"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TicHow-00 a base:person; + base:person\#IDPerson "TicHow-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ticknor"; + base:person\#first_name "Howard Malcom"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TitMor-3077 a base:person; + base:person\#IDPerson "TitMor-3077"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Titelman"; + base:person\#first_name "Mordechai-Chaim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TolNeo-00 a base:person; + base:person\#IDPerson "TolNeo-00"; + base:person\#family_name "Tolstoj"; + base:person\#first_name "Leo Nikolajewitsch"; + base:person\#gender base:Gender-male . + +base:person\/TomBla-00 a base:person; + base:person\#IDPerson "TomBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tomlin"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TorFra-00 a base:person; + base:person\#IDPerson "TorFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Torrens"; + base:person\#first_name "Francisco Marty y Torrens"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TorMad-00 a base:person; + base:person\#IDPerson "TorMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tordeus"; + base:person\#first_name "Mademoseille"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TosArt-00 a base:person; + base:person\#IDPerson "TosArt-00"; + base:person\#family_name "Toscanini"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TraGeo-00 a base:person; + base:person\#IDPerson "TraGeo-00"; + base:person\#family_name "Trafford Heald"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TraSop-00 a base:person; + base:person\#IDPerson "TraSop-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Traubmann"; + base:person\#first_name "Sophie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TreCon-00 a base:person; + base:person\#IDPerson "TreCon-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Treue"; + base:person\#first_name "Consul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TreHer-00 a base:person; + base:person\#IDPerson "TreHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tree"; + base:person\#first_name "Herbert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TsuMin-3112 a base:person; + base:person\#IDPerson "TsuMin-3112"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tsukerman"; + base:person\#first_name "Mindl"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TucLou-00 a base:person; + base:person\#IDPerson "TucLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tuck"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TulJea-00 a base:person; + base:person\#IDPerson "TulJea-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Tulou"; + base:person\#first_name "Jean-Louis"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TurSer-00 a base:person; + base:person\#IDPerson "TurSer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Turgenew"; + base:person\#first_name "Sergej"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/UllBer-00 a base:person; + base:person\#IDPerson "UllBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ullmann)"; + base:person\#first_name "Bernardo Ullmann (Bernard Ullmann)"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/UniEdw-00 a base:person; + base:person\#IDPerson "UniEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Unitt"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/UrbGeo-00 a base:person; + base:person\#IDPerson "UrbGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Urban"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/UrlJac-00 a base:person; + base:person\#IDPerson "UrlJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Urlus"; + base:person\#first_name "Jacques"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/UtrMau-00 a base:person; + base:person\#IDPerson "UtrMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Utrillo"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VKam-00 a base:person; + base:person\#IDPerson "VKam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "V"; + base:person\#first_name "Kamehameha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VagRam-00 a base:person; + base:person\#IDPerson "VagRam-00"; + base:person\#family_name "Vagné"; + base:person\#first_name "Ramón"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ValEdu-00 a base:person; + base:person\#IDPerson "ValEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Valladares"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VanEli-00 a base:person; + base:person\#IDPerson "VanEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vanda"; + base:person\#first_name "Elina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Vas-00 a base:person; + base:person\#IDPerson "Vas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#first_name "Vasques "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VasLeo-00 a base:person; + base:person\#IDPerson "VasLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vasseur"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VazMod-00 a base:person; + base:person\#IDPerson "VazMod-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vázquez"; + base:person\#first_name "Modesto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VehLui-01 a base:person; + base:person\#IDPerson "VehLui-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vehil"; + base:person\#first_name "Luisa"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VelMil-00 a base:person; + base:person\#IDPerson "VelMil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vela"; + base:person\#first_name "Milani"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerAlc-00 a base:person; + base:person\#IDPerson "VerAlc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vermelho"; + base:person\#first_name "Alcyr"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerDr-00 a base:person; + base:person\#IDPerson "VerDr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Veron"; + base:person\#first_name "Dr. Veron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerFra-00 a base:person; + base:person\#IDPerson "VerFra-00"; + base:person\#family_name "Verding"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerGeo-00 a base:person; + base:person\#IDPerson "VerGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vernon"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerGiu-00 a base:person; + base:person\#IDPerson "VerGiu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Verdi"; + base:person\#first_name "Giuseppe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VerJan-00 a base:person; + base:person\#IDPerson "VerJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vernon"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ViaLou-00 a base:person; + base:person\#IDPerson "ViaLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Viardot"; + base:person\#first_name "Louis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VicAnt-00 a base:person; + base:person\#IDPerson "VicAnt-00"; + base:person\#family_name "Vico"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VicEdu-00 a base:person; + base:person\#IDPerson "VicEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Victorino"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VidBla-00 a base:person; + base:person\#IDPerson "VidBla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vidal"; + base:person\#first_name "Blanca"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Vil-00 a base:person; + base:person\#IDPerson "Vil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vila"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VilErn-00 a base:person; + base:person\#IDPerson "VilErn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vilches"; + base:person\#first_name "Ernesto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VilFra-00 a base:person; + base:person\#IDPerson "VilFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Villegas"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VilJos-00 a base:person; + base:person\#IDPerson "VilJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Villar"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VinBet-3187 a base:person; + base:person\#IDPerson "VinBet-3187"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vinovits"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VinZor-3746 a base:person; + base:person\#IDPerson "VinZor-3746"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Vinovitsh"; + base:person\#first_name "Zorakh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/VivAnt-00 a base:person; + base:person\#IDPerson "VivAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vives"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WSol-00 a base:person; + base:person\#IDPerson "WSol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "W."; + base:person\#first_name "Solomon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WacJos-733 a base:person; + base:person\#IDPerson "WacJos-733"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wachtel"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WagAlb-00 a base:person; + base:person\#IDPerson "WagAlb-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wagner"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WagCar-00 a base:person; + base:person\#IDPerson "WagCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wagner"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WagCos-00 a base:person; + base:person\#IDPerson "WagCos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wagner"; + base:person\#first_name "Cosima"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WahCar-00 a base:person; + base:person\#IDPerson "WahCar-00"; + base:person\#family_name "Wahl"; + base:person\#first_name "Carolina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalBru-00 a base:person; + base:person\#IDPerson "WalBru-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Walter"; + base:person\#first_name "Bruno"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalCar-00 a base:person; + base:person\#IDPerson "WalCar-00"; + base:person\#family_name "Wallauer"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male . + +base:person\/WalCha-00 a base:person; + base:person\#IDPerson "WalCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Walcott"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalCla-00 a base:person; + base:person\#IDPerson "WalCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Walters"; + base:person\#first_name "Clara Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalEst-3203 a base:person; + base:person\#IDPerson "WalEst-3203"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Wallerstein"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WalHar-00 a base:person; + base:person\#IDPerson "WalHar-00"; + base:person\#family_name "Walden"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male . + +base:person\/WalHen-00 a base:person; + base:person\#IDPerson "WalHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Waldschmidt"; + base:person\#first_name "Henriette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalJam-00 a base:person; + base:person\#IDPerson "WalJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wallack"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalKar-00 a base:person; + base:person\#IDPerson "WalKar-00"; + base:person\#family_name "Walsers"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalLes-00 a base:person; + base:person\#IDPerson "WalLes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wallack"; + base:person\#first_name "Lester"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalR-00 a base:person; + base:person\#IDPerson "WalR-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Walcot"; + base:person\#first_name "R. B."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WanWal-00 a base:person; + base:person\#IDPerson "WanWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wanger"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarArt-00 a base:person; + base:person\#IDPerson "WarArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ward"; + base:person\#first_name "Artemus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarCha-00 a base:person; + base:person\#IDPerson "WarCha-00"; + base:person\#family_name "Ware"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarCha-01 a base:person; + base:person\#IDPerson "WarCha-01"; + base:person\#family_name "Warwick"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarJac-00 a base:person; + base:person\#IDPerson "WarJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Warner"; + base:person\#first_name "Jack"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarJen-00 a base:person; + base:person\#IDPerson "WarJen-00"; + base:person\#family_name "Warren"; + base:person\#first_name "Jennifer" . + +base:person\/WarPau-00 a base:person; + base:person\#IDPerson "WarPau-00"; + base:person\#family_name "Warren"; + base:person\#first_name "Paul" . + +base:person\/WasGeo-00 a base:person; + base:person\#IDPerson "WasGeo-00"; + base:person\#family_name "Washington Smith"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WasLew-00 a base:person; + base:person\#IDPerson "WasLew-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wasserman"; + base:person\#first_name "Lew"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WatEth-00 a base:person; + base:person\#IDPerson "WatEth-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Waters"; + base:person\#first_name "Ethel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WatHen-00 a base:person; + base:person\#IDPerson "WatHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Waterhouse"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Web-00 a base:person; + base:person\#IDPerson "Web-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Captain Weber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WedFra-00 a base:person; + base:person\#IDPerson "WedFra-00"; + base:person\#family_name "Wedekind"; + base:person\#first_name "Frank"; + base:person\#gender base:Gender-male . + +base:person\/WedPam-00 a base:person; + base:person\#IDPerson "WedPam-00"; + base:person\#family_name "Wedekind"; + base:person\#first_name "Pamela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WedTil-00 a base:person; + base:person\#IDPerson "WedTil-00"; + base:person\#family_name "Wedekind"; + base:person\#first_name "Tilly"; + base:person\#gender base:Gender-male . + +base:person\/WegCar-00 a base:person; + base:person\#IDPerson "WegCar-00"; + base:person\#family_name "Wegner"; + base:person\#first_name "Caroline"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiJoh-00 a base:person; + base:person\#IDPerson "WeiJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weiss"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiLar-00 a base:person; + base:person\#IDPerson "WeiLar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weingarten"; + base:person\#first_name "Larry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiMax-00 a base:person; + base:person\#IDPerson "WeiMax-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weinbrenn"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiRos-3745 a base:person; + base:person\#IDPerson "WeiRos-3745"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Weinstein"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WeiShau-00 a base:person; + base:person\#IDPerson "WeiShau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weinstein"; + base:person\#first_name "Shaul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiThe-00 a base:person; + base:person\#IDPerson "WeiThe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weinlig"; + base:person\#first_name "Theodor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiWih-00 a base:person; + base:person\#IDPerson "WeiWih-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weiss"; + base:person\#first_name "Wihelmina Beatrice \"Bess\""; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Wel-00 a base:person; + base:person\#IDPerson "Wel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WelF-00 a base:person; + base:person\#IDPerson "WelF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weld"; + base:person\#first_name "F.A."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WemDav-00 a base:person; + base:person\#IDPerson "WemDav-00"; + base:person\#family_name "Wemyss Jobson"; + base:person\#first_name "David "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WemFra-00 a base:person; + base:person\#IDPerson "WemFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wemyss"; + base:person\#first_name "Francis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WenAlm-00 a base:person; + base:person\#IDPerson "WenAlm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wendorf"; + base:person\#first_name "Alma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WenFri-00 a base:person; + base:person\#IDPerson "WenFri-00"; + base:person\#family_name "Wendhausen"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WesFra-00 a base:person; + base:person\#IDPerson "WesFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Westphal"; + base:person\#first_name "Frank"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WesMat-00 a base:person; + base:person\#IDPerson "WesMat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wesendonck"; + base:person\#first_name "Mathilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WesOtt-00 a base:person; + base:person\#IDPerson "WesOtt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wesendonck"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhaJam-00 a base:person; + base:person\#IDPerson "WhaJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Whale"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WheJul-00 a base:person; + base:person\#IDPerson "WheJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wheatley"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiJos-00 a base:person; + base:person\#IDPerson "WhiJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "White"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiMay-00 a base:person; + base:person\#IDPerson "WhiMay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Whitty"; + base:person\#first_name "May"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiPeg-00 a base:person; + base:person\#IDPerson "WhiPeg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Whiffen"; + base:person\#first_name "Peggy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiRic-00 a base:person; + base:person\#IDPerson "WhiRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "White"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiSta-00 a base:person; + base:person\#IDPerson "WhiSta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "White"; + base:person\#first_name "Stanford"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Wic-00 a base:person; + base:person\#IDPerson "Wic-00"; + base:person\#family_name "Wichmann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WieEli-00 a base:person; + base:person\#IDPerson "WieEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wiedermann"; + base:person\#first_name "Elise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WieW-00 a base:person; + base:person\#IDPerson "WieW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wiesbaden"; + base:person\#first_name "W."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WikHen-00 a base:person; + base:person\#IDPerson "WikHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wikoff"; + base:person\#first_name "Henry Wikoff"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Wil-00 a base:person; + base:person\#IDPerson "Wil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Willing"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilAle-00 a base:person; + base:person\#IDPerson "WilAle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wilson"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilCec-00 a base:person; + base:person\#IDPerson "WilCec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "William"; + base:person\#first_name "Cecil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilES-00 a base:person; + base:person\#IDPerson "WilES-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Willard"; + base:person\#first_name "E.S. Willard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilEdu-00 a base:person; + base:person\#IDPerson "WilEdu-00"; + base:person\#family_name "Wilde"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilEdw-00 a base:person; + base:person\#IDPerson "WilEdw-00"; + base:person\#family_name "Willis"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilEli-00 a base:person; + base:person\#IDPerson "WilEli-00"; + base:person\#family_name "Wilkes"; + base:person\#first_name "Elizabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilGot-00 a base:person; + base:person\#IDPerson "WilGot-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "William"; + base:person\#first_name "Gottfried"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilHen-00 a base:person; + base:person\#IDPerson "WilHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Willard"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilJoh-00 a base:person; + base:person\#IDPerson "WilJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wild"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilOsc-00 a base:person; + base:person\#IDPerson "WilOsc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wilde"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilV-00 a base:person; + base:person\#IDPerson "WilV-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wills"; + base:person\#first_name "V."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WirAtt-00 a base:person; + base:person\#IDPerson "WirAtt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wirt"; + base:person\#first_name "Attorney-General"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WitHen-00 a base:person; + base:person\#IDPerson "WitHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "De Witt"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WitSta-00 a base:person; + base:person\#IDPerson "WitSta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Witkiewicz"; + base:person\#first_name "Stanisław"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WodJam-00 a base:person; + base:person\#IDPerson "WodJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wodehouse"; + base:person\#first_name "James Hay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WolHan-00 a base:person; + base:person\#IDPerson "WolHan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wolzogen"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WolHan-01 a base:person; + base:person\#IDPerson "WolHan-01"; + base:person\#family_name "Wolfradt"; + base:person\#first_name "Hanz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooAl-00 a base:person; + base:person\#IDPerson "WooAl-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Woods"; + base:person\#first_name "Al"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooC\.-00 a base:person; + base:person\#IDPerson "WooC.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Woolf"; + base:person\#first_name "C."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooGeo-00 a base:person; + base:person\#IDPerson "WooGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wood"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooJam-00 a base:person; + base:person\#IDPerson "WooJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Woolf"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooMr\.-00 a base:person; + base:person\#IDPerson "WooMr.-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Woodhull"; + base:person\#first_name "Mr."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooSam-00 a base:person; + base:person\#IDPerson "WooSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wood"; + base:person\#first_name "Sam"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooTho-00 a base:person; + base:person\#IDPerson "WooTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wood"; + base:person\#first_name "Thorald"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WooYvo-00 a base:person; + base:person\#IDPerson "WooYvo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wood"; + base:person\#first_name "Yvonne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WraFay-00 a base:person; + base:person\#IDPerson "WraFay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wray"; + base:person\#first_name "Fay"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WynJud-00 a base:person; + base:person\#IDPerson "WynJud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wyndier"; + base:person\#first_name "Judge"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WynJus-00 a base:person; + base:person\#IDPerson "WynJus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wyndier"; + base:person\#first_name "Justice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WysSta-00 a base:person; + base:person\#IDPerson "WysSta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wyspiański"; + base:person\#first_name "Stanisław"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/XauFer-00 a base:person; + base:person\#IDPerson "XauFer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Xau"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/XinPan-00 a base:person; + base:person\#IDPerson "XinPan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Xindavelonis"; + base:person\#first_name "Panayotis di Xindavelonis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Y\%C3\%A1\%C3\%B1Rub-00 a base:person; + base:person\#IDPerson "YáñRub-00"; + base:person\#family_name "Yáñez"; + base:person\#first_name "Rubén"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YacZac-00 a base:person; + base:person\#IDPerson "YacZac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Yaconelli"; + base:person\#first_name "Zaccarias"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YanJai-00 a base:person; + base:person\#IDPerson "YanJai-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Yankelevich"; + base:person\#first_name "Jaime"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YelJac-00 a base:person; + base:person\#IDPerson "YelJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Yellen"; + base:person\#first_name "Jack"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YorEli-00 a base:person; + base:person\#IDPerson "YorEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Yorke"; + base:person\#first_name "Eliot"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YouCla-3321 a base:person; + base:person\#IDPerson "YouCla-3321"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Young"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/YouHar-00 a base:person; + base:person\#IDPerson "YouHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Young"; + base:person\#first_name "Harold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YouRol-00 a base:person; + base:person\#IDPerson "YouRol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Young"; + base:person\#first_name "Roland"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/YsaEug-00 a base:person; + base:person\#IDPerson "YsaEug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ysaye"; + base:person\#first_name "Eugène"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Z\%C3\%B6lPhi-00 a base:person; + base:person\#IDPerson "ZölPhi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zöllner"; + base:person\#first_name "Philipp"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZalCar-00 a base:person; + base:person\#IDPerson "ZalCar-00"; + base:person\#family_name "Zaldívar"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZamLui-00 a base:person; + base:person\#IDPerson "ZamLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zamorano"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZanMar-00 a base:person; + base:person\#IDPerson "ZanMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zandt"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZarNat-00 a base:person; + base:person\#IDPerson "ZarNat-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zaro"; + base:person\#first_name "Natividad"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZeyMax-3658 a base:person; + base:person\#IDPerson "ZeyMax-3658"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zeygermakher"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZglPel-00 a base:person; + base:person\#IDPerson "ZglPel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zgliczyńska"; + base:person\#first_name "Pelagia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZicMar-00 a base:person; + base:person\#IDPerson "ZicMar-00"; + base:person\#family_name "Zickel"; + base:person\#first_name "Martin"; + base:person\#gender base:Gender-male . + +base:person\/ZieCar-00 a base:person; + base:person\#IDPerson "ZieCar-00"; + base:person\#family_name "Ziehrer"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male . + +base:person\/ZieEdw-00 a base:person; + base:person\#IDPerson "ZieEdw-00"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZieMau-3390 a base:person; + base:person\#IDPerson "ZieMau-3390"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Ziegler"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZimEmm-00 a base:person; + base:person\#IDPerson "ZimEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zimmermann"; + base:person\#first_name "Emmy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZucReg-3759 a base:person; + base:person\#IDPerson "ZucReg-3759"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zuckerberg"; + base:person\#first_name "Regina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZukAdo-00 a base:person; + base:person\#IDPerson "ZukAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zukor"; + base:person\#first_name "Adolph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZylWol-00 a base:person; + base:person\#IDPerson "ZylWol-00"; + base:person\#family_name "Zylbercweig"; + base:person\#first_name "Wolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/de\+Pie-00 a base:person; + base:person\#IDPerson "de Pie-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Trabadello"; + base:person\#first_name "Pierre"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/vonRai-00 a base:person; + base:person\#IDPerson "vonRai-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Zur Mühlen"; + base:person\#first_name "Raimund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:City-Albany a base:City; + rdfs:label "Albany"@en . + +base:City-Ashland a base:City; + rdfs:label "Ashland"@en . + +base:City-Auburn a base:City; + rdfs:label "Auburn"@en . + +base:City-Birmingham a base:City; + rdfs:label "Birmingham"@en . + +base:City-Bloomington a base:City; + rdfs:label "Bloomington"@en . + +base:City-Burlington a base:City; + rdfs:label "Burlington"@en . + +base:City-Cairo a base:City; + rdfs:label "Cairo"@en . + +base:City-Castlemaine a base:City; + rdfs:label "Castlemaine"@en . + +base:City-Charleston a base:City; + rdfs:label "Charleston"@en . + +base:City-Decatur a base:City; + rdfs:label "Decatur"@en . + +base:City-Durham a base:City; + rdfs:label "Durham"@en . + +base:City-Fairmount a base:City; + rdfs:label "Fairmount"@en . + +base:City-Geneva a base:City; + rdfs:label "Geneva"@en . + +base:City-Jackson a base:City; + rdfs:label "Jackson "@en, + "Jackson"@en . + +base:City-Jamestown a base:City; + rdfs:label "Jamestown"@en . + +base:City-Johnstown a base:City; + rdfs:label "Johnstown"@en . + +base:City-Lafayette a base:City; + rdfs:label "Lafayette"@en . + +base:City-LasVegas a base:City; + rdfs:label "Las Vegas"@en . + +base:City-Lawrence a base:City; + rdfs:label "Lawrence"@en . + +base:City-Leavenworth a base:City; + rdfs:label "Leavenworth"@en . + +base:City-Leeds a base:City; + rdfs:label "Leeds"@en . + +base:City-Lima a base:City; + rdfs:label "Lima"@en . + +base:City-Lincoln a base:City; + rdfs:label "Lincoln"@en . + +base:City-London a base:City; + rdfs:label "London"@en . + +base:City-Manchester a base:City; + rdfs:label "Manchester"@en . + +base:City-Marietta a base:City; + rdfs:label "Marietta"@en . + +base:City-Middletown a base:City; + rdfs:label "Middletown"@en . + +base:City-Muncie a base:City; + rdfs:label "Muncie"@en . + +base:City-Oshkosh a base:City; + rdfs:label "Oshkosh"@en . + +base:City-Paris a base:City; + rdfs:label "Paris"@en . + +base:City-Peoria a base:City; + rdfs:label "Peoria"@en . + +base:City-Perth a base:City; + rdfs:label "Perth"@en . + +base:City-Poltava a base:City; + rdfs:label "Poltava"@en . + +base:City-Portland a base:City; + rdfs:label "Portland"@en . + +base:City-Quincy a base:City; + rdfs:label "Quincy"@en . + +base:City-Richmond a base:City; + rdfs:label "Richmond"@en . + +base:City-TheHague a base:City; + rdfs:label "The Hague"@en . + +base:City-Victoria a base:City; + rdfs:label "Victoria"@en . + +base:City-Warren a base:City; + rdfs:label "Warren"@en . + +base:City-Watertown a base:City; + rdfs:label "Watertown"@en . + +base:City-Wilmington a base:City; + rdfs:label "Wilmington"@en . + +base:City-Worcester a base:City; + rdfs:label "Worcester"@en . + +base:City-York a base:City; + rdfs:label "York"@en . + +base:Continent-NorthAfrica a base:Continent; + rdfs:label "North Africa"@en . + +base:Country-Bulgaria a base:Country; + rdfs:label "Bulgaria"@en . + +base:Country-Columbia a base:Country; + rdfs:label "Columbia"@en . + +base:Country-Croatia a base:Country; + rdfs:label "Croatia"@en . + +base:Country-Denmark a base:Country; + rdfs:label "Denmark"@en . + +base:Country-Monaco a base:Country; + rdfs:label "Monaco"@en . + +base:Country-Myanmar a base:Country; + rdfs:label "Myanmar"@en . + +base:Country-NorthernIreland\%28UK\%29 a base:Country; + rdfs:label "Northern Ireland (UK)"@en . + +base:Country-Panama a base:Country; + rdfs:label "Panama"@en . + +base:Country-Paraguay a base:Country; + rdfs:label "Paraguay"@en . + +base:Country-Prussia a base:Country; + rdfs:label "Prussia"@en . + +base:Country-Uruguay a base:Country; + rdfs:label "Uruguay"@en . + +base:Country-Wales\%28UK\%29 a base:Country; + rdfs:label "Wales (UK)"@en . + +base:Profession-Conductor a base:Profession; + rdfs:label "Conductor"@en . + +base:Profession-StageDesigner a base:Profession; + rdfs:label "Stage Designer"@en . + +base:RelationshipTypePrecise-Fiancee a base:RelationshipTypePrecise; + rdfs:label "Fiancee"@en . + +base:Religion-Other a base:Religion; + rdfs:label "Other"@en . + +base:State-Arizona a base:State; + rdfs:label "Arizona"@en . + +base:State-Arkansas a base:State; + rdfs:label "Arkansas"@en . + +base:State-Baden-W\%C3\%BCrttemberg a base:State; + rdfs:label "Baden-Württemberg"@en . + +base:State-Bahia a base:State; + rdfs:label "Bahia"@en . + +base:State-BuenosAires a base:State; + rdfs:label "Buenos Aires"@en . + +base:State-CanaryIslands a base:State; + rdfs:label "Canary Islands"@en . + +base:State-Hessen a base:State; + rdfs:label "Hessen"@en . + +base:State-Idaho a base:State; + rdfs:label "Idaho"@en . + +base:State-Lombardy a base:State; + rdfs:label "Lombardy"@en . + +base:State-Maine a base:State; + rdfs:label "Maine"@en . + +base:State-NorthCarolina a base:State; + rdfs:label "North Carolina"@en . + +base:State-NorthDakota a base:State; + rdfs:label "North Dakota"@en . + +base:State-RhodeIsland a base:State; + rdfs:label "Rhode Island"@en . + +base:State-S\%C3\%A3oPaulo a base:State; + rdfs:label "São Paulo"@en . + +base:State-Saxony a base:State; + rdfs:label "Saxony"@en . + +base:State-Thuringia a base:State; + rdfs:label "Thuringia"@en . + +base:State-Victoria a base:State; + rdfs:label "Victoria"@en . + +base:State-Worcestershire a base:State; + rdfs:label "Worcestershire"@en . + +base:location\/AR-SAnt-00 a base:location; + base:location\#City base:City-SanAntoniodeAreco; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#IDLocation "AR-SAnt-00"; + base:location\#State base:State-BuenosAires; + base:location\#latitude -3.425e1; + base:location\#longitude -5.94667e1; + base:location\#wikidata "Q2501423" . + +base:location\/ARG-Lapl-00 a base:location; + base:location\#City base:City-LaPlata; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3432043"; + base:location\#IDLocation "ARG-Lapl-00"; + base:location\#latitude -3.49292e1; + base:location\#longitude -5.796e1; + base:location\#wikidata "Q44059"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/La_Plata" . + +base:location\/ARG-Oliv-00 a base:location; + base:location\#City base:City-Olivos; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3430310"; + base:location\#IDLocation "ARG-Oliv-00"; + base:location\#State base:State-BuenosAiresProvince; + base:location\#latitude -3.45e1; + base:location\#longitude -5.84833e1; + base:location\#wikidata "Q1522402"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Olivos,_Buenos_Aires" . + +base:location\/AT-BadIschl-00 a base:location; + base:location\#City base:City-BadIschl; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2782052"; + base:location\#IDLocation "AT-BadIschl-00"; + base:location\#latitude 4.77203e1; + base:location\#longitude 1.36333e1; + base:location\#wikidata "Q250984"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bad_Ischl" . + +base:location\/AT-Gois-00 a base:location; + base:location\#City base:City-BadGoisern; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2782055"; + base:location\#IDLocation "AT-Gois-00"; + base:location\#latitude 4.765e1; + base:location\#longitude 1.36167e1; + base:location\#wikidata "Q252674"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bad_Goisern_am_Hallst%C3%A4ttersee" . + +base:location\/AT-StPolt-00 a base:location; + base:location\#City base:City-StP\%C3\%B6lten; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#IDLocation "AT-StPolt-00"; + base:location\#latitude 4.82047e1; + base:location\#longitude 1.56267e1; + base:location\#wikidata "Q82500" . + +base:location\/AT-Weid-00 a base:location; + base:location\#City base:City-Weidling; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#IDLocation "AT-Weid-00"; + base:location\#State base:State-Statzendorf; + base:location\#latitude 4.83081e1; + base:location\#longitude 1.56408e1; + base:location\#wikidata "Q484858" . + +base:location\/AUS-Bendi-00 a base:location; + base:location\#City base:City-Bendigo; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2176187"; + base:location\#IDLocation "AUS-Bendi-00"; + base:location\#latitude -3.675e1; + base:location\#longitude 1.44267e2; + base:location\#wikidata "Q497793"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bendigo" . + +base:location\/AUS-Hob-00 a base:location; + base:location\#City base:City-Hobart; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2163355"; + base:location\#IDLocation "AUS-Hob-00"; + base:location\#latitude -4.28667e1; + base:location\#longitude 1.47317e2; + base:location\#wikidata "Q40191"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hobart" . + +base:location\/AUS-Launc-00 a base:location; + base:location\#City base:City-Launceston; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2160517"; + base:location\#IDLocation "AUS-Launc-00"; + base:location\#latitude -4.14444e1; + base:location\#longitude 1.47138e2; + base:location\#wikidata "Q339527"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Launceston,_Tasmania" . + +base:location\/AUS-Macky-00 a base:location; + base:location\#City base:City-Mackay; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Macky-00"; + base:location\#State base:State-Queensland; + base:location\#latitude -2.11333e1; + base:location\#longitude 1.49183e2; + base:location\#wikidata "Q704371" . + +base:location\/AUS-Maryb-00 a base:location; + base:location\#City base:City-Maryborough; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Maryb-00"; + base:location\#State base:State-Queensland; + base:location\#latitude -2.55333e1; + base:location\#longitude 1.527e2; + base:location\#wikidata "Q377975" . + +base:location\/AUS-PortDarw-00 a base:location; + base:location\#City base:City-PortDarwin; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-PortDarw-00"; + base:location\#latitude -1.24942e1; + base:location\#longitude 1.30822e2; + base:location\#wikidata "Q22330172" . + +base:location\/AUS-Rockh-00 a base:location; + base:location\#City base:City-Rockhampton; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AUS-Rockh-00"; + base:location\#State base:State-Queensland; + base:location\#latitude -2.33667e1; + base:location\#longitude 1.505e2; + base:location\#wikidata "Q606162" . + +base:location\/BR-Bahia-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3471168"; + base:location\#IDLocation "BR-Bahia-00"; + base:location\#State base:State-Bahia; + base:location\#latitude -1.25e1; + base:location\#longitude -4.169e1; + base:location\#wikidata "Q40430"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bahia" . + +base:location\/BR-Petro-00 a base:location; + base:location\#City base:City-Petr\%C3\%B3polis; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3454031"; + base:location\#IDLocation "BR-Petro-00"; + base:location\#latitude -2.25125e1; + base:location\#longitude -4.31983e1; + base:location\#wikidata "Q189043"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Petr%C3%B3polis" . + +base:location\/BY-Zhuk-00 a base:location; + base:location\#City base:City-Zhuki; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "BY-Zhuk-00"; + base:location\#latitude 5.34489e1; + base:location\#longitude 2.34342e1; + base:location\#wikidata "Q13133344" . + +base:location\/Bel-DiJeSt-107 a base:location; + base:location\#City base:City-Mazyr; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-107"; + base:location\#latitude 5.205e1; + base:location\#longitude 2.92333e1; + base:location\#wikidata "Q386487"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-117 a base:location; + base:location\#City base:City-Svier\%C5\%BEa\%C5\%84; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-117"; + base:location\#latitude 5.31322e1; + base:location\#longitude 3.03181e1; + base:location\#wikidata "Q4410179"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-62 a base:location; + base:location\#City base:City-Liuba\%C5\%84; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-62"; + base:location\#latitude 5.28e1; + base:location\#longitude 2.79944e1; + base:location\#wikidata "Q200991"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-69 a base:location; + base:location\#City base:City-Babruysk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-69"; + base:location\#latitude 5.315e1; + base:location\#longitude 2.92333e1; + base:location\#wikidata "Q207294"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bel-DiJeSt-77 a base:location; + base:location\#City base:City-Pahost; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-77"; + base:location\#latitude 5.38478e1; + base:location\#longitude 2.91486e1; + base:location\#wikidata "Q21579777"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Bukow-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#IDLocation "Bukow-00"; + base:location\#State base:State-Bukowina; + base:location\#latitude 4.82e1; + base:location\#longitude 2.59e1; + base:location\#wikidata "Q105206" . + +base:location\/CA-Lond-00 a base:location; + base:location\#City base:City-London; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-Lond-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.29675e1; + base:location\#longitude -8.12325e1; + base:location\#wikidata "Q92561" . + +base:location\/CA-Ontario-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6093943"; + base:location\#IDLocation "CA-Ontario-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.925e1; + base:location\#longitude -8.45e1; + base:location\#wikidata "Q1904"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ontario" . + +base:location\/CH-CorsVev-00 a base:location; + base:location\#City base:City-Corsier-sur-Vevey; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "7285567"; + base:location\#IDLocation "CH-CorsVev-00"; + base:location\#latitude 4.64667e1; + base:location\#longitude 6.85e0; + base:location\#wikidata "Q57110"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Corsier-sur-Vevey" . + +base:location\/CH-Luc-00 a base:location; + base:location\#City base:City-Lucerne; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2659811"; + base:location\#IDLocation "CH-Luc-00"; + base:location\#latitude 4.705e1; + base:location\#longitude 8.300000000000001e0; + base:location\#wikidata "Q4191"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lucerne" . + +base:location\/CH-Rohrsch-00 a base:location; + base:location\#City base:City-Rorschach; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2658969"; + base:location\#IDLocation "CH-Rohrsch-00"; + base:location\#latitude 4.74667e1; + base:location\#longitude 9.5e0; + base:location\#wikidata "Q68250"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rorschach,_Switzerland" . + +base:location\/CH-StJn-00 a base:location; + base:location\#City base:City-Saint-Jean\%28Geneva\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "11789448"; + base:location\#IDLocation "CH-StJn-00"; + base:location\#latitude 4.6205e1; + base:location\#longitude 6.117e0; + base:location\#wikidata "Q3462570"; + base:location\#wikipedia "https://fr.wikipedia.org/wiki/Saint-Jean_(Gen%C3%A8ve)" . + +base:location\/CH-StMor-00 a base:location; + base:location\#City base:City-St\.Moritz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2658813"; + base:location\#IDLocation "CH-StMor-00"; + base:location\#latitude 4.64972e1; + base:location\#longitude 9.83778e0; + base:location\#wikidata "Q68986"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/St._Moritz" . + +base:location\/CH-Zur-02 a base:location; + base:location\#City base:City-Tribschen\%28Lucerne\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2658316"; + base:location\#IDLocation "CH-Zur-02"; + base:location\#latitude 4.70412e1; + base:location\#longitude 8.328150000000001e0; + base:location\#wikidata "Q665288"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tribschen" . + +base:location\/CN-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#GeoNamesID "1814991"; + base:location\#IDLocation "CN-00"; + base:location\#latitude 3.5e1; + base:location\#longitude 1.05e2; + base:location\#wikidata "Q148"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/China" . + +base:location\/CZ-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3077311"; + base:location\#IDLocation "CZ-00"; + base:location\#latitude 4.975e1; + base:location\#longitude 1.55e1; + base:location\#wikidata "Q33946"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Czech_Republic" . + +base:location\/CZ-Bohe-00 a base:location; + base:location\#City base:City-Kali\%C5\%A1t\%C4\%9B; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3073982"; + base:location\#IDLocation "CZ-Bohe-00"; + base:location\#State base:State-Bohemia; + base:location\#latitude 4.95931e1; + base:location\#longitude 1.53042e1; + base:location\#wikidata "Q999950"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kali%C5%A1t%C4%9B_(Pelh%C5%99imov_District)" . + +base:location\/CZ-Budweis-00 a base:location; + base:location\#City base:City-Cesk\%C3\%A9Budejovice; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3077916"; + base:location\#IDLocation "CZ-Budweis-00"; + base:location\#latitude 4.89747e1; + base:location\#longitude 1.44747e1; + base:location\#wikidata "Q16506"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/%C4%8Cesk%C3%A9_Bud%C4%9Bjovice" . + +base:location\/CZ-Trup-00 a base:location; + base:location\#City base:City-Opava; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3068927"; + base:location\#IDLocation "CZ-Trup-00"; + base:location\#latitude 4.99381e1; + base:location\#longitude 1.79044e1; + base:location\#wikidata "Q156080"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Opava" . + +base:location\/Channel-StHel a base:location; + base:location\#City base:City-StHelier; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-ChannelIslands; + base:location\#GeoNamesID "3042091"; + base:location\#IDLocation "Channel-StHel"; + base:location\#State base:State-Jersey; + base:location\#latitude 4.91903e1; + base:location\#longitude -2.10861e0; + base:location\#wikidata "Q147738"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/St_Helier" . + +base:location\/Crim-Simf-00 a base:location; + base:location\#City base:City-Simferopol; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "693805"; + base:location\#IDLocation "Crim-Simf-00"; + base:location\#latitude 4.49519e1; + base:location\#longitude 3.41022e1; + base:location\#wikidata "Q19566"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Simferopol" . + +base:location\/EN-Norw-00 a base:location; + base:location\#City base:City-Norwich; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Norw-00"; + base:location\#latitude 5.26286e1; + base:location\#longitude 1.29278e0; + base:location\#wikidata "Q130191"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Norwich" . + +base:location\/EN-Nottingh-00 a base:location; + base:location\#City base:City-Nottingham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Nottingh-00"; + base:location\#latitude 5.29561e1; + base:location\#longitude -1.1512e0; + base:location\#wikidata "Q41262"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nottingham" . + +base:location\/EN-Worce-00 a base:location; + base:location\#City base:City-Worcester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Worce-00"; + base:location\#latitude 5.21911e1; + base:location\#longitude -2.22056e0; + base:location\#wikidata "Q1646181"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Worcester,_England" . + +base:location\/EN-Worth-00 a base:location; + base:location\#City base:City-Worthing; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Worth-00"; + base:location\#latitude 5.08147e1; + base:location\#longitude -3.71389e-1; + base:location\#wikidata "Q671348"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Worthing" . + +base:location\/EN-York-00 a base:location; + base:location\#City base:City-York; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-York-00"; + base:location\#State base:State-NorthYorkshire; + base:location\#latitude 5.396e1; + base:location\#longitude -1.08e0; + base:location\#wikidata "Q42462"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/York" . + +base:location\/ES-Bilb-00 a base:location; + base:location\#City base:City-Bilbao; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3128026"; + base:location\#IDLocation "ES-Bilb-00"; + base:location\#latitude 4.325e1; + base:location\#longitude -2.91667e0; + base:location\#wikidata "Q8692"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bilbao" . + +base:location\/ES-Burg-00 a base:location; + base:location\#City base:City-Burgos; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Burg-00"; + base:location\#latitude 4.23422e1; + base:location\#longitude -3.69889e0; + base:location\#wikidata "Q9580" . + +base:location\/ES-CanOn-00 a base:location; + base:location\#City base:City-CangasdeOn\%C3\%ADs; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-CanOn-00"; + base:location\#State base:State-Asturias; + base:location\#latitude 4.33507e1; + base:location\#longitude -5.13126e0; + base:location\#wikidata "Q225515" . + +base:location\/FR-Caen-00 a base:location; + base:location\#City base:City-Caen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3029241"; + base:location\#IDLocation "FR-Caen-00"; + base:location\#latitude 4.91822e1; + base:location\#longitude -3.70556e-1; + base:location\#wikidata "Q41185"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Caen" . + +base:location\/FR-Cans-00 a base:location; + base:location\#City base:City-Cannes; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3028808"; + base:location\#IDLocation "FR-Cans-00"; + base:location\#latitude 4.35513e1; + base:location\#longitude 7.0128e0; + base:location\#wikidata "Q39984"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cannes" . + +base:location\/FR-CotAz-00 a base:location; + base:location\#City base:City-C\%C3\%B4ted\%E2\%80\%99Azur; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-CotAz-00"; + base:location\#latitude 4.3e1; + base:location\#longitude 6.0e0; + base:location\#wikidata "Q182822" . + +base:location\/FR-MtCarlo-00 a base:location; + base:location\#City base:City-MonteCarlo; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#IDLocation "FR-MtCarlo-00"; + base:location\#latitude 4.37397e1; + base:location\#longitude 7.42722e0; + base:location\#wikidata "Q45240"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Monte_Carlo" . + +base:location\/GB-NewCast-00 a base:location; + base:location\#City base:City-Newcastle; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "GB-NewCast-00"; + base:location\#latitude 5.49739e1; + base:location\#longitude -1.61333e0; + base:location\#wikidata "Q57278"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Newcastle,_New_South_Wales" . + +base:location\/GER-Bautz-00 a base:location; + base:location\#City base:City-Bautzen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2951881"; + base:location\#IDLocation "GER-Bautz-00"; + base:location\#latitude 5.11814e1; + base:location\#longitude 1.44242e1; + base:location\#wikidata "Q14835"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bautzen" . + +base:location\/GER-Brand-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2945356"; + base:location\#IDLocation "GER-Brand-00"; + base:location\#State base:State-Brandenburg; + base:location\#latitude 5.2459e1; + base:location\#longitude 1.30158e1; + base:location\#wikidata "Q1208"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brandenburg" . + +base:location\/GER-Cob-00 a base:location; + base:location\#City base:City-Coburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2939951"; + base:location\#IDLocation "GER-Cob-00"; + base:location\#State base:State-Bavaria; + base:location\#latitude 5.02667e1; + base:location\#longitude 1.09667e1; + base:location\#wikidata "Q14821"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Coburg" . + +base:location\/GER-FrankfOd-00 a base:location; + base:location\#City base:City-FrankfurtanderOder; + base:location\#Continent base:Continent-Europa; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-FrankfOd-00"; + base:location\#latitude 5.23421e1; + base:location\#longitude 1.45517e1; + base:location\#wikidata "https://www.wikidata.org/wiki/Q4024"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Frankfurt_(Oder" . + +base:location\/GER-Goth-00 a base:location; + base:location\#City base:City-Gotha; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2918752"; + base:location\#IDLocation "GER-Goth-00"; + base:location\#State base:State-Thuringia; + base:location\#latitude 5.09489e1; + base:location\#longitude 1.07183e1; + base:location\#wikidata "Q6986"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gotha" . + +base:location\/GER-Grimm-00 a base:location; + base:location\#City base:City-Grimma; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2917325"; + base:location\#IDLocation "GER-Grimm-00"; + base:location\#latitude 5.12383e1; + base:location\#longitude 1.2725e1; + base:location\#wikidata "Q10780"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grimma" . + +base:location\/GER-Heidelb-00 a base:location; + base:location\#City base:City-Heidelberg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2907911"; + base:location\#IDLocation "GER-Heidelb-00"; + base:location\#latitude 4.94167e1; + base:location\#longitude 8.716670000000001e0; + base:location\#wikidata "Q2966"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Heidelberg" . + +base:location\/GER-Kobl-00 a base:location; + base:location\#City base:City-Koblenz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2886946"; + base:location\#IDLocation "GER-Kobl-00"; + base:location\#latitude 5.03597e1; + base:location\#longitude 7.59778e0; + base:location\#wikidata "Q3104"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Koblenz" . + +base:location\/GER-Lind-00 a base:location; + base:location\#City base:City-Lindau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#IDLocation "GER-Lind-00"; + base:location\#State base:State-Bodensee; + base:location\#latitude 4.75458e1; + base:location\#longitude 9.68389e0; + base:location\#wikidata "Q153969"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Lindau_(Bodensee)" . + +base:location\/GER-Niederw-00 a base:location; + base:location\#City base:City-Walluf; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "3208134"; + base:location\#IDLocation "GER-Niederw-00"; + base:location\#State base:State-Hessen; + base:location\#latitude 5.00348e1; + base:location\#longitude 8.159560000000001e0; + base:location\#wikidata "Q634161"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Walluf" . + +base:location\/GER-Oldb-00 a base:location; + base:location\#City base:City-Oldenburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2857458"; + base:location\#IDLocation "GER-Oldb-00"; + base:location\#latitude 5.31439e1; + base:location\#longitude 8.213889999999999e0; + base:location\#wikidata "Q2936"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oldenburg_(city)" . + +base:location\/GER-Sigm-00 a base:location; + base:location\#City base:City-Sigmaringen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2832232"; + base:location\#IDLocation "GER-Sigm-00"; + base:location\#latitude 4.80867e1; + base:location\#longitude 9.216390000000001e0; + base:location\#wikidata "Q82858"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sigmaringen" . + +base:location\/GER-Sindlf-00 a base:location; + base:location\#City base:City-Sindelfingen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2831948"; + base:location\#IDLocation "GER-Sindlf-00"; + base:location\#latitude 4.87133e1; + base:location\#longitude 9.00278e0; + base:location\#wikidata "Q4019"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sindelfingen" . + +base:location\/GER-Sondh-00 a base:location; + base:location\#City base:City-Sondershausen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2831276"; + base:location\#IDLocation "GER-Sondh-00"; + base:location\#latitude 5.13708e1; + base:location\#longitude 1.08722e1; + base:location\#wikidata "Q517407"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sondershausen" . + +base:location\/GER-Wiesb-01 a base:location; + base:location\#City base:City-Biebrich\%28Wiesbaden\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2949235"; + base:location\#IDLocation "GER-Wiesb-01"; + base:location\#latitude 5.005e1; + base:location\#longitude 8.23333e0; + base:location\#wikidata "Q656680"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Biebrich_(Wiesbaden)" . + +base:location\/GR-Andr-00 a base:location; + base:location\#City base:City-Andros; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Greece; + base:location\#GeoNamesID "265039"; + base:location\#IDLocation "GR-Andr-00"; + base:location\#latitude 3.78513e1; + base:location\#longitude 2.48751e1; + base:location\#wikidata "Q175741"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Andros" . + +base:location\/GR-Bever-00 a base:location; + base:location\#City base:City-Beverungen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2949475"; + base:location\#IDLocation "GR-Bever-00"; + base:location\#latitude 5.16622e1; + base:location\#longitude 9.372339999999999e0; + base:location\#wikidata "Q242098"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Beverungen" . + +base:location\/HU-Gyo-00 a base:location; + base:location\#City base:City-Gy\%C5\%91r; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3052009"; + base:location\#IDLocation "HU-Gyo-00"; + base:location\#latitude 4.76842e1; + base:location\#longitude 1.76344e1; + base:location\#wikidata "Q134494"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gy%C5%91r" . + +base:location\/HU-Moson-00 a base:location; + base:location\#City base:City-Mosonmagyar\%C3\%B3v\%C3\%A1r; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3047896"; + base:location\#IDLocation "HU-Moson-00"; + base:location\#latitude 4.78737e1; + base:location\#longitude 1.72687e1; + base:location\#wikidata "Q207406"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mosonmagyar%C3%B3v%C3%A1r" . + +base:location\/HU-Seb-00 a base:location; + base:location\#City base:City-\%C5\%A0ari\%C5\%A1sk\%C3\%A9L\%C3\%BAky; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#GeoNamesID "723651"; + base:location\#IDLocation "HU-Seb-00"; + base:location\#State base:State-Pre\%C5\%A1ov; + base:location\#latitude 4.90159e1; + base:location\#longitude 2.12626e1; + base:location\#wikidata "Q1286598"; + base:location\#wikipedia "https://sk.wikipedia.org/wiki/%C5%A0ari%C5%A1sk%C3%A9_L%C3%BAky_(%C4%BDubotice)" . + +base:location\/IDN-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Indonesia; + base:location\#GeoNamesID "1643084"; + base:location\#IDLocation "IDN-00"; + base:location\#latitude 5.0e0; + base:location\#longitude 1.2e2; + base:location\#wikidata "Q252"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Indonesia" . + +base:location\/IDN-Java-00 a base:location; + base:location\#City base:City-Java; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Indonesia; + base:location\#GeoNamesID "1642673"; + base:location\#IDLocation "IDN-Java-00"; + base:location\#latitude -7.5e0; + base:location\#longitude 1.1125e2; + base:location\#wikidata "Q3757"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Java" . + +base:location\/IE-Belf-00 a base:location; + base:location\#City base:City-Belfast; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-NorthernIreland\%28UK\%29; + base:location\#GeoNamesID "2655984"; + base:location\#IDLocation "IE-Belf-00"; + base:location\#latitude 5.45964e1; + base:location\#longitude -5.93e0; + base:location\#wikidata "Q10686"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Belfast" . + +base:location\/IE-Lime-00 a base:location; + base:location\#City base:City-Limerick; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#IDLocation "IE-Lime-00"; + base:location\#latitude 5.26653e1; + base:location\#longitude -8.623799999999999e0; + base:location\#wikidata "Q133315"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Limerick" . + +base:location\/IN-Danap-00 a base:location; + base:location\#City base:City-Danapur; + base:location\#Continent base:Continent-EastAsia; + base:location\#Country base:Country-India; + base:location\#IDLocation "IN-Danap-00"; + base:location\#latitude 2.56333e1; + base:location\#longitude 8.505e1; + base:location\#wikidata "Q1266998"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Danapur" . + +base:location\/IT-Ancona-00 a base:location; + base:location\#City base:City-Ancona; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3183089"; + base:location\#IDLocation "IT-Ancona-00"; + base:location\#latitude 4.36167e1; + base:location\#longitude 1.35167e1; + base:location\#wikidata "Q3415"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ancona" . + +base:location\/IT-Bergam-00 a base:location; + base:location\#City base:City-Bergamo; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3182164"; + base:location\#IDLocation "IT-Bergam-00"; + base:location\#latitude 4.5695e1; + base:location\#longitude 9.67e0; + base:location\#wikidata "Q628"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bergamo" . + +base:location\/IT-CasMon-00 a base:location; + base:location\#City base:City-CasaleMonferrato; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3180208"; + base:location\#IDLocation "IT-CasMon-00"; + base:location\#latitude 4.51333e1; + base:location\#longitude 8.449999999999999e0; + base:location\#wikidata "Q16333"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Casale_Monferrato" . + +base:location\/IT-Chieti-00 a base:location; + base:location\#City base:City-Chieti; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3178796"; + base:location\#IDLocation "IT-Chieti-00"; + base:location\#State base:State-Abruzzo; + base:location\#latitude 4.235e1; + base:location\#longitude 1.41667e1; + base:location\#wikidata "Q13138"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Chieti" . + +base:location\/IT-Como-00 a base:location; + base:location\#City base:City-Como; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3178229"; + base:location\#IDLocation "IT-Como-00"; + base:location\#State base:State-Lombardy; + base:location\#latitude 4.58167e1; + base:location\#longitude 9.08333e0; + base:location\#wikidata "Q1308"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Como" . + +base:location\/IT-Mant-00 a base:location; + base:location\#City base:City-Mantua; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3174051"; + base:location\#IDLocation "IT-Mant-00"; + base:location\#latitude 4.51564e1; + base:location\#longitude 1.07917e1; + base:location\#wikidata "Q6247"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mantua" . + +base:location\/IT-Modena-00 a base:location; + base:location\#City base:City-Modena; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3173331"; + base:location\#IDLocation "IT-Modena-00"; + base:location\#latitude 4.46461e1; + base:location\#longitude 1.09258e1; + base:location\#wikidata "Q279"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Modena" . + +base:location\/IT-Pesca-00 a base:location; + base:location\#City base:City-Pescara; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3171168"; + base:location\#IDLocation "IT-Pesca-00"; + base:location\#latitude 4.24667e1; + base:location\#longitude 1.42167e1; + base:location\#wikidata "Q2704"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pescara" . + +base:location\/IT-PiedM-00 a base:location; + base:location\#City base:City-PiedimonteMatese; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#IDLocation "IT-PiedM-00"; + base:location\#latitude 4.135e1; + base:location\#longitude 1.435e1; + base:location\#wikidata "Q58749" . + +base:location\/IT-Tosc-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3165361"; + base:location\#IDLocation "IT-Tosc-00"; + base:location\#State base:State-Tuscany; + base:location\#latitude 4.335e1; + base:location\#longitude 1.10167e1; + base:location\#wikidata "Q1273"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tuscany" . + +base:location\/JPN-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Japan; + base:location\#GeoNamesID "1861060"; + base:location\#IDLocation "JPN-00"; + base:location\#latitude 3.6e1; + base:location\#longitude 1.38e2; + base:location\#wikidata "Q17"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Japan" . + +base:location\/Lit-DiJeSt-82 a base:location; + base:location\#City base:City-\%C5\%A0eduva; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Lithuania; + base:location\#IDLocation "Lit-DiJeSt-82"; + base:location\#latitude 5.57667e1; + base:location\#longitude 2.375e1; + base:location\#wikidata "Q2356396"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/MM-Yang-00 a base:location; + base:location\#City base:City-Yangon; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Myanmar; + base:location\#GeoNamesID "1298824"; + base:location\#IDLocation "MM-Yang-00"; + base:location\#latitude 1.6795e1; + base:location\#longitude 9.616e1; + base:location\#wikidata "Q37995"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Yangon" . + +base:location\/NL-DHaag-00 a base:location; + base:location\#City base:City-TheHague; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2747373"; + base:location\#IDLocation "NL-DHaag-00"; + base:location\#latitude 5.20842e1; + base:location\#longitude 4.3175e0; + base:location\#wikidata "Q36600"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/The_Hague" . + +base:location\/NZ-Nels-00 a base:location; + base:location\#City base:City-Nelson; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2186280"; + base:location\#IDLocation "NZ-Nels-00"; + base:location\#latitude -4.12708e1; + base:location\#longitude 1.73284e2; + base:location\#wikidata "Q206687"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nelson,_New_Zealand" . + +base:location\/NZ-Wang-00 a base:location; + base:location\#City base:City-Wanganui; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Wang-00"; + base:location\#latitude -3.99303e1; + base:location\#longitude 1.75048e2; + base:location\#wikidata "Q1015672" . + +base:location\/PE-Lima-00 a base:location; + base:location\#City base:City-Lima; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Peru; + base:location\#GeoNamesID "3936456"; + base:location\#IDLocation "PE-Lima-00"; + base:location\#latitude -1.2035e1; + base:location\#longitude -7.701860000000001e1; + base:location\#wikidata "Q2868"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lima" . + +base:location\/PL-Danz-00 a base:location; + base:location\#City base:City-Gdansk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3099434"; + base:location\#IDLocation "PL-Danz-00"; + base:location\#latitude 5.43667e1; + base:location\#longitude 1.86333e1; + base:location\#wikidata "Q1792"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Gda%C5%84sk" . + +base:location\/PL-Podg-00 a base:location; + base:location\#City base:City-Podg\%C3\%B3rze\%28Krak\%C3\%B3w\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3088694"; + base:location\#IDLocation "PL-Podg-00"; + base:location\#latitude 5.00417e1; + base:location\#longitude 1.99833e1; + base:location\#wikidata "Q9248440"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Podg%C3%B3rze" . + +base:location\/PL-Pozn-00 a base:location; + base:location\#City base:City-Pozna\%C5\%84; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3088171"; + base:location\#IDLocation "PL-Pozn-00"; + base:location\#latitude 5.24083e1; + base:location\#longitude 1.69336e1; + base:location\#wikidata "Q268"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pozna%C5%84" . + +base:location\/PT-Coimb-00 a base:location; + base:location\#City base:City-Coimbra; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2740637"; + base:location\#IDLocation "PT-Coimb-00"; + base:location\#latitude 4.025e1; + base:location\#longitude -8.449999999999999e0; + base:location\#wikidata "Q45412"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Coimbra" . + +base:location\/Pol-DiJeSt-105 a base:location; + base:location\#City base:City-Lublin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-105"; + base:location\#latitude 5.125e1; + base:location\#longitude 2.25667e1; + base:location\#wikidata "Q37333"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-150 a base:location; + base:location\#City base:City-Radzy\%C5\%84Podlaski; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-150"; + base:location\#latitude 5.17833e1; + base:location\#longitude 2.26167e1; + base:location\#wikidata "Q983866"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-65 a base:location; + base:location\#City base:City-Kutno; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-65"; + base:location\#latitude 5.22333e1; + base:location\#longitude 1.93667e1; + base:location\#wikidata "Q202160"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-7 a base:location; + base:location\#City base:City-NowyDw\%C3\%B3r; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-7"; + base:location\#latitude 5.37214e1; + base:location\#longitude 1.88725e1; + base:location\#wikidata "Q11793839"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Pol-DiJeSt-83 a base:location; + base:location\#City base:City-Suwa\%C5\%82ki; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-83"; + base:location\#latitude 5.41e1; + base:location\#longitude 2.29333e1; + base:location\#wikidata "Q236083"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/RU-Sib-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#GeoNamesID "11961345"; + base:location\#IDLocation "RU-Sib-00"; + base:location\#State base:State-Siberia; + base:location\#latitude 6.1e1; + base:location\#longitude 1.05e2; + base:location\#wikidata "Q5428"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/Siberia" . + +base:location\/RU-Yal-00 a base:location; + base:location\#City base:City-Yalta; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "688533"; + base:location\#IDLocation "RU-Yal-00"; + base:location\#latitude 4.44994e1; + base:location\#longitude 3.417e1; + base:location\#wikidata "Q128499"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Yalta" . + +base:location\/Rom-DiJeSt-102 a base:location; + base:location\#City base:City-Adjud; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-102"; + base:location\#latitude 4.61e1; + base:location\#longitude 2.71797e1; + base:location\#wikidata "Q357784"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rom-DiJeSt-45 a base:location; + base:location\#City base:City-Ploie\%C8\%99ti; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-45"; + base:location\#latitude 4.49411e1; + base:location\#longitude 2.60225e1; + base:location\#wikidata "Q179585"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rom-DiJeSt-92 a base:location; + base:location\#City base:City-F\%C4\%83lticeni; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-92"; + base:location\#latitude 4.74625e1; + base:location\#longitude 2.63e1; + base:location\#wikidata "Q303015"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rus-DiJeSt-127 a base:location; + base:location\#City base:City-Saratov; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#IDLocation "Rus-DiJeSt-127"; + base:location\#latitude 5.153e1; + base:location\#longitude 4.6035e1; + base:location\#wikidata "Q5332"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Rus-DiJeSt-3 a base:location; + base:location\#City base:City-Alexandrovsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#IDLocation "Rus-DiJeSt-3"; + base:location\#latitude 5.91667e1; + base:location\#longitude 5.75833e1; + base:location\#wikidata "Q103390"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/SE-Oslo-00 a base:location; + base:location\#City base:City-Oslo; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Norway; + base:location\#GeoNamesID "3143244"; + base:location\#IDLocation "SE-Oslo-00"; + base:location\#latitude 5.991e1; + base:location\#longitude 1.075e1; + base:location\#wikidata "Q585"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oslo" . + +base:location\/SK-Hlo-00 a base:location; + base:location\#City base:City-Hlohovec; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#GeoNamesID "3060095"; + base:location\#IDLocation "SK-Hlo-00"; + base:location\#latitude 4.84311e1; + base:location\#longitude 1.78031e1; + base:location\#wikidata "Q754773"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Hlohovec" . + +base:location\/SK-Lipt-00 a base:location; + base:location\#City base:City-Liptovsk\%C3\%BDMikul\%C3\%A1\%C5\%A1; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#GeoNamesID "3059050"; + base:location\#IDLocation "SK-Lipt-00"; + base:location\#latitude 4.90842e1; + base:location\#longitude 1.96022e1; + base:location\#wikidata "Q272040"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Liptovsk%C3%BD_Mikul%C3%A1%C5%A1" . + +base:location\/SriLanka-00 a base:location; + base:location\#City base:City-SriLanka; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-SriLanka; + base:location\#GeoNamesID "1227603"; + base:location\#IDLocation "SriLanka-00"; + base:location\#latitude 7.0e0; + base:location\#longitude 8.1e1; + base:location\#wikidata "Q854"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sri_Lanka" . + +base:location\/TR-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Turkey; + base:location\#IDLocation "TR-00"; + base:location\#latitude 3.91667e1; + base:location\#longitude 3.56667e1; + base:location\#wikidata "Q43" . + +base:location\/UA-Iwa-00 a base:location; + base:location\#City base:City-Iwano-Frankiwsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Iwa-00"; + base:location\#latitude 4.89228e1; + base:location\#longitude 2.47106e1; + base:location\#wikidata "Q178269" . + +base:location\/UA-Tulch-00 a base:location; + base:location\#City base:City-Tulchyn; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Tulch-00"; + base:location\#latitude 4.86744e1; + base:location\#longitude 2.88497e1; + base:location\#wikidata "Q997568"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tulchyn" . + +base:location\/UA-Wis-00 a base:location; + base:location\#City base:City-Vyshnivchyk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "689501"; + base:location\#IDLocation "UA-Wis-00"; + base:location\#latitude 4.92289e1; + base:location\#longitude 2.53686e1; + base:location\#wikidata "Q4112760"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vyshnivchyk" . + +base:location\/UAS-Frank-00 a base:location; + base:location\#City base:City-Frankfort; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "UAS-Frank-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.82e1; + base:location\#longitude -8.486669999999999e1; + base:location\#wikidata "Q28603" . + +base:location\/UK-Craigy-00 a base:location; + base:location\#City base:City-Craig-y-Nos; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Wales\%28UK\%29; + base:location\#GeoNamesID "2634894"; + base:location\#IDLocation "UK-Craigy-00"; + base:location\#latitude 5.1825e1; + base:location\#longitude -3.68417e0; + base:location\#wikidata "Q5180663"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Craig-y-Nos_Castle" . + +base:location\/UK-Durh-00 a base:location; + base:location\#City base:City-Durham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "UK-Durh-00"; + base:location\#latitude 5.47774e1; + base:location\#longitude -1.576e0; + base:location\#wikidata "Q179815"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Durham" . + +base:location\/UK-Hertf-00 a base:location; + base:location\#City base:City-Hertford; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2647044"; + base:location\#IDLocation "UK-Hertf-00"; + base:location\#latitude 5.17961e1; + base:location\#longitude -7.8889e-2; + base:location\#wikidata "Q9681"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hertford" . + +base:location\/UK-Huyt-00 a base:location; + base:location\#City base:City-Huyton; + base:location\#Continent base:Continent-Europa; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "UK-Huyt-00"; + base:location\#latitude 5.34125e1; + base:location\#longitude -2.83889e0; + base:location\#wikidata "https://www.wikidata.org/wiki/Q1639484"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Huyton" . + +base:location\/UK-Malv-00 a base:location; + base:location\#City base:City-Malvern; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2648063"; + base:location\#IDLocation "UK-Malv-00"; + base:location\#State base:State-Worcestershire; + base:location\#latitude 5.2118e1; + base:location\#longitude -2.325e0; + base:location\#wikidata "Q1004173"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Great_Malvern" . + +base:location\/URY-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Uruguay; + base:location\#GeoNamesID "3439705"; + base:location\#IDLocation "URY-00"; + base:location\#latitude -3.27333e1; + base:location\#longitude -5.665e1; + base:location\#wikidata "Q77"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Uruguay" . + +base:location\/USA-Anah-00 a base:location; + base:location\#City base:City-Anaheim; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Anah-00"; + base:location\#State base:State-California; + base:location\#latitude 3.38347e1; + base:location\#longitude -1.17909e2; + base:location\#wikidata "Q49247" . + +base:location\/USA-Asp-00 a base:location; + base:location\#City base:City-Aspen; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Asp-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.91922e1; + base:location\#longitude -1.06824e2; + base:location\#wikidata "Q205842" . + +base:location\/USA-AubNY-00 a base:location; + base:location\#City base:City-Auburn; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-AubNY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.29337e1; + base:location\#longitude -7.65673e1; + base:location\#wikidata "Q225519" . + +base:location\/USA-Bill-00 a base:location; + base:location\#City base:City-Billings; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5640350"; + base:location\#IDLocation "USA-Bill-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.57836e1; + base:location\#longitude -1.08506e2; + base:location\#wikidata "Q166304"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Billings,_Montana" . + +base:location\/USA-Bozem-00 a base:location; + base:location\#City base:City-Bozeman; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5641727"; + base:location\#IDLocation "USA-Bozem-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.56794e1; + base:location\#longitude -1.11037e2; + base:location\#wikidata "Q569678"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bozeman,_Montana" . + +base:location\/USA-Cant-00 a base:location; + base:location\#City base:City-Canton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5149222"; + base:location\#IDLocation "USA-Cant-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.08077e1; + base:location\#longitude -8.13955e1; + base:location\#wikidata "Q491239"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Canton,_Ohio" . + +base:location\/USA-Chey-00 a base:location; + base:location\#City base:City-Cheyenne; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Chey-00"; + base:location\#State base:State-Wyoming; + base:location\#latitude 4.11455e1; + base:location\#longitude -1.04802e2; + base:location\#wikidata "Q39042" . + +base:location\/USA-CoBlu-00 a base:location; + base:location\#City base:City-CouncilBluffs; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CoBlu-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.12536e1; + base:location\#longitude -9.58625e1; + base:location\#wikidata "Q695565" . + +base:location\/USA-Dall-00 a base:location; + base:location\#City base:City-Dallas; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4684888"; + base:location\#IDLocation "USA-Dall-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.27831e1; + base:location\#longitude -9.680670000000001e1; + base:location\#wikidata "Q16557"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dallas" . + +base:location\/USA-DutchFlat-00 a base:location; + base:location\#City base:City-DutchFlat; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5344402"; + base:location\#IDLocation "USA-DutchFlat-00"; + base:location\#State base:State-California; + base:location\#latitude 3.92061e1; + base:location\#longitude -1.20838e2; + base:location\#wikidata "Q650179"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dutch_Flat,_California" . + +base:location\/USA-FSm-00 a base:location; + base:location\#City base:City-FortSmith; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-FSm-00"; + base:location\#State base:State-Arkansas; + base:location\#latitude 3.53789e1; + base:location\#longitude -9.439749999999999e1; + base:location\#wikidata "Q79535" . + +base:location\/USA-FallRv-00 a base:location; + base:location\#City base:City-FallRiver; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-FallRv-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.17014e1; + base:location\#longitude -7.115560000000001e1; + base:location\#wikidata "Q49194" . + +base:location\/USA-GrVall-00 a base:location; + base:location\#City base:City-GrassValley; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-GrVall-00"; + base:location\#State base:State-California; + base:location\#latitude 3.92192e1; + base:location\#longitude -1.21058e2; + base:location\#wikidata "Q834337"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grass_Valley,_California" . + +base:location\/USA-GreFal-00 a base:location; + base:location\#City base:City-GreatFalls; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5655240"; + base:location\#IDLocation "USA-GreFal-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.74916e1; + base:location\#longitude -1.11289e2; + base:location\#wikidata "Q466190"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Great_Falls,_Montana" . + +base:location\/USA-High-00 a base:location; + base:location\#City base:City-Highland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4240679"; + base:location\#IDLocation "USA-High-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.87438e1; + base:location\#longitude -8.96772e1; + base:location\#wikidata "Q576279"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Highland,_Illinois" . + +base:location\/USA-Holyo-00 a base:location; + base:location\#City base:City-Holyoke; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Holyo-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.22042e1; + base:location\#longitude -7.261669999999999e1; + base:location\#wikidata "Q1637790" . + +base:location\/USA-Huntin-00 a base:location; + base:location\#City base:City-Huntington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4809537"; + base:location\#IDLocation "USA-Huntin-00"; + base:location\#State base:State-WestVirginia; + base:location\#latitude 3.84192e1; + base:location\#longitude -8.24451e1; + base:location\#wikidata "Q241808"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Huntington,_West_Virginia" . + +base:location\/USA-JackVil-00 a base:location; + base:location\#City base:City-Jacksonville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4241704"; + base:location\#IDLocation "USA-JackVil-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.97291e1; + base:location\#longitude -9.02316e1; + base:location\#wikidata "Q577853"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jacksonville,_Illinois" . + +base:location\/USA-Jacks-00 a base:location; + base:location\#City base:City-Jackson; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Jacks-00"; + base:location\#State base:State-Mississippi; + base:location\#latitude 3.22999e1; + base:location\#longitude -9.01841e1; + base:location\#wikidata "Q28198" . + +base:location\/USA-Jamaica-00 a base:location; + base:location\#City base:City-Jamaica; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "3489940"; + base:location\#IDLocation "USA-Jamaica-00"; + base:location\#latitude 1.818e1; + base:location\#longitude -7.740000000000001e1; + base:location\#wikidata "Q766"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jamaica" . + +base:location\/USA-Janes-00 a base:location; + base:location\#City base:City-Janesville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Janes-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.26839e1; + base:location\#longitude -8.90164e1; + base:location\#wikidata "Q257536" . + +base:location\/USA-Johnst-00 a base:location; + base:location\#City base:City-Johnstown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Johnst-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.03228e1; + base:location\#longitude -7.89208e1; + base:location\#wikidata "Q1070763" . + +base:location\/USA-Kearn-00 a base:location; + base:location\#City base:City-Kearney; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Kearn-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.07008e1; + base:location\#longitude -9.908110000000001e1; + base:location\#wikidata "Q846044" . + +base:location\/USA-Kings-00 a base:location; + base:location\#City base:City-Kingston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Kings-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.19295e1; + base:location\#longitude -7.399679999999999e1; + base:location\#wikidata "Q868660" . + +base:location\/USA-Knox-00 a base:location; + base:location\#City base:City-Knoxville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Knox-00"; + base:location\#State base:State-Tennessee; + base:location\#latitude 3.59728e1; + base:location\#longitude -8.39422e1; + base:location\#wikidata "Q185582" . + +base:location\/USA-Lans-00 a base:location; + base:location\#City base:City-Lansing; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Lans-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.27142e1; + base:location\#longitude -8.456e1; + base:location\#wikidata "Q28237" . + +base:location\/USA-LeavK-00 a base:location; + base:location\#City base:City-Leavenworth; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LeavK-00"; + base:location\#State base:State-Kansas; + base:location\#latitude 3.93228e1; + base:location\#longitude -9.49242e1; + base:location\#wikidata "Q1762867"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leavenworth,_Kansas" . + +base:location\/USA-Lima-00 a base:location; + base:location\#City base:City-Lima; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5160783"; + base:location\#IDLocation "USA-Lima-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.07463e1; + base:location\#longitude -8.41233e1; + base:location\#wikidata "Q983974"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lima,_Ohio" . + +base:location\/USA-MA-02 a base:location; + base:location\#City base:City-Melrose; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4943677"; + base:location\#IDLocation "USA-MA-02"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.24583e1; + base:location\#longitude -7.10667e1; + base:location\#wikidata "Q54143"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Melrose,_Massachusetts" . + +base:location\/USA-Manch-00 a base:location; + base:location\#City base:City-Manchester; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Manch-00"; + base:location\#State base:State-NewHampshire; + base:location\#latitude 4.29908e1; + base:location\#longitude -7.14636e1; + base:location\#wikidata "Q48370" . + +base:location\/USA-Medf-00 a base:location; + base:location\#City base:City-Medford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5262475"; + base:location\#IDLocation "USA-Medf-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.51381e1; + base:location\#longitude -9.034529999999999e1; + base:location\#wikidata "Q531515"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Medford,_Wisconsin" . + +base:location\/USA-Merid-00 a base:location; + base:location\#City base:City-Meriden; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Merid-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.15367e1; + base:location\#longitude -7.279470000000001e1; + base:location\#wikidata "Q54220" . + +base:location\/USA-Munc-00 a base:location; + base:location\#City base:City-Muncie; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Munc-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.01932e1; + base:location\#longitude -8.53882e1; + base:location\#wikidata "Q932981" . + +base:location\/USA-Nevada-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5509151"; + base:location\#IDLocation "USA-Nevada-00"; + base:location\#State base:State-Nevada; + base:location\#latitude 3.9e1; + base:location\#longitude -1.17e2; + base:location\#wikidata "Q1227"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nevada" . + +base:location\/USA-Newp-00 a base:location; + base:location\#City base:City-Newport; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Newp-00"; + base:location\#State base:State-RhodeIsland; + base:location\#latitude 4.149e1; + base:location\#longitude -7.131310000000001e1; + base:location\#wikidata "Q54264" . + +base:location\/USA-Niag-00 a base:location; + base:location\#City base:City-NiagaraFalls; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5128723"; + base:location\#IDLocation "USA-Niag-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.31e1; + base:location\#longitude -7.90166e1; + base:location\#wikidata "Q128133"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Niagara_Falls,_New_York" . + +base:location\/USA-OgdNY-00 a base:location; + base:location\#City base:City-Ogdensburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-OgdNY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.47088e1; + base:location\#longitude -7.54718e1; + base:location\#wikidata "Q684406"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ogdensburg,_New_York" . + +base:location\/USA-OilC-00 a base:location; + base:location\#City base:City-OilCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-OilC-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.14283e1; + base:location\#longitude -7.97072e1; + base:location\#wikidata "Q1184941" . + +base:location\/USA-Orange-00 a base:location; + base:location\#City base:City-OrangeCounty; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Orange-00"; + base:location\#State base:State-California; + base:location\#latitude 3.38031e1; + base:location\#longitude -1.17832e2; + base:location\#wikidata "Q5925" . + +base:location\/USA-Oregon-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5744337"; + base:location\#IDLocation "USA-Oregon-00"; + base:location\#State base:State-Oregon; + base:location\#latitude 4.39358e1; + base:location\#longitude -1.20575e2; + base:location\#wikidata "Q824"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Oregon" . + +base:location\/USA-Paters-00 a base:location; + base:location\#City base:City-Paterson; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5102466"; + base:location\#IDLocation "USA-Paters-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.09156e1; + base:location\#longitude -7.41631e1; + base:location\#wikidata "Q138391"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Paterson,_New_Jersey" . + +base:location\/USA-Pens-00 a base:location; + base:location\#City base:City-Pensacola; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4168228"; + base:location\#IDLocation "USA-Pens-00"; + base:location\#State base:State-Florida; + base:location\#latitude 3.04213e1; + base:location\#longitude -8.721720000000001e1; + base:location\#wikidata "Q486306"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pensacola,_Florida" . + +base:location\/USA-Redla-00 a base:location; + base:location\#City base:City-Redlands; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5386754"; + base:location\#IDLocation "USA-Redla-00"; + base:location\#State base:State-California; + base:location\#latitude 3.40547e1; + base:location\#longitude -1.17183e2; + base:location\#wikidata "Q753830"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Redlands,_California" . + +base:location\/USA-Sid-00 a base:location; + base:location\#City base:City-Sidney; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5699552"; + base:location\#IDLocation "USA-Sid-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.11394e1; + base:location\#longitude -1.02978e2; + base:location\#wikidata "Q966516"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sidney,_Nebraska" . + +base:location\/USA-SilverCity-00 a base:location; + base:location\#City base:City-SilverCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5491487"; + base:location\#IDLocation "USA-SilverCity-00"; + base:location\#State base:State-NewMexico; + base:location\#latitude 3.27781e1; + base:location\#longitude -1.08274e2; + base:location\#wikidata "Q985526"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Silver_City,_New_Mexico" . + +base:location\/USA-SpringM-00 a base:location; + base:location\#City base:City-Springfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SpringM-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.7195e1; + base:location\#longitude -9.32861e1; + base:location\#wikidata "Q135615"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Springfield,_Missouri" . + +base:location\/USA-Streat-00 a base:location; + base:location\#City base:City-Streator; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4912698"; + base:location\#IDLocation "USA-Streat-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.11244e1; + base:location\#longitude -8.88297e1; + base:location\#wikidata "Q577816"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Streator,_Illinois" . + +base:location\/USA-Texas-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Texas-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.16667e1; + base:location\#longitude -9.945e1; + base:location\#wikidata "Q2884818" . + +base:location\/USA-Truck-00 a base:location; + base:location\#City base:City-Truckee; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5403676"; + base:location\#IDLocation "USA-Truck-00"; + base:location\#State base:State-California; + base:location\#latitude 3.93422e1; + base:location\#longitude -1.20204e2; + base:location\#wikidata "Q506402"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Truckee,_California" . + +base:location\/USA-WOra-00 a base:location; + base:location\#City base:City-WestOrange; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5106298"; + base:location\#IDLocation "USA-WOra-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.07886e1; + base:location\#longitude -7.425530000000001e1; + base:location\#wikidata "Q932601"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/West_Orange,_New_Jersey" . + +base:location\/USA-Waco-00 a base:location; + base:location\#City base:City-Waco; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4739526"; + base:location\#IDLocation "USA-Waco-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.15491e1; + base:location\#longitude -9.71472e1; + base:location\#wikidata "Q128244"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Waco,_Texas" . + +base:location\/USA-Willms-00 a base:location; + base:location\#City base:City-Williamsport; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Willms-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.12442e1; + base:location\#longitude -7.70183e1; + base:location\#wikidata "Q1016159" . + +base:location\/USA-Youngst-00 a base:location; + base:location\#City base:City-Youngstown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Youngst-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.10964e1; + base:location\#longitude -8.064919999999999e1; + base:location\#wikidata "Q216820" . + +base:location\/USa-SiouF-00 a base:location; + base:location\#City base:City-SiouxFalls; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USa-SiouF-00"; + base:location\#State base:State-SouthDakota; + base:location\#latitude 4.35364e1; + base:location\#longitude -9.67317e1; + base:location\#wikidata "Q131335" . + +base:location\/Ukr-DiJeSt-101 a base:location; + base:location\#City base:City-Hornostaipil; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-101"; + base:location\#latitude 5.10708e1; + base:location\#longitude 3.02522e1; + base:location\#wikidata "Q3543790"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-119 a base:location; + base:location\#City base:City-Brody; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-119"; + base:location\#latitude 5.00781e1; + base:location\#longitude 2.51542e1; + base:location\#wikidata "Q465104"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-142 a base:location; + base:location\#City base:City-Kremenets; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-142"; + base:location\#latitude 5.01081e1; + base:location\#longitude 2.57275e1; + base:location\#wikidata "Q849116"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-23 a base:location; + base:location\#City base:City-Rivne; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-23"; + base:location\#latitude 5.06197e1; + base:location\#longitude 2.62514e1; + base:location\#wikidata "Q156739"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-24 a base:location; + base:location\#City base:City-Ternopil; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-24"; + base:location\#latitude 4.95667e1; + base:location\#longitude 2.56e1; + base:location\#wikidata "Q156743"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-25 a base:location; + base:location\#City base:City-Poltava; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-25"; + base:location\#latitude 4.95894e1; + base:location\#longitude 3.45514e1; + base:location\#wikidata "Q156747"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-27 a base:location; + base:location\#City base:City-Chernihiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-27"; + base:location\#latitude 5.14939e1; + base:location\#longitude 3.12947e1; + base:location\#wikidata "Q157053"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-30 a base:location; + base:location\#City base:City-Kropyvnytskyi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-30"; + base:location\#latitude 4.85036e1; + base:location\#longitude 3.22631e1; + base:location\#wikidata "Q158292"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-31 a base:location; + base:location\#City base:City-Feodosiia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-31"; + base:location\#latitude 4.50489e1; + base:location\#longitude 3.53792e1; + base:location\#wikidata "Q158491"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-72 a base:location; + base:location\#City base:City-Uman; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-72"; + base:location\#latitude 4.875e1; + base:location\#longitude 3.02167e1; + base:location\#wikidata "Q208499"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/VN-HCMC-00 a base:location; + base:location\#City base:City-HoChiMinhCity; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Vietnam; + base:location\#GeoNamesID "1566083"; + base:location\#IDLocation "VN-HCMC-00"; + base:location\#latitude 1.075e1; + base:location\#longitude 1.06667e2; + base:location\#wikidata "Q1854"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ho_Chi_Minh_City" . + +base:location\/YU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Yugoslavia; + base:location\#IDLocation "YU-00"; + base:location\#latitude 4.48167e1; + base:location\#longitude 2.045e1; + base:location\#wikidata "Q36704" . + +base:location\/ZA-Durb-00 a base:location; + base:location\#City base:City-Durban; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#GeoNamesID "1007311"; + base:location\#IDLocation "ZA-Durb-00"; + base:location\#latitude -2.98741e1; + base:location\#longitude 3.10102e1; + base:location\#wikidata "Q5468"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Durban" . + +base:organisation\/102 a base:organisation; + base:organisation\#IDOrganisation 102; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Linzer Landestheater"; + base:organisation\#ref-IDLocation base:location\/AT-Linz-00 . + +base:organisation\/103 a base:organisation; + base:organisation\#IDOrganisation 103; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Salzburg"; + base:organisation\#ref-IDLocation base:location\/AT-Salzb-00 . + +base:organisation\/1062 a base:organisation; + base:organisation\#IDOrganisation 1062; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Turn Hall"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/112 a base:organisation; + base:organisation\#IDOrganisation 112; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Max Reinhard´s acting school" . + +base:organisation\/1140 a base:organisation; + base:organisation\#IDOrganisation 1140; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera House " . + +base:organisation\/115 a base:organisation; + base:organisation\#IDOrganisation 115; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Dresden Royal Opera House"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/1188 a base:organisation; + base:organisation\#IDOrganisation 1188; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Pyne - Harrison company" . + +base:organisation\/119 a base:organisation; + base:organisation\#IDOrganisation 119; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Komische Oper (Ringtheater)"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/125 a base:organisation; + base:organisation\#IDOrganisation 125; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "herzoglich-sächsisches Hoftheater" . + +base:organisation\/1263 a base:organisation; + base:organisation\#IDOrganisation 1263; + base:organisation\#comment ""; + base:organisation\#inst_name "Rochester" . + +base:organisation\/1269 a base:organisation; + base:organisation\#IDOrganisation 1269; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Wood's Museum and Metropolitan" . + +base:organisation\/1272 a base:organisation; + base:organisation\#IDOrganisation 1272; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Parepa Rosa company" . + +base:organisation\/1278 a base:organisation; + base:organisation\#IDOrganisation 1278; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Howson English Opera Company/ Lingard´s company/Templeton and Co." . + +base:organisation\/1296 a base:organisation; + base:organisation\#IDOrganisation 1296; + base:organisation\#comment ""; + base:organisation\#inst_name "Gilder´s concerts" . + +base:organisation\/1302 a base:organisation; + base:organisation\#IDOrganisation 1302; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Dr. Stone´s church" . + +base:organisation\/1308 a base:organisation; + base:organisation\#IDOrganisation 1308; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Madison Square stock company" . + +base:organisation\/1370 a base:organisation; + base:organisation\#IDOrganisation 1370; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Dalys Theatre" . + +base:organisation\/138 a base:organisation; + base:organisation\#IDOrganisation 138; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New Theatre Company" . + +base:organisation\/139 a base:organisation; + base:organisation\#IDOrganisation 139; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro di Apollo in Rom"; + base:organisation\#ref-IDLocation base:location\/IT-Rom-00 . + +base:organisation\/1395 a base:organisation; + base:organisation\#IDOrganisation 1395; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New Amsterdam Theatre" . + +base:organisation\/140 a base:organisation; + base:organisation\#IDOrganisation 140; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Großherzogliches Hoftheater Karlsruhe"; + base:organisation\#ref-IDLocation base:location\/GER-Karls-00 . + +base:organisation\/1430 a base:organisation; + base:organisation\#IDOrganisation 1430; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Casino Theatre" . + +base:organisation\/144 a base:organisation; + base:organisation\#IDOrganisation 144; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "London Symphony Orchestra"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/1455 a base:organisation; + base:organisation\#IDOrganisation 1455; + base:organisation\#comment ""; + base:organisation\#inst_name "Phênix Dramática" . + +base:organisation\/148 a base:organisation; + base:organisation\#IDOrganisation 148; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Ben De Bar's Opera House company, St. Louis"; + base:organisation\#ref-IDLocation base:location\/USA-StLouis-00 . + +base:organisation\/1480 a base:organisation; + base:organisation\#IDOrganisation 1480; + base:organisation\#comment ""; + base:organisation\#inst_name "Politheama" . + +base:organisation\/150 a base:organisation; + base:organisation\#IDOrganisation 150; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Boston Museum Stock Company"; + base:organisation\#ref-IDLocation base:location\/USA-Bost-00 . + +base:organisation\/1505 a base:organisation; + base:organisation\#IDOrganisation 1505; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Recreio Dramático" . + +base:organisation\/1540 a base:organisation; + base:organisation\#IDOrganisation 1540; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Circuit" . + +base:organisation\/1660 a base:organisation; + base:organisation\#IDOrganisation 1660; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Frohmans company" . + +base:organisation\/1670 a base:organisation; + base:organisation\#IDOrganisation 1670; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Annie Russell Theatre" . + +base:organisation\/1690 a base:organisation; + base:organisation\#IDOrganisation 1690; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Lemberg Conservatory" . + +base:organisation\/1695 a base:organisation; + base:organisation\#IDOrganisation 1695; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Vienna Conservatory" . + +base:organisation\/171 a base:organisation; + base:organisation\#IDOrganisation 171; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Philharmonischer Verein" . + +base:organisation\/1725 a base:organisation; + base:organisation\#IDOrganisation 1725; + base:organisation\#comment ""; + base:organisation\#inst_name "London Palladium" . + +base:organisation\/1736 a base:organisation; + base:organisation\#IDOrganisation 1736; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "João Caetano’s theatre company " . + +base:organisation\/1766 a base:organisation; + base:organisation\#IDOrganisation 1766; + base:organisation\#comment ""; + base:organisation\#inst_name "Ginásio Dramático" . + +base:organisation\/1796 a base:organisation; + base:organisation\#IDOrganisation 1796; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Phênix Dramática (old Teatro Eldorado)" . + +base:organisation\/181 a base:organisation; + base:organisation\#IDOrganisation 181; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opernhaus Breslau"; + base:organisation\#ref-IDLocation base:location\/PL-Bres-00 . + +base:organisation\/1816 a base:organisation; + base:organisation\#IDOrganisation 1816; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dom Pedro II" . + +base:organisation\/184 a base:organisation; + base:organisation\#IDOrganisation 184; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Altenburg"; + base:organisation\#ref-IDLocation base:location\/GER-Altenb-00 . + +base:organisation\/1996 a base:organisation; + base:organisation\#IDOrganisation 1996; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Varieties Theatre" . + +base:organisation\/203 a base:organisation; + base:organisation\#IDOrganisation 203; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Hofburgtheater" . + +base:organisation\/2056 a base:organisation; + base:organisation\#IDOrganisation 2056; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "French Opera Bouffe" . + +base:organisation\/209 a base:organisation; + base:organisation\#IDOrganisation 209; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Damrosch German Opera" . + +base:organisation\/211 a base:organisation; + base:organisation\#IDOrganisation 211; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Italian Opera Company" . + +base:organisation\/214 a base:organisation; + base:organisation\#IDOrganisation 214; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Augsburg" . + +base:organisation\/2141 a base:organisation; + base:organisation\#IDOrganisation 2141; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Café Parisien: 5 billards"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/217 a base:organisation; + base:organisation\#IDOrganisation 217; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater Budapest" . + +base:organisation\/2201 a base:organisation; + base:organisation\#IDOrganisation 2201; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro della Victoria"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/221 a base:organisation; + base:organisation\#IDOrganisation 221; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Thalia-Theater Graz" . + +base:organisation\/2345 a base:organisation; + base:organisation\#IDOrganisation 2345; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "New Theater" . + +base:organisation\/2350 a base:organisation; + base:organisation\#IDOrganisation 2350; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Shubert Theater" . + +base:organisation\/2355 a base:organisation; + base:organisation\#IDOrganisation 2355; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Shubert Theatre" . + +base:organisation\/2375 a base:organisation; + base:organisation\#IDOrganisation 2375; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Century Theater" . + +base:organisation\/239 a base:organisation; + base:organisation\#IDOrganisation 239; + base:organisation\#comment ""; + base:organisation\#inst_name "Paramount Pictures" . + +base:organisation\/2390 a base:organisation; + base:organisation\#IDOrganisation 2390; + base:organisation\#comment ""; + base:organisation\#inst_name "North American" . + +base:organisation\/250 a base:organisation; + base:organisation\#IDOrganisation 250; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Cologne" . + +base:organisation\/252 a base:organisation; + base:organisation\#IDOrganisation 252; + base:organisation\#comment ""; + base:organisation\#inst_name "Frankfurter Schauspielhaus" . + +base:organisation\/253 a base:organisation; + base:organisation\#IDOrganisation 253; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Dresdner Hoftheater" . + +base:organisation\/2530 a base:organisation; + base:organisation\#IDOrganisation 2530; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Instituto Nacional del Estudios del Teatro" . + +base:organisation\/254 a base:organisation; + base:organisation\#IDOrganisation 254; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Berlin" . + +base:organisation\/255 a base:organisation; + base:organisation\#IDOrganisation 255; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Mannheim" . + +base:organisation\/2575 a base:organisation; + base:organisation\#IDOrganisation 2575; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Real" . + +base:organisation\/262 a base:organisation; + base:organisation\#IDOrganisation 262; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Olympia Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/2625 a base:organisation; + base:organisation\#IDOrganisation 2625; + base:organisation\#comment ""; + base:organisation\#inst_name "Argentinian Government"; + base:organisation\#ref-IDLocation base:location\/ARG-00 . + +base:organisation\/270 a base:organisation; + base:organisation\#IDOrganisation 270; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Norwich theatrical circuit" . + +base:organisation\/2950 a base:organisation; + base:organisation\#IDOrganisation 2950; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nuevo (Norte)" . + +base:organisation\/2985 a base:organisation; + base:organisation\#IDOrganisation 2985; + base:organisation\#comment ""; + base:organisation\#inst_name "Orfeo Català" . + +base:organisation\/299 a base:organisation; + base:organisation\#IDOrganisation 299; + base:organisation\#comment ""; + base:organisation\#inst_name "Königliches Schauspielhaus Berlin" . + +base:organisation\/300 a base:organisation; + base:organisation\#IDOrganisation 300; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Neues Theater am Schiffbauerdamm in Berlin" . + +base:organisation\/308 a base:organisation; + base:organisation\#IDOrganisation 308; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opernhaus von Brünn (Brno)" . + +base:organisation\/311 a base:organisation; + base:organisation\#IDOrganisation 311; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Regio in Turin" . + +base:organisation\/315 a base:organisation; + base:organisation\#IDOrganisation 315; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Orpheum Theatre" . + +base:organisation\/317 a base:organisation; + base:organisation\#IDOrganisation 317; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro del Fondo" . + +base:organisation\/318 a base:organisation; + base:organisation\#IDOrganisation 318; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro dei Fiorentini" . + +base:organisation\/320 a base:organisation; + base:organisation\#IDOrganisation 320; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro alla Canobbiana" . + +base:organisation\/3220 a base:organisation; + base:organisation\#IDOrganisation 3220; + base:organisation\#comment ""; + base:organisation\#inst_name "Ministry of Education" . + +base:organisation\/323 a base:organisation; + base:organisation\#IDOrganisation 323; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro della Pergola" . + +base:organisation\/3250 a base:organisation; + base:organisation\#IDOrganisation 3250; + base:organisation\#comment ""; + base:organisation\#inst_name "Prensa Médica Argentina/ Última hora" . + +base:organisation\/3255 a base:organisation; + base:organisation\#IDOrganisation 3255; + base:organisation\#comment ""; + base:organisation\#inst_name "Salão Celso Garcia" . + +base:organisation\/3300 a base:organisation; + base:organisation\#IDOrganisation 3300; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Florida" . + +base:organisation\/3460 a base:organisation; + base:organisation\#IDOrganisation 3460; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia de Operetas, Dramas e Comédias" . + +base:organisation\/3530 a base:organisation; + base:organisation\#IDOrganisation 3530; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Il teatro e gli artisti italiani nell’Argentina (monography)" . + +base:organisation\/3565 a base:organisation; + base:organisation\#IDOrganisation 3565; + base:organisation\#comment ""; + base:organisation\#inst_name "Manuel Romero, José González Castillo y Carlos Schaefer Gallo" . + +base:organisation\/357 a base:organisation; + base:organisation\#IDOrganisation 357; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Schumann Gesellschaft" . + +base:organisation\/3610 a base:organisation; + base:organisation\#IDOrganisation 3610; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedad Argentina de Empresarios" . + +base:organisation\/363 a base:organisation; + base:organisation\#IDOrganisation 363; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Victoria-Theater, Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/3650 a base:organisation; + base:organisation\#IDOrganisation 3650; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Cine-Teatro Brodway" . + +base:organisation\/3655 a base:organisation; + base:organisation\#IDOrganisation 3655; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Jandaia" . + +base:organisation\/3660 a base:organisation; + base:organisation\#IDOrganisation 3660; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Guarani" . + +base:organisation\/3685 a base:organisation; + base:organisation\#IDOrganisation 3685; + base:organisation\#comment ""; + base:organisation\#inst_name "Odeon Records" . + +base:organisation\/369 a base:organisation; + base:organisation\#IDOrganisation 369; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "London Opera House"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/3715 a base:organisation; + base:organisation\#IDOrganisation 3715; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio El Mundo" . + +base:organisation\/372 a base:organisation; + base:organisation\#IDOrganisation 372; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Germaniatheater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/3760 a base:organisation; + base:organisation\#IDOrganisation 3760; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Waldorf Astoria Hotel" . + +base:organisation\/3765 a base:organisation; + base:organisation\#IDOrganisation 3765; + base:organisation\#comment ""; + base:organisation\#inst_name "Decca Records" . + +base:organisation\/3770 a base:organisation; + base:organisation\#IDOrganisation 3770; + base:organisation\#comment ""; + base:organisation\#inst_name "The Versailles Restaurant" . + +base:organisation\/386 a base:organisation; + base:organisation\#IDOrganisation 386; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Volkstheater Wien" . + +base:organisation\/3885 a base:organisation; + base:organisation\#IDOrganisation 3885; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Latin Cassino" . + +base:organisation\/3895 a base:organisation; + base:organisation\#IDOrganisation 3895; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Town Cassino" . + +base:organisation\/3955 a base:organisation; + base:organisation\#IDOrganisation 3955; + base:organisation\#comment ""; + base:organisation\#inst_name "RanchVegas" . + +base:organisation\/3975 a base:organisation; + base:organisation\#IDOrganisation 3975; + base:organisation\#comment ""; + base:organisation\#inst_name "Paramount" . + +base:organisation\/399 a base:organisation; + base:organisation\#IDOrganisation 399; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Koblenz" . + +base:organisation\/407 a base:organisation; + base:organisation\#IDOrganisation 407; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Fred Karnos Group" . + +base:organisation\/4105 a base:organisation; + base:organisation\#IDOrganisation 4105; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Español" . + +base:organisation\/4206 a base:organisation; + base:organisation\#IDOrganisation 4206; + base:organisation\#comment ""; + base:organisation\#inst_name "San Francisco Exhibition" . + +base:organisation\/4221 a base:organisation; + base:organisation\#IDOrganisation 4221; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía lírico-dramática (Dir. Arderius)" . + +base:organisation\/425 a base:organisation; + base:organisation\#IDOrganisation 425; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Drury Lane Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/4251 a base:organisation; + base:organisation\#IDOrganisation 4251; + base:organisation\#comment ""; + base:organisation\#inst_name "Tuilerie" . + +base:organisation\/426 a base:organisation; + base:organisation\#IDOrganisation 426; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Konservatorium Leipzig"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:organisation\/433 a base:organisation; + base:organisation\#IDOrganisation 433; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Braunschweig Opera"; + base:organisation\#ref-IDLocation base:location\/GER-BrauSch-00 . + +base:organisation\/435 a base:organisation; + base:organisation\#IDOrganisation 435; + base:organisation\#InstType base:InstitutionType-festival; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Wagner-Festspiele"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/4380 a base:organisation; + base:organisation\#IDOrganisation 4380; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre de la Bourse" . + +base:organisation\/4385 a base:organisation; + base:organisation\#IDOrganisation 4385; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre de l’Alhambra" . + +base:organisation\/440 a base:organisation; + base:organisation\#IDOrganisation 440; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Daniel Frohman’s company" . + +base:organisation\/4410 a base:organisation; + base:organisation\#IDOrganisation 4410; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Royal de l’Alcazar" . + +base:organisation\/4440 a base:organisation; + base:organisation\#IDOrganisation 4440; + base:organisation\#comment ""; + base:organisation\#inst_name "Queen’s Hall" . + +base:organisation\/4450 a base:organisation; + base:organisation\#IDOrganisation 4450; + base:organisation\#comment ""; + base:organisation\#inst_name "Town Hall" . + +base:organisation\/4465 a base:organisation; + base:organisation\#IDOrganisation 4465; + base:organisation\#comment ""; + base:organisation\#inst_name "Steindorff’s Grand Orchestra" . + +base:organisation\/4480 a base:organisation; + base:organisation\#IDOrganisation 4480; + base:organisation\#comment ""; + base:organisation\#inst_name "Edison Phonograph Company" . + +base:organisation\/449 a base:organisation; + base:organisation\#IDOrganisation 449; + base:organisation\#comment ""; + base:organisation\#inst_name "Arcadia"; + base:organisation\#ref-IDLocation base:location\/RU-StPet-00 . + +base:organisation\/451 a base:organisation; + base:organisation\#IDOrganisation 451; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Dresden Hoftheater"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/453 a base:organisation; + base:organisation\#IDOrganisation 453; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Graz Opernhaus"; + base:organisation\#ref-IDLocation base:location\/AT-Graz-00 . + +base:organisation\/4530 a base:organisation; + base:organisation\#IDOrganisation 4530; + base:organisation\#comment ""; + base:organisation\#inst_name "Recital with Maurice Lafarge at the piano" . + +base:organisation\/454 a base:organisation; + base:organisation\#IDOrganisation 454; + base:organisation\#comment ""; + base:organisation\#inst_name "Cabaret Fledermaus"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/456 a base:organisation; + base:organisation\#IDOrganisation 456; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mannheim Hofoper"; + base:organisation\#ref-IDLocation base:location\/GER-Mnhm-00 . + +base:organisation\/4580 a base:organisation; + base:organisation\#IDOrganisation 4580; + base:organisation\#comment ""; + base:organisation\#inst_name "City College Stadium" . + +base:organisation\/459 a base:organisation; + base:organisation\#IDOrganisation 459; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre de la Porte Saint-Martin"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/460 a base:organisation; + base:organisation\#IDOrganisation 460; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre-Lyrique"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/4632 a base:organisation; + base:organisation\#IDOrganisation 4632; + base:organisation\#comment ""; + base:organisation\#inst_name "Brougham Lyceum" . + +base:organisation\/4648 a base:organisation; + base:organisation\#IDOrganisation 4648; + base:organisation\#comment ""; + base:organisation\#inst_name "Lviv Theater" . + +base:organisation\/465 a base:organisation; + base:organisation\#IDOrganisation 465; + base:organisation\#comment ""; + base:organisation\#inst_name "Wiener Hölle"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4668 a base:organisation; + base:organisation\#IDOrganisation 4668; + base:organisation\#comment ""; + base:organisation\#inst_name "Pittsburgh Library Hall" . + +base:organisation\/4676 a base:organisation; + base:organisation\#IDOrganisation 4676; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago Hooley's Theater" . + +base:organisation\/4716 a base:organisation; + base:organisation\#IDOrganisation 4716; + base:organisation\#comment ""; + base:organisation\#inst_name "Augusta Grand Opera House" . + +base:organisation\/473 a base:organisation; + base:organisation\#IDOrganisation 473; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Singakademie"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/4740 a base:organisation; + base:organisation\#IDOrganisation 4740; + base:organisation\#comment ""; + base:organisation\#inst_name "Westover Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-BayC-00 . + +base:organisation\/4788 a base:organisation; + base:organisation\#IDOrganisation 4788; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Mariano Galé" . + +base:organisation\/479 a base:organisation; + base:organisation\#IDOrganisation 479; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Königliches Hof- und Nationaltheater in München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/4812 a base:organisation; + base:organisation\#IDOrganisation 4812; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Italiana de Comedias de Tatiana Paulova" . + +base:organisation\/482 a base:organisation; + base:organisation\#IDOrganisation 482; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro La Fenice"; + base:organisation\#ref-IDLocation base:location\/IT-Ven-00 . + +base:organisation\/4872 a base:organisation; + base:organisation\#IDOrganisation 4872; + base:organisation\#comment ""; + base:organisation\#inst_name "“Hippodrome Circus” de Frank Brown" . + +base:organisation\/48930 a base:organisation; + base:organisation\#IDOrganisation 48930; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "3rd Street Theatre" . + +base:organisation\/49000 a base:organisation; + base:organisation\#IDOrganisation 49000; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Abraham Fiszon Troupe" . + +base:organisation\/4916 a base:organisation; + base:organisation\#IDOrganisation 4916; + base:organisation\#inst_name "Music Hall in Wilkes-Barre" . + +base:organisation\/49190 a base:organisation; + base:organisation\#IDOrganisation 49190; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Agid's Vaudeville House" . + +base:organisation\/4924 a base:organisation; + base:organisation\#IDOrganisation 4924; + base:organisation\#inst_name "Grand Opera House in Hamilton" . + +base:organisation\/49390 a base:organisation; + base:organisation\#IDOrganisation 49390; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Amateur Drama Society" . + +base:organisation\/494 a base:organisation; + base:organisation\#IDOrganisation 494; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Dresden"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/49520 a base:organisation; + base:organisation\#IDOrganisation 49520; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Anshel Schorr's Troupe" . + +base:organisation\/49570 a base:organisation; + base:organisation\#IDOrganisation 49570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Aquarius Theatre" . + +base:organisation\/4964 a base:organisation; + base:organisation\#IDOrganisation 4964; + base:organisation\#inst_name "Bidwells Academy of Music in New Orleans" . + +base:organisation\/49990 a base:organisation; + base:organisation\#IDOrganisation 49990; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Baratov Troupe" . + +base:organisation\/5000 a base:organisation; + base:organisation\#IDOrganisation 5000; + base:organisation\#inst_name "Music Hall in Dayton" . + +base:organisation\/5004 a base:organisation; + base:organisation\#IDOrganisation 5004; + base:organisation\#inst_name "Whitneys Grand Opera" . + +base:organisation\/50130 a base:organisation; + base:organisation\#IDOrganisation 50130; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Ber Hart troupe" . + +base:organisation\/5020 a base:organisation; + base:organisation\#IDOrganisation 5020; + base:organisation\#inst_name "Corinthian Academy in Rochester" . + +base:organisation\/5040 a base:organisation; + base:organisation\#IDOrganisation 5040; + base:organisation\#inst_name "Tabor Grand Opera House in Des Moines" . + +base:organisation\/50420 a base:organisation; + base:organisation\#IDOrganisation 50420; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "British Theatre Guild" . + +base:organisation\/50570 a base:organisation; + base:organisation\#IDOrganisation 50570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bulgarov Theatre" . + +base:organisation\/5064 a base:organisation; + base:organisation\#IDOrganisation 5064; + base:organisation\#inst_name "Academy of Music, Fort Wayne"; + base:organisation\#ref-IDLocation base:location\/USA-Fort-00 . + +base:organisation\/507 a base:organisation; + base:organisation\#IDOrganisation 507; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Varshever Yidisher Kunst-theater" . + +base:organisation\/5080 a base:organisation; + base:organisation\#IDOrganisation 5080; + base:organisation\#inst_name "Academy of Music, Rochester" . + +base:organisation\/51020 a base:organisation; + base:organisation\#IDOrganisation 51020; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Charles Nathanson's Troupe" . + +base:organisation\/51100 a base:organisation; + base:organisation\#IDOrganisation 51100; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago's Drama Society" . + +base:organisation\/5120 a base:organisation; + base:organisation\#IDOrganisation 5120; + base:organisation\#inst_name "Fontain Hause" . + +base:organisation\/5144 a base:organisation; + base:organisation\#IDOrganisation 5144; + base:organisation\#inst_name "Beaux Arts Theatre (Monte Carlo)" . + +base:organisation\/515 a base:organisation; + base:organisation\#IDOrganisation 515; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Warsaw Tsentral Theater"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5204 a base:organisation; + base:organisation\#IDOrganisation 5204; + base:organisation\#inst_name "Grand Opera House (Evansville)" . + +base:organisation\/5212 a base:organisation; + base:organisation\#IDOrganisation 5212; + base:organisation\#inst_name "New Memphis Theatre" . + +base:organisation\/5216 a base:organisation; + base:organisation\#IDOrganisation 5216; + base:organisation\#inst_name "Grand Opera House (New Orleans)" . + +base:organisation\/5224 a base:organisation; + base:organisation\#IDOrganisation 5224; + base:organisation\#inst_name "Millett´s Opera House (Austin)" . + +base:organisation\/5228 a base:organisation; + base:organisation\#IDOrganisation 5228; + base:organisation\#inst_name "Pillot´s Opera House (Houston)" . + +base:organisation\/52280 a base:organisation; + base:organisation\#IDOrganisation 52280; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Dagmar Theatre" . + +base:organisation\/52440 a base:organisation; + base:organisation\#IDOrganisation 52440; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Der veg" . + +base:organisation\/52450 a base:organisation; + base:organisation\#IDOrganisation 52450; + base:organisation\#InstType base:InstitutionType-MusicalOrganization; + base:organisation\#comment ""; + base:organisation\#inst_name "Der yidish-rumenysher gezangs-farayn" . + +base:organisation\/5252 a base:organisation; + base:organisation\#IDOrganisation 5252; + base:organisation\#inst_name "Delavan Opera House (Meriden)" . + +base:organisation\/5260 a base:organisation; + base:organisation\#IDOrganisation 5260; + base:organisation\#inst_name "Cincinnati Dramatic Festival" . + +base:organisation\/5272 a base:organisation; + base:organisation\#IDOrganisation 5272; + base:organisation\#inst_name "Gillis Opera House (Kansas City)" . + +base:organisation\/52820 a base:organisation; + base:organisation\#IDOrganisation 52820; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic Circle" . + +base:organisation\/5300 a base:organisation; + base:organisation\#IDOrganisation 5300; + base:organisation\#inst_name "Madison Avenue Theatre (Elmira)" . + +base:organisation\/5336 a base:organisation; + base:organisation\#IDOrganisation 5336; + base:organisation\#inst_name "City Theatre (Brockton)" . + +base:organisation\/5340 a base:organisation; + base:organisation\#IDOrganisation 5340; + base:organisation\#inst_name "Academy of Music, Haverhill" . + +base:organisation\/5345 a base:organisation; + base:organisation\#IDOrganisation 5345; + base:organisation\#inst_name "Academy of Music, Fall River" . + +base:organisation\/5361 a base:organisation; + base:organisation\#IDOrganisation 5361; + base:organisation\#inst_name "Academy of Music, Wilmington" . + +base:organisation\/53910 a base:organisation; + base:organisation\#IDOrganisation 53910; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Free Dramatic Studio" . + +base:organisation\/5393 a base:organisation; + base:organisation\#IDOrganisation 5393; + base:organisation\#inst_name "Broad Street Theatre, Philadelphia" . + +base:organisation\/5405 a base:organisation; + base:organisation\#IDOrganisation 5405; + base:organisation\#inst_name "Cheyenne Opera House" . + +base:organisation\/54200 a base:organisation; + base:organisation\#IDOrganisation 54200; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "German Choral School" . + +base:organisation\/5433 a base:organisation; + base:organisation\#IDOrganisation 5433; + base:organisation\#inst_name "Doheny´s Theatre, Council Bluffs" . + +base:organisation\/54360 a base:organisation; + base:organisation\#IDOrganisation 54360; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Goldene pave" . + +base:organisation\/54530 a base:organisation; + base:organisation\#IDOrganisation 54530; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Opera House" . + +base:organisation\/54570 a base:organisation; + base:organisation\#IDOrganisation 54570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/546 a base:organisation; + base:organisation\#IDOrganisation 546; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Semperoper Dresden"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/548 a base:organisation; + base:organisation\#IDOrganisation 548; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stuttgarter Hoftheater"; + base:organisation\#ref-IDLocation base:location\/GER-STR-00 . + +base:organisation\/5481 a base:organisation; + base:organisation\#IDOrganisation 5481; + base:organisation\#inst_name "Grand Opera House, Leavenworth" . + +base:organisation\/5485 a base:organisation; + base:organisation\#IDOrganisation 5485; + base:organisation\#inst_name "Grand Opera House, Los Angeles" . + +base:organisation\/5493 a base:organisation; + base:organisation\#IDOrganisation 5493; + base:organisation\#inst_name "Grand Opera House, Pueblo" . + +base:organisation\/55100 a base:organisation; + base:organisation\#IDOrganisation 55100; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hengens Theatre" . + +base:organisation\/5517 a base:organisation; + base:organisation\#IDOrganisation 5517; + base:organisation\#inst_name "Hawe`s Opera House, Bridgeport" . + +base:organisation\/5521 a base:organisation; + base:organisation\#IDOrganisation 5521; + base:organisation\#inst_name "Hollis Street Theatre, Boston" . + +base:organisation\/5525 a base:organisation; + base:organisation\#IDOrganisation 5525; + base:organisation\#inst_name "Howard Opera House, Burlington" . + +base:organisation\/554 a base:organisation; + base:organisation\#IDOrganisation 554; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Royal"; + base:organisation\#ref-IDLocation base:location\/UK-EDI-00 . + +base:organisation\/5545 a base:organisation; + base:organisation\#IDOrganisation 5545; + base:organisation\#inst_name "Kingston Opera House, Kingston" . + +base:organisation\/557 a base:organisation; + base:organisation\#IDOrganisation 557; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Court Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/55700 a base:organisation; + base:organisation\#IDOrganisation 55700; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hope Theatre" . + +base:organisation\/5573 a base:organisation; + base:organisation\#IDOrganisation 5573; + base:organisation\#inst_name "Ming´s Opera House, Helena" . + +base:organisation\/558 a base:organisation; + base:organisation\#IDOrganisation 558; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Haymarket Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/56030 a base:organisation; + base:organisation\#IDOrganisation 56030; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Israelita" . + +base:organisation\/5605 a base:organisation; + base:organisation\#IDOrganisation 5605; + base:organisation\#inst_name "Newport Opera House" . + +base:organisation\/56170 a base:organisation; + base:organisation\#IDOrganisation 56170; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacob Spivakovski Troupe" . + +base:organisation\/562 a base:organisation; + base:organisation\#IDOrganisation 562; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaudeville Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/5629 a base:organisation; + base:organisation\#IDOrganisation 5629; + base:organisation\#inst_name "Opera House, Holyoke" . + +base:organisation\/564 a base:organisation; + base:organisation\#IDOrganisation 564; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Garrick Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/565 a base:organisation; + base:organisation\#IDOrganisation 565; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Savoy Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/56540 a base:organisation; + base:organisation\#IDOrganisation 56540; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Kaminska Troupe" . + +base:organisation\/5685 a base:organisation; + base:organisation\#IDOrganisation 5685; + base:organisation\#inst_name "Rand´s Opera House, Troy" . + +base:organisation\/56960 a base:organisation; + base:organisation\#IDOrganisation 56960; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Krause-Spivakovski Troupe" . + +base:organisation\/5697 a base:organisation; + base:organisation\#IDOrganisation 5697; + base:organisation\#inst_name "Tabor Opera House, Leadville" . + +base:organisation\/57020 a base:organisation; + base:organisation\#IDOrganisation 57020; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Kunst-Ring" . + +base:organisation\/571 a base:organisation; + base:organisation\#IDOrganisation 571; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Harris Theatre "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/572 a base:organisation; + base:organisation\#IDOrganisation 572; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New Amsterdam "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/5741 a base:organisation; + base:organisation\#IDOrganisation 5741; + base:organisation\#inst_name "Wood´s Opera House, Bay City" . + +base:organisation\/57430 a base:organisation; + base:organisation\#IDOrganisation 57430; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lenox Theater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/5744 a base:organisation; + base:organisation\#IDOrganisation 5744; + base:organisation\#inst_name "Opera House in Chattanooga" . + +base:organisation\/57450 a base:organisation; + base:organisation\#IDOrganisation 57450; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Leon Golubok Troupe" . + +base:organisation\/57560 a base:organisation; + base:organisation\#IDOrganisation 57560; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Lidia Potocka's Tour" . + +base:organisation\/576 a base:organisation; + base:organisation\#IDOrganisation 576; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Knickerbocker Theater"; + base:organisation\#ref-IDLocation base:location\/USA-Wash-00 . + +base:organisation\/57700 a base:organisation; + base:organisation\#IDOrganisation 57700; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Literary Drama Club" . + +base:organisation\/58420 a base:organisation; + base:organisation\#IDOrganisation 58420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Meerson and Sam Adler Troupe" . + +base:organisation\/58660 a base:organisation; + base:organisation\#IDOrganisation 58660; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mike Thomashefsky Troupe" . + +base:organisation\/58830 a base:organisation; + base:organisation\#IDOrganisation 58830; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mogulesco Troupe" . + +base:organisation\/58870 a base:organisation; + base:organisation\#IDOrganisation 58870; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Mordechai Segalesco Troupe" . + +base:organisation\/58880 a base:organisation; + base:organisation\#IDOrganisation 58880; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Morris Akselrad Troupe" . + +base:organisation\/58910 a base:organisation; + base:organisation\#IDOrganisation 58910; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Moshkovich troupe" . + +base:organisation\/58920 a base:organisation; + base:organisation\#IDOrganisation 58920; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mount Morris Theatre" . + +base:organisation\/59340 a base:organisation; + base:organisation\#IDOrganisation 59340; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Neue Lodzer Zeitung" . + +base:organisation\/59880 a base:organisation; + base:organisation\#IDOrganisation 59880; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nowy Teatr" . + +base:organisation\/599 a base:organisation; + base:organisation\#IDOrganisation 599; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Francisco"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/59940 a base:organisation; + base:organisation\#IDOrganisation 59940; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Odessa Municipal Theatre" . + +base:organisation\/606 a base:organisation; + base:organisation\#IDOrganisation 606; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Salvador" . + +base:organisation\/60940 a base:organisation; + base:organisation\#IDOrganisation 60940; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Peretz Theatre" . + +base:organisation\/61010 a base:organisation; + base:organisation\#IDOrganisation 61010; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Petrograd Theatre Society" . + +base:organisation\/61130 a base:organisation; + base:organisation\#IDOrganisation 61130; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Plaza Theatre" . + +base:organisation\/61670 a base:organisation; + base:organisation\#IDOrganisation 61670; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Rappo Circus" . + +base:organisation\/61790 a base:organisation; + base:organisation\#IDOrganisation 61790; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Remeslengi Club" . + +base:organisation\/62220 a base:organisation; + base:organisation\#IDOrganisation 62220; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Theatre (Harry Bernstein)"; + base:organisation\#ref-IDLocation base:location\/USA-Clevel-00 . + +base:organisation\/62260 a base:organisation; + base:organisation\#IDOrganisation 62260; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Rumanian Opera (National Theatre in Bucharest)" . + +base:organisation\/62410 a base:organisation; + base:organisation\#IDOrganisation 62410; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sam Adler and Spivakovski Troupe" . + +base:organisation\/62450 a base:organisation; + base:organisation\#IDOrganisation 62450; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sam Wallerstein Troupe" . + +base:organisation\/625 a base:organisation; + base:organisation\#IDOrganisation 625; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Providência"; + base:organisation\#ref-IDLocation base:location\/BR-Bel-00 . + +base:organisation\/62720 a base:organisation; + base:organisation\#IDOrganisation 62720; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Shlifershteyn Troupe" . + +base:organisation\/62810 a base:organisation; + base:organisation\#IDOrganisation 62810; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Sincoff's Metropolitan Theatre" . + +base:organisation\/635 a base:organisation; + base:organisation\#IDOrganisation 635; + base:organisation\#comment ""; + base:organisation\#inst_name "Caras y Caretas; El Hogar"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/638 a base:organisation; + base:organisation\#IDOrganisation 638; + base:organisation\#comment ""; + base:organisation\#inst_name "El correo español"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/642 a base:organisation; + base:organisation\#IDOrganisation 642; + base:organisation\#comment ""; + base:organisation\#inst_name "El Diario"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/647 a base:organisation; + base:organisation\#IDOrganisation 647; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Apolo’s Company" . + +base:organisation\/656 a base:organisation; + base:organisation\#IDOrganisation 656; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nacional do Porto" . + +base:organisation\/66160 a base:organisation; + base:organisation\#IDOrganisation 66160; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatre Royal" . + +base:organisation\/66330 a base:organisation; + base:organisation\#IDOrganisation 66330; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Gayety Theatre" . + +base:organisation\/66340 a base:organisation; + base:organisation\#IDOrganisation 66340; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "The Hebrew Actors' Union (HAU)" . + +base:organisation\/665 a base:organisation; + base:organisation\#IDOrganisation 665; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia do Teatro de Variedades" . + +base:organisation\/66730 a base:organisation; + base:organisation\#IDOrganisation 66730; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "The Yiddish Art Theatre (as stable theatre)" . + +base:organisation\/66740 a base:organisation; + base:organisation\#IDOrganisation 66740; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "The Yiddish Dramatic Amateur Circle" . + +base:organisation\/66750 a base:organisation; + base:organisation\#IDOrganisation 66750; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "The Yiddish Theatre Society" . + +base:organisation\/668 a base:organisation; + base:organisation\#IDOrganisation 668; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Maria Vitória" . + +base:organisation\/67 a base:organisation; + base:organisation\#IDOrganisation 67; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Folly Theatre" . + +base:organisation\/672 a base:organisation; + base:organisation\#IDOrganisation 672; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatro Provisório" . + +base:organisation\/67240 a base:organisation; + base:organisation\#IDOrganisation 67240; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaksman-Spivakovski Troupe" . + +base:organisation\/67500 a base:organisation; + base:organisation\#IDOrganisation 67500; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Vilna Yiddish State Theatre" . + +base:organisation\/67600 a base:organisation; + base:organisation\#IDOrganisation 67600; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Voskhod" . + +base:organisation\/67940 a base:organisation; + base:organisation\#IDOrganisation 67940; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Wolf Litvak’s yard" . + +base:organisation\/67970 a base:organisation; + base:organisation\#IDOrganisation 67970; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Wonderland Theatre" . + +base:organisation\/680 a base:organisation; + base:organisation\#IDOrganisation 680; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment "Sociedade Dramática Empresária"; + base:organisation\#inst_name "Raymundo’s Company " . + +base:organisation\/68090 a base:organisation; + base:organisation\#IDOrganisation 68090; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish dramatic school" . + +base:organisation\/68100 a base:organisation; + base:organisation\#IDOrganisation 68100; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Dramatic Society" . + +base:organisation\/68220 a base:organisation; + base:organisation\#IDOrganisation 68220; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Yosef Goldshmidt Troupe" . + +base:organisation\/686 a base:organisation; + base:organisation\#IDOrganisation 686; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Cassino" . + +base:organisation\/687 a base:organisation; + base:organisation\#IDOrganisation 687; + base:organisation\#comment ""; + base:organisation\#inst_name "Associação Dramática Empresária" . + +base:organisation\/690 a base:organisation; + base:organisation\#IDOrganisation 690; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lucinda"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/69080 a base:organisation; + base:organisation\#IDOrganisation 69080; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "British society for spreading Christianity among Jews" . + +base:organisation\/691 a base:organisation; + base:organisation\#IDOrganisation 691; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Furtado Coelho theatre company Empresa Phebo & Comp." . + +base:organisation\/69150 a base:organisation; + base:organisation\#IDOrganisation 69150; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Feinman Theatre" . + +base:organisation\/69330 a base:organisation; + base:organisation\#IDOrganisation 69330; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Kol Mevaser" . + +base:organisation\/69704 a base:organisation; + base:organisation\#IDOrganisation 69704; + base:organisation\#inst_name "Promesa Film Company" . + +base:organisation\/69708 a base:organisation; + base:organisation\#IDOrganisation 69708; + base:organisation\#inst_name "Columbia Studios" . + +base:organisation\/69716 a base:organisation; + base:organisation\#IDOrganisation 69716; + base:organisation\#inst_name "Ministry of Information (MOI)"; + base:organisation\#ref-IDLocation base:location\/UK-Ldn-00 . + +base:organisation\/69720 a base:organisation; + base:organisation\#IDOrganisation 69720; + base:organisation\#inst_name "Two Cities Films (London)" . + +base:organisation\/69804 a base:organisation; + base:organisation\#IDOrganisation 69804; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Schnitzer's Garden Theatre" . + +base:organisation\/69824 a base:organisation; + base:organisation\#IDOrganisation 69824; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Fishzon's troupe" . + +base:organisation\/69832 a base:organisation; + base:organisation\#IDOrganisation 69832; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kompaneyets' troupe" . + +base:organisation\/69856 a base:organisation; + base:organisation\#IDOrganisation 69856; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der Yud" . + +base:organisation\/69860 a base:organisation; + base:organisation\#IDOrganisation 69860; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Muranow Theatre" . + +base:organisation\/69940 a base:organisation; + base:organisation\#IDOrganisation 69940; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Bernstein's Troupe" . + +base:organisation\/70 a base:organisation; + base:organisation\#IDOrganisation 70; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Manhattan Opera"; + base:organisation\#ref-IDLocation base:location\/USA-MNHTN-00 . + +base:organisation\/70036 a base:organisation; + base:organisation\#IDOrganisation 70036; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Pomul Verde" . + +base:organisation\/70048 a base:organisation; + base:organisation\#IDOrganisation 70048; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Schwartz's Art Theatre" . + +base:organisation\/70052 a base:organisation; + base:organisation\#IDOrganisation 70052; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "New York's (Yiddish) Art Theatre" . + +base:organisation\/70264 a base:organisation; + base:organisation\#IDOrganisation 70264; + base:organisation\#inst_name "Jignitza theatre" . + +base:organisation\/70272 a base:organisation; + base:organisation\#IDOrganisation 70272; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Leon Golubok's troupe" . + +base:organisation\/70296 a base:organisation; + base:organisation\#IDOrganisation 70296; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Glickman's troupe" . + +base:organisation\/70340 a base:organisation; + base:organisation\#IDOrganisation 70340; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "People's Music Hall" . + +base:organisation\/70364 a base:organisation; + base:organisation\#IDOrganisation 70364; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Professor Hurwitz's troupe" . + +base:organisation\/70408 a base:organisation; + base:organisation\#IDOrganisation 70408; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Ber Hart's troupe" . + +base:organisation\/70428 a base:organisation; + base:organisation\#IDOrganisation 70428; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#inst_name "Shaari tsion choral school" . + +base:organisation\/70508 a base:organisation; + base:organisation\#IDOrganisation 70508; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "United Troupe" . + +base:organisation\/70612 a base:organisation; + base:organisation\#IDOrganisation 70612; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Glickman" . + +base:organisation\/70648 a base:organisation; + base:organisation\#IDOrganisation 70648; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Amateur" . + +base:organisation\/70668 a base:organisation; + base:organisation\#IDOrganisation 70668; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Broder Singers" . + +base:organisation\/70688 a base:organisation; + base:organisation\#IDOrganisation 70688; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Avraham Goldfaden's troupe" . + +base:organisation\/70728 a base:organisation; + base:organisation\#IDOrganisation 70728; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Shlifershteyn's amatuer troupe" . + +base:organisation\/70744 a base:organisation; + base:organisation\#IDOrganisation 70744; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Warsaw Eldorado Theatre" . + +base:organisation\/70824 a base:organisation; + base:organisation\#IDOrganisation 70824; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#inst_name "English stage" . + +base:organisation\/70924 a base:organisation; + base:organisation\#IDOrganisation 70924; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Folks Theatre" . + +base:organisation\/70968 a base:organisation; + base:organisation\#IDOrganisation 70968; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Turin Hall" . + +base:organisation\/70972 a base:organisation; + base:organisation\#IDOrganisation 70972; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kaminski Theatre" . + +base:organisation\/71052 a base:organisation; + base:organisation\#IDOrganisation 71052; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Jignitza" . + +base:organisation\/71060 a base:organisation; + base:organisation\#IDOrganisation 71060; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Singer Hall" . + +base:organisation\/71128 a base:organisation; + base:organisation\#IDOrganisation 71128; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Bennie Shoengold's troupe" . + +base:organisation\/71132 a base:organisation; + base:organisation\#IDOrganisation 71132; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Adolf Gertner's troupe" . + +base:organisation\/71248 a base:organisation; + base:organisation\#IDOrganisation 71248; + base:organisation\#inst_name "Lira" . + +base:organisation\/71808 a base:organisation; + base:organisation\#IDOrganisation 71808; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Avrom Fishzon Troupe" . + +base:organisation\/71816 a base:organisation; + base:organisation\#IDOrganisation 71816; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Literarishe Trupe (Literary Troupe)" . + +base:organisation\/71840 a base:organisation; + base:organisation\#IDOrganisation 71840; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Elysium Theater" . + +base:organisation\/71860 a base:organisation; + base:organisation\#IDOrganisation 71860; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Fishzon Troupe" . + +base:organisation\/71892 a base:organisation; + base:organisation\#IDOrganisation 71892; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Dos Yiddishe Vort --דאס יודישע ווארט" . + +base:organisation\/71944 a base:organisation; + base:organisation\#IDOrganisation 71944; + base:organisation\#inst_name "Winter Gartens (Cape Town)" . + +base:organisation\/720 a base:organisation; + base:organisation\#IDOrganisation 720; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Phenix Dramática theater company" . + +base:organisation\/72090 a base:organisation; + base:organisation\#IDOrganisation 72090; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Gennett Theater"; + base:organisation\#ref-IDLocation base:location\/USA-Richm-01 . + +base:organisation\/72095 a base:organisation; + base:organisation\#IDOrganisation 72095; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Seattle Theater"; + base:organisation\#ref-IDLocation base:location\/USA-Seat-00 . + +base:organisation\/72254 a base:organisation; + base:organisation\#IDOrganisation 72254; + base:organisation\#inst_name "Periódico El País" . + +base:organisation\/72304 a base:organisation; + base:organisation\#IDOrganisation 72304; + base:organisation\#inst_name "Teatro Jovellanos" . + +base:organisation\/72334 a base:organisation; + base:organisation\#IDOrganisation 72334; + base:organisation\#inst_name "Teatro Marconi" . + +base:organisation\/72339 a base:organisation; + base:organisation\#IDOrganisation 72339; + base:organisation\#inst_name "Facultad de Filosofía y Letras" . + +base:organisation\/72394 a base:organisation; + base:organisation\#IDOrganisation 72394; + base:organisation\#inst_name "Compañía de Gas" . + +base:organisation\/72449 a base:organisation; + base:organisation\#IDOrganisation 72449; + base:organisation\#inst_name "Drei Masken Verlag" . + +base:organisation\/72528 a base:organisation; + base:organisation\#IDOrganisation 72528; + base:organisation\#inst_name "State Theatre and Conservatory"; + base:organisation\#ref-IDLocation base:location\/TR-ANK-00 . + +base:organisation\/730 a base:organisation; + base:organisation\#IDOrganisation 730; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Bucharest Art Academy/ Royal National Theatre" . + +base:organisation\/734 a base:organisation; + base:organisation\#IDOrganisation 734; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Franklin Theatre" . + +base:organisation\/737 a base:organisation; + base:organisation\#IDOrganisation 737; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "St. Charles Theatre" . + +base:organisation\/748 a base:organisation; + base:organisation\#IDOrganisation 748; + base:organisation\#comment "(old San Martín)"; + base:organisation\#inst_name "Skating Rink" . + +base:organisation\/753 a base:organisation; + base:organisation\#IDOrganisation 753; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Doria" . + +base:organisation\/76 a base:organisation; + base:organisation\#IDOrganisation 76; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofoper Stuttgart"; + base:organisation\#ref-IDLocation base:location\/GER-STR-00 . + +base:organisation\/762 a base:organisation; + base:organisation\#IDOrganisation 762; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lírico Francês" . + +base:organisation\/764 a base:organisation; + base:organisation\#IDOrganisation 764; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Isménia dos Santos’ theatrical company" . + +base:organisation\/827 a base:organisation; + base:organisation\#IDOrganisation 827; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Ginásio Dramático" . + +base:organisation\/869 a base:organisation; + base:organisation\#IDOrganisation 869; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosas & Brazão theater company" . + +base:organisation\/878 a base:organisation; + base:organisation\#IDOrganisation 878; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Escola de Belas Artes" . + +base:organisation\/917 a base:organisation; + base:organisation\#IDOrganisation 917; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lucília Simões theatre company" . + +base:organisation\/98 a base:organisation; + base:organisation\#IDOrganisation 98; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Straßburg "; + base:organisation\#ref-IDLocation base:location\/FR-Strb-00 . + +base:person\/AbbEmm-00 a base:person; + base:person\#IDPerson "AbbEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abbott"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbbHen-00 a base:person; + base:person\#IDPerson "AbbHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Abbey"; + base:person\#first_name "Henry Eugene"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbeAlf-00 a base:person; + base:person\#IDPerson "AbeAlf-00"; + base:person\#family_name "Abel"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AbrMax-694 a base:person; + base:person\#IDPerson "AbrMax-694"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Abramovich"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AccPab-00 a base:person; + base:person\#IDPerson "AccPab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Acchiardi"; + base:person\#first_name "Pablo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdaMax-00 a base:person; + base:person\#IDPerson "AdaMax-00"; + base:person\#family_name "Adalbert"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AdlCel-1117 a base:person; + base:person\#IDPerson "AdlCel-1117"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Adler"; + base:person\#first_name "Celia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AdlJac-00 a base:person; + base:person\#IDPerson "AdlJac-00"; + base:person\#family_name "Adler"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AllLes-00 a base:person; + base:person\#IDPerson "AllLes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Allen"; + base:person\#first_name "Leslie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AlmIta-00 a base:person; + base:person\#IDPerson "AlmIta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Almirante"; + base:person\#first_name "Italia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Alo-00 a base:person; + base:person\#IDPerson "Alo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alonso"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Aniert-00 a base:person; + base:person\#IDPerson "Aniert-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bieckert"; + base:person\#first_name "Anita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AraLui-00 a base:person; + base:person\#IDPerson "AraLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arata"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArdLui-00 a base:person; + base:person\#IDPerson "ArdLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arditi"; + base:person\#first_name "Luigi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ArrSan-00 a base:person; + base:person\#IDPerson "ArrSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Arrieta"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AveNic-00 a base:person; + base:person\#IDPerson "AveNic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Avellaneda"; + base:person\#first_name "Nicolás "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AxeMor-1206 a base:person; + base:person\#IDPerson "AxeMor-1206"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Axelrad"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/AzeArt-00 a base:person; + base:person\#IDPerson "AzeArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Azevedo"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/B\%C3\%BClHan-00 a base:person; + base:person\#IDPerson "BülHan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "von Bülow"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalMic-00 a base:person; + base:person\#IDPerson "BalMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "William Balfe"; + base:person\#first_name "Michael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BalW-00 a base:person; + base:person\#IDPerson "BalW-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Balfe"; + base:person\#first_name "W. M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BanMil-00 a base:person; + base:person\#IDPerson "BanMil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bandmann-Palmer"; + base:person\#first_name "Millicent"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarAri-00 a base:person; + base:person\#IDPerson "BarAri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barney"; + base:person\#first_name "Ariel N."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarEth-00 a base:person; + base:person\#IDPerson "BarEth-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrymore"; + base:person\#first_name "Ethel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarPT-00 a base:person; + base:person\#IDPerson "BarPT-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barnum"; + base:person\#first_name "P.T."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarPhi-00 a base:person; + base:person\#IDPerson "BarPhi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taylor Barnum"; + base:person\#first_name "Phineas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BasSou-00 a base:person; + base:person\#IDPerson "BasSou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bastos"; + base:person\#first_name "Souza"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BauCar-00 a base:person; + base:person\#IDPerson "BauCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Baumann"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeaLou-00 a base:person; + base:person\#IDPerson "BeaLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beaudet"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BeaWil-00 a base:person; + base:person\#IDPerson "BeaWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Beach"; + base:person\#first_name "William C."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelAnn-00 a base:person; + base:person\#IDPerson "BelAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Belleville-Oury"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelE-00 a base:person; + base:person\#IDPerson "BelE-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bell"; + base:person\#first_name "E. Hamilton Bell"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BenJam-00 a base:person; + base:person\#IDPerson "BenJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bennett"; + base:person\#first_name "James Gordon Bennett"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerApo-00 a base:person; + base:person\#IDPerson "BerApo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bertucca"; + base:person\#first_name "Apollonia Bertucca"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerEli-00 a base:person; + base:person\#IDPerson "BerEli-00"; + base:person\#family_name "Bergner"; + base:person\#first_name "Elizabeth"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerHec-00 a base:person; + base:person\#IDPerson "BerHec-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Berlioz"; + base:person\#first_name "Hector Berlioz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BitAnt-00 a base:person; + base:person\#IDPerson "BitAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bittner"; + base:person\#first_name "Anton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BluJos-00 a base:person; + base:person\#IDPerson "BluJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Blum"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooEdw-00 a base:person; + base:person\#IDPerson "BooEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Booth"; + base:person\#first_name "Edwin Booth"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BooRic-00 a base:person; + base:person\#IDPerson "BooRic-00"; + base:person\#family_name "Booth"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BorArn-00 a base:person; + base:person\#IDPerson "BorArn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#birthdate "1808-04-07"^^xsd:date; + base:person\#birthdate_max "1808-04-07"^^xsd:date; + base:person\#deathdate "1849-05-01"^^xsd:date; + base:person\#deathdate_max "1849-05-31"^^xsd:date; + base:person\#family_name "Börnstein"; + base:person\#first_name "Arnold Bernhard Karl"; + base:person\#fuzzydeathdate "May 1849"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/USA-StLouis-00 . + +base:person\/BraEdu-00 a base:person; + base:person\#IDPerson "BraEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brazão"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraJoh-00 a base:person; + base:person\#IDPerson "BraJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brahms"; + base:person\#first_name "Johannes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BraPao-00 a base:person; + base:person\#IDPerson "BraPao-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brambilla"; + base:person\#first_name "Paolo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BreJ-00 a base:person; + base:person\#IDPerson "BreJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brennan"; + base:person\#first_name "J. Brennan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BriHen-00 a base:person; + base:person\#IDPerson "BriHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bristol"; + base:person\#first_name "Henry Bristol"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroHar-01 a base:person; + base:person\#IDPerson "BroHar-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brown"; + base:person\#first_name "Harry Joe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BroJoh-00 a base:person; + base:person\#IDPerson "BroJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Brougham"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BruAnt-00 a base:person; + base:person\#IDPerson "BruAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bruckner"; + base:person\#first_name "Anton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BukKar-00 a base:person; + base:person\#IDPerson "BukKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bukovics"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BulOle-00 a base:person; + base:person\#IDPerson "BulOle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bull"; + base:person\#first_name "Ole"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/C\%C3\%A1rHom-00 a base:person; + base:person\#IDPerson "CárHom-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cárpena"; + base:person\#first_name "Homero Cárpena"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CabAnt-00 a base:person; + base:person\#IDPerson "CabAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cabanellas"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CabJos-00 a base:person; + base:person\#IDPerson "CabJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cabral"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarPas-00 a base:person; + base:person\#IDPerson "CarPas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Carcavallo"; + base:person\#first_name "Pascual Carcavallo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasGiu-00 a base:person; + base:person\#IDPerson "CasGiu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gatti-Casazza"; + base:person\#first_name "Giulio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CasJos-00 a base:person; + base:person\#IDPerson "CasJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Castillo"; + base:person\#first_name "José González Castillo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ClaPhi-00 a base:person; + base:person\#IDPerson "ClaPhi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Clairmont"; + base:person\#first_name "Phillipine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CleVan-00 a base:person; + base:person\#IDPerson "CleVan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cleef"; + base:person\#first_name "Van Cleef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ColSam-00 a base:person; + base:person\#IDPerson "ColSam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Colville"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CoqCon-01 a base:person; + base:person\#IDPerson "CoqCon-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Coquelin"; + base:person\#first_name "Constant"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CotL-00 a base:person; + base:person\#IDPerson "CotL-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cotier"; + base:person\#first_name "L. Cotier"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CouSan-00 a base:person; + base:person\#IDPerson "CouSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cou"; + base:person\#first_name "Santiago Gómez Cou"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CraLot-00 a base:person; + base:person\#IDPerson "CraLot-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Crabtree"; + base:person\#first_name "Lotta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CraWil-00 a base:person; + base:person\#IDPerson "CraWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Crane"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CreWil-00 a base:person; + base:person\#IDPerson "CreWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cressy"; + base:person\#first_name "Will Martin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CumWil-00 a base:person; + base:person\#IDPerson "CumWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Cummings"; + base:person\#first_name "William Cummings"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CurF-00 a base:person; + base:person\#IDPerson "CurF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Currier"; + base:person\#first_name "F. J. Currier"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DalAug-00 a base:person; + base:person\#IDPerson "DalAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Daly"; + base:person\#first_name "Augustin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DamJ-00 a base:person; + base:person\#IDPerson "DamJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Damon"; + base:person\#first_name "J. Damon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DanMar-00 a base:person; + base:person\#IDPerson "DanMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Danesi"; + base:person\#first_name "Mario Danesi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DanSal-00 a base:person; + base:person\#IDPerson "DanSal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dannebaum"; + base:person\#first_name "Salomon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DeVJoa-00 a base:person; + base:person\#IDPerson "DeVJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Vedia"; + base:person\#first_name "Joaquín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DreJoh-00 a base:person; + base:person\#IDPerson "DreJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Drew"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DreMrs-00 a base:person; + base:person\#IDPerson "DreMrs-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Drew"; + base:person\#first_name "Mrs. John Drew"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DuaEva-00 a base:person; + base:person\#IDPerson "DuaEva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duarte"; + base:person\#first_name "Eva"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DusEle-01 a base:person; + base:person\#IDPerson "DusEle-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Duse"; + base:person\#first_name "Eleonora"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EdwEdw-00 a base:person; + base:person\#IDPerson "EdwEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Edwin"; + base:person\#first_name "Edwin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElmFra-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00843311"; + base:person\#GND "https://d-nb.info/gnd/127577246"; + base:person\#IDPerson "ElmFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000033027892"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n91091367"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w60p1bp6"; + base:person\#VIAF "https://viaf.org/viaf/28097834"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q92535"; + base:person\#birthdate "1847-01-28"^^xsd:date; + base:person\#birthdate_max "1847-01-28"^^xsd:date; + base:person\#deathdate "1931-10-20"^^xsd:date; + base:person\#deathdate_max "1931-10-20"^^xsd:date; + base:person\#family_name "Ellmenreich"; + base:person\#first_name "Franziska"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Stage Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Schwer-00; + base:person\#ref-IDDeathPlace base:location\/GER-HerschAmm-00 . + +base:person\/EloArt-00 a base:person; + base:person\#IDPerson "EloArt-00"; + base:person\#family_name "Eloesser"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ErnLeo-00 a base:person; + base:person\#IDPerson "ErnLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ernst"; + base:person\#first_name "Leontine Lea Ernst"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EscJul-00 a base:person; + base:person\#IDPerson "EscJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Escobar"; + base:person\#first_name "Julio F."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EspMat-00 a base:person; + base:person\#IDPerson "EspMat-00"; + base:person\#family_name "Espinosa"; + base:person\#first_name "Matilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/EvaFra-00 a base:person; + base:person\#IDPerson "EvaFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Evans"; + base:person\#first_name "Frank Evans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FagJ-00 a base:person; + base:person\#IDPerson "FagJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fagan"; + base:person\#first_name "J. B. Fagan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FavWil-00 a base:person; + base:person\#IDPerson "FavWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Faversham"; + base:person\#first_name "William Faversham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerFlo-00 a base:person; + base:person\#IDPerson "FerFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferrario"; + base:person\#first_name "Florindo Ferrario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerGlo-00 a base:person; + base:person\#IDPerson "FerGlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferrandiz"; + base:person\#first_name "Gloria Ferrandiz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FerJos-00 a base:person; + base:person\#IDPerson "FerJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferreiro"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FisAbr-3634 a base:person; + base:person\#IDPerson "FisAbr-3634"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Fishzon"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/FisJos-00 a base:person; + base:person\#IDPerson "FisJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fischof"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FonJos-00 a base:person; + base:person\#IDPerson "FonJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fonseca"; + base:person\#first_name "Rubem"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForGeo-00 a base:person; + base:person\#IDPerson "ForGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forst"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForRud-00 a base:person; + base:person\#IDPerson "ForRud-00"; + base:person\#family_name "Forster"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FraEva-00 a base:person; + base:person\#IDPerson "FraEva-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Franco"; + base:person\#first_name "Eva Franco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FreHen-00 a base:person; + base:person\#IDPerson "FreHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "French"; + base:person\#first_name "Henry French"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FriNan-00 a base:person; + base:person\#IDPerson "FriNan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Friedman"; + base:person\#first_name "Nannie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FroDan-00 a base:person; + base:person\#IDPerson "FroDan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frohman"; + base:person\#first_name "Daniel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FroJan-00 a base:person; + base:person\#IDPerson "FroJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frost"; + base:person\#first_name "Jane Frost"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FroJoh-00 a base:person; + base:person\#IDPerson "FroJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frost"; + base:person\#first_name "John Frost"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FucRob-00 a base:person; + base:person\#IDPerson "FucRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fuchs"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/G\%C3\%B3mPil-00 a base:person; + base:person\#IDPerson "GómPil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gómez"; + base:person\#first_name "Pilar Gómez"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GadSve-00 a base:person; + base:person\#IDPerson "GadSve-00"; + base:person\#family_name "Gade"; + base:person\#first_name "Svend"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalJoe-00 a base:person; + base:person\#IDPerson "GalJoe-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Galton"; + base:person\#first_name "Joe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GamNin-00 a base:person; + base:person\#IDPerson "GamNin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gambier"; + base:person\#first_name "Niní Gambier"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GanSop-00 a base:person; + base:person\#IDPerson "GanSop-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ganz"; + base:person\#first_name "Sophia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GarCar-00 a base:person; + base:person\#IDPerson "GarCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gardel"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GauJud-00 a base:person; + base:person\#IDPerson "GauJud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gautier"; + base:person\#first_name "Judith"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GazMar-00 a base:person; + base:person\#IDPerson "GazMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gazzaniga"; + base:person\#first_name "Marietta Gazzaniga"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolJos-1841 a base:person; + base:person\#IDPerson "GolJos-1841"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Goldshmidt"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/GomJoa-00 a base:person; + base:person\#IDPerson "GomJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gomes dos Santos"; + base:person\#first_name "Joaquim Heliodoro"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Gor-00 a base:person; + base:person\#IDPerson "Gor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gordon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GorJac-698 a base:person; + base:person\#IDPerson "GorJac-698"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Gordin"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Gr\%C3\%BCIlk-00 a base:person; + base:person\#IDPerson "GrüIlk-00"; + base:person\#family_name "Grüning"; + base:person\#first_name "Ilka"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraAle-00 a base:person; + base:person\#IDPerson "GraAle-00"; + base:person\#family_name "Granach"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraMau-00 a base:person; + base:person\#IDPerson "GraMau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grau"; + base:person\#first_name "Maurice Grau"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroGeo-00 a base:person; + base:person\#IDPerson "GroGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grove"; + base:person\#first_name "George Grove"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroIsr-00 a base:person; + base:person\#IDPerson "GroIsr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grodner"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GroLeo-00 a base:person; + base:person\#IDPerson "GroLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Grover"; + base:person\#first_name "Leonard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuaAdr-00 a base:person; + base:person\#IDPerson "GuaAdr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gual"; + base:person\#first_name "Adrià Gual"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GuaHar-00 a base:person; + base:person\#IDPerson "GuaHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Warren"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GyeFre-00 a base:person; + base:person\#IDPerson "GyeFre-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gye"; + base:person\#first_name "Frederick"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HauMin-00 a base:person; + base:person\#IDPerson "HauMin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hauk"; + base:person\#first_name "Minnie Hauk"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HawJos-00 a base:person; + base:person\#IDPerson "HawJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Haworth"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelJos-00 a base:person; + base:person\#IDPerson "HelJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hellmesberger Sr."; + base:person\#first_name "Joseph Hellmesberger"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelJul-00 a base:person; + base:person\#IDPerson "HelJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heller"; + base:person\#first_name "Julia Heller"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HelTin-00 a base:person; + base:person\#IDPerson "HelTin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Helba"; + base:person\#first_name "Tina Helba"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HenB-00 a base:person; + base:person\#IDPerson "HenB-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Henderson"; + base:person\#first_name "B. Henderson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerCar-00 a base:person; + base:person\#IDPerson "HerCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herrmann"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerHen-00 a base:person; + base:person\#IDPerson "HerHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herz"; + base:person\#first_name "Henry Herz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerJam-00 a base:person; + base:person\#IDPerson "HerJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Herne"; + base:person\#first_name "James"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HesJoh-00 a base:person; + base:person\#IDPerson "HesJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hess"; + base:person\#first_name "John Hess"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HodSar-00 a base:person; + base:person\#IDPerson "HodSar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hodgson"; + base:person\#first_name "Sarah (Strong) Hodgson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HolGus-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116961333"; + base:person\#IDPerson "HolGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/35221827"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1555393"; + base:person\#birthdate "1888-02-22"^^xsd:date; + base:person\#birthdate_max "1888-02-22"^^xsd:date; + base:person\#deathdate "1966-07-16"^^xsd:date; + base:person\#deathdate_max "1966-07-16"^^xsd:date; + base:person\#family_name "Holl"; + base:person\#first_name "Gussy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actress,Singer"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/AT-Salzb-00 . + +base:person\/HolMar-00 a base:person; + base:person\#IDPerson "HolMar-00"; + base:person\#family_name "Holmes"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HorCam-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118761323"; + base:person\#IDPerson "HorCam-00"; + base:person\#ISNI "https://isni.org/isni/0000000059250128"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n85242303"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6dw5zdc#resources"; + base:person\#VIAF "https://viaf.org/viaf/44564020"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q72890"; + base:person\#birthdate "1903-04-25"^^xsd:date; + base:person\#birthdate_max "1903-04-25"^^xsd:date; + base:person\#deathdate "1996-08-14"^^xsd:date; + base:person\#deathdate_max "1996-08-14"^^xsd:date; + base:person\#family_name "Horn"; + base:person\#first_name "Camilla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Dancer, Silent Film Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/GER-Gilch-00 . + +base:person\/HowEdw-00 a base:person; + base:person\#IDPerson "HowEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Howard"; + base:person\#first_name "Edwin Howard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HoyRa\%C3\%BA-00 a base:person; + base:person\#IDPerson "HoyRaú-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de los Hoyos"; + base:person\#first_name "Raúl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HunJam-00 a base:person; + base:person\#IDPerson "HunJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Huneker"; + base:person\#first_name "James Huneker"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IJoh-00 a base:person; + base:person\#IDPerson "IJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "I"; + base:person\#first_name "Johann Strauss I"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/IrvHen-00 a base:person; + base:person\#IDPerson "IrvHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Irving"; + base:person\#first_name "Henry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Ivolay-00 a base:person; + base:person\#IDPerson "Ivolay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pelay"; + base:person\#first_name "Ivo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/J\.MJMH-00 a base:person; + base:person\#IDPerson "J.MJMH-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "HilJ-00"; + base:person\#first_name "HilJ-00"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohMar-00 a base:person; + base:person\#IDPerson "JohMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Johnston"; + base:person\#first_name "Mary Johnston"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KamRut-00 a base:person; + base:person\#IDPerson "KamRut-00"; + base:person\#birthdate "1919-01-01"^^xsd:date; + base:person\#birthdate_max "1919-12-31"^^xsd:date; + base:person\#deathdate "2005-08-23"^^xsd:date; + base:person\#deathdate_max "2005-08-23"^^xsd:date; + base:person\#family_name "Kaminska"; + base:person\#first_name "Ruth"; + base:person\#fuzzybirthdate "1919"; + base:person\#fuzzydeathdate "2005-08-23" . + +base:person\/KatJac-2099 a base:person; + base:person\#IDPerson "KatJac-2099"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Katzman"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/KesDav-721 a base:person; + base:person\#IDPerson "KesDav-721"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Kessler"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/Kl\%C3\%B6Eug-00 a base:person; + base:person\#IDPerson "KlöEug-00"; + base:person\#family_name "Klöpfer"; + base:person\#first_name "Eugen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KleRob-00 a base:person; + base:person\#IDPerson "KleRob-00"; + base:person\#family_name "Klein"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KraWer-00 a base:person; + base:person\#IDPerson "KraWer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Krauss"; + base:person\#first_name "Werner"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KurSel-00 a base:person; + base:person\#IDPerson "KurSel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kurz"; + base:person\#first_name "Selma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LabL-00 a base:person; + base:person\#IDPerson "LabL-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lablache"; + base:person\#first_name "L. Lablache"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LanMax-00 a base:person; + base:person\#IDPerson "LanMax-00"; + base:person\#family_name "Landa"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LanSir-00 a base:person; + base:person\#IDPerson "LanSir-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lancelot"; + base:person\#first_name "Sir"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LavPau-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250088976"; + base:person\#IDPerson "LavPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q54013723"; + base:person\#birthdate "1879-03-29"^^xsd:date; + base:person\#birthdate_max "1879-03-29"^^xsd:date; + base:person\#deathdate "1959-09-20"^^xsd:date; + base:person\#deathdate_max "1959-09-20"^^xsd:date; + base:person\#family_name "Lavitz"; + base:person\#first_name "Paulina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/Leones-00 a base:person; + base:person\#IDPerson "Leones-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lugones"; + base:person\#first_name "Leopoldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LevHer-01 a base:person; + base:person\#IDPerson "LevHer-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Levi"; + base:person\#first_name "Hermann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LooThe-00 a base:person; + base:person\#IDPerson "LooThe-00"; + base:person\#family_name "Loos"; + base:person\#first_name "Theodor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LorFed-00 a base:person; + base:person\#IDPerson "LorFed-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lorca"; + base:person\#first_name "Federico García Lorca"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaGar-00 a base:person; + base:person\#IDPerson "LuaGar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sardinha (Bando da Lua)"; + base:person\#first_name "Aníbal Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LuaOsw-00 a base:person; + base:person\#IDPerson "LuaOsw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Eboli (Bando da Lua)"; + base:person\#first_name "Oswaldo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Luiini-00 a base:person; + base:person\#IDPerson "Luiini-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sandrini"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LulAlu-00 a base:person; + base:person\#IDPerson "LulAlu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferreira"; + base:person\#first_name "Aluisio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacEmm-00 a base:person; + base:person\#IDPerson "MacEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Macfarren"; + base:person\#first_name "Emma Macfarren"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MagAng-00 a base:person; + base:person\#IDPerson "MagAng-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Magaña"; + base:person\#first_name "Angel Magaña"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MagBar-00 a base:person; + base:person\#IDPerson "MagBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Magalhães"; + base:person\#first_name "Bartholomeu"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ManRic-00 a base:person; + base:person\#IDPerson "ManRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mansfield"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarGiu-00 a base:person; + base:person\#IDPerson "MarGiu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mario"; + base:person\#first_name "Giuseppe Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarIgn-00 a base:person; + base:person\#IDPerson "MarIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marini"; + base:person\#first_name "Ignazio Marini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarLeo-00 a base:person; + base:person\#IDPerson "MarLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marechal"; + base:person\#first_name "Leopoldo Marechal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarNin-00 a base:person; + base:person\#IDPerson "MarNin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marshall"; + base:person\#first_name "Niní"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marici-00 a base:person; + base:person\#IDPerson "Marici-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Soffici"; + base:person\#first_name "Mario"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Marrgu-00 a base:person; + base:person\#IDPerson "Marrgu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Xirgu"; + base:person\#first_name "Margarita"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MasJul-00 a base:person; + base:person\#IDPerson "MasJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Massenet"; + base:person\#first_name "Jules"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/McCEli-00 a base:person; + base:person\#IDPerson "McCEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "McCracken"; + base:person\#first_name "Elizabeth McCracken"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/McKSta-00 a base:person; + base:person\#IDPerson "McKSta-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "McKenna"; + base:person\#first_name "Stanley McKenna"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/McWRob-00 a base:person; + base:person\#IDPerson "McWRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "McWade"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyHer-00 a base:person; + base:person\#IDPerson "MeyHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Herz Meyerfeld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyJes-00 a base:person; + base:person\#IDPerson "MeyJes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Jesse (Jesaja) Meyerfeld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyJet-00 a base:person; + base:person\#IDPerson "MeyJet-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Jette Meyerfeld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyJos-00 a base:person; + base:person\#IDPerson "MeyJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyMos-00 a base:person; + base:person\#IDPerson "MeyMos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Moses Meyerfeld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyNan-00 a base:person; + base:person\#IDPerson "MeyNan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Nannie Amelia Meyerfeld"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MilCol-00 a base:person; + base:person\#IDPerson "MilCol-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Miles"; + base:person\#first_name "Colonel Robert E.J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MitMag-00 a base:person; + base:person\#IDPerson "MitMag-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mitchell"; + base:person\#first_name "Maggie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MogSig-685 a base:person; + base:person\#IDPerson "MogSig-685"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Mogulesco"; + base:person\#first_name "Sigmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/MonNur-00 a base:person; + base:person\#IDPerson "MonNur-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Montsé"; + base:person\#first_name "Nuri Montsé"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorFan-00 a base:person; + base:person\#IDPerson "MorFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Morant"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MorZul-00 a base:person; + base:person\#IDPerson "MorZul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moreno"; + base:person\#first_name "Zully"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NasGeo-00 a base:person; + base:person\#IDPerson "NasGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nash"; + base:person\#first_name "George Nash"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NeuAdo-00 a base:person; + base:person\#IDPerson "NeuAdo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Neuendorff"; + base:person\#first_name "Adolf Neuendorff"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NevEmm-00 a base:person; + base:person\#IDPerson "NevEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nevada"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NibWil-00 a base:person; + base:person\#IDPerson "NibWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Niblo"; + base:person\#first_name "William Niblo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NieAlb-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117001686"; + base:person\#IDPerson "NieAlb-00"; + base:person\#ISNI "https://isni.org/isni/0000000010416553"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cr65x8"; + base:person\#VIAF "https://viaf.org/viaf/64271649"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q106378"; + base:person\#birthdate "1831-01-15"^^xsd:date; + base:person\#birthdate_max "1831-01-15"^^xsd:date; + base:person\#deathdate "1917-01-13"^^xsd:date; + base:person\#deathdate_max "1917-01-13"^^xsd:date; + base:person\#family_name "Niemann"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Singer"; + base:person\#ref-IDBirthPlace base:location\/GER-Erx-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/NunJai-00 a base:person; + base:person\#IDPerson "NunJai-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nunó"; + base:person\#first_name "Jaime Nunó"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NunJos-00 a base:person; + base:person\#IDPerson "NunJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Nunes Borges"; + base:person\#first_name "José Simões"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OliGer-00 a base:person; + base:person\#IDPerson "OliGer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Oliveira"; + base:person\#first_name "Germano Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OliVic-00 a base:person; + base:person\#IDPerson "OliVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Oliveira"; + base:person\#first_name "Vicente Pontes "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/OpiMic-00 a base:person; + base:person\#IDPerson "OpiMic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Opid"; + base:person\#first_name "Michal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PalAm-00 a base:person; + base:person\#IDPerson "PalAm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Palmer"; + base:person\#first_name "A.M."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PelCar-00 a base:person; + base:person\#IDPerson "PelCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pellegrini "; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PetFra-00 a base:person; + base:person\#IDPerson "PetFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Petrone"; + base:person\#first_name "Francisco Petrone"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PieB-00 a base:person; + base:person\#IDPerson "PieB-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pierce"; + base:person\#first_name "B. H. Pierce"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PodAnt-00 a base:person; + base:person\#IDPerson "PodAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Podestá"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PodMar-00 a base:person; + base:person\#IDPerson "PodMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Podestá"; + base:person\#first_name "María Ester Podestá"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PolCin-01 a base:person; + base:person\#IDPerson "PolCin-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Polonio"; + base:person\#first_name "Cinira"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/Pr\%C3\%B6Rud-00 a base:person; + base:person\#IDPerson "PröRud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pröll"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PraReg-2695 a base:person; + base:person\#IDPerson "PraReg-2695"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Prager"; + base:person\#first_name "Regina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/PuzMad-00 a base:person; + base:person\#IDPerson "PuzMad-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Puzzi"; + base:person\#first_name "Madame Puzzi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PynGeo-00 a base:person; + base:person\#IDPerson "PynGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pyne"; + base:person\#first_name "George"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/R\%C3\%B6hSof-00 a base:person; + base:person\#IDPerson "RöhSof-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Röhr-Brajnin"; + base:person\#first_name "Sofie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ResCar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1050523342"; + base:person\#IDPerson "ResCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 3899-3900."; + base:person\#birthdate "1838-03-26"^^xsd:date; + base:person\#birthdate_max "1838-03-26"^^xsd:date; + base:person\#deathdate "1893-09-18"^^xsd:date; + base:person\#deathdate_max "1893-09-18"^^xsd:date; + base:person\#family_name "Ress"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/GER-Leip-00 . + +base:person\/Ris-00 a base:person; + base:person\#IDPerson "Ris-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Risette"; + base:person\#first_name "Risette"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RoeJan-00 a base:person; + base:person\#IDPerson "RoeJan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roeckel"; + base:person\#first_name "Jane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RogGeo-00 a base:person; + base:person\#IDPerson "RogGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rogers"; + base:person\#first_name "George Rogers"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RooEli-00 a base:person; + base:person\#IDPerson "RooEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roos"; + base:person\#first_name "Elizabeth Leslie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosBer-00 a base:person; + base:person\#IDPerson "RosBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rosescu"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosGio-00 a base:person; + base:person\#IDPerson "RosGio-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rossini"; + base:person\#first_name "Gioachino Rossini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RosKar-00 a base:person; + base:person\#IDPerson "RosKar-00"; + base:person\#family_name "Rosen"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RotAle-00 a base:person; + base:person\#IDPerson "RotAle-00"; + base:person\#family_name "Rottmann"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RusCha-00 a base:person; + base:person\#IDPerson "RusCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Russell"; + base:person\#first_name "Charles Edward Russell"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RusJos-01 a base:person; + base:person\#IDPerson "RusJos-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ferreira Soares"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SalJos-00 a base:person; + base:person\#IDPerson "SalJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Saldías"; + base:person\#first_name "José Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SalMan-00 a base:person; + base:person\#IDPerson "SalMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Salvat"; + base:person\#first_name "Manuel Salvat"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SanIsa-00 a base:person; + base:person\#IDPerson "SanIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Santos"; + base:person\#first_name "Isabel Santos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchAba-00 a base:person; + base:person\#IDPerson "SchAba-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schoengold"; + base:person\#first_name "Aba"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SchArn-00 a base:person; + base:person\#IDPerson "SchArn-00"; + base:person\#family_name "Schönberg"; + base:person\#first_name "Arnold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SegMor-2878 a base:person; + base:person\#IDPerson "SegMor-2878"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Segalesko"; + base:person\#first_name "Mordechai"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SegPas-00 a base:person; + base:person\#IDPerson "SegPas-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Segreto"; + base:person\#first_name "Pascoal"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerHer-2891 a base:person; + base:person\#IDPerson "SerHer-2891"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Serotsky"; + base:person\#first_name "Herman"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SerJoa-00 a base:person; + base:person\#IDPerson "SerJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Serra"; + base:person\#first_name "Joaquim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SilFlo-00 a base:person; + base:person\#IDPerson "SilFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "da Silva"; + base:person\#first_name "Florindo Joaquim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SinBer-00 a base:person; + base:person\#IDPerson "SinBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Singerman"; + base:person\#first_name "Berta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SinPau-00 a base:person; + base:person\#IDPerson "SinPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Singerman"; + base:person\#first_name "Paulina"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SkiOti-00 a base:person; + base:person\#IDPerson "SkiOti-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Skinner"; + base:person\#first_name "Otis Skinner"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SotEdw-00 a base:person; + base:person\#IDPerson "SotEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sothern"; + base:person\#first_name "Edward Hugh Sothern"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SpeBet-786 a base:person; + base:person\#IDPerson "SpeBet-786"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/spector-betty.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1536."""; + base:person\#family_name "Spector"; + base:person\#first_name "Betty"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#religion "Jewish" . + +base:person\/SpeLeo-781 a base:person; + base:person\#IDPerson "SpeLeo-781"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/spector-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1536."""; + base:person\#family_name "Spector"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#religion "Jewish" . + +base:person\/SteAlb-00 a base:person; + base:person\#IDPerson "SteAlb-00"; + base:person\#family_name "Steinrücks"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteJoh-00 a base:person; + base:person\#IDPerson "SteJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stetson"; + base:person\#first_name "John Stetson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteMes-00 a base:person; + base:person\#IDPerson "SteMes-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Steffanone"; + base:person\#first_name "Mesdames Steffanone"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SteWil-00 a base:person; + base:person\#IDPerson "SteWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stenge"; + base:person\#first_name "Wilhelm"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StuFra-00 a base:person; + base:person\#IDPerson "StuFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Van der Stucken"; + base:person\#first_name "Frank Valentine"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SudHer-00 a base:person; + base:person\#IDPerson "SudHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Sudermann"; + base:person\#first_name "Hermann Sudermann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TagAar-3046 a base:person; + base:person\#IDPerson "TagAar-3046"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tager"; + base:person\#first_name "Aaron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/TerEll-00 a base:person; + base:person\#IDPerson "TerEll-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Terry"; + base:person\#first_name "Ellen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThoLyd-00 a base:person; + base:person\#IDPerson "ThoLyd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thompson"; + base:person\#first_name "Lydia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TorCar-00 a base:person; + base:person\#IDPerson "TorCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Torrignani"; + base:person\#first_name "Carlo Torrignani"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TroMRD-00 a base:person; + base:person\#IDPerson "TroMRD-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Trobriand"; + base:person\#first_name "M.R.De Trobriand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TsuLey-3807 a base:person; + base:person\#IDPerson "TsuLey-3807"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Tsukerman"; + base:person\#first_name "Leyzer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ValJos-00 a base:person; + base:person\#IDPerson "ValJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "do Vale"; + base:person\#first_name "José Antônio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VasFra-00 a base:person; + base:person\#IDPerson "VasFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vasques"; + base:person\#first_name "Francisco Corrêa Vasques"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalF-00 a base:person; + base:person\#IDPerson "WalF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Walton"; + base:person\#first_name "F. Walton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WalIsa-00 a base:person; + base:person\#IDPerson "WalIsa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Waldron"; + base:person\#first_name "Isabella Waldron"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarDav-00 a base:person; + base:person\#IDPerson "WarDav-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Warfield"; + base:person\#first_name "David Warfield"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WarWil-00 a base:person; + base:person\#IDPerson "WarWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Warren"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WaxMor-1047 a base:person; + base:person\#IDPerson "WaxMor-1047"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Waxman"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/WayJoh-00 a base:person; + base:person\#IDPerson "WayJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wayne"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WeiMay-00 a base:person; + base:person\#IDPerson "WeiMay-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Weisz"; + base:person\#first_name "Mayer Sámuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Rabbi" . + +base:person\/WelLut-00 a base:person; + base:person\#IDPerson "WelLut-00"; + base:person\#family_name "Weltmann"; + base:person\#first_name "Lutz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WheAnd-00 a base:person; + base:person\#IDPerson "WheAnd-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wheeler"; + base:person\#first_name "Andrew Carpenter Wheeler"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiTho-01 a base:person; + base:person\#IDPerson "WhiTho-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jr."; + base:person\#first_name "Thomas"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiWal-00 a base:person; + base:person\#IDPerson "WhiWal-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Whiteside"; + base:person\#first_name "Walker Whiteside"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilC-00 a base:person; + base:person\#IDPerson "WilC-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Williams"; + base:person\#first_name "C. Williams"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilEff-00 a base:person; + base:person\#IDPerson "WilEff-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wild"; + base:person\#first_name "Effie Wild"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilF-00 a base:person; + base:person\#IDPerson "WilF-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wilson"; + base:person\#first_name "F. Wilson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilFri-00 a base:person; + base:person\#IDPerson "WilFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Williams"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WilGar-00 a base:person; + base:person\#IDPerson "WilGar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Wilson"; + base:person\#first_name "Garff B. Wilson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZanDar-00 a base:person; + base:person\#IDPerson "ZanDar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zanuck"; + base:person\#first_name "Darryl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZanYit-3349 a base:person; + base:person\#IDPerson "ZanYit-3349"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Zandberg"; + base:person\#first_name "Yitzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZeyZey-3378 a base:person; + base:person\#IDPerson "ZeyZey-3378"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZhiVla-3383 a base:person; + base:person\#IDPerson "ZhiVla-3383"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zhitkovski-vladek.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.797."""; + base:person\#family_name "Zhitkovski"; + base:person\#first_name "Vladek"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/ZicEdm-00 a base:person; + base:person\#IDPerson "ZicEdm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Zichy"; + base:person\#first_name "Edmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZieEri-00 a base:person; + base:person\#IDPerson "ZieEri-00"; + base:person\#family_name "Ziegel"; + base:person\#first_name "Erich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ZwiLou-814 a base:person; + base:person\#IDPerson "ZwiLou-814"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tsvibel-louis.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4869."""; + base:person\#birthdate "1862-01-01"^^xsd:date; + base:person\#birthdate_max "1862-12-31"^^xsd:date; + base:person\#deathdate "1907-01-01"^^xsd:date; + base:person\#deathdate_max "1907-12-31"^^xsd:date; + base:person\#family_name "Zwiebel"; + base:person\#first_name "Louis"; + base:person\#fuzzybirthdate "1862"; + base:person\#fuzzydeathdate "1907"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tsvibel-louis.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/tsvibel-louis.htm"; + base:person\#ref-IDBirthPlace base:location\/Rom-DiJeSt-92; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00; + base:person\#religion "Jewish" . + +base:City-Norwich a base:City; + rdfs:label "Norwich"@en . + +base:Continent-Europa a base:Continent; + rdfs:label "Europa"@en . + +base:Country-Chile a base:Country; + rdfs:label "Chile"@en . + +base:Country-CostaRica a base:Country; + rdfs:label "Costa Rica"@en . + +base:Country-Egypt a base:Country; + rdfs:label "Egypt"@en . + +base:Country-Greece a base:Country; + rdfs:label "Greece"@en . + +base:Country-Indonesia a base:Country; + rdfs:label "Indonesia"@en . + +base:Country-Israel a base:Country; + rdfs:label "Israel"@en . + +base:Country-Mexico a base:Country; + rdfs:label "Mexico"@en . + +base:Country-Moldova a base:Country; + rdfs:label "Moldova"@en . + +base:Country-Serbia a base:Country; + rdfs:label "Serbia"@en . + +base:Country-Slovenia a base:Country; + rdfs:label "Slovenia"@en . + +base:Country-Sweden a base:Country; + rdfs:label "Sweden"@en . + +base:Country-UnitedStates a base:Country; + rdfs:label "United States"@en . + +base:Country-Vietnam a base:Country; + rdfs:label "Vietnam"@en . + +base:Profession-Technician a base:Profession; + rdfs:label "Technician"@en . + +base:RelationshipTypePrecise-Grandfather a base:RelationshipTypePrecise; + rdfs:label "Grandfather"@en . + +base:State-Bavaria a base:State; + rdfs:label "Bavaria"@en . + +base:State-BuenosAiresProvince a base:State; + rdfs:label "Buenos Aires Province"@en . + +base:State-Florida a base:State; + rdfs:label "Florida"@en . + +base:State-Louisiana a base:State; + rdfs:label "Louisiana"@en . + +base:State-NewMexico a base:State; + rdfs:label "New Mexico"@en . + +base:State-Oregon a base:State; + rdfs:label "Oregon"@en . + +base:State-SouthCarolina a base:State; + rdfs:label "South Carolina"@en . + +base:location\/ARG-BellV-00 a base:location; + base:location\#City base:City-BellVille; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3864331"; + base:location\#IDLocation "ARG-BellV-00"; + base:location\#latitude -3.26333e1; + base:location\#longitude -6.26833e1; + base:location\#wikidata "Q284308"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bell_Ville" . + +base:location\/ARG-Rosario-00 a base:location; + base:location\#City base:City-Rosario; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3838583"; + base:location\#IDLocation "ARG-Rosario-00"; + base:location\#latitude -3.295e1; + base:location\#longitude -6.065e1; + base:location\#wikidata "Q52535"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rosario" . + +base:location\/AT-BadVie-00 a base:location; + base:location\#City base:City-Baden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2782067"; + base:location\#IDLocation "AT-BadVie-00"; + base:location\#latitude 4.80075e1; + base:location\#longitude 1.62344e1; + base:location\#wikidata "Q486450"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Baden_bei_Wien" . + +base:location\/AT-Perch-00 a base:location; + base:location\#City base:City-Perchtoldsdorf; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2769110"; + base:location\#IDLocation "AT-Perch-00"; + base:location\#latitude 4.81194e1; + base:location\#longitude 1.62661e1; + base:location\#wikidata "Q671367"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Perchtoldsdorf" . + +base:location\/AUS-Bal-00 a base:location; + base:location\#City base:City-Ballarat; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2177091"; + base:location\#IDLocation "AUS-Bal-00"; + base:location\#latitude -3.75667e1; + base:location\#longitude 1.4385e2; + base:location\#wikidata "Q17856"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ballarat" . + +base:location\/BR-CampGoyta-00 a base:location; + base:location\#City base:City-CamposdosGoytacazes; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3467693"; + base:location\#IDLocation "BR-CampGoyta-00"; + base:location\#latitude -2.14497e1; + base:location\#longitude -4.11897e1; + base:location\#wikidata "Q689868"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Campos_dos_Goytacazes" . + +base:location\/BR-Fortal-00 a base:location; + base:location\#City base:City-Fortaleza; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3399415"; + base:location\#IDLocation "BR-Fortal-00"; + base:location\#latitude -3.78139e0; + base:location\#longitude -3.85889e1; + base:location\#wikidata "Q43463"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Fortaleza" . + +base:location\/BR-Pira-00 a base:location; + base:location\#City base:City-Piracicaba; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3453643"; + base:location\#IDLocation "BR-Pira-00"; + base:location\#State base:State-S\%C3\%A3oPaulo; + base:location\#latitude -2.2725e1; + base:location\#longitude -4.76489e1; + base:location\#wikidata "Q330175"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Piracicaba" . + +base:location\/BY-Grod-00 a base:location; + base:location\#City base:City-Grodno; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#GeoNamesID "627904"; + base:location\#IDLocation "BY-Grod-00"; + base:location\#latitude 5.36842e1; + base:location\#longitude 2.38361e1; + base:location\#wikidata "Q181376"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Grodno" . + +base:location\/Bel-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-00"; + base:location\#latitude 5.35167e1; + base:location\#longitude 2.87667e1; + base:location\#wikidata "Q184" . + +base:location\/CA-Otta-00 a base:location; + base:location\#City base:City-Ottawa; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-Otta-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.54116e1; + base:location\#longitude -7.569840000000001e1; + base:location\#wikidata "Q1930" . + +base:location\/CH-Bern-00 a base:location; + base:location\#City base:City-Bern; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#IDLocation "CH-Bern-00"; + base:location\#latitude 4.6948e1; + base:location\#longitude 7.44743e0; + base:location\#wikidata "Q70"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Bern" . + +base:location\/CL-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Chile; + base:location\#GeoNamesID "3895114"; + base:location\#IDLocation "CL-00"; + base:location\#latitude -3.14667e1; + base:location\#longitude -7.090000000000001e1; + base:location\#wikidata "Q298"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Chile" . + +base:location\/CL-Valpa-00 a base:location; + base:location\#City base:City-Valpara\%C3\%ADso; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Chile; + base:location\#GeoNamesID "3868626"; + base:location\#IDLocation "CL-Valpa-00"; + base:location\#latitude -3.305e1; + base:location\#longitude -7.162e1; + base:location\#wikidata "Q33986"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Valpara%C3%ADso" . + +base:location\/EG-00 a base:location; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-Egypt; + base:location\#GeoNamesID "357994"; + base:location\#IDLocation "EG-00"; + base:location\#latitude 2.6e1; + base:location\#longitude 3.0e1; + base:location\#wikidata "Q79"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Egypt" . + +base:location\/EN-Exet-00 a base:location; + base:location\#City base:City-Exeter; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Exet-00"; + base:location\#latitude 5.07256e1; + base:location\#longitude -3.52694e0; + base:location\#wikidata "Q134672" . + +base:location\/Egy-DiJeSt-145 a base:location; + base:location\#City base:City-Alexandria; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-Egypt; + base:location\#IDLocation "Egy-DiJeSt-145"; + base:location\#latitude 3.11975e1; + base:location\#longitude 2.98925e1; + base:location\#wikidata "Q87"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/FJ-Suv-00 a base:location; + base:location\#City base:City-Suva; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-Fiji; + base:location\#GeoNamesID "2198148"; + base:location\#IDLocation "FJ-Suv-00"; + base:location\#latitude -1.81333e1; + base:location\#longitude 1.78433e2; + base:location\#wikidata "Q38807"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Suva" . + +base:location\/FR-Bayo-00 a base:location; + base:location\#City base:City-Bayonne; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3034475"; + base:location\#IDLocation "FR-Bayo-00"; + base:location\#State base:State-Nouvelle-Aquitaine; + base:location\#latitude 4.34925e1; + base:location\#longitude -1.47639e0; + base:location\#wikidata "Q134674"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bayonne" . + +base:location\/HR-Viz-00 a base:location; + base:location\#City base:City-Vi\%C5\%BEinada; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Croatia; + base:location\#GeoNamesID "3187565"; + base:location\#IDLocation "HR-Viz-00"; + base:location\#latitude 4.53333e1; + base:location\#longitude 1.37667e1; + base:location\#wikidata "Q1018664"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vi%C5%BEinada" . + +base:location\/IN-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#GeoNamesID "1269750"; + base:location\#IDLocation "IN-00"; + base:location\#latitude 2.11256e1; + base:location\#longitude 7.831059999999999e1; + base:location\#wikidata "Q668"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/India" . + +base:location\/ISR-TelAv-00 a base:location; + base:location\#City base:City-Tel-Aviv; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Israel; + base:location\#GeoNamesID "293397"; + base:location\#IDLocation "ISR-TelAv-00"; + base:location\#latitude 3.20833e1; + base:location\#longitude 3.48e1; + base:location\#wikidata "Q33935"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tel_Aviv" . + +base:location\/IT-Lucc-00 a base:location; + base:location\#City base:City-Lucca; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#IDLocation "IT-Lucc-00"; + base:location\#latitude 4.38417e1; + base:location\#longitude 1.05028e1; + base:location\#wikidata "Q13373" . + +base:location\/Lit-DiJeSt-74 a base:location; + base:location\#City base:City-Ukmerg\%C4\%97; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Lithuania; + base:location\#IDLocation "Lit-DiJeSt-74"; + base:location\#latitude 5.525e1; + base:location\#longitude 2.47667e1; + base:location\#wikidata "Q213127"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/NZ-Tima-00 a base:location; + base:location\#City base:City-Timaru; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#IDLocation "NZ-Tima-00"; + base:location\#latitude -4.43958e1; + base:location\#longitude 1.71253e2; + base:location\#wikidata "Q1016574" . + +base:location\/PL-Biala-00 a base:location; + base:location\#City base:City-Bielsko-Bia\%C5\%82a; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3103402"; + base:location\#IDLocation "PL-Biala-00"; + base:location\#latitude 4.98225e1; + base:location\#longitude 1.90444e1; + base:location\#wikidata "Q106583"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bielsko-Bia%C5%82a" . + +base:location\/PL-Lomza-00 a base:location; + base:location\#City base:City-\%C5\%81om\%C5\%BCa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "766027"; + base:location\#IDLocation "PL-Lomza-00"; + base:location\#latitude 5.31764e1; + base:location\#longitude 2.20731e1; + base:location\#wikidata "Q215633"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/%C5%81om%C5%BCa" . + +base:location\/RO-Herm-00 a base:location; + base:location\#City base:City-Sibiu; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "667268"; + base:location\#IDLocation "RO-Herm-00"; + base:location\#latitude 4.57964e1; + base:location\#longitude 2.41497e1; + base:location\#wikidata "Q83324"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sibiu" . + +base:location\/ROU-Brail-00 a base:location; + base:location\#City base:City-Br\%C4\%83ila; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "683902"; + base:location\#IDLocation "ROU-Brail-00"; + base:location\#latitude 4.52725e1; + base:location\#longitude 2.79722e1; + base:location\#wikidata "Q188478"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Br%C4%83ila" . + +base:location\/RU-Berdi-00 a base:location; + base:location\#City base:City-Berdychiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "712441"; + base:location\#IDLocation "RU-Berdi-00"; + base:location\#latitude 4.99e1; + base:location\#longitude 2.85667e1; + base:location\#wikidata "Q158799"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Berdychiv" . + +base:location\/RU-STARO-00 a base:location; + base:location\#City base:City-Starokostiantyniv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "692818"; + base:location\#IDLocation "RU-STARO-00"; + base:location\#State base:State-Wolhynien; + base:location\#latitude 4.97556e1; + base:location\#longitude 2.72208e1; + base:location\#wikidata "Q997429"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Starokostiantyniv" . + +base:location\/Rom-DiJeSt-35 a base:location; + base:location\#City base:City-Gala\%C8\%9Bi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#IDLocation "Rom-DiJeSt-35"; + base:location\#latitude 4.54233e1; + base:location\#longitude 2.80425e1; + base:location\#wikidata "Q170996"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/SCT-Aberd-00 a base:location; + base:location\#City base:City-Aberdeen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2657832"; + base:location\#IDLocation "SCT-Aberd-00"; + base:location\#latitude 5.715e1; + base:location\#longitude -2.11e0; + base:location\#wikidata "Q36405"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Aberdeen" . + +base:location\/SI-Marb-00 a base:location; + base:location\#City base:City-Maribor; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovenia; + base:location\#GeoNamesID "3195506"; + base:location\#IDLocation "SI-Marb-00"; + base:location\#latitude 4.65547e1; + base:location\#longitude 1.56467e1; + base:location\#wikidata "Q1010"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Maribor" . + +base:location\/SK-Brat-00 a base:location; + base:location\#City base:City-Bratislava; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovakia; + base:location\#GeoNamesID "3060972"; + base:location\#IDLocation "SK-Brat-00"; + base:location\#latitude 4.81439e1; + base:location\#longitude 1.71097e1; + base:location\#wikidata "Q1780"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bratislava" . + +base:location\/SRB-NovSad-00 a base:location; + base:location\#City base:City-NoviSad; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Serbia; + base:location\#GeoNamesID "3194360"; + base:location\#IDLocation "SRB-NovSad-00"; + base:location\#State base:State-Vojvodina; + base:location\#latitude 4.525e1; + base:location\#longitude 1.985e1; + base:location\#wikidata "Q55630"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Novi_Sad" . + +base:location\/TR-Ank-00 a base:location; + base:location\#City base:City-Ankara; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Turkey; + base:location\#IDLocation "TR-Ank-00"; + base:location\#latitude 3.99289e1; + base:location\#longitude 3.28547e1; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ankara" . + +base:location\/UK-Litchf-00 a base:location; + base:location\#City base:City-Litchfield; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#IDLocation "UK-Litchf-00"; + base:location\#latitude 5.12797e1; + base:location\#longitude -1.3404e0; + base:location\#wikidata "Q11761882" . + +base:location\/UK-Montr-00 a base:location; + base:location\#City base:City-Montrose; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2642302"; + base:location\#IDLocation "UK-Montr-00"; + base:location\#latitude 5.6708e1; + base:location\#longitude -2.467e0; + base:location\#wikidata "Q420303"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montrose,_Angus" . + +base:location\/UK-Sheff-00 a base:location; + base:location\#City base:City-Sheffield; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2638077"; + base:location\#IDLocation "UK-Sheff-00"; + base:location\#latitude 5.33824e1; + base:location\#longitude -1.4719e0; + base:location\#wikidata "Q42448"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sheffield" . + +base:location\/US-Calum-00 a base:location; + base:location\#City base:City-Calumet; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "US-Calum-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.72472e1; + base:location\#longitude -8.845440000000001e1; + base:location\#wikidata "Q5024102" . + +base:location\/USA-Allen-00 a base:location; + base:location\#City base:City-Allentown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Allen-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.06017e1; + base:location\#longitude -7.54772e1; + base:location\#wikidata "Q142811" . + +base:location\/USA-Altoo-00 a base:location; + base:location\#City base:City-Altoona; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Altoo-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.05108e1; + base:location\#longitude -7.83997e1; + base:location\#wikidata "Q444210" . + +base:location\/USA-Anac-00 a base:location; + base:location\#City base:City-Anaconda; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Anac-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.61333e1; + base:location\#longitude -1.12933e2; + base:location\#wikidata "Q483539" . + +base:location\/USA-Atch-00 a base:location; + base:location\#City base:City-Atchison; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Atch-00"; + base:location\#State base:State-Kansas; + base:location\#latitude 3.95625e1; + base:location\#longitude -9.51283e1; + base:location\#wikidata "Q753949" . + +base:location\/USA-Aug-00 a base:location; + base:location\#City base:City-Augusta; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Aug-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.347e1; + base:location\#longitude -8.197499999999999e1; + base:location\#wikidata "Q181962" . + +base:location\/USA-Brockt-00 a base:location; + base:location\#City base:City-Brockton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4931429"; + base:location\#IDLocation "USA-Brockt-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.20855e1; + base:location\#longitude -7.102e1; + base:location\#wikidata "Q49193"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brockton,_Massachusetts" . + +base:location\/USA-Burl-00 a base:location; + base:location\#City base:City-Burlington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Burl-00"; + base:location\#State base:State-Vermont; + base:location\#latitude 4.4492e1; + base:location\#longitude -7.32394e1; + base:location\#wikidata "Q31058" . + +base:location\/USA-CA-01 a base:location; + base:location\#City base:City-Pasadena; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5381396"; + base:location\#IDLocation "USA-CA-01"; + base:location\#State base:State-California; + base:location\#latitude 3.41561e1; + base:location\#longitude -1.18132e2; + base:location\#wikidata "Q485176"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pasadena,_California" . + +base:location\/USA-CarsonC-00 a base:location; + base:location\#City base:City-CarsonCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5501344"; + base:location\#IDLocation "USA-CarsonC-00"; + base:location\#State base:State-Nevada; + base:location\#latitude 3.91608e1; + base:location\#longitude -1.19754e2; + base:location\#wikidata "Q40881"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Carson_City,_Nevada" . + +base:location\/USA-East-00 a base:location; + base:location\#City base:City-Easton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-East-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.06883e1; + base:location\#longitude -7.521639999999999e1; + base:location\#wikidata "Q1056542" . + +base:location\/USA-EauCl-00 a base:location; + base:location\#City base:City-EauClaire; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-EauCl-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.48147e1; + base:location\#longitude -9.14928e1; + base:location\#wikidata "Q122563" . + +base:location\/USA-Erie-00 a base:location; + base:location\#City base:City-Erie; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Erie-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.21142e1; + base:location\#longitude -8.00758e1; + base:location\#wikidata "Q234061" . + +base:location\/USA-Flor-00 a base:location; + base:location\#City base:City-WinterPark; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4178560"; + base:location\#IDLocation "USA-Flor-00"; + base:location\#State base:State-Florida; + base:location\#latitude 2.85961e1; + base:location\#longitude -8.13467e1; + base:location\#wikidata "Q986641"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Winter_Park,_Florida" . + +base:location\/USA-GenNY-00 a base:location; + base:location\#City base:City-Geneva; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-GenNY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.28644e1; + base:location\#longitude -7.698260000000001e1; + base:location\#wikidata "Q1378284" . + +base:location\/USA-Haver-00 a base:location; + base:location\#City base:City-Haverhill; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4939085"; + base:location\#IDLocation "USA-Haver-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.27833e1; + base:location\#longitude -7.108329999999999e1; + base:location\#wikidata "Q54132"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Haverhill,_Massachusetts" . + +base:location\/USA-LA-00 a base:location; + base:location\#City base:City-NewportBeach; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5376890"; + base:location\#IDLocation "USA-LA-00"; + base:location\#State base:State-California; + base:location\#latitude 3.36069e1; + base:location\#longitude -1.17905e2; + base:location\#wikidata "Q268873"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Newport_Beach,_California" . + +base:location\/USA-Low-00 a base:location; + base:location\#City base:City-Lowell; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Low-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.26394e1; + base:location\#longitude -7.13147e1; + base:location\#wikidata "Q49162" . + +base:location\/USA-Mac-00 a base:location; + base:location\#City base:City-Macon; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Mac-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.28358e1; + base:location\#longitude -8.36464e1; + base:location\#wikidata "Q219656" . + +base:location\/USA-Mansfi-00 a base:location; + base:location\#City base:City-Mansfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5161723"; + base:location\#IDLocation "USA-Mansfi-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.07533e1; + base:location\#longitude -8.25044e1; + base:location\#wikidata "Q983698"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mansfield,_Ohio" . + +base:location\/USA-Marq-00 a base:location; + base:location\#City base:City-Marquette; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Marq-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.65431e1; + base:location\#longitude -8.73931e1; + base:location\#wikidata "Q12443" . + +base:location\/USA-Marysv-00 a base:location; + base:location\#City base:City-Marysville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Marysv-00"; + base:location\#State base:State-California; + base:location\#latitude 3.91494e1; + base:location\#longitude -1.21586e2; + base:location\#wikidata "Q950966"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Marysville,_California" . + +base:location\/USA-Musk-00 a base:location; + base:location\#City base:City-Muskegon; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Musk-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.32342e1; + base:location\#longitude -8.62483e1; + base:location\#wikidata "Q952097" . + +base:location\/USA-Natch-00 a base:location; + base:location\#City base:City-Natchez; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Natch-00"; + base:location\#State base:State-Mississippi; + base:location\#latitude 3.15542e1; + base:location\#longitude -9.13875e1; + base:location\#wikidata "Q944044" . + +base:location\/USA-Nort-00 a base:location; + base:location\#City base:City-Northampton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Nort-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.2325e1; + base:location\#longitude -7.26417e1; + base:location\#wikidata "Q49186" . + +base:location\/USA-Ogden-00 a base:location; + base:location\#City base:City-Ogden; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5779206"; + base:location\#IDLocation "USA-Ogden-00"; + base:location\#State base:State-Utah; + base:location\#latitude 4.12277e1; + base:location\#longitude -1.11968e2; + base:location\#wikidata "Q52471"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ogden,_Utah" . + +base:location\/USA-Owens-00 a base:location; + base:location\#City base:City-Owensboro; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Owens-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.77578e1; + base:location\#longitude -8.71183e1; + base:location\#wikidata "Q494295" . + +base:location\/USA-Plain-00 a base:location; + base:location\#City base:City-Plainfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Plain-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.06153e1; + base:location\#longitude -7.44161e1; + base:location\#wikidata "Q544890" . + +base:location\/USA-Riv-00 a base:location; + base:location\#City base:City-Riverside; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Riv-00"; + base:location\#State base:State-California; + base:location\#latitude 3.39533e1; + base:location\#longitude -1.17396e2; + base:location\#wikidata "Q49243" . + +base:location\/USA-Roano-00 a base:location; + base:location\#City base:City-Roanoke; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4782167"; + base:location\#IDLocation "USA-Roano-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.72705e1; + base:location\#longitude -7.99425e1; + base:location\#wikidata "Q501796"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Roanoke,_Virginia" . + +base:location\/USA-SantAn-00 a base:location; + base:location\#City base:City-SantaAna; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SantAn-00"; + base:location\#State base:State-California; + base:location\#latitude 3.37408e1; + base:location\#longitude -1.17881e2; + base:location\#wikidata "Q49244" . + +base:location\/USA-Vick-00 a base:location; + base:location\#City base:City-Vicksburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Vick-00"; + base:location\#State base:State-Mississippi; + base:location\#latitude 3.23172e1; + base:location\#longitude -9.08867e1; + base:location\#wikidata "Q493787" . + +base:location\/USA-VirgCity-00 a base:location; + base:location\#City base:City-VirginiaCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5514428"; + base:location\#IDLocation "USA-VirgCity-00"; + base:location\#State base:State-Nevada; + base:location\#latitude 3.931e1; + base:location\#longitude -1.19649e2; + base:location\#wikidata "Q987262"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Virginia_City,_Nevada" . + +base:location\/USA-Waterto-00 a base:location; + base:location\#City base:City-Watertown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5143396"; + base:location\#IDLocation "USA-Waterto-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.39756e1; + base:location\#longitude -7.59063e1; + base:location\#wikidata "Q1378026"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Watertown,_New_York" . + +base:location\/Ukr-DiJeSt-113 a base:location; + base:location\#City base:City-Mykolaiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-113"; + base:location\#latitude 4.6975e1; + base:location\#longitude 3.1995e1; + base:location\#wikidata "Q41572"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Uni-DiJeSt-151 a base:location; + base:location\#City base:City-Brownsville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-UnitedStates; + base:location\#IDLocation "Uni-DiJeSt-151"; + base:location\#latitude 4.06607e1; + base:location\#longitude -7.391079999999999e1; + base:location\#wikidata "Q991279"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/100 a base:organisation; + base:organisation\#IDOrganisation 100; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Brünn"; + base:organisation\#ref-IDLocation base:location\/CZ-Brno-00 . + +base:organisation\/1046 a base:organisation; + base:organisation\#IDOrganisation 1046; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Guilherme da Silveira’s theater company" . + +base:organisation\/1077 a base:organisation; + base:organisation\#IDOrganisation 1077; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Theatre"; + base:organisation\#ref-IDLocation base:location\/NZ-Auck-00 . + +base:organisation\/1116 a base:organisation; + base:organisation\#IDOrganisation 1116; + base:organisation\#comment ""; + base:organisation\#inst_name "Shanghai Theatre, Lyceum Theatre" . + +base:organisation\/1143 a base:organisation; + base:organisation\#IDOrganisation 1143; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Crystal Theatre" . + +base:organisation\/1155 a base:organisation; + base:organisation\#IDOrganisation 1155; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Pantages Theatre" . + +base:organisation\/1191 a base:organisation; + base:organisation\#IDOrganisation 1191; + base:organisation\#comment ""; + base:organisation\#inst_name "Covent Garden" . + +base:organisation\/1290 a base:organisation; + base:organisation\#IDOrganisation 1290; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Maguire´s theatre" . + +base:organisation\/1385 a base:organisation; + base:organisation\#IDOrganisation 1385; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Henry Miller company" . + +base:organisation\/1410 a base:organisation; + base:organisation\#IDOrganisation 1410; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Bijou Theatre" . + +base:organisation\/1415 a base:organisation; + base:organisation\#IDOrganisation 1415; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Knickerbocker Theatre" . + +base:organisation\/143 a base:organisation; + base:organisation\#IDOrganisation 143; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Nationaltheater Budapest"; + base:organisation\#ref-IDLocation base:location\/HU-Buda-00 . + +base:organisation\/151 a base:organisation; + base:organisation\#IDOrganisation 151; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "stock company of Macauley's Theatre" . + +base:organisation\/1515 a base:organisation; + base:organisation\#IDOrganisation 1515; + base:organisation\#comment ""; + base:organisation\#inst_name "Polytheama" . + +base:organisation\/153 a base:organisation; + base:organisation\#IDOrganisation 153; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New York's Grand Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/163 a base:organisation; + base:organisation\#IDOrganisation 163; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New York’s Princess Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/166 a base:organisation; + base:organisation\#IDOrganisation 166; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Meiningen"; + base:organisation\#ref-IDLocation base:location\/GER-Mein-00 . + +base:organisation\/1720 a base:organisation; + base:organisation\#IDOrganisation 1720; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Poli’s Vaudeville Theatre" . + +base:organisation\/1746 a base:organisation; + base:organisation\#IDOrganisation 1746; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Gynásio Dramático" . + +base:organisation\/1751 a base:organisation; + base:organisation\#IDOrganisation 1751; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sociedade Dramática Nacional" . + +base:organisation\/1871 a base:organisation; + base:organisation\#IDOrganisation 1871; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Eden Lavradio" . + +base:organisation\/191 a base:organisation; + base:organisation\#IDOrganisation 191; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "American Theatre New York"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1936 a base:organisation; + base:organisation\#IDOrganisation 1936; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Lyrique Français*" . + +base:organisation\/2255 a base:organisation; + base:organisation\#IDOrganisation 2255; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "McWade company" . + +base:organisation\/2260 a base:organisation; + base:organisation\#IDOrganisation 2260; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New London Opera House" . + +base:organisation\/2280 a base:organisation; + base:organisation\#IDOrganisation 2280; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Fifth Avenue Theater" . + +base:organisation\/230 a base:organisation; + base:organisation\#IDOrganisation 230; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Düsseldorf" . + +base:organisation\/232 a base:organisation; + base:organisation\#IDOrganisation 232; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Lyceum Theatre, London" . + +base:organisation\/2340 a base:organisation; + base:organisation\#IDOrganisation 2340; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Majestic Theater" . + +base:organisation\/247 a base:organisation; + base:organisation\#IDOrganisation 247; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater München"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/259 a base:organisation; + base:organisation\#IDOrganisation 259; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "American Theatre San Francisco"; + base:organisation\#ref-IDLocation base:location\/USA-SanFranc-02 . + +base:organisation\/260 a base:organisation; + base:organisation\#IDOrganisation 260; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "McVicker's Theater in Chicago" . + +base:organisation\/2605 a base:organisation; + base:organisation\#IDOrganisation 2605; + base:organisation\#comment ""; + base:organisation\#inst_name "Liceo" . + +base:organisation\/263 a base:organisation; + base:organisation\#IDOrganisation 263; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Manhattan Theatre" . + +base:organisation\/2726 a base:organisation; + base:organisation\#IDOrganisation 2726; + base:organisation\#comment ""; + base:organisation\#inst_name "Howard Athenaeum" . + +base:organisation\/275 a base:organisation; + base:organisation\#IDOrganisation 275; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Maurice Schwartz’s Yiddish Art Theater" . + +base:organisation\/276 a base:organisation; + base:organisation\#IDOrganisation 276; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Chicago Opera (Lyric Opera of Chicago)" . + +base:organisation\/2806 a base:organisation; + base:organisation\#IDOrganisation 2806; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Masonic Temple Roof Theatre" . + +base:organisation\/2821 a base:organisation; + base:organisation\#IDOrganisation 2821; + base:organisation\#comment ""; + base:organisation\#inst_name "Auditorium" . + +base:organisation\/290 a base:organisation; + base:organisation\#IDOrganisation 290; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Dresdner Hofoper" . + +base:organisation\/301 a base:organisation; + base:organisation\#IDOrganisation 301; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Irving Place Theatre, New York" . + +base:organisation\/307 a base:organisation; + base:organisation\#IDOrganisation 307; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Argentina Rom" . + +base:organisation\/3160 a base:organisation; + base:organisation\#IDOrganisation 3160; + base:organisation\#comment ""; + base:organisation\#inst_name "Bieckert Bier" . + +base:organisation\/322 a base:organisation; + base:organisation\#IDOrganisation 322; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre de la Renaissance" . + +base:organisation\/3325 a base:organisation; + base:organisation\#IDOrganisation 3325; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Moderno" . + +base:organisation\/3330 a base:organisation; + base:organisation\#IDOrganisation 3330; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Olimpo" . + +base:organisation\/335 a base:organisation; + base:organisation\#IDOrganisation 335; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "English Opera Company" . + +base:organisation\/351 a base:organisation; + base:organisation\#IDOrganisation 351; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Staatsoper Unter den Linden, Berlin" . + +base:organisation\/3535 a base:organisation; + base:organisation\#IDOrganisation 3535; + base:organisation\#comment ""; + base:organisation\#inst_name "in collaboration with Arnaldo Malfatti" . + +base:organisation\/3705 a base:organisation; + base:organisation\#IDOrganisation 3705; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Municipal" . + +base:organisation\/375 a base:organisation; + base:organisation\#IDOrganisation 375; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lustspielhaus"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/3820 a base:organisation; + base:organisation\#IDOrganisation 3820; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Winter Garden Theatre" . + +base:organisation\/3855 a base:organisation; + base:organisation\#IDOrganisation 3855; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Copacabana Club" . + +base:organisation\/3890 a base:organisation; + base:organisation\#IDOrganisation 3890; + base:organisation\#comment ""; + base:organisation\#inst_name "Chez Peree" . + +base:organisation\/391 a base:organisation; + base:organisation\#IDOrganisation 391; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opernhaus Leipzig"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:organisation\/393 a base:organisation; + base:organisation\#IDOrganisation 393; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Prager Landestheater" . + +base:organisation\/3930 a base:organisation; + base:organisation\#IDOrganisation 3930; + base:organisation\#comment ""; + base:organisation\#inst_name "Latin Quartier" . + +base:organisation\/395 a base:organisation; + base:organisation\#IDOrganisation 395; + base:organisation\#comment ""; + base:organisation\#inst_name "New Yorker Philharmonikern" . + +base:organisation\/3960 a base:organisation; + base:organisation\#IDOrganisation 3960; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Shamrock Hotel" . + +base:organisation\/4021 a base:organisation; + base:organisation\#IDOrganisation 4021; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Artistic society directed by Vale" . + +base:organisation\/421 a base:organisation; + base:organisation\#IDOrganisation 421; + base:organisation\#comment ""; + base:organisation\#inst_name "Salzburger Mozartfest"; + base:organisation\#ref-IDLocation base:location\/AT-Salzb-00 . + +base:organisation\/4246 a base:organisation; + base:organisation\#IDOrganisation 4246; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de São Jõao" . + +base:organisation\/428 a base:organisation; + base:organisation\#IDOrganisation 428; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metz Opera"; + base:organisation\#ref-IDLocation base:location\/FR-Met-00 . + +base:organisation\/4345 a base:organisation; + base:organisation\#IDOrganisation 4345; + base:organisation\#comment ""; + base:organisation\#inst_name "Brussels Conservatory (studied)" . + +base:organisation\/436 a base:organisation; + base:organisation\#IDOrganisation 436; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Düsseldorf Oper"; + base:organisation\#ref-IDLocation base:location\/GER-Ddorf-00 . + +base:organisation\/4365 a base:organisation; + base:organisation\#IDOrganisation 4365; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre des Nouveautés" . + +base:organisation\/4375 a base:organisation; + base:organisation\#IDOrganisation 4375; + base:organisation\#comment ""; + base:organisation\#inst_name "Casino de Paris" . + +base:organisation\/438 a base:organisation; + base:organisation\#IDOrganisation 438; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Belle-Alliance-Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/445 a base:organisation; + base:organisation\#IDOrganisation 445; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Moody-Manners Opera Company"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/446 a base:organisation; + base:organisation\#IDOrganisation 446; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Opera House Stockholm"; + base:organisation\#ref-IDLocation base:location\/SE-Stock-00 . + +base:organisation\/462 a base:organisation; + base:organisation\#IDOrganisation 462; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opéra de Monte Carlo"; + base:organisation\#ref-IDLocation base:location\/MC-MtCarlo-00 . + +base:organisation\/4660 a base:organisation; + base:organisation\#IDOrganisation 4660; + base:organisation\#comment ""; + base:organisation\#inst_name "Ford's Theater" . + +base:organisation\/4708 a base:organisation; + base:organisation\#IDOrganisation 4708; + base:organisation\#comment ""; + base:organisation\#inst_name "Troy Griswold Theater" . + +base:organisation\/4724 a base:organisation; + base:organisation\#IDOrganisation 4724; + base:organisation\#comment ""; + base:organisation\#inst_name "Hooley's Theater"; + base:organisation\#ref-IDLocation base:location\/USA-CHIC-00 . + +base:organisation\/4776 a base:organisation; + base:organisation\#IDOrganisation 4776; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Silvio Giovanetti and Julio Traversa" . + +base:organisation\/4792 a base:organisation; + base:organisation\#IDOrganisation 4792; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Jerónimo Podestá" . + +base:organisation\/4800 a base:organisation; + base:organisation\#IDOrganisation 4800; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de los Hermanos Podestá" . + +base:organisation\/4828 a base:organisation; + base:organisation\#IDOrganisation 4828; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Napolitana" . + +base:organisation\/4848 a base:organisation; + base:organisation\#IDOrganisation 4848; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía Enrique Muiño-Elías Alippi" . + +base:organisation\/4852 a base:organisation; + base:organisation\#IDOrganisation 4852; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Florencio Parravicini" . + +base:organisation\/4868 a base:organisation; + base:organisation\#IDOrganisation 4868; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatorio Nacional de Música y Arte Escénico" . + +base:organisation\/4876 a base:organisation; + base:organisation\#IDOrganisation 4876; + base:organisation\#comment ""; + base:organisation\#inst_name "Revista “Nosotros”" . + +base:organisation\/48970 a base:organisation; + base:organisation\#IDOrganisation 48970; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Aba Shoengold Troupe" . + +base:organisation\/4904 a base:organisation; + base:organisation\#IDOrganisation 4904; + base:organisation\#inst_name "Hills Opera House in Ann Arbor" . + +base:organisation\/4908 a base:organisation; + base:organisation\#IDOrganisation 4908; + base:organisation\#inst_name "Owens Academy of Music in Charleston" . + +base:organisation\/4940 a base:organisation; + base:organisation\#IDOrganisation 4940; + base:organisation\#inst_name "Metropolitan Theatre in Sacramento" . + +base:organisation\/49480 a base:organisation; + base:organisation\#IDOrganisation 49480; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Amphion Theatre" . + +base:organisation\/501 a base:organisation; + base:organisation\#IDOrganisation 501; + base:organisation\#comment ""; + base:organisation\#inst_name "Saltsbury´s Troubadours" . + +base:organisation\/5012 a base:organisation; + base:organisation\#IDOrganisation 5012; + base:organisation\#inst_name "Opera House in Wheeling" . + +base:organisation\/50120 a base:organisation; + base:organisation\#IDOrganisation 50120; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Berger Troupe" . + +base:organisation\/5024 a base:organisation; + base:organisation\#IDOrganisation 5024; + base:organisation\#inst_name "Park Opera House in Erie" . + +base:organisation\/505 a base:organisation; + base:organisation\#IDOrganisation 505; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Yidish-Daytsh Theater" . + +base:organisation\/5056 a base:organisation; + base:organisation\#IDOrganisation 5056; + base:organisation\#inst_name "Muskegon Opera House" . + +base:organisation\/5076 a base:organisation; + base:organisation\#IDOrganisation 5076; + base:organisation\#inst_name "Richardson Theatre in Oswego" . + +base:organisation\/5088 a base:organisation; + base:organisation\#IDOrganisation 5088; + base:organisation\#inst_name "Globe Theatre in Boston" . + +base:organisation\/5100 a base:organisation; + base:organisation\#IDOrganisation 5100; + base:organisation\#inst_name "Grand Opera House in Oshkosh" . + +base:organisation\/5124 a base:organisation; + base:organisation\#IDOrganisation 5124; + base:organisation\#inst_name "Everyman Theatre" . + +base:organisation\/5128 a base:organisation; + base:organisation\#IDOrganisation 5128; + base:organisation\#inst_name "Globe Theater (London)" . + +base:organisation\/51520 a base:organisation; + base:organisation\#IDOrganisation 51520; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Columbia Theatre" . + +base:organisation\/5180 a base:organisation; + base:organisation\#IDOrganisation 5180; + base:organisation\#inst_name "Academy of Music, Kalamazoo"; + base:organisation\#ref-IDLocation base:location\/USA-Kalamz-00 . + +base:organisation\/5188 a base:organisation; + base:organisation\#IDOrganisation 5188; + base:organisation\#inst_name "Schulz`s Opera House (Zanesville)" . + +base:organisation\/5200 a base:organisation; + base:organisation\#IDOrganisation 5200; + base:organisation\#inst_name "Grand Opera House (Peoria)" . + +base:organisation\/5220 a base:organisation; + base:organisation\#IDOrganisation 5220; + base:organisation\#inst_name "Tremont Theatre (Galveston)" . + +base:organisation\/5244 a base:organisation; + base:organisation\#IDOrganisation 5244; + base:organisation\#inst_name "Opera House (Wilmington)" . + +base:organisation\/5256 a base:organisation; + base:organisation\#IDOrganisation 5256; + base:organisation\#inst_name "Roberts Opera House (Hartford)" . + +base:organisation\/52850 a base:organisation; + base:organisation\#IDOrganisation 52850; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic union" . + +base:organisation\/5296 a base:organisation; + base:organisation\#IDOrganisation 5296; + base:organisation\#inst_name "Abel Opera House (Easton)" . + +base:organisation\/5316 a base:organisation; + base:organisation\#IDOrganisation 5316; + base:organisation\#inst_name "Durley Theatre (Bloomington)" . + +base:organisation\/5324 a base:organisation; + base:organisation\#IDOrganisation 5324; + base:organisation\#inst_name "Holliday Street Theater (Baltimore)" . + +base:organisation\/53650 a base:organisation; + base:organisation\#IDOrganisation 53650; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Fishzon-Spivakovski Troupe" . + +base:organisation\/5381 a base:organisation; + base:organisation\#IDOrganisation 5381; + base:organisation\#inst_name "Belle City Opera House, Racine"; + base:organisation\#ref-IDLocation base:location\/USA-Rac-00 . + +base:organisation\/53820 a base:organisation; + base:organisation\#IDOrganisation 53820; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Forward" . + +base:organisation\/53880 a base:organisation; + base:organisation\#IDOrganisation 53880; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Fraye Yidishe Folks-Bine" . + +base:organisation\/54170 a base:organisation; + base:organisation\#IDOrganisation 54170; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Genfer Troupe" . + +base:organisation\/5429 a base:organisation; + base:organisation\#IDOrganisation 5429; + base:organisation\#inst_name "Doerr´s Opera House, Quincy" . + +base:organisation\/54350 a base:organisation; + base:organisation\#IDOrganisation 54350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Globe Theatre" . + +base:organisation\/5473 a base:organisation; + base:organisation\#IDOrganisation 5473; + base:organisation\#inst_name "Grand Opera House, Decatur" . + +base:organisation\/5477 a base:organisation; + base:organisation\#IDOrganisation 5477; + base:organisation\#inst_name "Grand Opera House, Eau Claire" . + +base:organisation\/55000 a base:organisation; + base:organisation\#IDOrganisation 55000; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Hebrew Actors' Union (HAU)" . + +base:organisation\/555 a base:organisation; + base:organisation\#IDOrganisation 555; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "King's London Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/5577 a base:organisation; + base:organisation\#IDOrganisation 5577; + base:organisation\#inst_name "Mobile Theatre" . + +base:organisation\/561 a base:organisation; + base:organisation\#IDOrganisation 561; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royalty Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/56160 a base:organisation; + base:organisation\#IDOrganisation 56160; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Jacob Silbert Troupe" . + +base:organisation\/563 a base:organisation; + base:organisation\#IDOrganisation 563; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/5661 a base:organisation; + base:organisation\#IDOrganisation 5661; + base:organisation\#inst_name "Orange Music Hall" . + +base:organisation\/5681 a base:organisation; + base:organisation\#IDOrganisation 5681; + base:organisation\#inst_name "Proctor´s Opera House, Hartford" . + +base:organisation\/569 a base:organisation; + base:organisation\#IDOrganisation 569; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Garden Theatre "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/570 a base:organisation; + base:organisation\#IDOrganisation 570; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hudson Theatre "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/5701 a base:organisation; + base:organisation\#IDOrganisation 5701; + base:organisation\#inst_name "Taylor Opera House, Trenton" . + +base:organisation\/5717 a base:organisation; + base:organisation\#IDOrganisation 5717; + base:organisation\#inst_name "Theater Vendome, Nashville" . + +base:organisation\/57250 a base:organisation; + base:organisation\#IDOrganisation 57250; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Lazar Bernstein Troupe" . + +base:organisation\/577 a base:organisation; + base:organisation\#IDOrganisation 577; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Broadway Theater"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/579 a base:organisation; + base:organisation\#IDOrganisation 579; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Criterion Theatre "; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/58430 a base:organisation; + base:organisation\#IDOrganisation 58430; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Meerson Troupe" . + +base:organisation\/587 a base:organisation; + base:organisation\#IDOrganisation 587; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Pedro"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/589 a base:organisation; + base:organisation\#IDOrganisation 589; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Príncipe Real"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/59070 a base:organisation; + base:organisation\#IDOrganisation 59070; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Muranover Yiddish Teater"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/591 a base:organisation; + base:organisation\#IDOrganisation 591; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro da Rua dos Condes"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/592 a base:organisation; + base:organisation\#IDOrganisation 592; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Dona Amélia"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/607 a base:organisation; + base:organisation\#IDOrganisation 607; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Dona Maria Theater" . + +base:organisation\/622 a base:organisation; + base:organisation\#IDOrganisation 622; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santa Isabel" . + +base:organisation\/62270 a base:organisation; + base:organisation\#IDOrganisation 62270; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Rumenish-yidish teater under the direction of Izak Libresko and Leon Berger" . + +base:organisation\/624 a base:organisation; + base:organisation\#IDOrganisation 624; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Luís"; + base:organisation\#ref-IDLocation base:location\/BR-SaoLuis-00 . + +base:organisation\/62400 a base:organisation; + base:organisation\#IDOrganisation 62400; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sam Adler and Kaminski Troupe" . + +base:organisation\/627 a base:organisation; + base:organisation\#IDOrganisation 627; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro da Paz"; + base:organisation\#ref-IDLocation base:location\/BR-Bel-00 . + +base:organisation\/62730 a base:organisation; + base:organisation\#IDOrganisation 62730; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Shomer Troupe" . + +base:organisation\/636 a base:organisation; + base:organisation\#IDOrganisation 636; + base:organisation\#comment ""; + base:organisation\#inst_name "La Prensa"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/66890 a base:organisation; + base:organisation\#IDOrganisation 66890; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Treitler Troupe" . + +base:organisation\/670 a base:organisation; + base:organisation\#IDOrganisation 670; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Dramática de Lisboa"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/67440 a base:organisation; + base:organisation\#IDOrganisation 67440; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Victoria Theatre" . + +base:organisation\/676 a base:organisation; + base:organisation\#IDOrganisation 676; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Sete de Setembro" . + +base:organisation\/681 a base:organisation; + base:organisation\#IDOrganisation 681; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Fenix Dramática" . + +base:organisation\/69820 a base:organisation; + base:organisation\#IDOrganisation 69820; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Shomer's troupe" . + +base:organisation\/69880 a base:organisation; + base:organisation\#IDOrganisation 69880; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Hurwitz's troupe" . + +base:organisation\/69920 a base:organisation; + base:organisation\#IDOrganisation 69920; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Kaminski's troupe" . + +base:organisation\/69984 a base:organisation; + base:organisation\#IDOrganisation 69984; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Thomashefsky" . + +base:organisation\/70068 a base:organisation; + base:organisation\#IDOrganisation 70068; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Gimpel's theatre" . + +base:organisation\/70200 a base:organisation; + base:organisation\#IDOrganisation 70200; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Adler's Grand Theatre" . + +base:organisation\/70208 a base:organisation; + base:organisation\#IDOrganisation 70208; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Elizeum Theatre" . + +base:organisation\/70284 a base:organisation; + base:organisation\#IDOrganisation 70284; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Vaudeville" . + +base:organisation\/70316 a base:organisation; + base:organisation\#IDOrganisation 70316; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Genfer's troupe" . + +base:organisation\/70576 a base:organisation; + base:organisation\#IDOrganisation 70576; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Elysium Theatre" . + +base:organisation\/71088 a base:organisation; + base:organisation\#IDOrganisation 71088; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#inst_name "Unzer vinkl" . + +base:organisation\/71104 a base:organisation; + base:organisation\#IDOrganisation 71104; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Esther Vaksman's troupe" . + +base:organisation\/713 a base:organisation; + base:organisation\#IDOrganisation 713; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "The Philharmonic Society" . + +base:organisation\/71812 a base:organisation; + base:organisation\#IDOrganisation 71812; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#inst_name "Der Yud⁩ - ⁨דער יוד⁩⁩" . + +base:organisation\/71868 a base:organisation; + base:organisation\#IDOrganisation 71868; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "גראַדנערס קאָמפּאַניע" . + +base:organisation\/71912 a base:organisation; + base:organisation\#IDOrganisation 71912; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#inst_name "Yiddish Dramatic Society - דער יידיש דראמגעזעלשאפט" . + +base:organisation\/71932 a base:organisation; + base:organisation\#IDOrganisation 71932; + base:organisation\#inst_name "Waxman-Wallerstein’s Yiddish Theatre Company" . + +base:organisation\/71960 a base:organisation; + base:organisation\#IDOrganisation 71960; + base:organisation\#inst_name "Wallerstein Operatic and Dramatic Company" . + +base:organisation\/72189 a base:organisation; + base:organisation\#IDOrganisation 72189; + base:organisation\#inst_name "Companía Podestá-Scotti" . + +base:organisation\/72444 a base:organisation; + base:organisation\#IDOrganisation 72444; + base:organisation\#inst_name "Göttinger University"; + base:organisation\#ref-IDLocation base:location\/GER-Goett-00 . + +base:organisation\/72493 a base:organisation; + base:organisation\#IDOrganisation 72493; + base:organisation\#inst_name "Breslauer Lobetheater"; + base:organisation\#ref-IDLocation base:location\/PL-Bresl-00 . + +base:organisation\/743 a base:organisation; + base:organisation\#IDOrganisation 743; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Henry Manley’s Company" . + +base:organisation\/744 a base:organisation; + base:organisation\#IDOrganisation 744; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "John Cooke’s Company" . + +base:organisation\/763 a base:organisation; + base:organisation\#IDOrganisation 763; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Lucília Simões-Erico Braga theater company" . + +base:organisation\/785 a base:organisation; + base:organisation\#IDOrganisation 785; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro de Variedades" . + +base:organisation\/80 a base:organisation; + base:organisation\#IDOrganisation 80; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Comunale di Bologna" . + +base:organisation\/824 a base:organisation; + base:organisation\#IDOrganisation 824; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Theatrical Company of João Caetano" . + +base:organisation\/92 a base:organisation; + base:organisation\#IDOrganisation 92; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Karlsruhe"; + base:organisation\#ref-IDLocation base:location\/GER-Karls-00 . + +base:organisation\/93 a base:organisation; + base:organisation\#IDOrganisation 93; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Wiesbaden"; + base:organisation\#ref-IDLocation base:location\/GER-Wiesb-00 . + +base:organisation\/950 a base:organisation; + base:organisation\#IDOrganisation 950; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Rivadavia" . + +base:organisation\/965 a base:organisation; + base:organisation\#IDOrganisation 965; + base:organisation\#comment ""; + base:organisation\#inst_name "Politeama Argentino" . + +base:organisation\/986 a base:organisation; + base:organisation\#IDOrganisation 986; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofburgtheater" . + +base:person\/AlvMar-00 a base:person; + base:person\#IDPerson "AlvMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "De Alvear "; + base:person\#first_name "Marcelo T."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndMar-00 a base:person; + base:person\#IDPerson "AndMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Anderson"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AngMar-00 a base:person; + base:person\#IDPerson "AngMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Anglin"; + base:person\#first_name "Margaret"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarLaw-00 a base:person; + base:person\#IDPerson "BarLaw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Barrett"; + base:person\#first_name "Lawrence"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BarMau-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1249758513"; + base:person\#IDPerson "BarMau-00"; + base:person\#ISNI "https://isni.org/isni/000000004736729X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2008113966"; + base:person\#VIAF "https://viaf.org/viaf/68747789"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2762175"; + base:person\#birthdate "1849-09-21"^^xsd:date; + base:person\#birthdate_max "1849-09-21"^^xsd:date; + base:person\#deathdate "1905-03-25"^^xsd:date; + base:person\#deathdate_max "1905-03-25"^^xsd:date; + base:person\#family_name "Barrymore"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barrymore_Maurice.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Maurice_Barrymore"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/IN-Amr-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-01 . + +base:person\/BatGui-00 a base:person; + base:person\#IDPerson "BatGui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bataglia"; + base:person\#first_name "Guillermo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BecLou-00 a base:person; + base:person\#IDPerson "BecLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heims Beck"; + base:person\#first_name "Louise"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BerLey-1270 a base:person; + base:person\#IDPerson "BerLey-1270"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Berkovitsh"; + base:person\#first_name "Leyzer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BooJun-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119093464"; + base:person\#IDPerson "BooJun-00"; + base:person\#ISNI "https://isni.org/isni/000000008147526X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n82201391"; + base:person\#SNAC "http://n2t.net/ark:/99166/w6736qbg"; + base:person\#Source """Dictionary of National Biography: 1885-1900/Booth, Junius Brutus, https://en.wikisource.org/wiki/Dictionary_of_National_Biography,_1885-1900/Booth,_Junius_Brutus. + +Archer, Stephen M. (2010). Junius Brutus Booth: Theatrical Prometheus. SIU Press. Geni: Junius Brutus Booth, I (1796 - 1852), https://www.geni.com/people/Junius-Booth-I/6000000003163765829."""; + base:person\#VIAF "http://viaf.org/viaf/3291148997638159870008"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q684358"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Junius_Brutus_Booth"; + base:person\#birthdate "1796-05-01"^^xsd:date; + base:person\#birthdate_max "1796-05-01"^^xsd:date; + base:person\#deathdate "1852-11-30"^^xsd:date; + base:person\#deathdate_max "1852-11-30"^^xsd:date; + base:person\#family_name "Booth"; + base:person\#first_name "Junius Brutus"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/JuniusBrutusBooth.jpeg"; + base:person\#image_source "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/JuniusBrutusBooth.jpeg/330px-JuniusBrutusBooth.jpeg"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-Louis-00 . + +base:person\/BraGui-00 a base:person; + base:person\#Death_Info "Death date uncertain"; + base:person\#IDPerson "BraGui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "MGG"; + base:person\#birthdate "1819-05-09"^^xsd:date; + base:person\#birthdate_max "1819-05-09"^^xsd:date; + base:person\#deathdate "1903-04-01"^^xsd:date; + base:person\#deathdate_max "1903-04-01"^^xsd:date; + base:person\#family_name "Brambilla"; + base:person\#first_name "Guiseppina"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-Cassa-00; + base:person\#ref-IDDeathPlace base:location\/IT-Mila-00 . + +base:person\/CasRob-00 a base:person; + base:person\#IDPerson "CasRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Casaux"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DiLTI-00 a base:person; + base:person\#IDPerson "DiLTI-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "di Lorenzo"; + base:person\#first_name "Tina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForJ-00 a base:person; + base:person\#IDPerson "ForJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forbes-Robertson"; + base:person\#first_name "J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FroCha-00 a base:person; + base:person\#IDPerson "FroCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frohman"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FrySus-00 a base:person; + base:person\#IDPerson "FrySus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Fry"; + base:person\#first_name "Susannah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GalJos-00 a base:person; + base:person\#IDPerson "GalJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "West Galton"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GilWil-00 a base:person; + base:person\#IDPerson "GilWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Gillette"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GolNaf-00 a base:person; + base:person\#Birth_Info "893 Starokosti?a?ntyniv (Ukraine)"; + base:person\#IDPerson "GolNaf-00"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldfaden-abraham.htm"""; + base:person\#birthdate "1840-07-12"^^xsd:date; + base:person\#birthdate_max "1840-07-12"^^xsd:date; + base:person\#comment "Buried in Washington Cemetery, New York"; + base:person\#family_name "Goldfaden"; + base:person\#first_name "Naftali"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/RU-STARO-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/GueMar-00 a base:person; + base:person\#IDPerson "GueMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Guerrero"; + base:person\#first_name "María"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HaaFri-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00590610"; + base:person\#GND "https://d-nb.info/gnd/116348461"; + base:person\#IDPerson "HaaFri-00"; + base:person\#ISNI "https://isni.org/isni/0000000010488637"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6vb2h00"; + base:person\#VIAF "https://viaf.org/viaf/67214769"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q90251"; + base:person\#birthdate "1825-01-01"^^xsd:date; + base:person\#birthdate_max "1825-01-01"^^xsd:date; + base:person\#deathdate "1911-03-17"^^xsd:date; + base:person\#deathdate_max "1911-03-17"^^xsd:date; + base:person\#family_name "Haase"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor,Theatre Director"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/HeiHei-00 a base:person; + base:person\#IDPerson "HeiHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Heine"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HerVic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11877400X"; + base:person\#IDPerson "HerVic-00"; + base:person\#ISNI "https://isni.org/isni/0000000083575897"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79105792"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6xs64c0"; + base:person\#VIAF "https://viaf.org/viaf/12491557"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1275145"; + base:person\#birthdate "1859-02-01"^^xsd:date; + base:person\#birthdate_max "1859-02-01"^^xsd:date; + base:person\#deathdate "1924-05-26"^^xsd:date; + base:person\#deathdate_max "1924-05-26"^^xsd:date; + base:person\#family_name "Herbert"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Composer, Cellist,Conductor"; + base:person\#ref-IDBirthPlace base:location\/IE-Dubl-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/JefJos-00 a base:person; + base:person\#IDPerson "JefJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jefferson"; + base:person\#first_name "Joseph Jefferson"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JewHen-00 a base:person; + base:person\#IDPerson "JewHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Jewett"; + base:person\#first_name "Henry Jewett"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/JohRic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117163546"; + base:person\#IDPerson "JohRic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/27841441/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18027365"; + base:person\#birthdate "1845-03-07"^^xsd:date; + base:person\#birthdate_max "1845-03-07"^^xsd:date; + base:person\#deathdate "1928-03-13"^^xsd:date; + base:person\#deathdate_max "1928-03-13"^^xsd:date; + base:person\#family_name "John"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Theater director, actor"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/KarBer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11613321X"; + base:person\#IDPerson "KarBer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr95045398"; + base:person\#VIAF "https://viaf.org/viaf/17966100"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220857"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Carl_Bergmann_(musician)"; + base:person\#birthdate "1821-04-12"^^xsd:date; + base:person\#birthdate_max "1821-04-12"^^xsd:date; + base:person\#deathdate "1876-08-16"^^xsd:date; + base:person\#deathdate_max "1876-08-16"^^xsd:date; + base:person\#family_name "Bergmann"; + base:person\#first_name "Karl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carl_Bergmann.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2076574#/media/File:Carl_Bergmann.jpg"; + base:person\#profession "Cellist,Conductor"; + base:person\#ref-IDBirthPlace base:location\/GER-Eber-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/KhaKha-2107 a base:person; + base:person\#IDPerson "KhaKha-2107"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Khalan"; + base:person\#first_name "Khalanov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LipKen-762 a base:person; + base:person\#IDPerson "LipKen-762"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Lipzin"; + base:person\#first_name "Keni"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/LuaZez-00 a base:person; + base:person\#IDPerson "LuaZez-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "do Patrocínio Oliveira (Bando da Lua)"; + base:person\#first_name "José"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MelNel-00 a base:person; + base:person\#IDPerson "MelNel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Melba"; + base:person\#first_name "Nellie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MitBar-00 a base:person; + base:person\#IDPerson "MitBar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mitre "; + base:person\#first_name "Bartolomé"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ModGus-00 a base:person; + base:person\#IDPerson "ModGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Modrzejewski"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MuiEnr-00 a base:person; + base:person\#IDPerson "MuiEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Muiño"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ParFlo-00 a base:person; + base:person\#IDPerson "ParFlo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Parravicini"; + base:person\#first_name "Florencio Parravicini"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PauJoh-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1025594568"; + base:person\#IDPerson "PauJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/252231639/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4347222"; + base:person\#birthdate "1844-01-10"^^xsd:date; + base:person\#birthdate_max "1844-01-10"^^xsd:date; + base:person\#deathdate "1896-05-23"^^xsd:date; + base:person\#deathdate_max "1896-05-23"^^xsd:date; + base:person\#family_name "Paumgartner"; + base:person\#first_name "Johann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Composer, music writer"; + base:person\#ref-IDBirthPlace base:location\/AT-Mich-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/PenRoq-00 a base:person; + base:person\#IDPerson "PenRoq-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Peña"; + base:person\#first_name "Roque Saenz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "President" . + +base:person\/QueMar-00 a base:person; + base:person\#IDPerson "QueMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quesada"; + base:person\#first_name "Maruja Gil Quesada"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ResLui-00 a base:person; + base:person\#IDPerson "ResLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Ress"; + base:person\#first_name "Luise"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RicOrf-00 a base:person; + base:person\#IDPerson "RicOrf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rico"; + base:person\#first_name "Orfilia"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RocJul-00 a base:person; + base:person\#IDPerson "RocJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Roca "; + base:person\#first_name "Julio Argentino"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/RocMig-00 a base:person; + base:person\#IDPerson "RocMig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Rocha"; + base:person\#first_name "Miguel Faust Rocha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SalLor-00 a base:person; + base:person\#IDPerson "SalLor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Salvi"; + base:person\#first_name "Lorenzo Salvi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SerEnr-00 a base:person; + base:person\#IDPerson "SerEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Serrano"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SilJac-2974 a base:person; + base:person\#IDPerson "SilJac-2974"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Silbert"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/SpiJac-768 a base:person; + base:person\#IDPerson "SpiJac-768"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source "Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"; + base:person\#family_name "Spivakovsky"; + base:person\#first_name "Jacob"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/StoJul-00 a base:person; + base:person\#IDPerson "StoJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Stockhausen"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TagFil-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01346917"; + base:person\#GND "https://d-nb.info/gnd/117197343"; + base:person\#IDPerson "TagFil-00"; + base:person\#ISNI "https://isni.org/isni/0000000119485966"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83015672"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6r21v4v#resources"; + base:person\#VIAF "https://viaf.org/viaf/37022097"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q704671"; + base:person\#birthdate "1777-11-05"^^xsd:date; + base:person\#birthdate_max "1777-11-05"^^xsd:date; + base:person\#deathdate "1871-01-11"^^xsd:date; + base:person\#deathdate_max "1871-01-11"^^xsd:date; + base:person\#family_name "Taglioni"; + base:person\#first_name "Filippo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "choreographer, ballet master, dancer"; + base:person\#ref-IDBirthPlace base:location\/IT-Como-00; + base:person\#ref-IDDeathPlace base:location\/IT-Mila-00 . + +base:person\/TsvLou-814 a base:person; + base:person\#IDPerson "TsvLou-814"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VaySop-3159 a base:person; + base:person\#IDPerson "VaySop-3159"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaynshtok-sophia.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.692."""; + base:person\#birthdate "1866-01-01"^^xsd:date; + base:person\#birthdate_max "1866-12-31"^^xsd:date; + base:person\#family_name "Vaynshtok"; + base:person\#first_name "Sophia"; + base:person\#fuzzybirthdate "1866"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Lat-DiJeSt-140; + base:person\#religion "Jewish" . + +base:person\/VehLui-00 a base:person; + base:person\#IDPerson "VehLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vehil"; + base:person\#first_name "Luisa Vehil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VelEnr-00 a base:person; + base:person\#IDPerson "VelEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "García Velloso"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/WhiLeo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1062232747"; + base:person\#IDPerson "WhiLeo-00"; + base:person\#ISNI "https://isni.org/isni/0000000117672397"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87914420"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bm4cwv#resources"; + base:person\#VIAF "https://viaf.org/viaf/64206061"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1383202"; + base:person\#birthdate "1882-11-10"^^xsd:date; + base:person\#birthdate_max "1882-11-10"^^xsd:date; + base:person\#deathdate "1948-09-20"^^xsd:date; + base:person\#deathdate_max "1948-09-20"^^xsd:date; + base:person\#family_name "White"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leo_White_01.JPG"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1383202#/media/File:Leo_White_01.JPG"; + base:person\#profession "film,stage actor"; + base:person\#ref-IDBirthPlace base:location\/PL-Grudz-00; + base:person\#ref-IDDeathPlace base:location\/USA-CA-05 . + +base:person\/WinWil-00 a base:person; + base:person\#IDPerson "WinWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Winter"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:City-Springfield a base:City; + rdfs:label "Springfield"@en . + +base:Continent-EastAsia a base:Continent; + rdfs:label "East Asia"@en . + +base:Country-Japan a base:Country; + rdfs:label "Japan"@en . + +base:Country-Norway a base:Country; + rdfs:label "Norway"@en . + +base:Country-SriLanka a base:Country; + rdfs:label "Sri Lanka"@en . + +base:Country-Turkey a base:Country; + rdfs:label "Turkey"@en . + +base:Profession-Translator a base:Profession; + rdfs:label "Translator"@en . + +base:RelationshipTypePrecise-Grandmother a base:RelationshipTypePrecise; + rdfs:label "Grandmother"@en . + +base:State-Hawaii a base:State; + rdfs:label "Hawaii"@en . + +base:State-London a base:State; + rdfs:label "London"@en . + +base:State-Mississippi a base:State; + rdfs:label "Mississippi"@en . + +base:State-Queensland a base:State; + rdfs:label "Queensland"@en . + +base:State-Tennessee a base:State; + rdfs:label "Tennessee"@en . + +base:State-Utah a base:State; + rdfs:label "Utah"@en . + +base:State-Vermont a base:State; + rdfs:label "Vermont"@en . + +base:location\/ARG-Cord-00 a base:location; + base:location\#City base:City-C\%C3\%B3rdoba; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3860259"; + base:location\#IDLocation "ARG-Cord-00"; + base:location\#latitude -3.14167e1; + base:location\#longitude -6.41833e1; + base:location\#wikidata "Q44210"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/C%C3%B3rdoba,_Argentina" . + +base:location\/AUS-Vict-00 a base:location; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2145234"; + base:location\#IDLocation "AUS-Vict-00"; + base:location\#State base:State-Victoria; + base:location\#latitude -3.7e1; + base:location\#longitude 1.44e2; + base:location\#wikidata "Q36687"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Victoria_(state)" . + +base:location\/Bel-DiJeSt-2 a base:location; + base:location\#City base:City-Vitebsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-2"; + base:location\#latitude 5.51833e1; + base:location\#longitude 3.01667e1; + base:location\#wikidata "Q102217"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/CA-Daws-00 a base:location; + base:location\#City base:City-Dawson; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6943713"; + base:location\#IDLocation "CA-Daws-00"; + base:location\#latitude 6.40506e1; + base:location\#longitude -1.39418e2; + base:location\#wikidata "Q372324"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dawson_City" . + +base:location\/CH-GEN-00 a base:location; + base:location\#City base:City-Geneva; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2660646"; + base:location\#IDLocation "CH-GEN-00"; + base:location\#latitude 4.62e1; + base:location\#longitude 6.15e0; + base:location\#wikidata "Q71"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Geneva" . + +base:location\/CL-Santiago-00 a base:location; + base:location\#City base:City-SantiagodeChile; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Chile; + base:location\#GeoNamesID "3871336"; + base:location\#IDLocation "CL-Santiago-00"; + base:location\#latitude -3.345e1; + base:location\#longitude -7.066670000000001e1; + base:location\#wikidata "Q2887"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Santiago" . + +base:location\/CSTR-SanJos-00 a base:location; + base:location\#City base:City-SanJos\%C3\%A9; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-CostaRica; + base:location\#GeoNamesID "3621849"; + base:location\#IDLocation "CSTR-SanJos-00"; + base:location\#latitude 9.924720000000001e0; + base:location\#longitude -8.407810000000001e1; + base:location\#wikidata "Q3070"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Jos%C3%A9,_Costa_Rica" . + +base:location\/CZ-Karlsb-00 a base:location; + base:location\#City base:City-KarlovyVary; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3073803"; + base:location\#IDLocation "CZ-Karlsb-00"; + base:location\#latitude 5.02306e1; + base:location\#longitude 1.28725e1; + base:location\#wikidata "Q384544"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Karlovy_Vary" . + +base:location\/CZ-Pils-00 a base:location; + base:location\#City base:City-Pilsen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3068160"; + base:location\#IDLocation "CZ-Pils-00"; + base:location\#latitude 4.97475e1; + base:location\#longitude 1.33775e1; + base:location\#wikidata "Q43453"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Plze%C5%88" . + +base:location\/DK-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Denmark; + base:location\#GeoNamesID "2623032"; + base:location\#IDLocation "DK-00"; + base:location\#latitude 5.6e1; + base:location\#longitude 1.0e1; + base:location\#wikidata "Q35"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Denmark" . + +base:location\/EN-Bath-00 a base:location; + base:location\#City base:City-Bath; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-Bath-00"; + base:location\#State base:State-Somerset; + base:location\#latitude 5.13814e1; + base:location\#longitude -2.35972e0; + base:location\#wikidata "Q22889"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bath,_Somerset" . + +base:location\/ES-Cast-00 a base:location; + base:location\#City base:City-Castilla; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Cast-00"; + base:location\#latitude 4.2e1; + base:location\#longitude 0.0e0; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Castile_(historical_region)" . + +base:location\/ES-Malaga-00 a base:location; + base:location\#City base:City-M\%C3\%A1laga; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2514256"; + base:location\#IDLocation "ES-Malaga-00"; + base:location\#latitude 3.672e1; + base:location\#longitude -4.42e0; + base:location\#wikidata "Q8851"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/M%C3%A1laga" . + +base:location\/FR-Paris-01 a base:location; + base:location\#City base:City-Boulogne-Billancourt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3031137"; + base:location\#IDLocation "FR-Paris-01"; + base:location\#latitude 4.88352e1; + base:location\#longitude 2.2409e0; + base:location\#wikidata "Q172455"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Boulogne-Billancourt" . + +base:location\/GER-NeuStrel-00 a base:location; + base:location\#City base:City-Neustrelitz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2864005"; + base:location\#IDLocation "GER-NeuStrel-00"; + base:location\#State base:State-Mecklenburg-Vorpommern; + base:location\#latitude 5.33647e1; + base:location\#longitude 1.30636e1; + base:location\#wikidata "Q20352"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Neustrelitz" . + +base:location\/GER-Potsd-00 a base:location; + base:location\#City base:City-Potsdam; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2852458"; + base:location\#IDLocation "GER-Potsd-00"; + base:location\#latitude 5.24e1; + base:location\#longitude 1.30667e1; + base:location\#wikidata "Q1711"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Potsdam" . + +base:location\/HU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "719819"; + base:location\#IDLocation "HU-00"; + base:location\#latitude 4.7e1; + base:location\#longitude 1.9e1; + base:location\#wikidata "Q28"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hungary" . + +base:location\/HU-Oedb-00 a base:location; + base:location\#City base:City-Sopron; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3045190"; + base:location\#IDLocation "HU-Oedb-00"; + base:location\#latitude 4.76849e1; + base:location\#longitude 1.6583e1; + base:location\#wikidata "Q168648"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sopron" . + +base:location\/HU-Ofen-00 a base:location; + base:location\#City base:City-Buda\%28Budapest\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3054667"; + base:location\#IDLocation "HU-Ofen-00"; + base:location\#latitude 4.74956e1; + base:location\#longitude 1.90397e1; + base:location\#wikidata "Q193478"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Buda" . + +base:location\/IE-Ldnder-00 a base:location; + base:location\#City base:City-Londonderry; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-NorthernIreland\%28UK\%29; + base:location\#GeoNamesID "2643734"; + base:location\#IDLocation "IE-Ldnder-00"; + base:location\#latitude 5.49975e1; + base:location\#longitude -7.32e0; + base:location\#wikidata "Q163584"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Derry" . + +base:location\/IN-Chenn-00 a base:location; + base:location\#City base:City-Chennai; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#GeoNamesID "1264527"; + base:location\#IDLocation "IN-Chenn-00"; + base:location\#latitude 1.30833e1; + base:location\#longitude 8.02833e1; + base:location\#wikidata "Q1352"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Chennai" . + +base:location\/IT-Flor-00 a base:location; + base:location\#City base:City-Florence; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3176959"; + base:location\#IDLocation "IT-Flor-00"; + base:location\#latitude 4.37714e1; + base:location\#longitude 1.12542e1; + base:location\#wikidata "Q2044"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Florence" . + +base:location\/IT-Genoa-00 a base:location; + base:location\#City base:City-Genoa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3176219"; + base:location\#IDLocation "IT-Genoa-00"; + base:location\#latitude 4.44167e1; + base:location\#longitude 8.93333e0; + base:location\#wikidata "Q1449"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Genoa" . + +base:location\/IT-Vero-00 a base:location; + base:location\#City base:City-Verona; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3164527"; + base:location\#IDLocation "IT-Vero-00"; + base:location\#latitude 4.54386e1; + base:location\#longitude 1.09928e1; + base:location\#wikidata "Q2028"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Verona" . + +base:location\/LT-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Lithuania; + base:location\#IDLocation "LT-00"; + base:location\#latitude 5.5e1; + base:location\#longitude 2.4e1; + base:location\#wikidata "Q37" . + +base:location\/NOR-Nores-00 a base:location; + base:location\#City base:City-Noresund; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Norway; + base:location\#IDLocation "NOR-Nores-00"; + base:location\#latitude 6.01667e1; + base:location\#longitude 9.616669999999999e0; + base:location\#wikidata "Q3044576"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Noresund" . + +base:location\/NorthAmerica a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-NorthAmerica; + base:location\#GeoNamesID "6255149"; + base:location\#IDLocation "NorthAmerica"; + base:location\#latitude 4.81667e1; + base:location\#longitude 1.00167e2; + base:location\#wikidata "Q49"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/North_America" . + +base:location\/TR-Const-00 a base:location; + base:location\#City base:City-Constantinople; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Turkey; + base:location\#IDLocation "TR-Const-00"; + base:location\#latitude 4.10092e1; + base:location\#longitude 2.89758e1; + base:location\#wikidata "Q16869" . + +base:location\/UA-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-00"; + base:location\#latitude 4.98e1; + base:location\#longitude 3.08333e1; + base:location\#wikidata "Q212" . + +base:location\/UA-Czern-00 a base:location; + base:location\#City base:City-Czernowitz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Czern-00"; + base:location\#latitude 4.83e1; + base:location\#longitude 2.593e1; + base:location\#wikidata "Q157725" . + +base:location\/UA-Krem-00 a base:location; + base:location\#City base:City-Kremenchuk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "UA-Krem-00"; + base:location\#latitude 4.90631e1; + base:location\#longitude 3.34039e1; + base:location\#wikidata "Q156724"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kremenchuk" . + +base:location\/USA-Akr-00 a base:location; + base:location\#City base:City-Akron; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Akr-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.10814e1; + base:location\#longitude -8.15189e1; + base:location\#wikidata "Q163132" . + +base:location\/USA-Bing-00 a base:location; + base:location\#City base:City-Binghamton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Bing-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.21022e1; + base:location\#longitude -7.59117e1; + base:location\#wikidata "Q213814" . + +base:location\/USA-CMiddl-00 a base:location; + base:location\#City base:City-Middletown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CMiddl-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.15622e1; + base:location\#longitude -7.26511e1; + base:location\#wikidata "Q49192" . + +base:location\/USA-CSanB-00 a base:location; + base:location\#City base:City-SanBernardino; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CSanB-00"; + base:location\#State base:State-California; + base:location\#latitude 3.41294e1; + base:location\#longitude -1.17293e2; + base:location\#wikidata "Q486168" . + +base:location\/USA-Dubuq-00 a base:location; + base:location\#City base:City-Dubuque; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Dubuq-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.25044e1; + base:location\#longitude -9.068689999999999e1; + base:location\#wikidata "Q493794" . + +base:location\/USA-Jersey-00 a base:location; + base:location\#City base:City-JerseyCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5099836"; + base:location\#IDLocation "USA-Jersey-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.07219e1; + base:location\#longitude -7.406529999999999e1; + base:location\#wikidata "Q26339"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jersey_City,_New_Jersey" . + +base:location\/USA-Leadv-00 a base:location; + base:location\#City base:City-Leadville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Leadv-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.92506e1; + base:location\#longitude -1.06291e2; + base:location\#wikidata "Q286702" . + +base:location\/USA-LtlRo-00 a base:location; + base:location\#City base:City-LittleRock; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4119403"; + base:location\#IDLocation "USA-LtlRo-00"; + base:location\#State base:State-Arkansas; + base:location\#latitude 3.47464e1; + base:location\#longitude -9.22881e1; + base:location\#wikidata "Q33405"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Little_Rock,_Arkansas" . + +base:location\/USA-Montg-00 a base:location; + base:location\#City base:City-Montgomery; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Montg-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.23675e1; + base:location\#longitude -8.63e1; + base:location\#wikidata "Q29364"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montgomery,_Alabama" . + +base:location\/USA-Osw-00 a base:location; + base:location\#City base:City-Oswego; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Osw-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.34586e1; + base:location\#longitude -7.650360000000001e1; + base:location\#wikidata "Q1017583" . + +base:location\/USA-Pough-00 a base:location; + base:location\#City base:City-Poughkeepsie; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Pough-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.16949e1; + base:location\#longitude -7.39211e1; + base:location\#wikidata "Q178093" . + +base:location\/USA-Rac-00 a base:location; + base:location\#City base:City-Racine; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Rac-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.27261e1; + base:location\#longitude -8.78058e1; + base:location\#wikidata "Q40340" . + +base:location\/USA-Richm-01 a base:location; + base:location\#City base:City-Richmond; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4263681"; + base:location\#IDLocation "USA-Richm-01"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.98316e1; + base:location\#longitude -8.48738e1; + base:location\#wikidata "Q548664"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Richmond,_Indiana" . + +base:location\/USA-Rockf-00 a base:location; + base:location\#City base:City-Rockford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Rockf-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.22694e1; + base:location\#longitude -8.90694e1; + base:location\#wikidata "Q233892" . + +base:location\/USA-Spok-00 a base:location; + base:location\#City base:City-Spokane; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Spok-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.76589e1; + base:location\#longitude -1.17425e2; + base:location\#wikidata "Q187805" . + +base:location\/USA-SpringO-00 a base:location; + base:location\#City base:City-Springfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SpringO-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.992e1; + base:location\#longitude -8.377079999999999e1; + base:location\#wikidata "Q40325"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Springfield,_Ohio" . + +base:location\/USA-StBarb-04 a base:location; + base:location\#City base:City-SantaBarbara; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5392952"; + base:location\#IDLocation "USA-StBarb-04"; + base:location\#State base:State-California; + base:location\#latitude 3.44167e1; + base:location\#longitude -1.197e2; + base:location\#wikidata "Q159288"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Santa_Barbara,_California" . + +base:location\/USA-Trent-00 a base:location; + base:location\#City base:City-Trenton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Trent-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.02117e1; + base:location\#longitude -7.47467e1; + base:location\#wikidata "Q25330" . + +base:location\/USA-Wilm-00 a base:location; + base:location\#City base:City-Wilmington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4499379"; + base:location\#IDLocation "USA-Wilm-00"; + base:location\#State base:State-NorthCarolina; + base:location\#latitude 3.42231e1; + base:location\#longitude -7.79119e1; + base:location\#wikidata "Q659400"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wilmington,_North_Carolina" . + +base:location\/USA-Wilm-01 a base:location; + base:location\#City base:City-Wilmington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4145381"; + base:location\#IDLocation "USA-Wilm-01"; + base:location\#State base:State-Delaware; + base:location\#latitude 3.97458e1; + base:location\#longitude -7.55466e1; + base:location\#wikidata "Q174224"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wilmington,_Delaware" . + +base:location\/USA-Zanes-00 a base:location; + base:location\#City base:City-Zanesville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Zanes-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.99461e1; + base:location\#longitude -8.201220000000001e1; + base:location\#wikidata "Q146811" . + +base:location\/Ukr-DiJeSt-96 a base:location; + base:location\#City base:City-Ulaniv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-96"; + base:location\#latitude 4.96958e1; + base:location\#longitude 2.81358e1; + base:location\#wikidata "Q335665"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/1071 a base:organisation; + base:organisation\#IDOrganisation 1071; + base:organisation\#comment ""; + base:organisation\#inst_name "Niblos Garden" . + +base:organisation\/1095 a base:organisation; + base:organisation\#IDOrganisation 1095; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "California theatre" . + +base:organisation\/1110 a base:organisation; + base:organisation\#IDOrganisation 1110; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera House" . + +base:organisation\/120 a base:organisation; + base:organisation\#IDOrganisation 120; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Weimar"; + base:organisation\#ref-IDLocation base:location\/GER-Weim-00 . + +base:organisation\/1275 a base:organisation; + base:organisation\#IDOrganisation 1275; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Square Theatre" . + +base:organisation\/1305 a base:organisation; + base:organisation\#IDOrganisation 1305; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Madison Square Theatre" . + +base:organisation\/131 a base:organisation; + base:organisation\#IDOrganisation 131; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Academy of Music, Montreal"; + base:organisation\#ref-IDLocation base:location\/CA-Montr-00 . + +base:organisation\/1375 a base:organisation; + base:organisation\#IDOrganisation 1375; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Princess Theatre" . + +base:organisation\/1380 a base:organisation; + base:organisation\#IDOrganisation 1380; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Empire Theatre" . + +base:organisation\/154 a base:organisation; + base:organisation\#IDOrganisation 154; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Augustin Daly’s troupe" . + +base:organisation\/168 a base:organisation; + base:organisation\#IDOrganisation 168; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Nationaltheater"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/2096 a base:organisation; + base:organisation\#IDOrganisation 2096; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Boston Globe Theatre" . + +base:organisation\/2181 a base:organisation; + base:organisation\#IDOrganisation 2181; + base:organisation\#comment ""; + base:organisation\#inst_name "Tour" . + +base:organisation\/220 a base:organisation; + base:organisation\#IDOrganisation 220; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Mainz" . + +base:organisation\/2211 a base:organisation; + base:organisation\#IDOrganisation 2211; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Solis" . + +base:organisation\/2380 a base:organisation; + base:organisation\#IDOrganisation 2380; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Colonel Miles’s company & McWade Company" . + +base:organisation\/2525 a base:organisation; + base:organisation\#IDOrganisation 2525; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nacional de la Comedia" . + +base:organisation\/2945 a base:organisation; + base:organisation\#IDOrganisation 2945; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nuevo" . + +base:organisation\/298 a base:organisation; + base:organisation\#IDOrganisation 298; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Basel" . + +base:organisation\/3015 a base:organisation; + base:organisation\#IDOrganisation 3015; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Her own company" . + +base:organisation\/3020 a base:organisation; + base:organisation\#IDOrganisation 3020; + base:organisation\#comment ""; + base:organisation\#inst_name "Arellano-Tesada/ Ángela Tesada-Enrique Arellano" . + +base:organisation\/3175 a base:organisation; + base:organisation\#IDOrganisation 3175; + base:organisation\#comment ""; + base:organisation\#inst_name "Caras y Caretas" . + +base:organisation\/3305 a base:organisation; + base:organisation\#IDOrganisation 3305; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro La Alegría" . + +base:organisation\/400 a base:organisation; + base:organisation\#IDOrganisation 400; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater des Westens"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/402 a base:organisation; + base:organisation\#IDOrganisation 402; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Künstlertheater Berlin" . + +base:organisation\/4141 a base:organisation; + base:organisation\#IDOrganisation 4141; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Variedades" . + +base:organisation\/4291 a base:organisation; + base:organisation\#IDOrganisation 4291; + base:organisation\#comment ""; + base:organisation\#inst_name "Revista Musical (Musical Magazine)" . + +base:organisation\/4306 a base:organisation; + base:organisation\#IDOrganisation 4306; + base:organisation\#comment ""; + base:organisation\#inst_name "Instituto Nacional de Música" . + +base:organisation\/434 a base:organisation; + base:organisation\#IDOrganisation 434; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bayerische Hofoper"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/4525 a base:organisation; + base:organisation\#IDOrganisation 4525; + base:organisation\#comment ""; + base:organisation\#inst_name "Aeolian Hall" . + +base:organisation\/455 a base:organisation; + base:organisation\#IDOrganisation 455; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Raimundtheater Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/4652 a base:organisation; + base:organisation\#IDOrganisation 4652; + base:organisation\#comment ""; + base:organisation\#inst_name "Cracow Theatre" . + +base:organisation\/4692 a base:organisation; + base:organisation\#IDOrganisation 4692; + base:organisation\#comment ""; + base:organisation\#inst_name "Rochester Grand Opera House" . + +base:organisation\/4732 a base:organisation; + base:organisation\#IDOrganisation 4732; + base:organisation\#comment ""; + base:organisation\#inst_name "Hibbard's Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Jacks-00 . + +base:organisation\/4780 a base:organisation; + base:organisation\#IDOrganisation 4780; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía “Roberto Casaux”" . + +base:organisation\/48990 a base:organisation; + base:organisation\#IDOrganisation 48990; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Abraham Axelrad Troupe" . + +base:organisation\/49080 a base:organisation; + base:organisation\#IDOrganisation 49080; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Academy of Music" . + +base:organisation\/491 a base:organisation; + base:organisation\#IDOrganisation 491; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Neues Deutsches Theater Prag"; + base:organisation\#ref-IDLocation base:location\/CZ-Prag-00 . + +base:organisation\/4920 a base:organisation; + base:organisation\#IDOrganisation 4920; + base:organisation\#inst_name "Fulton Opera House" . + +base:organisation\/49470 a base:organisation; + base:organisation\#IDOrganisation 49470; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Am Olam" . + +base:organisation\/4948 a base:organisation; + base:organisation\#IDOrganisation 4948; + base:organisation\#inst_name "Pittsburgh Grand Opera House" . + +base:organisation\/4956 a base:organisation; + base:organisation\#IDOrganisation 4956; + base:organisation\#inst_name "Richmond Theatre" . + +base:organisation\/49940 a base:organisation; + base:organisation\#IDOrganisation 49940; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bagatela Theatre" . + +base:organisation\/503 a base:organisation; + base:organisation\#IDOrganisation 503; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Literarishe Trupe (Kaminski)" . + +base:organisation\/5044 a base:organisation; + base:organisation\#IDOrganisation 5044; + base:organisation\#inst_name "Tabor Grand Opera House in Denver" . + +base:organisation\/5104 a base:organisation; + base:organisation\#IDOrganisation 5104; + base:organisation\#inst_name "Opera House in Rockford" . + +base:organisation\/5112 a base:organisation; + base:organisation\#IDOrganisation 5112; + base:organisation\#inst_name "St. Paul Grand Opera House" . + +base:organisation\/51430 a base:organisation; + base:organisation\#IDOrganisation 51430; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Colisseum Theatre" . + +base:organisation\/5148 a base:organisation; + base:organisation\#IDOrganisation 5148; + base:organisation\#inst_name "Nettlefold Studios" . + +base:organisation\/5192 a base:organisation; + base:organisation\#IDOrganisation 5192; + base:organisation\#inst_name "Grand Opera House (St. Louis)" . + +base:organisation\/5232 a base:organisation; + base:organisation\#IDOrganisation 5232; + base:organisation\#inst_name "Montgomery Theatre" . + +base:organisation\/52830 a base:organisation; + base:organisation\#IDOrganisation 52830; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic Club" . + +base:organisation\/529 a base:organisation; + base:organisation\#IDOrganisation 529; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro San Carlo"; + base:organisation\#ref-IDLocation base:location\/IT-Nap-00 . + +base:organisation\/5328 a base:organisation; + base:organisation\#IDOrganisation 5328; + base:organisation\#inst_name "Albaugh´s Opera House (Washington)" . + +base:organisation\/5332 a base:organisation; + base:organisation\#IDOrganisation 5332; + base:organisation\#inst_name "Worcester Theatre" . + +base:organisation\/5349 a base:organisation; + base:organisation\#IDOrganisation 5349; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Academy of Music, Norfolk"; + base:organisation\#ref-IDLocation base:location\/USA-Norf-00 . + +base:organisation\/5377 a base:organisation; + base:organisation\#IDOrganisation 5377; + base:organisation\#inst_name "Barton´s Opera House" . + +base:organisation\/543 a base:organisation; + base:organisation\#IDOrganisation 543; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Schauspielhaus Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/5457 a base:organisation; + base:organisation\#IDOrganisation 5457; + base:organisation\#inst_name "Funke´s Opera House, Lincoln" . + +base:organisation\/5465 a base:organisation; + base:organisation\#IDOrganisation 5465; + base:organisation\#inst_name "Grand Opera House, Colorado Springs" . + +base:organisation\/54760 a base:organisation; + base:organisation\#IDOrganisation 54760; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Habima" . + +base:organisation\/54970 a base:organisation; + base:organisation\#IDOrganisation 54970; + base:organisation\#InstType base:InstitutionType-PrintedMedia; + base:organisation\#comment ""; + base:organisation\#inst_name "Hazman" . + +base:organisation\/5569 a base:organisation; + base:organisation\#IDOrganisation 5569; + base:organisation\#inst_name "Middlesex Theatre, Middletown" . + +base:organisation\/573 a base:organisation; + base:organisation\#IDOrganisation 573; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Comedy Theatre " . + +base:organisation\/5760 a base:organisation; + base:organisation\#IDOrganisation 5760; + base:organisation\#inst_name "Fuller Opera House in Madison" . + +base:organisation\/585 a base:organisation; + base:organisation\#IDOrganisation 585; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Baquet"; + base:organisation\#ref-IDLocation base:location\/PT-Porto-00 . + +base:organisation\/586 a base:organisation; + base:organisation\#IDOrganisation 586; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Luiz"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/588 a base:organisation; + base:organisation\#IDOrganisation 588; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lucinda"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/59130 a base:organisation; + base:organisation\#IDOrganisation 59130; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Naftali Goldfaden Troupe" . + +base:organisation\/60430 a base:organisation; + base:organisation\#IDOrganisation 60430; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oriental Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/62420 a base:organisation; + base:organisation\#IDOrganisation 62420; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Sam Adler Troupe" . + +base:organisation\/657 a base:organisation; + base:organisation\#IDOrganisation 657; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Éden Teatro" . + +base:organisation\/67250 a base:organisation; + base:organisation\#IDOrganisation 67250; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Vaksman Troupe" . + +base:organisation\/674 a base:organisation; + base:organisation\#IDOrganisation 674; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyric-Drama company Cabral" . + +base:organisation\/68060 a base:organisation; + base:organisation\#IDOrganisation 68060; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish artists union" . + +base:organisation\/688 a base:organisation; + base:organisation\#IDOrganisation 688; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Manuela Lucci company" . + +base:organisation\/69660 a base:organisation; + base:organisation\#IDOrganisation 69660; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "United Dramatic Troupe" . + +base:organisation\/70020 a base:organisation; + base:organisation\#IDOrganisation 70020; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Gimpel's troupe" . + +base:organisation\/70092 a base:organisation; + base:organisation\#IDOrganisation 70092; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Public Theatre" . + +base:organisation\/70124 a base:organisation; + base:organisation\#IDOrganisation 70124; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Sam Adler's Troupe" . + +base:organisation\/71971 a base:organisation; + base:organisation\#IDOrganisation 71971; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Academy of Music, Buffalo"; + base:organisation\#ref-IDLocation base:location\/USA-Buff-00 . + +base:organisation\/72075 a base:organisation; + base:organisation\#IDOrganisation 72075; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Tacoma Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Tac-00 . + +base:organisation\/72319 a base:organisation; + base:organisation\#IDOrganisation 72319; + base:organisation\#inst_name "Teatro Íntimo de la Peña" . + +base:organisation\/72344 a base:organisation; + base:organisation\#IDOrganisation 72344; + base:organisation\#inst_name "Sociedad Argentina de Escritores" . + +base:organisation\/72454 a base:organisation; + base:organisation\#IDOrganisation 72454; + base:organisation\#inst_name """Deutschen Künstlertheaters +""" . + +base:organisation\/72469 a base:organisation; + base:organisation\#IDOrganisation 72469; + base:organisation\#inst_name "Buchverlag „Die Schmiede”" . + +base:organisation\/726 a base:organisation; + base:organisation\#IDOrganisation 726; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Apollo" . + +base:organisation\/746 a base:organisation; + base:organisation\#IDOrganisation 746; + base:organisation\#InstType base:InstitutionType-Circus; + base:organisation\#comment ""; + base:organisation\#inst_name "Brothers Carlo Circus" . + +base:organisation\/756 a base:organisation; + base:organisation\#IDOrganisation 756; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Coliseo Argentino" . + +base:organisation\/761 a base:organisation; + base:organisation\#IDOrganisation 761; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santana" . + +base:organisation\/765 a base:organisation; + base:organisation\#IDOrganisation 765; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosas & Brasão teatrical Company" . + +base:organisation\/768 a base:organisation; + base:organisation\#IDOrganisation 768; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Colón" . + +base:organisation\/84 a base:organisation; + base:organisation\#IDOrganisation 84; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Kassel"; + base:organisation\#ref-IDLocation base:location\/GER-Kas-00 . + +base:organisation\/94 a base:organisation; + base:organisation\#IDOrganisation 94; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater Graz"; + base:organisation\#ref-IDLocation base:location\/AT-Graz-00 . + +base:person\/AhnEle-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/134086058"; + base:person\#IDPerson "AhnEle-00"; + base:person\#ISNI "https://isni.org/isni/0000000027894156"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen Akademie der Wissenschaften, Wien 1957"; + base:person\#VIAF "https://viaf.org/viaf/1220339"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q109745"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Eleonore_de_Ahna"; + base:person\#birthdate "1838-01-08"^^xsd:date; + base:person\#birthdate_max "1838-01-08"^^xsd:date; + base:person\#comment "buried in the Alter Domfriedhof der St.-Hedwigs-Gemeinde cemetery. Her grave is decorated with a marble angel by Julius Franz."; + base:person\#deathdate "1865-05-10"^^xsd:date; + base:person\#deathdate_max "1865-05-10"^^xsd:date; + base:person\#family_name "de Ahna"; + base:person\#first_name "Eleonore"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ahna_Eleonore_de.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Eleonore_de_Ahna"; + base:person\#profession "Opera Singer, Soprano, Mezzosopran"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/AliEl\%C3\%AD-00 a base:person; + base:person\#IDPerson "AliElí-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Alippi"; + base:person\#first_name "Elías"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AndLuc-00 a base:person; + base:person\#IDPerson "AndLuc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Philpot Anderson"; + base:person\#first_name "Lucy"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/AssMac-00 a base:person; + base:person\#IDPerson "AssMac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Assis"; + base:person\#first_name "Machado"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/BelHir-1249 a base:person; + base:person\#IDPerson "BelHir-1249"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bellow-hirsh-gedalyi.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.192."""; + base:person\#family_name "Bellow"; + base:person\#first_name "Hirsh Gedalyi"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/CaeJoa-00 a base:person; + base:person\#IDPerson "CaeJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caetano"; + base:person\#first_name "João"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DavEdw-00 a base:person; + base:person\#IDPerson "DavEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davenport"; + base:person\#first_name "Edward Loomis Davenport"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DaySam-1479 a base:person; + base:person\#IDPerson "DaySam-1479"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/D/dayen-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.539"""; + base:person\#birthdate "1862-01-01"^^xsd:date; + base:person\#birthdate_max "1862-12-31"^^xsd:date; + base:person\#family_name "Dayen"; + base:person\#first_name "Sam"; + base:person\#fuzzybirthdate "1862"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Sam_Dayen.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/D/dayen-sam.htm"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#religion "Jewish" . + +base:person\/DeREnr-00 a base:person; + base:person\#IDPerson "DeREnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "de Rosas"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FroAnn-00 a base:person; + base:person\#IDPerson "FroAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Frost"; + base:person\#first_name "Annie Forst / Annie Frost"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/GraLuc-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00585317"; + base:person\#GND "https://d-nb.info/gnd/116820446"; + base:person\#IDPerson "GraLuc-00"; + base:person\#ISNI "https://isni.org/isni/0000000109540351"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97858395"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6fr0pq4#resources"; + base:person\#VIAF "https://viaf.org/viaf/10607022"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q272482"; + base:person\#birthdate "1819-06-30"^^xsd:date; + base:person\#birthdate_max "1819-06-30"^^xsd:date; + base:person\#comment "One of the most talented ballett dancers of the 19th century."; + base:person\#deathdate "1907-04-04"^^xsd:date; + base:person\#deathdate_max "1907-04-04"^^xsd:date; + base:person\#family_name "Grahn"; + base:person\#first_name "Lucile"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Grahn_Lucile_.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Lucile_Grahn"; + base:person\#profession "Ballet Mistress, Dancer"; + base:person\#ref-IDBirthPlace base:location\/DK-Kop-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:person\/HacJam-00 a base:person; + base:person\#IDPerson "HacJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hackett"; + base:person\#first_name "James Henry Hackett"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HagUta-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/116379960"; + base:person\#IDPerson "HagUta-00"; + base:person\#ISNI "https://isni.org/isni/0000000121434957"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n88094554"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w64q8kzx"; + base:person\#VIAF "https://viaf.org/viaf/91640350"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q64260"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Uta_Hagen"; + base:person\#birthdate "1919-06-12"^^xsd:date; + base:person\#birthdate_max "1919-06-12"^^xsd:date; + base:person\#deathdate "2004-01-14"^^xsd:date; + base:person\#deathdate_max "2004-01-14"^^xsd:date; + base:person\#family_name "Hagen"; + base:person\#first_name "Uta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720472462792.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q64260#/media/File:Robeson_Hagen_Othello.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Goett-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/HalCha-00 a base:person; + base:person\#IDPerson "HalCha-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Hallé"; + base:person\#first_name "Charles Hallé"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeiCae-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00948894"; + base:person\#GND "https://d-nb.info/gnd/116650796"; + base:person\#IDPerson "HeiCae-00"; + base:person\#ISNI " https://isni.org/isni/0000000079824977 "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83015843"; + base:person\#Source "Karl Theodor von Heigel: Heigel, Franz. In: Allgemeine Deutsche Biographie (ADB)"; + base:person\#VIAF "https://viaf.org/viaf/8145229"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1150012"; + base:person\#birthdate "1783-06-25"^^xsd:date; + base:person\#birthdate_max "1783-06-25"^^xsd:date; + base:person\#comment "maybe killed in the Revolution of 1848"; + base:person\#deathdate "1847-01-01"^^xsd:date; + base:person\#deathdate_max "1873-12-31"^^xsd:date; + base:person\#family_name "Heigel"; + base:person\#first_name "Caesar Max"; + base:person\#fuzzydeathdate "last notice 1847 "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor, Librettist ,Lyricist"; + base:person\#ref-IDBirthPlace base:location\/GER-MUC-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/HerAle-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1272648796"; + base:person\#IDPerson "HerAle-00"; + base:person\#ISNI "https://isni.org/isni/0000000081147944"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79022023"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6x394nt#resources"; + base:person\#VIAF "https://viaf.org/viaf/35725501/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2642281"; + base:person\#birthdate "1844-02-11"^^xsd:date; + base:person\#birthdate_max "1844-02-11"^^xsd:date; + base:person\#comment "died on tour in his privat railroad car on his way from Rorchester to Bradford Pennsylvania, Woodlawn Cemetery, New York City"; + base:person\#deathdate "1896-12-17"^^xsd:date; + base:person\#deathdate_max "1896-12-17"^^xsd:date; + base:person\#family_name "Herrmann"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander Herrmann.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Alexander_Herrmann_(Zauberk%C3%BCnstler)#:~:text=Alexander%20Herrmann%20(*%2010.%20Februar,oder%20The%20Great%20Herrmann%20auf."; + base:person\#profession "Magician"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/USA-Ellic-00 . + +base:person\/HitAlf-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118551647"; + base:person\#IDPerson "HitAlf-00"; + base:person\#ISNI "https://isni.org/isni/0000000121318219"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79027022"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cp7t0q"; + base:person\#VIAF "https://viaf.org/viaf/49226917"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q7374"; + base:person\#birthdate "1899-08-13"^^xsd:date; + base:person\#birthdate_max "1899-08-13"^^xsd:date; + base:person\#comment "Hitchcock was appointed a Knight Commander of the Most Excellent Order of the British Empire (KBE) in the 1980 New Year Honours."; + base:person\#deathdate "1980-04-29"^^xsd:date; + base:person\#deathdate_max "1980-04-29"^^xsd:date; + base:person\#family_name "Hitchcock"; + base:person\#first_name "Alfred "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Film Director, Producer,Screenwriter"; + base:person\#ref-IDBirthPlace base:location\/UK-Lyton-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00 . + +base:person\/HurCha-2035 a base:person; + base:person\#IDPerson "HurCha-2035"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/hurwitz-charlotte.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.606."""; + base:person\#birthdate "1861-01-01"^^xsd:date; + base:person\#birthdate_max "1861-12-31"^^xsd:date; + base:person\#comment "Buried in Washington Cemetery, Brooklyn, New York"; + base:person\#family_name "Hurwitz"; + base:person\#first_name "Charlotte"; + base:person\#fuzzybirthdate "1861"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/KalFri-00 a base:person; + base:person\#IDPerson "KalFri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kalkbrenner"; + base:person\#first_name "Friedrich Kalkbrenner"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KuhWil-00 a base:person; + base:person\#IDPerson "KuhWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Kuhe"; + base:person\#first_name "Wilhelm Kuhe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LamFra-00 a base:person; + base:person\#IDPerson "LamFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lamperti"; + base:person\#first_name "Francesco Lamperti"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LatIze-LatIze-927 a base:person; + base:person\#IDPerson "LatIze-LatIze-927"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/L/latayner-izela.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.964."""; + base:person\#birthdate "1860-01-01"^^xsd:date; + base:person\#birthdate_max "1860-12-31"^^xsd:date; + base:person\#deathdate "1909-12-30"^^xsd:date; + base:person\#deathdate_max "1909-12-30"^^xsd:date; + base:person\#family_name "Lateiner"; + base:person\#first_name "Izela"; + base:person\#fuzzybirthdate "1860"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/LouAri-00 a base:person; + base:person\#IDPerson "LouAri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Louel"; + base:person\#first_name "Aristius Louel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/LumLum-00 a base:person; + base:person\#IDPerson "LumLum-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Lumley"; + base:person\#first_name "Lumley"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MacGeo-00 a base:person; + base:person\#IDPerson "MacGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Macfarren"; + base:person\#first_name "George Alexander Macfarren"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MarIri-00 a base:person; + base:person\#IDPerson "MarIri-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Marga"; + base:person\#first_name "Iris Marga"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MenFel-00 a base:person; + base:person\#IDPerson "MenFel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Mendelssohn"; + base:person\#first_name "Felix Mendelssohn"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MeyGia-00 a base:person; + base:person\#IDPerson "MeyGia-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Meyerbeer"; + base:person\#first_name "Giacomo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/MosIgn-00 a base:person; + base:person\#IDPerson "MosIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Moscheles"; + base:person\#first_name "Ignaz Moscheles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/NegPol-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118843249"; + base:person\#IDPerson "NegPol-00"; + base:person\#ISNI "https://isni.org/isni/0000000117819141"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n90679150"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6qk1t2d#resources"; + base:person\#VIAF "https://viaf.org/viaf/66594789"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q230633"; + base:person\#birthdate "1897-01-03"^^xsd:date; + base:person\#birthdate_max "1897-01-03"^^xsd:date; + base:person\#deathdate "1987-08-01"^^xsd:date; + base:person\#deathdate_max "1987-08-01"^^xsd:date; + base:person\#family_name "Negri"; + base:person\#first_name "Pola"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Stage,Film Actress,Singer"; + base:person\#ref-IDBirthPlace base:location\/PL-Lipn-00; + base:person\#ref-IDDeathPlace base:location\/USA-SanAnt-00 . + +base:person\/OffJac-00 a base:person; + base:person\#IDPerson "OffJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Offenbach"; + base:person\#first_name "Jacques"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PodJer-00 a base:person; + base:person\#IDPerson "PodJer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Podestá"; + base:person\#first_name "Jerónimo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PynLou-00 a base:person; + base:person\#IDPerson "PynLou-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pyne"; + base:person\#first_name "Louisa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PynSus-00 a base:person; + base:person\#IDPerson "PynSus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Pyne"; + base:person\#first_name "Susanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SebJoh-00 a base:person; + base:person\#IDPerson "SebJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Seb"; + base:person\#first_name "Joh."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShuLee-00 a base:person; + base:person\#IDPerson "ShuLee-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Shubert"; + base:person\#first_name "Lee"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SimLui-00 a base:person; + base:person\#IDPerson "SimLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Simões"; + base:person\#first_name "Lucília"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/StrEdg-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250127688"; + base:person\#IDPerson "StrEdg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Director der Carleton Opera Company"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115221079"; + base:person\#birthdate "1859-04-30"^^xsd:date; + base:person\#birthdate_max "1859-04-30"^^xsd:date; + base:person\#comment "Part of the Strakosch family, the “sugar barons”."; + base:person\#deathdate "1942-12-23"^^xsd:date; + base:person\#deathdate_max "1942-12-23"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Edgar Hugh"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Impresario, Director"; + base:person\#ref-IDBirthPlace base:location\/AUS-00; + base:person\#ref-IDDeathPlace base:location\/USA-SanFranc-02 . + +base:person\/TabRob-00 a base:person; + base:person\#IDPerson "TabRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Taber"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ThaSig-00 a base:person; + base:person\#IDPerson "ThaSig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Thalberg"; + base:person\#first_name "Sigismund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VieHen-00 a base:person; + base:person\#IDPerson "VieHen-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Vieuxtemps"; + base:person\#first_name "Henri"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:Country-Lithuania a base:Country; + rdfs:label "Lithuania"@en . + +base:RelationshipTypePrecise-Cousin a base:RelationshipTypePrecise; + rdfs:label "Cousin"@en . + +base:State-Kansas a base:State; + rdfs:label "Kansas"@en . + +base:State-Nevada a base:State; + rdfs:label "Nevada"@en . + +base:State-WestVirginia a base:State; + rdfs:label "West Virginia"@en . + +base:location\/ARG-Guay-00 a base:location; + base:location\#City base:City-Guaymall\%C3\%A9nDepartment; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3854459"; + base:location\#IDLocation "ARG-Guay-00"; + base:location\#State base:State-Mendoza; + base:location\#latitude -3.29053e1; + base:location\#longitude -6.87867e1; + base:location\#wikidata "Q9001103"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Guaymall%C3%A9n_Department" . + +base:location\/ARG-MdPl-00 a base:location; + base:location\#City base:City-MardelPlata; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3430863"; + base:location\#IDLocation "ARG-MdPl-00"; + base:location\#State base:State-BuenosAiresProvince; + base:location\#latitude -3.7995e1; + base:location\#longitude -5.75667e1; + base:location\#wikidata "Q52607"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mar_del_Plata" . + +base:location\/AU-Brisb-00 a base:location; + base:location\#City base:City-Brisbane; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#IDLocation "AU-Brisb-00"; + base:location\#latitude -2.74678e1; + base:location\#longitude 1.53028e2; + base:location\#wikidata "Q34932" . + +base:location\/BE-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#GeoNamesID "2802361"; + base:location\#IDLocation "BE-00"; + base:location\#latitude 5.08333e1; + base:location\#longitude 4.0e0; + base:location\#wikidata "Q31"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Belgium" . + +base:location\/BE-Lieg-00 a base:location; + base:location\#City base:City-Li\%C3\%A9ge; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#GeoNamesID "2792413"; + base:location\#IDLocation "BE-Lieg-00"; + base:location\#latitude 5.06397e1; + base:location\#longitude 5.57056e0; + base:location\#wikidata "Q3992"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Li%C3%A8ge" . + +base:location\/BR-Niter-00 a base:location; + base:location\#City base:City-Niter\%C3\%B3i; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3456283"; + base:location\#IDLocation "BR-Niter-00"; + base:location\#latitude -2.28828e1; + base:location\#longitude -4.31039e1; + base:location\#wikidata "Q178725"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Niter%C3%B3i" . + +base:location\/Bessar-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#IDLocation "Bessar-00"; + base:location\#State base:State-Bessarabia; + base:location\#latitude 4.7e1; + base:location\#longitude 2.9e1; + base:location\#wikidata "Q174994" . + +base:location\/CA-Ham-00 a base:location; + base:location\#City base:City-Hamilton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-Ham-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.32553e1; + base:location\#longitude -7.987309999999999e1; + base:location\#wikidata "Q133116"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Hamilton_(Ontario)" . + +base:location\/Can-DiJeSt-75 a base:location; + base:location\#City base:City-Winnipeg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "Can-DiJeSt-75"; + base:location\#latitude 4.98956e1; + base:location\#longitude -9.71386e1; + base:location\#wikidata "Q2135"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/FR-Mars-00 a base:location; + base:location\#City base:City-Marseille; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2995469"; + base:location\#IDLocation "FR-Mars-00"; + base:location\#latitude 4.32964e1; + base:location\#longitude 5.37e0; + base:location\#wikidata "Q23482"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Marseille" . + +base:location\/GER-Aach-00 a base:location; + base:location\#City base:City-Aachen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "3247449"; + base:location\#IDLocation "GER-Aach-00"; + base:location\#latitude 5.07756e1; + base:location\#longitude 6.08361e0; + base:location\#wikidata "Q1017"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Aachen" . + +base:location\/GER-Bernb-00 a base:location; + base:location\#City base:City-Bernburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2950073"; + base:location\#IDLocation "GER-Bernb-00"; + base:location\#latitude 5.18e1; + base:location\#longitude 1.17333e1; + base:location\#wikidata "Q14938"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bernburg" . + +base:location\/GER-Goerl-00 a base:location; + base:location\#City base:City-G\%C3\%B6rlitz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2918987"; + base:location\#IDLocation "GER-Goerl-00"; + base:location\#latitude 5.11528e1; + base:location\#longitude 1.49872e1; + base:location\#wikidata "Q4077"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/G%C3%B6rlitz" . + +base:location\/GER-Schwer-00 a base:location; + base:location\#City base:City-Schwerin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2834282"; + base:location\#IDLocation "GER-Schwer-00"; + base:location\#latitude 5.36333e1; + base:location\#longitude 1.14167e1; + base:location\#wikidata "Q1709"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Schwerin" . + +base:location\/HR-Zagr-00 a base:location; + base:location\#City base:City-Zagreb; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Croatia; + base:location\#GeoNamesID "3186886"; + base:location\#IDLocation "HR-Zagr-00"; + base:location\#latitude 4.58167e1; + base:location\#longitude 1.59833e1; + base:location\#wikidata "Q1435"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Zagreb" . + +base:location\/IE-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#IDLocation "IE-00"; + base:location\#latitude 5.31333e1; + base:location\#longitude -8.116669999999999e0; + base:location\#wikidata "Q27" . + +base:location\/IT-Cassa-00 a base:location; + base:location\#City base:City-Cassanod\%E2\%80\%99Adda; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3179795"; + base:location\#IDLocation "IT-Cassa-00"; + base:location\#State base:State-Lombardy; + base:location\#latitude 4.55333e1; + base:location\#longitude 9.51667e0; + base:location\#wikidata "Q42613"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cassano_d%27Adda" . + +base:location\/IT-Sici-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "2523118"; + base:location\#IDLocation "IT-Sici-00"; + base:location\#State base:State-Sicily; + base:location\#latitude 3.75e1; + base:location\#longitude 1.4e1; + base:location\#wikidata "Q1460"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sicily" . + +base:location\/LK-Colomb-00 a base:location; + base:location\#City base:City-Colombo; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-SriLanka; + base:location\#IDLocation "LK-Colomb-00"; + base:location\#latitude 6.9336e0; + base:location\#longitude 7.98501e1; + base:location\#wikidata "Q35381" . + +base:location\/NL-Rott-00 a base:location; + base:location\#City base:City-Rotterdam; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2747891"; + base:location\#IDLocation "NL-Rott-00"; + base:location\#latitude 5.19167e1; + base:location\#longitude 4.5e0; + base:location\#wikidata "Q34370"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rotterdam" . + +base:location\/NZ-Nap-00 a base:location; + base:location\#City base:City-Napier; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2186313"; + base:location\#IDLocation "NZ-Nap-00"; + base:location\#latitude -3.94863e1; + base:location\#longitude 1.76909e2; + base:location\#wikidata "Q203380"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Napier,_New_Zealand" . + +base:location\/PL-SZ-00 a base:location; + base:location\#City base:City-Szczecin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3083829"; + base:location\#IDLocation "PL-SZ-00"; + base:location\#latitude 5.34325e1; + base:location\#longitude 1.45481e1; + base:location\#wikidata "Q393"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Szczecin" . + +base:location\/Pol-DiJeSt-17 a base:location; + base:location\#City base:City-Zamo\%C5\%9B\%C4\%87; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "Pol-DiJeSt-17"; + base:location\#latitude 5.07206e1; + base:location\#longitude 2.32586e1; + base:location\#wikidata "Q145972"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/SCT-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2638360"; + base:location\#IDLocation "SCT-00"; + base:location\#latitude 5.7e1; + base:location\#longitude -4.0e0; + base:location\#wikidata "Q22"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Scotland" . + +base:location\/UK-Leeds-00 a base:location; + base:location\#City base:City-Leeds; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2644688"; + base:location\#IDLocation "UK-Leeds-00"; + base:location\#latitude 5.37997e1; + base:location\#longitude -1.54917e0; + base:location\#wikidata "Q39121"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leeds" . + +base:location\/USA-Anarb-00 a base:location; + base:location\#City base:City-AnnArbor; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Anarb-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.22753e1; + base:location\#longitude -8.37308e1; + base:location\#wikidata "Q485172" . + +base:location\/USA-Bridgep-00 a base:location; + base:location\#City base:City-Bridgeport; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Bridgep-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.11864e1; + base:location\#longitude -7.31956e1; + base:location\#wikidata "Q49174" . + +base:location\/USA-Butte-00 a base:location; + base:location\#City base:City-Butte; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Butte-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.60039e1; + base:location\#longitude -1.12534e2; + base:location\#wikidata "Q467664" . + +base:location\/USA-Chatt-00 a base:location; + base:location\#City base:City-Chattanooga; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Chatt-00"; + base:location\#State base:State-Tennessee; + base:location\#latitude 3.50364e1; + base:location\#longitude -8.53075e1; + base:location\#wikidata "Q186702" . + +base:location\/USA-Evansv-00 a base:location; + base:location\#City base:City-Evansville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Evansv-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.79772e1; + base:location\#longitude -8.75506e1; + base:location\#wikidata "Q486459" . + +base:location\/USA-Galv-00 a base:location; + base:location\#City base:City-Galveston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Galv-00"; + base:location\#State base:State-Texas; + base:location\#latitude 2.92811e1; + base:location\#longitude -9.48258e1; + base:location\#wikidata "Q135744" . + +base:location\/USA-Hel-00 a base:location; + base:location\#City base:City-Helena; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Hel-00"; + base:location\#State base:State-Montana; + base:location\#latitude 4.65942e1; + base:location\#longitude -1.12011e2; + base:location\#wikidata "Q38733" . + +base:location\/USA-Itha-00 a base:location; + base:location\#City base:City-Ithaca; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Itha-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.24441e1; + base:location\#longitude -7.650320000000001e1; + base:location\#wikidata "Q217346" . + +base:location\/USA-Jackso-00 a base:location; + base:location\#City base:City-Jackson; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4997384"; + base:location\#IDLocation "USA-Jackso-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.22441e1; + base:location\#longitude -8.44072e1; + base:location\#wikidata "Q984374"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Jackson,_Michigan" . + +base:location\/USA-Lanc-00 a base:location; + base:location\#City base:City-Lancaster; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Lanc-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.00397e1; + base:location\#longitude -7.63044e1; + base:location\#wikidata "Q320514" . + +base:location\/USA-Lex-00 a base:location; + base:location\#City base:City-Lexington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Lex-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.80464e1; + base:location\#longitude -8.44969e1; + base:location\#wikidata "Q49241" . + +base:location\/USA-Mobile-00 a base:location; + base:location\#City base:City-Mobile; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4076598"; + base:location\#IDLocation "USA-Mobile-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.06944e1; + base:location\#longitude -8.80431e1; + base:location\#wikidata "Q79875"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mobile,_Alabama" . + +base:location\/USA-NLdn-00 a base:location; + base:location\#City base:City-NewLondon; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4839416"; + base:location\#IDLocation "USA-NLdn-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.13556e1; + base:location\#longitude -7.210080000000001e1; + base:location\#wikidata "Q49146"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_London,_Connecticut" . + +base:location\/USA-Oakl-00 a base:location; + base:location\#City base:City-Oakland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Oakl-00"; + base:location\#State base:State-California; + base:location\#latitude 3.7805e1; + base:location\#longitude -1.22272e2; + base:location\#wikidata "Q17042" . + +base:location\/USA-OshkW-00 a base:location; + base:location\#City base:City-Oshkosh; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-OshkW-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.40242e1; + base:location\#longitude -8.85611e1; + base:location\#wikidata "Q936741" . + +base:location\/USA-SanAnt-00 a base:location; + base:location\#City base:City-SanAntonio; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4726206"; + base:location\#IDLocation "USA-SanAnt-00"; + base:location\#State base:State-Texas; + base:location\#latitude 2.9425e1; + base:location\#longitude -9.84939e1; + base:location\#wikidata "Q975"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Antonio" . + +base:location\/USA-Stockt-00 a base:location; + base:location\#City base:City-Stockton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Stockt-00"; + base:location\#State base:State-California; + base:location\#latitude 3.79756e1; + base:location\#longitude -1.21301e2; + base:location\#wikidata "Q49240" . + +base:location\/USA-Wino-00 a base:location; + base:location\#City base:City-Winona; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Wino-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.40475e1; + base:location\#longitude -9.16399e1; + base:location\#wikidata "Q773527" . + +base:location\/Ukr-DiJeSt-126 a base:location; + base:location\#City base:City-Kolomyia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-126"; + base:location\#latitude 4.85167e1; + base:location\#longitude 2.50333e1; + base:location\#wikidata "Q52193"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Uni-DiJeSt-52 a base:location; + base:location\#City base:City-TheBronx; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-UnitedStates; + base:location\#IDLocation "Uni-DiJeSt-52"; + base:location\#latitude 4.08468e1; + base:location\#longitude -7.38732e1; + base:location\#wikidata "Q18426"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/1068 a base:organisation; + base:organisation\#IDOrganisation 1068; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Court Theatre" . + +base:organisation\/109 a base:organisation; + base:organisation\#IDOrganisation 109; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Leipzig"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:organisation\/111 a base:organisation; + base:organisation\#IDOrganisation 111; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Volkstheater in Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/1257 a base:organisation; + base:organisation\#IDOrganisation 1257; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Comique" . + +base:organisation\/136 a base:organisation; + base:organisation\#IDOrganisation 136; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Garrick Theatre" . + +base:organisation\/1470 a base:organisation; + base:organisation\#IDOrganisation 1470; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Carlos Gomes" . + +base:organisation\/1530 a base:organisation; + base:organisation\#IDOrganisation 1530; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal College of Music" . + +base:organisation\/175 a base:organisation; + base:organisation\#IDOrganisation 175; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Imperial Theatre Warsaw"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/176 a base:organisation; + base:organisation\#IDOrganisation 176; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "California Theatre San Francisco"; + base:organisation\#ref-IDLocation base:location\/USA-SanFranc-02 . + +base:organisation\/178 a base:organisation; + base:organisation\#IDOrganisation 178; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Star Theatre" . + +base:organisation\/180 a base:organisation; + base:organisation\#IDOrganisation 180; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Academy of Music, New York"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1826 a base:organisation; + base:organisation\#IDOrganisation 1826; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Santanna" . + +base:organisation\/183 a base:organisation; + base:organisation\#IDOrganisation 183; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Köln Oper"; + base:organisation\#ref-IDLocation base:location\/GER-Col-00 . + +base:organisation\/233 a base:organisation; + base:organisation\#IDOrganisation 233; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Wallack’s Theatre" . + +base:organisation\/238 a base:organisation; + base:organisation\#IDOrganisation 238; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Bowery Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/2415 a base:organisation; + base:organisation\#IDOrganisation 2415; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Astor Place Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-MNHTN-00 . + +base:organisation\/268 a base:organisation; + base:organisation\#IDOrganisation 268; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Manhattan Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/2925 a base:organisation; + base:organisation\#IDOrganisation 2925; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Zarzuela" . + +base:organisation\/2970 a base:organisation; + base:organisation\#IDOrganisation 2970; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Smart" . + +base:organisation\/3350 a base:organisation; + base:organisation\#IDOrganisation 3350; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Sarmiento" . + +base:organisation\/3745 a base:organisation; + base:organisation\#IDOrganisation 3745; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Belgrano" . + +base:organisation\/3795 a base:organisation; + base:organisation\#IDOrganisation 3795; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "Radio Mayrink Veiga" . + +base:organisation\/3840 a base:organisation; + base:organisation\#IDOrganisation 3840; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Roxy Theatre" . + +base:organisation\/4151 a base:organisation; + base:organisation\#IDOrganisation 4151; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Onrubia" . + +base:organisation\/4176 a base:organisation; + base:organisation\#IDOrganisation 4176; + base:organisation\#comment ""; + base:organisation\#inst_name "La Nación" . + +base:organisation\/4281 a base:organisation; + base:organisation\#IDOrganisation 4281; + base:organisation\#comment ""; + base:organisation\#inst_name "Narciso, Napolão & Cia. (Musical Instruments Store)" . + +base:organisation\/4400 a base:organisation; + base:organisation\#IDOrganisation 4400; + base:organisation\#comment ""; + base:organisation\#inst_name "Operetta Tour" . + +base:organisation\/4680 a base:organisation; + base:organisation\#IDOrganisation 4680; + base:organisation\#comment ""; + base:organisation\#inst_name "Milwaukee Grand Opera House" . + +base:organisation\/4796 a base:organisation; + base:organisation\#IDOrganisation 4796; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Pablo Podestá" . + +base:organisation\/4976 a base:organisation; + base:organisation\#IDOrganisation 4976; + base:organisation\#inst_name "Grand Opera House in Terre Haute" . + +base:organisation\/4988 a base:organisation; + base:organisation\#IDOrganisation 4988; + base:organisation\#inst_name "Grand Opera House in Cincinnati" . + +base:organisation\/4992 a base:organisation; + base:organisation\#IDOrganisation 4992; + base:organisation\#inst_name "Macauleys Theatre in Louisville" . + +base:organisation\/4996 a base:organisation; + base:organisation\#IDOrganisation 4996; + base:organisation\#inst_name "Dicksons Grand Opera House in Indianapolis" . + +base:organisation\/502 a base:organisation; + base:organisation\#IDOrganisation 502; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Goldfadn and his troupe" . + +base:organisation\/5060 a base:organisation; + base:organisation\#IDOrganisation 5060; + base:organisation\#inst_name "Wheeler Opera House in Toledo" . + +base:organisation\/5068 a base:organisation; + base:organisation\#IDOrganisation 5068; + base:organisation\#inst_name "Academy of Music, Scranton"; + base:organisation\#ref-IDLocation base:location\/USA-Scrnt-00 . + +base:organisation\/508 a base:organisation; + base:organisation\#IDOrganisation 508; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatr Nowosco"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5164 a base:organisation; + base:organisation\#IDOrganisation 5164; + base:organisation\#inst_name "Chestnut Street Opera House (Philadelphia)" . + +base:organisation\/5196 a base:organisation; + base:organisation\#IDOrganisation 5196; + base:organisation\#inst_name "Grand Opera House (Burlington)" . + +base:organisation\/5268 a base:organisation; + base:organisation\#IDOrganisation 5268; + base:organisation\#inst_name "Grand Opera House (Topeka)" . + +base:organisation\/5284 a base:organisation; + base:organisation\#IDOrganisation 5284; + base:organisation\#inst_name "Greene´s Opera House (Cedar" . + +base:organisation\/53640 a base:organisation; + base:organisation\#IDOrganisation 53640; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Finkel, Feinman and Mogulesko's Troupe" . + +base:organisation\/54320 a base:organisation; + base:organisation\#IDOrganisation 54320; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Gleichman Troupe" . + +base:organisation\/54960 a base:organisation; + base:organisation\#IDOrganisation 54960; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Hazamir" . + +base:organisation\/5597 a base:organisation; + base:organisation\#IDOrganisation 5597; + base:organisation\#inst_name "New Park Theatre, Brooklyn" . + +base:organisation\/5613 a base:organisation; + base:organisation\#IDOrganisation 5613; + base:organisation\#inst_name "Oliver Opera House, South Bend" . + +base:organisation\/56550 a base:organisation; + base:organisation\#IDOrganisation 56550; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "Kaminski's Theatre"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/5737 a base:organisation; + base:organisation\#IDOrganisation 5737; + base:organisation\#inst_name "Winona Opera House" . + +base:organisation\/58250 a base:organisation; + base:organisation\#IDOrganisation 58250; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Mariinski"; + base:organisation\#ref-IDLocation base:location\/UA-Od-00 . + +base:organisation\/59620 a base:organisation; + base:organisation\#IDOrganisation 59620; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "New York's Public Theatre" . + +base:organisation\/653 a base:organisation; + base:organisation\#IDOrganisation 653; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Príncipe Real" . + +base:organisation\/66720 a base:organisation; + base:organisation\#IDOrganisation 66720; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "The Yiddish Art Theatre (as company on tour)" . + +base:organisation\/67090 a base:organisation; + base:organisation\#IDOrganisation 67090; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Union Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/67210 a base:organisation; + base:organisation\#IDOrganisation 67210; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Unzer vinkl (Our Corner)" . + +base:organisation\/68280 a base:organisation; + base:organisation\#IDOrganisation 68280; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Zandberg Troupe" . + +base:organisation\/69712 a base:organisation; + base:organisation\#IDOrganisation 69712; + base:organisation\#inst_name "RKO Films" . + +base:organisation\/69768 a base:organisation; + base:organisation\#IDOrganisation 69768; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Naftali Goldfaden's troupe" . + +base:organisation\/69840 a base:organisation; + base:organisation\#IDOrganisation 69840; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Zandberg's troupe" . + +base:organisation\/70108 a base:organisation; + base:organisation\#IDOrganisation 70108; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Gleichman's troupe" . + +base:organisation\/70400 a base:organisation; + base:organisation\#IDOrganisation 70400; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Aba Kompaneyets' troupe" . + +base:organisation\/70720 a base:organisation; + base:organisation\#IDOrganisation 70720; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#inst_name "Yiddish vaudeville houses" . + +base:organisation\/70904 a base:organisation; + base:organisation\#IDOrganisation 70904; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Roumanian Opera House" . + +base:organisation\/71924 a base:organisation; + base:organisation\#IDOrganisation 71924; + base:organisation\#inst_name "ADD NEW" . + +base:organisation\/71936 a base:organisation; + base:organisation\#IDOrganisation 71936; + base:organisation\#inst_name "Wallerstein’s Yiddish Theatre Company" . + +base:organisation\/71973 a base:organisation; + base:organisation\#IDOrganisation 71973; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "Mozart Academy of Music, Richmond"; + base:organisation\#ref-IDLocation base:location\/USA-Richm-00 . + +base:organisation\/72229 a base:organisation; + base:organisation\#IDOrganisation 72229; + base:organisation\#inst_name "Asociación Argentina por la Libertad de la Cultura" . + +base:organisation\/72354 a base:organisation; + base:organisation\#IDOrganisation 72354; + base:organisation\#inst_name "Colegio Libre de Estudios Superiores (CLES)" . + +base:organisation\/73138 a base:organisation; + base:organisation\#IDOrganisation 73138; + base:organisation\#inst_name "Civic Repertory Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/736 a base:organisation; + base:organisation\#IDOrganisation 736; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Chestnut Street Theatre" . + +base:organisation\/800 a base:organisation; + base:organisation\#IDOrganisation 800; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Heller’s theatre company" . + +base:organisation\/896 a base:organisation; + base:organisation\#IDOrganisation 896; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Carlos" . + +base:organisation\/992 a base:organisation; + base:organisation\#IDOrganisation 992; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater"; + base:organisation\#ref-IDLocation base:location\/ROU-Timis-00 . + +base:person\/AffAgu-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/130643823"; + base:person\#IDPerson "AffAgu-00"; + base:person\#ISNI "https://isni.org/isni/0000000030533968"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87113926"; + base:person\#Source "Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/19874110/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4694618"; + base:person\#birthdate "1858-10-23"^^xsd:date; + base:person\#birthdate_max "1858-10-23"^^xsd:date; + base:person\#deathdate "1931-12-27"^^xsd:date; + base:person\#deathdate_max "1931-12-27"^^xsd:date; + base:person\#family_name "Affre"; + base:person\#first_name "Agustarello"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/getimage-1-737x600.jpg"; + base:person\#image_source "https://www.forumopera.com/agustarello-affre-1858-1931-le-tamagno-francais/"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/FR-SaintChin-00; + base:person\#ref-IDDeathPlace base:location\/FR-CagSM-00 . + +base:person\/BerSar-00 a base:person; + base:person\#IDPerson "BerSar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Bernhardt"; + base:person\#first_name "Sarah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/CarEnr-00 a base:person; + base:person\#IDPerson "CarEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Caruso"; + base:person\#first_name "Enrico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/DamLeo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116020768"; + base:person\#IDPerson "DamLeo-00"; + base:person\#ISNI "https://isni.org/isni/0000000083903600"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no88005912"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6z32562"; + base:person\#Source "Library of congress, https://de.wikipedia.org/wiki/Leopold_Damrosch"; + base:person\#VIAF "https://viaf.org/viaf/66730233"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q213990"; + base:person\#birthdate "1832-10-22"^^xsd:date; + base:person\#birthdate_max "1832-10-22"^^xsd:date; + base:person\#deathdate "1885-02-15"^^xsd:date; + base:person\#deathdate_max "1885-02-15"^^xsd:date; + base:person\#family_name "Damrosch"; + base:person\#first_name "Leopold"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Komponist, Dirigent, Violinist ,Musikpädagoge"; + base:person\#ref-IDBirthPlace base:location\/PL-Pozn-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/Edw-00 a base:person; + base:person\#IDPerson "Edw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Booth"; + base:person\#first_name "Edwin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ForEdw-00 a base:person; + base:person\#IDPerson "ForEdw-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Forrest"; + base:person\#first_name "Edwin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/HeySam-1997 a base:person; + base:person\#IDPerson "HeySam-1997"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/heyligman-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.606."""; + base:person\#birthdate "1869-01-01"^^xsd:date; + base:person\#birthdate_max "1869-12-31"^^xsd:date; + base:person\#family_name "Heyligman"; + base:person\#first_name "Samuel"; + base:person\#fuzzybirthdate "1869"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-23; + base:person\#religion "Jewish" . + +base:person\/JoaJos-00 a base:person; + base:person\#IDPerson "JoaJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Joachim"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/KopLou-2137 a base:person; + base:person\#IDPerson "KopLou-2137"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kopelman-louis.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5145."""; + base:person\#deathdate "1901-01-01"^^xsd:date; + base:person\#deathdate_max "1901-12-31"^^xsd:date; + base:person\#family_name "Kopelman"; + base:person\#first_name "Louis"; + base:person\#fuzzydeathdate "1901"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDDeathPlace base:location\/USA-Colorado-00; + base:person\#religion "Jewish" . + +base:person\/LisHan-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/135083966"; + base:person\#IDPerson "LisHan-00"; + base:person\#ISNI "https://isni.org/isni/0000000055498484"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr2001022029"; + base:person\#VIAF "https://viaf.org/viaf/7317421"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1581084"; + base:person\#birthdate "1885-09-19"^^xsd:date; + base:person\#birthdate_max "1885-09-19"^^xsd:date; + base:person\#deathdate "1964-05-26"^^xsd:date; + base:person\#deathdate_max "1964-05-26"^^xsd:date; + base:person\#family_name "Lissmann"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/220px-Hans_Lissmann.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Hans_Lissmann#/media/Datei:Hans_Lissmann.jpg"; + base:person\#profession "Opera Singer, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/GER-Leip-00 . + +base:person\/PodJos-00 a base:person; + base:person\#IDPerson "PodJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Podestá"; + base:person\#first_name "José J."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/PodPab-00 a base:person; + base:person\#IDPerson "PodPab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Podestá"; + base:person\#first_name "Pablo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/QuiCam-00 a base:person; + base:person\#IDPerson "QuiCam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Quiroga"; + base:person\#first_name "Camila"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ShrAdo-2943 a base:person; + base:person\#IDPerson "ShrAdo-2943"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/shrage-adolph.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4938."""; + base:person\#birthdate "1871-01-01"^^xsd:date; + base:person\#birthdate_max "1871-01-01"^^xsd:date; + base:person\#family_name "Shrage"; + base:person\#first_name "Adolph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-119; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/SimSim-2979 a base:person; + base:person\#IDPerson "SimSim-2979"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TurMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/130538027"; + base:person\#IDPerson "TurMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000066883257"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/62658382/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q113805479"; + base:person\#family_name "Turkow"; + base:person\#first_name "Mark "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00 . + +base:Country-Belgium a base:Country; + rdfs:label "Belgium"@en . + +base:Country-Slovakia a base:Country; + rdfs:label "Slovakia"@en . + +base:Profession-Agent a base:Profession; + rdfs:label "Agent"@en . + +base:RelationshipTypePrecise-Uncle a base:RelationshipTypePrecise; + rdfs:label "Uncle"@en . + +base:State-Alabama a base:State; + rdfs:label "Alabama"@en . + +base:State-Kentucky a base:State; + rdfs:label "Kentucky"@en . + +base:State-Minnesota a base:State; + rdfs:label "Minnesota"@en . + +base:State-Missouri a base:State; + rdfs:label "Missouri"@en . + +base:location\/ARG-Mendo-00 a base:location; + base:location\#City base:City-Mendoza; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3844421"; + base:location\#IDLocation "ARG-Mendo-00"; + base:location\#latitude -3.28833e1; + base:location\#longitude -6.883329999999999e1; + base:location\#wikidata "Q44237"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mendoza,_Argentina" . + +base:location\/BR-RGdS-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3451133"; + base:location\#IDLocation "BR-RGdS-00"; + base:location\#State base:State-RioGrandedoSul; + base:location\#latitude -2.976e1; + base:location\#longitude -5.316e1; + base:location\#wikidata "Q40030"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rio_Grande_do_Sul" . + +base:location\/Bel-DiJeSt-16 a base:location; + base:location\#City base:City-Brest; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#IDLocation "Bel-DiJeSt-16"; + base:location\#latitude 5.20847e1; + base:location\#longitude 2.36569e1; + base:location\#wikidata "Q140147"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/CA-Vict-00 a base:location; + base:location\#City base:City-Victoria; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#IDLocation "CA-Vict-00"; + base:location\#State base:State-BritishColumbia; + base:location\#latitude 4.84283e1; + base:location\#longitude -1.23365e2; + base:location\#wikidata "Q2132" . + +base:location\/CH-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2658434"; + base:location\#IDLocation "CH-00"; + base:location\#latitude 4.68333e1; + base:location\#longitude 8.33333e0; + base:location\#wikidata "Q39"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Switzerland" . + +base:location\/CU-Hav-00 a base:location; + base:location\#City base:City-Havana; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Cuba; + base:location\#IDLocation "CU-Hav-00"; + base:location\#latitude 2.31367e1; + base:location\#longitude -8.235890000000001e1; + base:location\#wikidata "Q1563" . + +base:location\/ES-Catal-00 a base:location; + base:location\#City base:City-Catalonia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Catal-00"; + base:location\#latitude 4.18167e1; + base:location\#longitude 1.56667e0; + base:location\#wikidata "Q5705" . + +base:location\/FR-Niz-00 a base:location; + base:location\#City base:City-Nice; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2990440"; + base:location\#IDLocation "FR-Niz-00"; + base:location\#latitude 4.37045e1; + base:location\#longitude 7.262e0; + base:location\#wikidata "Q33959"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nice" . + +base:location\/FR-Strb-00 a base:location; + base:location\#City base:City-Strasbourg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2973783"; + base:location\#IDLocation "FR-Strb-00"; + base:location\#latitude 4.85833e1; + base:location\#longitude 7.74583e0; + base:location\#wikidata "Q6602"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Strasbourg" . + +base:location\/GER-Altenb-00 a base:location; + base:location\#City base:City-Altenburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2957773"; + base:location\#IDLocation "GER-Altenb-00"; + base:location\#State base:State-Thuringia; + base:location\#latitude 5.0985e1; + base:location\#longitude 1.24333e1; + base:location\#wikidata "Q15976"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Altenburg" . + +base:location\/GER-BrauSch-00 a base:location; + base:location\#City base:City-Brunswick; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2945024"; + base:location\#IDLocation "GER-BrauSch-00"; + base:location\#latitude 5.22667e1; + base:location\#longitude 1.05167e1; + base:location\#wikidata "Q2773"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Braunschweig" . + +base:location\/GER-Darm-00 a base:location; + base:location\#City base:City-Darmstadt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2938913"; + base:location\#IDLocation "GER-Darm-00"; + base:location\#latitude 4.98722e1; + base:location\#longitude 8.65278e0; + base:location\#wikidata "Q2973"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Darmstadt" . + +base:location\/GER-Lueb-00 a base:location; + base:location\#City base:City-L\%C3\%BCbeck; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2875601"; + base:location\#IDLocation "GER-Lueb-00"; + base:location\#latitude 5.38697e1; + base:location\#longitude 1.06864e1; + base:location\#wikidata "Q2843"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/L%C3%BCbeck" . + +base:location\/GER-Mein-00 a base:location; + base:location\#City base:City-Meiningen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2872225"; + base:location\#IDLocation "GER-Mein-00"; + base:location\#latitude 5.055e1; + base:location\#longitude 1.04167e1; + base:location\#wikidata "Q487278"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Meiningen" . + +base:location\/IN-Mumb-00 a base:location; + base:location\#City base:City-Mumbai; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#GeoNamesID "1275339"; + base:location\#IDLocation "IN-Mumb-00"; + base:location\#latitude 1.89667e1; + base:location\#longitude 7.283329999999999e1; + base:location\#wikidata "Q1156"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mumbai" . + +base:location\/IT-BOL-00 a base:location; + base:location\#City base:City-Bologna; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3181928"; + base:location\#IDLocation "IT-BOL-00"; + base:location\#latitude 4.44939e1; + base:location\#longitude 1.13428e1; + base:location\#wikidata "Q1891"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bologna" . + +base:location\/Lat-DiJeSt-140 a base:location; + base:location\#City base:City-Daugavpils; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#IDLocation "Lat-DiJeSt-140"; + base:location\#latitude 5.58714e1; + base:location\#longitude 2.65161e1; + base:location\#wikidata "Q80021"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/NZ-ChrCh-00 a base:location; + base:location\#City base:City-Wellington; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2179537"; + base:location\#IDLocation "NZ-ChrCh-00"; + base:location\#latitude -4.12875e1; + base:location\#longitude 1.74776e2; + base:location\#wikidata "Q23661"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wellington" . + +base:location\/ROU-Bot-00 a base:location; + base:location\#City base:City-Boto\%C8\%99ani; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "684039"; + base:location\#IDLocation "ROU-Bot-00"; + base:location\#latitude 4.77461e1; + base:location\#longitude 2.66661e1; + base:location\#wikidata "Q178855"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Boto%C8%99ani" . + +base:location\/SRB-BEL-00 a base:location; + base:location\#City base:City-Belgrade; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Serbia; + base:location\#GeoNamesID "792680"; + base:location\#IDLocation "SRB-BEL-00"; + base:location\#latitude 4.48167e1; + base:location\#longitude 2.04667e1; + base:location\#wikidata "Q3711"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Belgrade" . + +base:location\/UAS-Charls-00 a base:location; + base:location\#City base:City-Charleston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "UAS-Charls-00"; + base:location\#State base:State-SouthCarolina; + base:location\#latitude 3.27833e1; + base:location\#longitude -7.99333e1; + base:location\#wikidata "Q47716" . + +base:location\/UK-Birm-00 a base:location; + base:location\#City base:City-Birmingham; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#IDLocation "UK-Birm-00"; + base:location\#latitude 5.24829e1; + base:location\#longitude -1.8936e0; + base:location\#wikidata "Q2256" . + +base:location\/UK-Bris-00 a base:location; + base:location\#City base:City-Bristol; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2654675"; + base:location\#IDLocation "UK-Bris-00"; + base:location\#latitude 5.145e1; + base:location\#longitude -2.58333e0; + base:location\#wikidata "Q23154"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bristol" . + +base:location\/UK-Kent-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "3333158"; + base:location\#IDLocation "UK-Kent-00"; + base:location\#State base:State-Kent; + base:location\#latitude 5.12167e1; + base:location\#longitude 8.5e-1; + base:location\#wikidata "Q23298"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kent" . + +base:location\/USA-Aust-00 a base:location; + base:location\#City base:City-Austin; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Aust-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.02672e1; + base:location\#longitude -9.776390000000001e1; + base:location\#wikidata "Q16559" . + +base:location\/USA-BloomIl-00 a base:location; + base:location\#City base:City-Bloomington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-BloomIl-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.04842e1; + base:location\#longitude -8.89936e1; + base:location\#wikidata "Q577802"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bloomington,_Illinois" . + +base:location\/USA-Burli-00 a base:location; + base:location\#City base:City-Burlington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4849826"; + base:location\#IDLocation "USA-Burli-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.0808e1; + base:location\#longitude -9.111579999999999e1; + base:location\#wikidata "Q580182"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Burlington,_Iowa" . + +base:location\/USA-CedRap-00 a base:location; + base:location\#City base:City-CedarRapids; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CedRap-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.19831e1; + base:location\#longitude -9.16686e1; + base:location\#wikidata "Q486439" . + +base:location\/USA-ColSpr-00 a base:location; + base:location\#City base:City-ColoradoSprings; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-ColSpr-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.88339e1; + base:location\#longitude -1.04821e2; + base:location\#wikidata "Q49258"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Colorado_Springs,_Colorado" . + +base:location\/USA-Dayt-00 a base:location; + base:location\#City base:City-Dayton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4509884"; + base:location\#IDLocation "USA-Dayt-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.97628e1; + base:location\#longitude -8.419670000000001e1; + base:location\#wikidata "Q34739"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dayton,_Ohio" . + +base:location\/USA-DecatIl-00 a base:location; + base:location\#City base:City-Decatur; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-DecatIl-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.98414e1; + base:location\#longitude -8.89559e1; + base:location\#wikidata "Q506325"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Decatur,_Illinois" . + +base:location\/USA-Dulu-00 a base:location; + base:location\#City base:City-Duluth; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Dulu-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.67864e1; + base:location\#longitude -9.21003e1; + base:location\#wikidata "Q12185551" . + +base:location\/USA-Elm-00 a base:location; + base:location\#City base:City-Elmira; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Elm-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.20938e1; + base:location\#longitude -7.680970000000001e1; + base:location\#wikidata "Q934135" . + +base:location\/USA-FortW-00 a base:location; + base:location\#City base:City-FortWorth; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-FortW-00"; + base:location\#State base:State-Texas; + base:location\#latitude 3.27514e1; + base:location\#longitude -9.73297e1; + base:location\#wikidata "Q16558" . + +base:location\/USA-Fres-00 a base:location; + base:location\#City base:City-Fresno; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Fres-00"; + base:location\#State base:State-California; + base:location\#latitude 3.678e1; + base:location\#longitude -1.1979e2; + base:location\#wikidata "Q43301" . + +base:location\/USA-MNHTN-00 a base:location; + base:location\#City base:City-Manhattan; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5125771"; + base:location\#IDLocation "USA-MNHTN-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.07833e1; + base:location\#longitude -7.39667e1; + base:location\#wikidata "Q11299"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Manhattan" . + +base:location\/USA-Oran-00 a base:location; + base:location\#City base:City-Orange; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5102213"; + base:location\#IDLocation "USA-Oran-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.0768e1; + base:location\#longitude -7.423560000000001e1; + base:location\#wikidata "Q1087121"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Orange,_New_Jersey" . + +base:location\/USA-Preo-00 a base:location; + base:location\#City base:City-Peoria; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4905687"; + base:location\#IDLocation "USA-Preo-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.07206e1; + base:location\#longitude -8.96092e1; + base:location\#wikidata "Q233129"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Peoria,_Illinois" . + +base:location\/USA-Pueb-00 a base:location; + base:location\#City base:City-Pueblo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Pueb-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.82669e1; + base:location\#longitude -1.0462e2; + base:location\#wikidata "Q675576" . + +base:location\/USA-Quinc-00 a base:location; + base:location\#City base:City-Quincy; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Quinc-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.99322e1; + base:location\#longitude -9.13886e1; + base:location\#wikidata "Q575750" . + +base:location\/USA-SBend-00 a base:location; + base:location\#City base:City-SouthBend; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-SBend-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.1675e1; + base:location\#longitude -8.625279999999999e1; + base:location\#wikidata "Q486877" . + +base:location\/USA-Sav-00 a base:location; + base:location\#City base:City-Savannah; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Sav-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.20506e1; + base:location\#longitude -8.11036e1; + base:location\#wikidata "Q83813" . + +base:location\/USA-Springf-00 a base:location; + base:location\#City base:City-Springfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4250542"; + base:location\#IDLocation "USA-Springf-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 3.97833e1; + base:location\#longitude -8.96503e1; + base:location\#wikidata "Q28515"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Springfield,_Illinois" . + +base:location\/USA-Wheel-00 a base:location; + base:location\#City base:City-Wheeling; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5280854"; + base:location\#IDLocation "USA-Wheel-00"; + base:location\#State base:State-WestVirginia; + base:location\#latitude 4.00703e1; + base:location\#longitude -8.06986e1; + base:location\#wikidata "Q838112"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wheeling,_West_Virginia" . + +base:location\/USA-WilkB-00 a base:location; + base:location\#City base:City-Wilkes-Barre; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-WilkB-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.12444e1; + base:location\#longitude -7.58781e1; + base:location\#wikidata "Q745594" . + +base:location\/USA-Worc-00 a base:location; + base:location\#City base:City-Worcester; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Worc-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.22686e1; + base:location\#longitude -7.18036e1; + base:location\#wikidata "Q49179" . + +base:location\/Ukr-DiJeSt-58 a base:location; + base:location\#City base:City-Kamianets-Podilskyi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-58"; + base:location\#latitude 4.86806e1; + base:location\#longitude 2.65806e1; + base:location\#wikidata "Q193965"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/VN-HAN-00 a base:location; + base:location\#City base:City-Hanoi; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Vietnam; + base:location\#GeoNamesID "1581130"; + base:location\#IDLocation "VN-HAN-00"; + base:location\#latitude 2.10333e1; + base:location\#longitude 1.0585e2; + base:location\#wikidata "Q1858"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hanoi" . + +base:organisation\/110 a base:organisation; + base:organisation\#IDOrganisation 110; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/1293 a base:organisation; + base:organisation\#IDOrganisation 1293; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "With Mr. Herne" . + +base:organisation\/135 a base:organisation; + base:organisation\#IDOrganisation 135; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Charles Frohman's company" . + +base:organisation\/142 a base:organisation; + base:organisation\#IDOrganisation 142; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opéra de Paris"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/147 a base:organisation; + base:organisation\#IDOrganisation 147; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Broadway Theatre New York"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1806 a base:organisation; + base:organisation\#IDOrganisation 1806; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Phênix Dramática" . + +base:organisation\/1926 a base:organisation; + base:organisation\#IDOrganisation 1926; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Eldorado" . + +base:organisation\/206 a base:organisation; + base:organisation\#IDOrganisation 206; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Conservatoire de Paris"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/2250 a base:organisation; + base:organisation\#IDOrganisation 2250; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Colonel Miles’s company" . + +base:organisation\/2300 a base:organisation; + base:organisation\#IDOrganisation 2300; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Davidson Theatre" . + +base:organisation\/2776 a base:organisation; + base:organisation\#IDOrganisation 2776; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Opera House" . + +base:organisation\/2796 a base:organisation; + base:organisation\#IDOrganisation 2796; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Columbia Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Bost-00 . + +base:organisation\/2965 a base:organisation; + base:organisation\#IDOrganisation 2965; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Odeón" . + +base:organisation\/304 a base:organisation; + base:organisation\#IDOrganisation 304; + base:organisation\#comment ""; + base:organisation\#inst_name "Universal Pictures" . + +base:organisation\/3145 a base:organisation; + base:organisation\#IDOrganisation 3145; + base:organisation\#comment ""; + base:organisation\#inst_name "Argentores" . + +base:organisation\/3265 a base:organisation; + base:organisation\#IDOrganisation 3265; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Argentino" . + +base:organisation\/3365 a base:organisation; + base:organisation\#IDOrganisation 3365; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Victoria"; + base:organisation\#ref-IDLocation base:location\/ARG-BA-00 . + +base:organisation\/3790 a base:organisation; + base:organisation\#IDOrganisation 3790; + base:organisation\#InstType base:InstitutionType-Casino; + base:organisation\#comment ""; + base:organisation\#inst_name "Cassino da Urca" . + +base:organisation\/389 a base:organisation; + base:organisation\#IDOrganisation 389; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Burgtheater Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/442 a base:organisation; + base:organisation\#IDOrganisation 442; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Konservatorium Wien"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/463 a base:organisation; + base:organisation\#IDOrganisation 463; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre Royal de la Monnaie"; + base:organisation\#ref-IDLocation base:location\/BE-BRU-00 . + +base:organisation\/4664 a base:organisation; + base:organisation\#IDOrganisation 4664; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Opera House Toronto" . + +base:organisation\/4748 a base:organisation; + base:organisation\#IDOrganisation 4748; + base:organisation\#comment ""; + base:organisation\#inst_name "Apollo Theatre, London"; + base:organisation\#ref-IDLocation base:location\/UK-Ldn-00 . + +base:organisation\/4960 a base:organisation; + base:organisation\#IDOrganisation 4960; + base:organisation\#inst_name "Savannah Theatre" . + +base:organisation\/49610 a base:organisation; + base:organisation\#IDOrganisation 49610; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Arbeter Ring (Workmen's Circle)" . + +base:organisation\/5108 a base:organisation; + base:organisation\#IDOrganisation 5108; + base:organisation\#inst_name "Grand Opera House in Minneapolis" . + +base:organisation\/5136 a base:organisation; + base:organisation\#IDOrganisation 5136; + base:organisation\#inst_name "British International Pictures" . + +base:organisation\/5168 a base:organisation; + base:organisation\#IDOrganisation 5168; + base:organisation\#inst_name "Opera House (Springfield)" . + +base:organisation\/5280 a base:organisation; + base:organisation\#IDOrganisation 5280; + base:organisation\#inst_name "Burtis Opera House (Davenport)" . + +base:organisation\/5312 a base:organisation; + base:organisation\#IDOrganisation 5312; + base:organisation\#inst_name "Tootle´s Opera House (St. Joseph)" . + +base:organisation\/54330 a base:organisation; + base:organisation\#IDOrganisation 54330; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Glickman's Yiddish Players" . + +base:organisation\/54410 a base:organisation; + base:organisation\#IDOrganisation 54410; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "Gradina Lieblich Jigniza"; + base:organisation\#ref-IDLocation base:location\/ROU-Buch-00 . + +base:organisation\/55840 a base:organisation; + base:organisation\#IDOrganisation 55840; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Hurwitz Troupe" . + +base:organisation\/57240 a base:organisation; + base:organisation\#IDOrganisation 57240; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lawndale Theatre" . + +base:organisation\/597 a base:organisation; + base:organisation\#IDOrganisation 597; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro República"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/601 a base:organisation; + base:organisation\#IDOrganisation 601; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "João Caetanos's theater company" . + +base:organisation\/61400 a base:organisation; + base:organisation\#IDOrganisation 61400; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Prospect Theatre" . + +base:organisation\/632 a base:organisation; + base:organisation\#IDOrganisation 632; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Vicente Pontes de Oliveira’s theatre company" . + +base:organisation\/671 a base:organisation; + base:organisation\#IDOrganisation 671; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Avenida" . + +base:organisation\/72 a base:organisation; + base:organisation\#IDOrganisation 72; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper Riga" . + +base:organisation\/72177 a base:organisation; + base:organisation\#IDOrganisation 72177; + base:organisation\#inst_name "Society of Friends of Music (New York)"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/72459 a base:organisation; + base:organisation\#IDOrganisation 72459; + base:organisation\#inst_name "Komödienhaus am Schiffbauerdamm" . + +base:organisation\/74 a base:organisation; + base:organisation\#IDOrganisation 74; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Wien" . + +base:organisation\/794 a base:organisation; + base:organisation\#IDOrganisation 794; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Palace Théâtre" . + +base:organisation\/866 a base:organisation; + base:organisation\#IDOrganisation 866; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Rosas & Brazão theater company" . + +base:organisation\/91 a base:organisation; + base:organisation\#IDOrganisation 91; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Bremen"; + base:organisation\#ref-IDLocation base:location\/GER-Brem-00 . + +base:person\/BoyRaf-791 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "BoyRaf-791"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/boyarsky-bogart-rafael.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.12."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1868-12-15"^^xsd:date; + base:person\#birthdate_max "1868-12-15"^^xsd:date; + base:person\#deathdate "1925-08-01"^^xsd:date; + base:person\#deathdate_max "1925-08-01"^^xsd:date; + base:person\#family_name "Boyarsky-Bogart"; + base:person\#first_name "Rafael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-boyarsky-bogart-rafael.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/boyarsky-bogart-rafael.htm"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/ColIsa-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01903552"; + base:person\#GND "https://d-nb.info/gnd/116636602"; + base:person\#IDPerson "ColIsa-00"; + base:person\#ISNI "https://isni.org/isni/0000000116191452"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no99002457"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w61v6mmj#resources"; + base:person\#VIAF "https://viaf.org/viaf/35213234"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q268979"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Isabella_Colbran"; + base:person\#birthdate "1785-02-02"^^xsd:date; + base:person\#birthdate_max "1785-02-02"^^xsd:date; + base:person\#deathdate "1845-10-07"^^xsd:date; + base:person\#deathdate_max "1845-10-07"^^xsd:date; + base:person\#family_name "Colbran"; + base:person\#first_name "Isabella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Isabella_Colbran_by_Reiter.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Isabella_Colbran#/media/Datei:Isabella_Colbran_by_Reiter.jpg"; + base:person\#profession "Opera Singer, Soprano"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/IT-BOL-00 . + +base:person\/DowAda-00 a base:person; + base:person\#IDPerson "DowAda-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Dow"; + base:person\#first_name "Ada Dow"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/ElsHer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116461128"; + base:person\#IDPerson "ElsHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-n97860540/"; + base:person\#VIAF "https://viaf.org/viaf/17974617/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q59653193"; + base:person\#birthdate "1811-04-07"^^xsd:date; + base:person\#birthdate_max "1811-04-07"^^xsd:date; + base:person\#deathdate "1895-03-17"^^xsd:date; + base:person\#deathdate_max "1895-03-17"^^xsd:date; + base:person\#family_name "Elßler"; + base:person\#first_name "Hermine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Dancer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/GroJos-1913 a base:person; + base:person\#IDPerson "GroJos-1913"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/groper-joseph.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.527."""; + base:person\#birthdate "1866-01-01"^^xsd:date; + base:person\#birthdate_max "1866-12-31"^^xsd:date; + base:person\#comment "Buried in Mount Hebron Cemetery, Long Island, New York"; + base:person\#family_name "Groper"; + base:person\#first_name "Joseph"; + base:person\#fuzzybirthdate "1866"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Rom-DiJeSt-92; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/KonFid-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1272689174"; + base:person\#IDPerson "KonFid-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://www.worldcat.org/identities/np-koenig,%20fidele/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220917"; + base:person\#birthdate "1848-04-12"^^xsd:date; + base:person\#birthdate_max "1848-04-12"^^xsd:date; + base:person\#family_name "König"; + base:person\#first_name "Fidèle"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera singer, Singing teacher" . + +base:person\/LeiLil-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250089077"; + base:person\#IDPerson "LeiLil-00"; + base:person\#ISNI "https://isni.org/isni/0000000119149305"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97875048"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bv94ff#resources"; + base:person\#VIAF "https://viaf.org/viaf/170322010"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6548159"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Lillian_Leitzel"; + base:person\#birthdate "1892-01-02"^^xsd:date; + base:person\#birthdate_max "1892-01-02"^^xsd:date; + base:person\#comment " Burial: her ashes were interred at the Inglewood Park Cemetery in Inglewood, California"; + base:person\#deathdate "1931-02-15"^^xsd:date; + base:person\#deathdate_max "1931-02-15"^^xsd:date; + base:person\#family_name "Leitzel"; + base:person\#first_name "Lillian"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lillian_Leitzel_(1931).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q6548159#/media/File:Lillian_Leitzel_(1931).jpg"; + base:person\#profession "Acrobat"; + base:person\#ref-IDBirthPlace base:location\/PL-Bres-00; + base:person\#ref-IDDeathPlace base:location\/DK-Kop-00 . + +base:person\/MacAug-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1111574375"; + base:person\#IDPerson "MacAug-00"; + base:person\#ISNI "https://isni.org/isni/0000000067878425"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr2003003974"; + base:person\#VIAF "https://viaf.org/viaf/27005474/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q9637764"; + base:person\#birthdate "1845-12-27"^^xsd:date; + base:person\#birthdate_max "1845-12-27"^^xsd:date; + base:person\#deathdate "1924-03-26"^^xsd:date; + base:person\#deathdate_max "1924-03-26"^^xsd:date; + base:person\#family_name "Machado"; + base:person\#first_name "Augusto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Augusto_Machado_in_«O_Occidente»_Nº_788_de_10_de_Agosto_de_1900.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q9637764#/media/File:Augusto_Machado_in_%C2%ABO_Occidente%C2%BB_N%C2%BA_788_de_10_de_Agosto_de_1900.png"; + base:person\#profession "Composer, Music Teacher,Theatre Director"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/PT-Liss-00 . + +base:person\/ResJos-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116449667"; + base:person\#IDPerson "ResJos-00"; + base:person\#ISNI "https://isni.org/isni/0000000140546137"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/177911072/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q783639"; + base:person\#birthdate "1855-06-04"^^xsd:date; + base:person\#birthdate_max "1855-06-04"^^xsd:date; + base:person\#deathdate "1891-02-22"^^xsd:date; + base:person\#deathdate_max "1891-02-22"^^xsd:date; + base:person\#family_name "de Reszke"; + base:person\#first_name "Josefine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Józefina_Reszke_portret_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q783639#/media/File:J%C3%B3zefina_Reszke_portret_(cropped).jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/PL-WA-00 . + +base:person\/SchCla-00 a base:person; + base:person\#IDPerson "SchCla-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Schumann"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VakRoz-3138 a base:person; + base:person\#IDPerson "VakRoz-3138"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-roza.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.662."""; + base:person\#birthdate "1874-01-01"^^xsd:date; + base:person\#birthdate_max "1874-12-31"^^xsd:date; + base:person\#family_name "Vaksman"; + base:person\#first_name "Roza"; + base:person\#fuzzybirthdate "1874"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-roza.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-roza.htm"; + base:person\#religion "Jewish" . + +base:person\/WeiSol-3229 a base:person; + base:person\#IDPerson "WeiSol-3229"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weinstein-sol.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.693."""; + base:person\#deathdate "1896-01-01"^^xsd:date; + base:person\#deathdate_max "1896-12-31"^^xsd:date; + base:person\#family_name "Weinstein"; + base:person\#first_name "Sol"; + base:person\#fuzzydeathdate "1896"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDDeathPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:Country-Ireland a base:Country; + rdfs:label "Ireland"@en . + +base:Country-Latvia a base:Country; + rdfs:label "Latvia"@en . + +base:Country-SouthAfrica a base:Country; + rdfs:label "South Africa"@en . + +base:State-Georgia a base:State; + rdfs:label "Georgia"@en . + +base:State-Nebraska a base:State; + rdfs:label "Nebraska"@en . + +base:State-Ontario a base:State; + rdfs:label "Ontario"@en . + +base:location\/ARG-Tucum-00 a base:location; + base:location\#City base:City-Tucuman; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#IDLocation "ARG-Tucum-00"; + base:location\#latitude -2.7e1; + base:location\#longitude -6.55e1; + base:location\#wikidata "Q662" . + +base:location\/BR-Pelot-00 a base:location; + base:location\#City base:City-Pelotas; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3454244"; + base:location\#IDLocation "BR-Pelot-00"; + base:location\#latitude -3.17667e1; + base:location\#longitude -5.23408e1; + base:location\#wikidata "Q109188"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pelotas" . + +base:location\/EG-Cairo-00 a base:location; + base:location\#City base:City-Cairo; + base:location\#Continent base:Continent-NorthAfrica; + base:location\#Country base:Country-Egypt; + base:location\#GeoNamesID "360630"; + base:location\#IDLocation "EG-Cairo-00"; + base:location\#latitude 3.00444e1; + base:location\#longitude 3.12358e1; + base:location\#wikidata "Q85"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cairo" . + +base:location\/FR-Bord-00 a base:location; + base:location\#City base:City-Bordeaux; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3031582"; + base:location\#IDLocation "FR-Bord-00"; + base:location\#latitude 4.484e1; + base:location\#longitude -5.8e-1; + base:location\#wikidata "Q1479"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bordeaux" . + +base:location\/GER-Augsb-00 a base:location; + base:location\#City base:City-Augsburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2954172"; + base:location\#IDLocation "GER-Augsb-00"; + base:location\#latitude 4.83667e1; + base:location\#longitude 1.09e1; + base:location\#wikidata "Q2749"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Augsburg" . + +base:location\/GER-Ddorf-00 a base:location; + base:location\#City base:City-Duesseldorf; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2934246"; + base:location\#IDLocation "GER-Ddorf-00"; + base:location\#latitude 5.12333e1; + base:location\#longitude 6.78333e0; + base:location\#wikidata "Q1718"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/D%C3%BCsseldorf" . + +base:location\/GER-Hall-00 a base:location; + base:location\#City base:City-Halle; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2911522"; + base:location\#IDLocation "GER-Hall-00"; + base:location\#latitude 5.14828e1; + base:location\#longitude 1.19697e1; + base:location\#wikidata "Q2814"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Halle_(Saale)" . + +base:location\/IE-Dubl-00 a base:location; + base:location\#City base:City-Dublin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ireland; + base:location\#GeoNamesID "2964574"; + base:location\#IDLocation "IE-Dubl-00"; + base:location\#latitude 5.33497e1; + base:location\#longitude -6.26028e0; + base:location\#wikidata "Q1761"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dublin" . + +base:location\/Mol-DiJeSt-73 a base:location; + base:location\#City base:City-Chi\%C8\%99in\%C4\%83u; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Moldova; + base:location\#IDLocation "Mol-DiJeSt-73"; + base:location\#latitude 4.70228e1; + base:location\#longitude 2.88353e1; + base:location\#wikidata "Q21197"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/NZ-00 a base:location; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2186224"; + base:location\#IDLocation "NZ-00"; + base:location\#latitude -4.2e1; + base:location\#longitude 1.73e2; + base:location\#wikidata "Q664"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Zealand" . + +base:location\/PL-Bresl-00 a base:location; + base:location\#City base:City-Breslau; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Bresl-00"; + base:location\#latitude 5.111e1; + base:location\#longitude 1.70322e1; + base:location\#wikidata "https://www.wikidata.org/wiki/Q446805"; + base:location\#wikipedia "https://de.wikipedia.org/wiki/Breslau" . + +base:location\/ROU-Timis-00 a base:location; + base:location\#City base:City-Timi\%C8\%99oara; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "665087"; + base:location\#IDLocation "ROU-Timis-00"; + base:location\#latitude 4.57561e1; + base:location\#longitude 2.12294e1; + base:location\#wikidata "Q83404"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Timi%C8%99oara" . + +base:location\/RUS-Kali-00 a base:location; + base:location\#City base:City-Kaliningrad; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#GeoNamesID "554234"; + base:location\#IDLocation "RUS-Kali-00"; + base:location\#latitude 5.47167e1; + base:location\#longitude 2.05167e1; + base:location\#wikidata "Q1829"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/K%C3%B6nigsberg" . + +base:location\/SCT-Glasg-00 a base:location; + base:location\#City base:City-Glasgow; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2648579"; + base:location\#IDLocation "SCT-Glasg-00"; + base:location\#latitude 5.58609e1; + base:location\#longitude -4.25143e0; + base:location\#wikidata "Q4093"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Glasgow" . + +base:location\/UK-Bright-00 a base:location; + base:location\#City base:City-Brighton; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2654710"; + base:location\#IDLocation "UK-Bright-00"; + base:location\#latitude 5.08242e1; + base:location\#longitude -1.33889e-1; + base:location\#wikidata "Q131491"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brighton" . + +base:location\/USA-Atla-00 a base:location; + base:location\#City base:City-Atlanta; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Atla-00"; + base:location\#State base:State-Georgia; + base:location\#latitude 3.37569e1; + base:location\#longitude -8.43903e1; + base:location\#wikidata "Q23556" . + +base:location\/USA-BayC-00 a base:location; + base:location\#City base:City-BayCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-BayC-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.3595e1; + base:location\#longitude -8.38886e1; + base:location\#wikidata "Q746820" . + +base:location\/USA-Birm-00 a base:location; + base:location\#City base:City-Birmingham; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Birm-00"; + base:location\#State base:State-Alabama; + base:location\#latitude 3.35247e1; + base:location\#longitude -8.68128e1; + base:location\#wikidata "Q79867" . + +base:location\/USA-CSanD-00 a base:location; + base:location\#City base:City-SanDiego; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CSanD-00"; + base:location\#State base:State-California; + base:location\#latitude 3.2715e1; + base:location\#longitude -1.17162e2; + base:location\#wikidata "Q16552" . + +base:location\/USA-DMoi-00 a base:location; + base:location\#City base:City-DesMoines; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-DMoi-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.15886e1; + base:location\#longitude -9.36161e1; + base:location\#wikidata "Q39709" . + +base:location\/USA-Davep-00 a base:location; + base:location\#City base:City-Davenport; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Davep-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.15431e1; + base:location\#longitude -9.05908e1; + base:location\#wikidata "Q26887" . + +base:location\/USA-Harrisb-00 a base:location; + base:location\#City base:City-Harrisburg; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5192726"; + base:location\#IDLocation "USA-Harrisb-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.02734e1; + base:location\#longitude -7.68845e1; + base:location\#wikidata "Q25280"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Harrisburg,_Pennsylvania" . + +base:location\/USA-Houst-00 a base:location; + base:location\#City base:City-Houston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4699066"; + base:location\#IDLocation "USA-Houst-00"; + base:location\#State base:State-Texas; + base:location\#latitude 2.97628e1; + base:location\#longitude -9.53831e1; + base:location\#wikidata "Q16555"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Houston" . + +base:location\/USA-Madi-00 a base:location; + base:location\#City base:City-Madison; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Madi-00"; + base:location\#State base:State-Wisconsin; + base:location\#latitude 4.30747e1; + base:location\#longitude -8.938420000000001e1; + base:location\#wikidata "Q43788"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Madison,_Wisconsin" . + +base:location\/USA-SaltL-00 a base:location; + base:location\#City base:City-SaltLakeCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5780993"; + base:location\#IDLocation "USA-SaltL-00"; + base:location\#State base:State-Utah; + base:location\#latitude 4.07547e1; + base:location\#longitude -1.11893e2; + base:location\#wikidata "Q23337"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Salt_Lake_City" . + +base:location\/USA-Sioux-00 a base:location; + base:location\#City base:City-SiouxCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Sioux-00"; + base:location\#State base:State-Iowa; + base:location\#latitude 4.12536e1; + base:location\#longitude -9.58625e1; + base:location\#wikidata "Q489255" . + +base:location\/USA-StJos-00 a base:location; + base:location\#City base:City-SaintJoseph; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-StJos-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.97581e1; + base:location\#longitude -9.483669999999999e1; + base:location\#wikidata "Q745120" . + +base:location\/USA-Tac-00 a base:location; + base:location\#City base:City-Tacoma; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Tac-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.72414e1; + base:location\#longitude -1.22459e2; + base:location\#wikidata "Q199797" . + +base:location\/USA-Watert-00 a base:location; + base:location\#City base:City-Watertown; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4845193"; + base:location\#IDLocation "USA-Watert-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.16147e1; + base:location\#longitude -7.31331e1; + base:location\#wikidata "Q49178"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Watertown,_Connecticut" . + +base:location\/Ukr-DiJeSt-19 a base:location; + base:location\#City base:City-Zhytomyr; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-19"; + base:location\#latitude 5.02544e1; + base:location\#longitude 2.86578e1; + base:location\#wikidata "Q156713"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/108 a base:organisation; + base:organisation\#IDOrganisation 108; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hoftheater Hannover"; + base:organisation\#ref-IDLocation base:location\/GER-HAJ-00 . + +base:organisation\/121 a base:organisation; + base:organisation\#IDOrganisation 121; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Stadttheater Hamburg"; + base:organisation\#ref-IDLocation base:location\/GER-HH-00 . + +base:organisation\/1281 a base:organisation; + base:organisation\#IDOrganisation 1281; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lingard´s company" . + +base:organisation\/1390 a base:organisation; + base:organisation\#IDOrganisation 1390; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Brooklyn Academy of Music"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1951 a base:organisation; + base:organisation\#IDOrganisation 1951; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Mlle. Aimée’ s opéra bouffe company" . + +base:organisation\/196 a base:organisation; + base:organisation\#IDOrganisation 196; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Theater Stockholm"; + base:organisation\#ref-IDLocation base:location\/SE-Stock-00 . + +base:organisation\/2046 a base:organisation; + base:organisation\#IDOrganisation 2046; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Booth’s Theatre" . + +base:organisation\/2051 a base:organisation; + base:organisation\#IDOrganisation 2051; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Bouffe" . + +base:organisation\/2305 a base:organisation; + base:organisation\#IDOrganisation 2305; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Sothern-Marlowe tour Company" . + +base:organisation\/2470 a base:organisation; + base:organisation\#IDOrganisation 2470; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "The Academy of Music" . + +base:organisation\/257 a base:organisation; + base:organisation\#IDOrganisation 257; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Walnut Theatre Philadelphia" . + +base:organisation\/3155 a base:organisation; + base:organisation\#IDOrganisation 3155; + base:organisation\#comment ""; + base:organisation\#inst_name "Ateneo Cultural Eva Perón" . + +base:organisation\/3385 a base:organisation; + base:organisation\#IDOrganisation 3385; + base:organisation\#comment ""; + base:organisation\#inst_name "Sala Rex" . + +base:organisation\/4370 a base:organisation; + base:organisation\#IDOrganisation 4370; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre des Menus-Plasirs" . + +base:organisation\/450 a base:organisation; + base:organisation\#IDOrganisation 450; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofoper Dresden"; + base:organisation\#ref-IDLocation base:location\/GER-Dresd-00 . + +base:organisation\/4704 a base:organisation; + base:organisation\#IDOrganisation 4704; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Albany Proctor's Leland Theater" . + +base:organisation\/4712 a base:organisation; + base:organisation\#IDOrganisation 4712; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Rapids Powers' Grand Opera House" . + +base:organisation\/4944 a base:organisation; + base:organisation\#IDOrganisation 4944; + base:organisation\#inst_name "Euclid Avenue Opera House in Cleveland" . + +base:organisation\/5140 a base:organisation; + base:organisation\#IDOrganisation 5140; + base:organisation\#inst_name "Gaumont British" . + +base:organisation\/5152 a base:organisation; + base:organisation\#IDOrganisation 5152; + base:organisation\#inst_name "Providence Opera House (Providence)" . + +base:organisation\/5160 a base:organisation; + base:organisation\#IDOrganisation 5160; + base:organisation\#inst_name "New Haven Opera House" . + +base:organisation\/5529 a base:organisation; + base:organisation\#IDOrganisation 5529; + base:organisation\#inst_name "Hyperion Theatre, New Haven" . + +base:organisation\/56190 a base:organisation; + base:organisation\#IDOrganisation 56190; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Jardin d'Hiver"; + base:organisation\#ref-IDLocation base:location\/PL-WA-00 . + +base:organisation\/62050 a base:organisation; + base:organisation\#IDOrganisation 62050; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Roumanian Opera House|Central Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/626 a base:organisation; + base:organisation\#IDOrganisation 626; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Ginásio Dramático"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/631 a base:organisation; + base:organisation\#IDOrganisation 631; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Germano Francisco de Oliveira’s theatre company" . + +base:organisation\/634 a base:organisation; + base:organisation\#IDOrganisation 634; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Associação Lírica Dramática theatre company" . + +base:organisation\/68140 a base:organisation; + base:organisation\#IDOrganisation 68140; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Theatre Society" . + +base:organisation\/69650 a base:organisation; + base:organisation\#IDOrganisation 69650; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Tsukerman's Troupe" . + +base:organisation\/70384 a base:organisation; + base:organisation\#IDOrganisation 70384; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Kalmen Juvelier's troupe" . + +base:organisation\/72187 a base:organisation; + base:organisation\#IDOrganisation 72187; + base:organisation\#comment "Bühnenvertrieb"; + base:organisation\#inst_name "Gustav Kiepenheuer Verlags" . + +base:organisation\/83 a base:organisation; + base:organisation\#IDOrganisation 83; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Royal Opera House , London"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:person\/AxeMin-1205 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "AxeMin-1205"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-minnie.htm + +http://studia.ubbcluj.ro/download/pdf/1204.pdf + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.88."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1893-04-07"^^xsd:date; + base:person\#birthdate_max "1893-04-07"^^xsd:date; + base:person\#family_name "Axelrad"; + base:person\#first_name "Minnie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-akselrad-minnie.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-minnie.htm"; + base:person\#ref-IDBirthPlace base:location\/ROU-Buch-00; + base:person\#religion "Jewish" . + +base:person\/AxeRos-980 a base:person; + base:person\#Birth_Info "or Roman or Galatz (Galati), Rumania"; + base:person\#IDPerson "AxeRos-980"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-rosa.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.89."""; + base:person\#comment "Buried in Jewish cemetery in Bucharest"; + base:person\#deathdate "1914-01-01"^^xsd:date; + base:person\#deathdate_max "1915-12-31"^^xsd:date; + base:person\#family_name "Axelrad"; + base:person\#first_name "Rosa"; + base:person\#fuzzydeathdate "1914 or 1915"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/ROU-Buch-00; + base:person\#religion "Jewish" . + +base:person\/AxeRuk-1207 a base:person; + base:person\#IDPerson "AxeRuk-1207"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-rukhl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.89."""; + base:person\#family_name "Axelrad"; + base:person\#first_name "Rukhl"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#religion "Jewish" . + +base:person\/BruMax-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "http://d-nb.info/gnd/118674501"; + base:person\#IDPerson "BruMax-00"; + base:person\#ISNI "https://isni.org/isni/0000000121181101 "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "https://snaccooperative.org/view/13557568"; + base:person\#VIAF "http://viaf.org/viaf/2655561"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q106434 "; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Max_Bruch"; + base:person\#birthdate "1838-01-06"^^xsd:date; + base:person\#birthdate_max "1838-01-06"^^xsd:date; + base:person\#comment "buried in Alter St.-Matthäus-Kirchhof Berlin"; + base:person\#deathdate "1920-10-01"^^xsd:date; + base:person\#deathdate_max "1920-10-01"^^xsd:date; + base:person\#family_name "Bruch"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/550px-Max_bruch.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q106434#/media/File:Max_bruch.jpg"; + base:person\#ref-IDBirthPlace base:location\/GER-Col-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/DarHar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1033568406"; + base:person\#IDPerson "DarHar-00"; + base:person\#ISNI "https://isni.org/isni/0000000035455938"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n95075676"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w69p3w1v"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/31246810/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q579461"; + base:person\#birthdate "1860-06-10"^^xsd:date; + base:person\#birthdate_max "1860-06-10"^^xsd:date; + base:person\#comment "She has received several awards, among others the Order \"Bene Merenti\" Class of Carol I, as well as the Ottoman \"Artistic Medal\" and the \"Grand Officer Sefakatului\". She spoke German, French, Italian, Spanish, English, Greek and Russian. Her funeral was payed by the Italian embassy"; + base:person\#deathdate "1939-01-10"^^xsd:date; + base:person\#deathdate_max "1939-01-10"^^xsd:date; + base:person\#family_name "Darclée"; + base:person\#first_name "Hariclea"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hariclea_Darclee_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q579461#/media/File:Hariclea_Darclee_(cropped).jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/ROU-Brail-00; + base:person\#ref-IDDeathPlace base:location\/ROU-Buch-00 . + +base:person\/EibSie-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/143984314"; + base:person\#IDPerson "EibSie-00"; + base:person\#ISNI "https://isni.org/isni/0000000118737850"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2007037185"; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/21916269"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2284064"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Siegmund_Eibensch%C3%BCtz"; + base:person\#birthdate "1856-11-19"^^xsd:date; + base:person\#birthdate_max "1856-11-19"^^xsd:date; + base:person\#deathdate "1922-02-19"^^xsd:date; + base:person\#deathdate_max "1922-02-19"^^xsd:date; + base:person\#family_name "Eibenschütz"; + base:person\#first_name "Siegmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Siegmund_Eibenschuetz_1902_Vilimek.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2284064#/media/File:Siegmund_Eibenschuetz_1902_Vilimek.jpg"; + base:person\#profession "Theatre Manager, Conductor, Opera Correpetitor"; + base:person\#ref-IDBirthPlace base:location\/HU-Buda-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/GreCha-1897 a base:person; + base:person\#IDPerson "GreCha-1897"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/greenshpan-chaim.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.537."""; + base:person\#birthdate "1889-01-01"^^xsd:date; + base:person\#birthdate_max "1889-12-31"^^xsd:date; + base:person\#deathdate "1908-01-01"^^xsd:date; + base:person\#deathdate_max "1908-12-31"^^xsd:date; + base:person\#family_name "Greenshpan"; + base:person\#first_name "Chaim"; + base:person\#fuzzybirthdate "1889"; + base:person\#fuzzydeathdate "1908"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/Ukr-DiJeSt-153; + base:person\#religion "Jewish" . + +base:person\/GunRao-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1030139210"; + base:person\#IDPerson "GunRao-00"; + base:person\#ISNI "https://isni.org/isni/0000000110677179"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no88005294"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6sr1vqp#resources"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/64184994"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q28265"; + base:person\#birthdate "1860-01-06"^^xsd:date; + base:person\#birthdate_max "1860-01-06"^^xsd:date; + base:person\#deathdate "1955-05-31"^^xsd:date; + base:person\#deathdate_max "1955-05-31"^^xsd:date; + base:person\#family_name "Gunsbourg"; + base:person\#first_name "Raoul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Raoul_Gunsbourg_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q28265#/media/File:Raoul_Gunsbourg_(cropped).jpg"; + base:person\#profession "director,composer"; + base:person\#ref-IDBirthPlace base:location\/ROU-Buch-00; + base:person\#ref-IDDeathPlace base:location\/MC-MtCarlo-00 . + +base:person\/HadEst-1958 a base:person; + base:person\#IDPerson "HadEst-1958"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/H/hadassah-esther.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.591."""; + base:person\#birthdate "1897-05-13"^^xsd:date; + base:person\#birthdate_max "1897-05-13"^^xsd:date; + base:person\#family_name "Hadassah"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-hadasah-esther.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/H/hadassah-esther.htm"; + base:person\#religion "Jewish" . + +base:person\/HamOsc-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/121911705"; + base:person\#IDPerson "HamOsc-00"; + base:person\#ISNI "https://isni.org/isni/0000000117769797"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no98124146"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6m3380w"; + base:person\#VIAF "https://viaf.org/viaf/97883966"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q214394"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Oscar_Hammerstein_I"; + base:person\#birthdate "1847-05-08"^^xsd:date; + base:person\#birthdate_max "1847-05-08"^^xsd:date; + base:person\#comment "Died 1919 in Manhattan Lenox Hill Hospital of kidneyproblems and paralysis. Interred in Woodlawn Cemetery (Bronx, New York) "; + base:person\#deathdate "1919-08-01"^^xsd:date; + base:person\#deathdate_max "1919-08-01"^^xsd:date; + base:person\#family_name "Hammerstein"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Oscar_Hammerstein_001.jpeg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q214394#/media/File:Oscar_Hammerstein_001.JPG"; + base:person\#profession "Impresario, Composer"; + base:person\#ref-IDBirthPlace base:location\/PL-SZ-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/HerLeo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/127264880X"; + base:person\#IDPerson "HerLeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220782"; + base:person\#birthdate "1876-03-13"^^xsd:date; + base:person\#birthdate_max "1876-03-13"^^xsd:date; + base:person\#comment "Introduced as Alexander Herrmanns successor on the 10 January 1897."; + base:person\#deathdate "1909-05-16"^^xsd:date; + base:person\#deathdate_max "1909-05-16"^^xsd:date; + base:person\#family_name "Herrmann"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leon-Herrmann.jpg"; + base:person\#image_source "https://mattsko.com/2015/08/11/leon-herrmann-magician/"; + base:person\#profession "Magier"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/IbuJ-00 a base:person; + base:person\#IDPerson "IbuJ-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source """ +The Japan Weekly Mail. 10th March 1888, p. 216: https://archive.org/details/jwm-bound-1888.1-6/page/216/mode/2up?q=Iburg. + +North China Herald. 24th February 1888, p. 199: https://archive.org/details/north-china-herald-1888.02.24/page/n1/mode/2up?q=Iburg. + +Kathleen L. Lodwick: The Chinese recorder, Shanghai: T. Chu [etc.] 1868, p. 148, https://archive.org/details/chineserecorder19lodwuoft/page/148/mode/2up?q=Iburg. + +North China Herald. 26th February 1874, p. 176: https://archive.org/details/north-china-herald-1874.02.26/page/176/mode/2up?q=Iburg. + +North China Herald, 04th March 1875, p. 209, https://archive.org/details/north-china-herald-1875.03.04/page/208/mode/2up?q=Iburg. + +The Japan Weekly Mail. 17th July 1880, p. 915: https://archive.org/details/jwm-bound-1880.5-8/page/934/mode/2up?q=Iburg. + +Musical performances at Felix Meritis. Program for Friday 20th February 1857, https://www.vondel.humanities.uva.nl/felix/concerts/553."""; + base:person\#birthdate "1836-01-01"^^xsd:date; + base:person\#birthdate_max "1836-12-31"^^xsd:date; + base:person\#deathdate "1888-02-23"^^xsd:date; + base:person\#deathdate_max "1888-02-23"^^xsd:date; + base:person\#family_name "Iburg"; + base:person\#first_name "J.C.H."; + base:person\#fuzzybirthdate "1836"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Musician"; + base:person\#ref-IDBirthPlace base:location\/NL-00; + base:person\#ref-IDDeathPlace base:location\/CN-SH-00 . + +base:person\/KomLea-2132 a base:person; + base:person\#IDPerson "KomLea-2132"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-leah.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5327."""; + base:person\#comment "Buried in Cimetière de Bagneux, Paris"; + base:person\#family_name "Kompaneyets"; + base:person\#first_name "Leah"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-57; + base:person\#religion "Jewish" . + +base:person\/LinPau-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118573071"; + base:person\#IDPerson "LinPau-00"; + base:person\#ISNI "https://isni.org/isni/0000000108577662"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82048692"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6s47n0v"; + base:person\#VIAF "https://viaf.org/viaf/56796803"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q712729"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Paul_Lincke"; + base:person\#birthdate "1866-11-07"^^xsd:date; + base:person\#birthdate_max "1866-11-07"^^xsd:date; + base:person\#deathdate "1946-09-03"^^xsd:date; + base:person\#deathdate_max "1946-09-03"^^xsd:date; + base:person\#family_name "Lincke"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Photo_-_Portrait_des_Paul_Lincke_-_1905.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Paul_Lincke#/media/Datei:Photo_-_Portrait_des_Paul_Lincke_-_1905.jpg"; + base:person\#profession "Conductor, Composer"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/GER-GOSLAR-00 . + +base:person\/LisFra-00 a base:person; + base:person\#IDPerson "LisFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Liszt"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/VelMel-00 a base:person; + base:person\#IDPerson "VelMel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """# +Hongyu Gong: “Beethoven in Semi-colonial Shanghai (1880-1899),” in Journal of Wuhan Conservatory of Music, no. 1, 2017, pp.169-177. +# +Chun-Zen Huang: “Opera Activities in Shanghai Concessions in the Late Qing and Early Republican Periods (Ⅰ),” in Music Browser, no. 2, 1999, pp.2-7, https://ebook.culture.tw/publication/2022-02-08/1a73ba19-8049-41ed-8fb4-7124a8ed7fe4/4/."""; + base:person\#family_name "Vela"; + base:person\#first_name "Melchior"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Musician, Conductor"; + base:person\#ref-IDBirthPlace base:location\/ES-00 . + +base:Country-China a base:Country; + rdfs:label "China"@en . + +base:Country-Hungary a base:Country; + rdfs:label "Hungary"@en . + +base:Country-Russia a base:Country; + rdfs:label "Russia"@en . + +base:RelationshipType-student a base:RelationshipType; + rdfs:label "student"@en . + +base:RelationshipTypePrecise-Aunt a base:RelationshipTypePrecise; + rdfs:label "Aunt"@en . + +base:State-Montana a base:State; + rdfs:label "Montana"@en . + +base:location\/BR-Manaus-00 a base:location; + base:location\#City base:City-Manaus; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3663517"; + base:location\#IDLocation "BR-Manaus-00"; + base:location\#latitude -3.1e0; + base:location\#longitude -6.00167e1; + base:location\#wikidata "Q40236"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Manaus" . + +base:location\/ES-Coruna-00 a base:location; + base:location\#City base:City-ACoru\%C3\%B1a; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3119841"; + base:location\#IDLocation "ES-Coruna-00"; + base:location\#latitude 4.33628e1; + base:location\#longitude -8.404719999999999e0; + base:location\#wikidata "Q8757"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/A_Coru%C3%B1a" . + +base:location\/ES-Tener-00 a base:location; + base:location\#City base:City-Tenerife; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2511174"; + base:location\#IDLocation "ES-Tener-00"; + base:location\#State base:State-CanaryIslands; + base:location\#latitude 2.83167e1; + base:location\#longitude -1.65667e1; + base:location\#wikidata "Q40846"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Tenerife" . + +base:location\/FR-Met-00 a base:location; + base:location\#City base:City-Metz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2994160"; + base:location\#IDLocation "FR-Met-00"; + base:location\#latitude 4.91203e1; + base:location\#longitude 6.17778e0; + base:location\#wikidata "Q22690"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Metz" . + +base:location\/FR-Toulo-00 a base:location; + base:location\#City base:City-Toulouse; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2972315"; + base:location\#IDLocation "FR-Toulo-00"; + base:location\#latitude 4.36044e1; + base:location\#longitude 1.44194e0; + base:location\#wikidata "Q7880"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Toulouse" . + +base:location\/IT-Tur-00 a base:location; + base:location\#City base:City-Turin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3165524"; + base:location\#IDLocation "IT-Tur-00"; + base:location\#latitude 4.50792e1; + base:location\#longitude 7.67611e0; + base:location\#wikidata "Q495"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Turin" . + +base:location\/NL-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2750405"; + base:location\#IDLocation "NL-00"; + base:location\#latitude 5.23167e1; + base:location\#longitude 5.55e0; + base:location\#wikidata "Q55"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Netherlands" . + +base:location\/NZ-Auck-00 a base:location; + base:location\#City base:City-Auckland; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2193733"; + base:location\#IDLocation "NZ-Auck-00"; + base:location\#latitude -3.68333e1; + base:location\#longitude 1.748e2; + base:location\#wikidata "Q37100"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Auckland" . + +base:location\/NZ-ChristChurch-00 a base:location; + base:location\#City base:City-Christchurch; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2192362"; + base:location\#IDLocation "NZ-ChristChurch-00"; + base:location\#latitude -4.35311e1; + base:location\#longitude 1.72637e2; + base:location\#wikidata "Q79990"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Christchurch" . + +base:location\/PT-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2264397"; + base:location\#IDLocation "PT-00"; + base:location\#latitude 3.93833e1; + base:location\#longitude -8.199999999999999e0; + base:location\#wikidata "Q45"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Portugal" . + +base:location\/USA-CSanJ-00 a base:location; + base:location\#City base:City-SanJose; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-CSanJ-00"; + base:location\#State base:State-California; + base:location\#latitude 3.73042e1; + base:location\#longitude -1.21873e2; + base:location\#wikidata "Q16553" . + +base:location\/USA-Colum-00 a base:location; + base:location\#City base:City-Columbus; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4509177"; + base:location\#IDLocation "USA-Colum-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.99621e1; + base:location\#longitude -8.29986e1; + base:location\#wikidata "Q16567"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Columbus,_Ohio" . + +base:location\/USA-Kalamz-00 a base:location; + base:location\#City base:City-Kalamazoo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Kalamz-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.229e1; + base:location\#longitude -8.559e1; + base:location\#wikidata "Q167155" . + +base:location\/USA-Norf-00 a base:location; + base:location\#City base:City-Norfolk; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Norf-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.691e1; + base:location\#longitude -7.620189999999999e1; + base:location\#wikidata "Q49231" . + +base:location\/USA-Portl-00 a base:location; + base:location\#City base:City-Portland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5746545"; + base:location\#IDLocation "USA-Portl-00"; + base:location\#State base:State-Oregon; + base:location\#latitude 4.552e1; + base:location\#longitude -1.22682e2; + base:location\#wikidata "Q6106"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Portland,_Oregon" . + +base:location\/USA-SprinFie-00 a base:location; + base:location\#City base:City-Springfield; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4951788"; + base:location\#IDLocation "USA-SprinFie-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.21013e1; + base:location\#longitude -7.25902e1; + base:location\#wikidata "Q49158"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Springfield,_Massachusetts" . + +base:location\/USA-TerHau-00 a base:location; + base:location\#City base:City-TerreHaute; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-TerHau-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.94697e1; + base:location\#longitude -8.73897e1; + base:location\#wikidata "Q492478" . + +base:location\/USA-Tol-00 a base:location; + base:location\#City base:City-Toledo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Tol-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.16653e1; + base:location\#longitude -8.3575e1; + base:location\#wikidata "Q49239"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Toledo,_Ohio" . + +base:location\/Ukr-DiJeSt-122 a base:location; + base:location\#City base:City-Dnipro; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-122"; + base:location\#latitude 4.84675e1; + base:location\#longitude 3.504e1; + base:location\#wikidata "Q48256"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/1360 a base:organisation; + base:organisation\#IDOrganisation 1360; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Empire Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1756 a base:organisation; + base:organisation\#IDOrganisation 1756; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Lírico Fluminense" . + +base:organisation\/2001 a base:organisation; + base:organisation\#IDOrganisation 2001; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "New Parisian Opera Bouffe"; + base:organisation\#ref-IDLocation base:location\/USA-NewOrl-00 . + +base:organisation\/213 a base:organisation; + base:organisation\#IDOrganisation 213; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Thalia Theatre (NY)" . + +base:organisation\/2395 a base:organisation; + base:organisation\#IDOrganisation 2395; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Company" . + +base:organisation\/2425 a base:organisation; + base:organisation\#IDOrganisation 2425; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "The Max Maretzek Italian Opera Company" . + +base:organisation\/258 a base:organisation; + base:organisation\#IDOrganisation 258; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "National Theatre of Washington D.C." . + +base:organisation\/269 a base:organisation; + base:organisation\#IDOrganisation 269; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Drury Lane Theatre" . + +base:organisation\/3135 a base:organisation; + base:organisation\#IDOrganisation 3135; + base:organisation\#InstType base:InstitutionType-Other; + base:organisation\#comment ""; + base:organisation\#inst_name "Academia Argentina de Letras" . + +base:organisation\/3270 a base:organisation; + base:organisation\#IDOrganisation 3270; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Cervantes" . + +base:organisation\/3290 a base:organisation; + base:organisation\#IDOrganisation 3290; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro del Pueblo" . + +base:organisation\/3900 a base:organisation; + base:organisation\#IDOrganisation 3900; + base:organisation\#comment ""; + base:organisation\#inst_name "MGM" . + +base:organisation\/406 a base:organisation; + base:organisation\#IDOrganisation 406; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "BBC" . + +base:organisation\/422 a base:organisation; + base:organisation\#IDOrganisation 422; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Krollopera"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/4415 a base:organisation; + base:organisation\#IDOrganisation 4415; + base:organisation\#comment ""; + base:organisation\#inst_name "Touring Opera Company" . + +base:organisation\/4700 a base:organisation; + base:organisation\#IDOrganisation 4700; + base:organisation\#comment ""; + base:organisation\#inst_name "Syracuse Wieting Theate" . + +base:organisation\/4744 a base:organisation; + base:organisation\#IDOrganisation 4744; + base:organisation\#comment ""; + base:organisation\#inst_name "Detroit Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Detroit-00 . + +base:organisation\/484 a base:organisation; + base:organisation\#IDOrganisation 484; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Pariser Grand Opéra"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/52800 a base:organisation; + base:organisation\#IDOrganisation 52800; + base:organisation\#InstType base:InstitutionType-Amateur; + base:organisation\#comment ""; + base:organisation\#inst_name "Dramatic Arts" . + +base:organisation\/593 a base:organisation; + base:organisation\#IDOrganisation 593; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Lucinda Simões Company" . + +base:organisation\/68230 a base:organisation; + base:organisation\#IDOrganisation 68230; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Yosef Vaynshtok Troupe" . + +base:organisation\/78 a base:organisation; + base:organisation\#IDOrganisation 78; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper Leipzig"; + base:organisation\#ref-IDLocation base:location\/GER-Leip-00 . + +base:person\/CorBla-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116672331"; + base:person\#IDPerson "CorBla-00"; + base:person\#ISNI "https://isni.org/isni/000000000999265X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/42595000"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q95195430"; + base:person\#birthdate "1858-02-04"^^xsd:date; + base:person\#birthdate_max "1858-02-04"^^xsd:date; + base:person\#comment "Queen of Illusion"; + base:person\#deathdate "1939-12-25"^^xsd:date; + base:person\#deathdate_max "1939-12-25"^^xsd:date; + base:person\#family_name "Corelli"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00 . + +base:person\/DavJam-00 a base:person; + base:person\#IDPerson "DavJam-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#family_name "Davison"; + base:person\#first_name "James William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/FreEnr-00 a base:person; + base:person\#Birth_Info "1847-01-01- 1847-12-31"; + base:person\#IDPerson "FreEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikisource: Enrique Frexas de Sabater, online: https://es.wikisource.org/wiki/Autor:Enrique_Frexas_de_SabaterBiblioteca Digital Hispánica, online: https://bdh.bne.es/bnesearch/q/autor/FrexasAlmanaque satírico e ilustrado, con grabados +originales, Barcelona: Gaceta Universal 1866, online: chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://hemerotecadigital.bne.es/hd/pdf?oid=0004016687 + +  + +"""; + base:person\#VIAF "-https://viaf.org/en/viaf/search?field=local.names&index=viaf&"; + base:person\#Wikidata "-https://www.wikidata.org/wiki/Q55837880"; + base:person\#deathdate "1905-06-05"^^xsd:date; + base:person\#family_name "Frexas"; + base:person\#first_name "Enrique"; + base:person\#fuzzybirthdate "1847"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Enrique_Frexas.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q55837880"; + base:person\#ref-IDBirthPlace base:location\/ES-Murc-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/HolVic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116961945"; + base:person\#IDPerson "HolVic-00"; + base:person\#ISNI "https://isni.org/isni/0000000120266939"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89004191"; + base:person\#VIAF "https://viaf.org/viaf/59350558"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q216656"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Victor_Hollaender"; + base:person\#birthdate "1866-04-20"^^xsd:date; + base:person\#birthdate_max "1866-04-20"^^xsd:date; + base:person\#comment "died in Hollywood, USA"; + base:person\#family_name "Hollaender"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Hollaender_(1866–1940).png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q216656#/media/File:Victor_Hollaender_(1866%E2%80%931940).png"; + base:person\#profession "Pianist, Composer,Conductor"; + base:person\#ref-IDBirthPlace base:location\/PL-Loeb-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00 . + +base:person\/KomIsr-2131 a base:person; + base:person\#IDPerson "KomIsr-2131"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/moyt/lex/K/kompaneyets-israel-V5.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 5, Mexico City: 1967, p.4254."""; + base:person\#birthdate "1900-01-01"^^xsd:date; + base:person\#birthdate_max "1900-12-31"^^xsd:date; + base:person\#family_name "Kompaneyets"; + base:person\#first_name "Israel"; + base:person\#fuzzybirthdate "1900"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Israel Kompaneyets.png"; + base:person\#image_source "https://digipres.cjh.org/delivery/DeliveryManagerServlet?dps_pid=IE10751213"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-31; + base:person\#religion "Jewish" . + +base:person\/NebHei-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/126595895"; + base:person\#IDPerson "NebHei-00"; + base:person\#ISNI "https://isni.org/isni/0000000054097734"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2003039431"; + base:person\#VIAF "https://viaf.org/viaf/7077227"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1576207"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Heinrich_Nebenzahl"; + base:person\#birthdate "1870-10-06"^^xsd:date; + base:person\#birthdate_max "1870-10-06"^^xsd:date; + base:person\#deathdate "1938-07-06"^^xsd:date; + base:person\#deathdate_max "1938-07-06"^^xsd:date; + base:person\#family_name "Nebenzahl"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Kaufmann,Filmproduzent"; + base:person\#ref-IDBirthPlace base:location\/PL-Krak-00; + base:person\#ref-IDDeathPlace base:location\/FR-Paris-02 . + +base:person\/ReiBin-2748 a base:person; + base:person\#IDPerson "ReiBin-2748"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/reiz-binyamin-chaim.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5027."""; + base:person\#VIAF """https://viaf.org/en/viaf/48870833  + +"""; + base:person\#birthdate "1863-01-31"^^xsd:date; + base:person\#birthdate_max "1863-01-31"^^xsd:date; + base:person\#family_name "Reiz"; + base:person\#first_name "Binyamin Chaim"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Bel-DiJeSt-16; + base:person\#ref-IDDeathPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/WalHym-3204 a base:person; + base:person\#IDPerson "WalHym-3204"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-hymie.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.649."""; + base:person\#birthdate "1867-01-01"^^xsd:date; + base:person\#birthdate_max "1867-12-31"^^xsd:date; + base:person\#family_name "Wallerstein"; + base:person\#first_name "Hymie"; + base:person\#fuzzybirthdate "1867"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-wallerstein-hymie.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-hymie.htm "; + base:person\#ref-IDBirthPlace base:location\/BY-Grod-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/WalMin-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117565415"; + base:person\#IDPerson "WalMin-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/30316676/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q94763999"; + base:person\#birthdate "1859-09-20"^^xsd:date; + base:person\#birthdate_max "1859-09-20"^^xsd:date; + base:person\#deathdate "1901-08-25"^^xsd:date; + base:person\#deathdate_max "1901-08-25"^^xsd:date; + base:person\#family_name "Walter"; + base:person\#first_name "Minna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-Ottensh-00 . + +base:Continent-Africa a base:Continent; + rdfs:label "Africa"@en . + +base:State-Colorado a base:State; + rdfs:label "Colorado"@en . + +base:State-Virginia a base:State; + rdfs:label "Virginia"@en . + +base:location\/BR-Salva-00 a base:location; + base:location\#City base:City-Salvador; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3450554"; + base:location\#IDLocation "BR-Salva-00"; + base:location\#State base:State-Bahia; + base:location\#latitude -1.29831e1; + base:location\#longitude -3.85167e1; + base:location\#wikidata "Q36947"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Salvador,_Bahia" . + +base:location\/ES-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "2510769"; + base:location\#IDLocation "ES-00"; + base:location\#latitude 4.0e1; + base:location\#longitude 4.0e0; + base:location\#wikidata "Q29"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Spain" . + +base:location\/ES-Murc-00 a base:location; + base:location\#City base:City-Murcia; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#IDLocation "ES-Murc-00"; + base:location\#latitude 3.79861e1; + base:location\#longitude -1.13028e0; + base:location\#wikidata "Q12225" . + +base:location\/GER-Wiesb-00 a base:location; + base:location\#City base:City-Wiesbaden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2809346"; + base:location\#IDLocation "GER-Wiesb-00"; + base:location\#latitude 5.00825e1; + base:location\#longitude 8.24e0; + base:location\#wikidata "Q1721"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wiesbaden" . + +base:location\/ISR-00 a base:location; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Israel; + base:location\#GeoNamesID "294640"; + base:location\#IDLocation "ISR-00"; + base:location\#latitude 3.16081e1; + base:location\#longitude 3.48181e1; + base:location\#wikidata "Q155321"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Israel" . + +base:location\/MC-MtCarlo-00 a base:location; + base:location\#City base:City-Monaco; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Monaco; + base:location\#GeoNamesID "2993458"; + base:location\#IDLocation "MC-MtCarlo-00"; + base:location\#latitude 4.37398e1; + base:location\#longitude 7.42719e0; + base:location\#wikidata "Q235"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Monaco" . + +base:location\/NZ-Dune-00 a base:location; + base:location\#City base:City-Dunedin; + base:location\#Continent base:Continent-Oceania; + base:location\#Country base:Country-NewZealand; + base:location\#GeoNamesID "2191562"; + base:location\#IDLocation "NZ-Dune-00"; + base:location\#latitude -4.58742e1; + base:location\#longitude 1.70504e2; + base:location\#wikidata "Q133073"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dunedin" . + +base:location\/UA-Chark-00 a base:location; + base:location\#City base:City-Kharkiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "706483"; + base:location\#IDLocation "UA-Chark-00"; + base:location\#latitude 5.00044e1; + base:location\#longitude 3.62314e1; + base:location\#wikidata "Q42308"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kharkiv" . + +base:location\/USA-Sag-00 a base:location; + base:location\#City base:City-Saginaw; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Sag-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.34194e1; + base:location\#longitude -8.39494e1; + base:location\#wikidata "Q719" . + +base:location\/USA-Seat-00 a base:location; + base:location\#City base:City-Seattle; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5809844"; + base:location\#IDLocation "USA-Seat-00"; + base:location\#State base:State-Washington; + base:location\#latitude 4.76061e1; + base:location\#longitude -1.22332e2; + base:location\#wikidata "Q5083"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Seattle" . + +base:location\/USA-Tenn-00 a base:location; + base:location\#City base:City-Nashville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4644585"; + base:location\#IDLocation "USA-Tenn-00"; + base:location\#State base:State-Tennessee; + base:location\#latitude 3.61658e1; + base:location\#longitude -8.678440000000001e1; + base:location\#wikidata "Q23197"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nashville,_Tennessee" . + +base:location\/USA-Tope-00 a base:location; + base:location\#City base:City-Topeka; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Tope-00"; + base:location\#State base:State-Kansas; + base:location\#latitude 3.90558e1; + base:location\#longitude -9.568940000000001e1; + base:location\#wikidata "Q41057" . + +base:organisation\/1086 a base:organisation; + base:organisation\#IDOrganisation 1086; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Baldwin Theatre" . + +base:organisation\/1284 a base:organisation; + base:organisation\#IDOrganisation 1284; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Fifth Avenue theatre" . + +base:organisation\/1821 a base:organisation; + base:organisation\#IDOrganisation 1821; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Companhia Phênix Dramática" . + +base:organisation\/2071 a base:organisation; + base:organisation\#IDOrganisation 2071; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Broadway Theatre" . + +base:organisation\/242 a base:organisation; + base:organisation\#IDOrganisation 242; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Irving Place Theatre" . + +base:organisation\/3510 a base:organisation; + base:organisation\#IDOrganisation 3510; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Gran Companhia Israelita" . + +base:organisation\/4736 a base:organisation; + base:organisation\#IDOrganisation 4736; + base:organisation\#comment ""; + base:organisation\#inst_name "Academy of Music, Saginaw"; + base:organisation\#ref-IDLocation base:location\/USA-Sag-00 . + +base:organisation\/5048 a base:organisation; + base:organisation\#IDOrganisation 5048; + base:organisation\#inst_name "Grand Opera House in Chicago" . + +base:organisation\/55320 a base:organisation; + base:organisation\#IDOrganisation 55320; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Hirshbein Troupe" . + +base:organisation\/70464 a base:organisation; + base:organisation\#IDOrganisation 70464; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#inst_name "People's Theatre" . + +base:organisation\/77 a base:organisation; + base:organisation\#IDOrganisation 77; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Oper Frankfurt"; + base:organisation\#ref-IDLocation base:location\/GER-Ffm-00 . + +base:organisation\/956 a base:organisation; + base:organisation\#IDOrganisation 956; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "His own company" . + +base:person\/AbeTsi-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1272648664"; + base:person\#IDPerson "AbeTsi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tsipe Abelman: ““Permit New Actors on the Stage?”: A 1905 Protest Letter by Tsipe Abelman”, Digital Yiddish Theatre Project, November 2021), https://web.uwm.edu/yiddish-stage/permit-new-actors#fnref-3."; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115205226"; + base:person\#comment "of Belgian parentage"; + base:person\#family_name "Abelman"; + base:person\#first_name "Tsipe"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Tsipi-Abelman.jpeg"; + base:person\#image_source "https://web.uwm.edu/yiddish-stage/author/tsipe-abelman"; + base:person\#profession "Performer"; + base:person\#ref-IDDeathPlace base:location\/PL-00; + base:person\#religion "Jewish" . + +base:person\/BerHei-00 a base:person; + base:person\#CERL "-"; + base:person\#Death_Info "Place of Burial: Vienna Central Cemetery "; + base:person\#GND "https://d-nb.info/gnd/121064344"; + base:person\#IDPerson "BerHei-00"; + base:person\#ISNI "https://isni.org/isni/0000000368555988"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83177434"; + base:person\#SNAC "-"; + base:person\#VIAF "https://viaf.org/viaf/66653887"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q241000"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Heinrich_Bert%C3%A9"; + base:person\#birthdate "1857-05-08"^^xsd:date; + base:person\#birthdate_max "1857-05-08"^^xsd:date; + base:person\#comment "In 1929, a traffic area in Vienna-Liesing was named Bertégasse in tribute to the composer, buried in Vienna Central Cemitery"; + base:person\#deathdate "1924-08-23"^^xsd:date; + base:person\#deathdate_max "1924-08-23"^^xsd:date; + base:person\#family_name "Berté"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Heinrich-Berté.jpg"; + base:person\#image_source "https://musik-austria.at/mensch/heinrich-berte/"; + base:person\#ref-IDBirthPlace base:location\/SK-Hlo-00; + base:person\#ref-IDDeathPlace base:location\/AT-Perch-00 . + +base:person\/GalGeo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1249206782"; + base:person\#IDPerson "GalGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19959525"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Georgine_Galster"; + base:person\#birthdate "1848-11-27"^^xsd:date; + base:person\#birthdate_max "1848-11-27"^^xsd:date; + base:person\#deathdate "1917-10-27"^^xsd:date; + base:person\#deathdate_max "1917-10-27"^^xsd:date; + base:person\#family_name "Galster"; + base:person\#first_name "Georgine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Georgine_Galster_1887_Eigner.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q19959525#/media/File:Georgine_Galster_1887_Eigner.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/KamAvr-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1198325852"; + base:person\#IDPerson "KamAvr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "http://yleksikon.blogspot.com/2019/02/avrom-yitskhok-kaminski.html"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q9138401"; + base:person\#birthdate "1867-03-14"^^xsd:date; + base:person\#birthdate_max "1867-03-14"^^xsd:date; + base:person\#family_name "Kaminski"; + base:person\#first_name "Avrom-Yitskhok"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor,Manager"; + base:person\#ref-IDBirthPlace base:location\/PL-Wola-00; + base:person\#ref-IDDeathPlace base:location\/PL-Lomza-00 . + +base:person\/RivMor-2764 a base:person; + base:person\#IDPerson "RivMor-2764"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/rivesman-mordechai.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4969."""; + base:person\#birthdate "1868-01-01"^^xsd:date; + base:person\#birthdate_max "1868-12-31"^^xsd:date; + base:person\#family_name "Rivesman"; + base:person\#first_name "Mordechai"; + base:person\#fuzzybirthdate "1868"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/LT-Viln-00; + base:person\#ref-IDDeathPlace base:location\/RU-StPet-00; + base:person\#religion "Jewish" . + +base:person\/SchCle-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117117145"; + base:person\#IDPerson "SchCle-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/27840279"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1100363"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Clementine_von_Schuch-Proska"; + base:person\#birthdate "1850-02-12"^^xsd:date; + base:person\#birthdate_max "1850-02-12"^^xsd:date; + base:person\#deathdate "1932-06-08"^^xsd:date; + base:person\#deathdate_max "1932-06-08"^^xsd:date; + base:person\#family_name "von Schuch-Proska"; + base:person\#first_name "Clementine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Klementine_Schuch-Proska_AEhrlichSängerinnen1895.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1100363#/media/File:Klementine_Schuch-Proska_AEhrlichS%C3%A4ngerinnen1895.jpg"; + base:person\#profession "Opera Singer, Coloratura Soprano"; + base:person\#ref-IDBirthPlace base:location\/HU-Oedb-00; + base:person\#ref-IDDeathPlace base:location\/GER-Radeb-00 . + +base:person\/SimMos-720 a base:person; + base:person\#IDPerson "SimMos-720"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/TanBer-748 a base:person; + base:person\#IDPerson "TanBer-748"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-berta.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.854."""; + base:person\#birthdate "1856-01-01"^^xsd:date; + base:person\#birthdate_max "1856-12-31"^^xsd:date; + base:person\#deathdate "1926-01-01"^^xsd:date; + base:person\#deathdate_max "1926-12-31"^^xsd:date; + base:person\#family_name "Tanzman"; + base:person\#first_name "Bertha"; + base:person\#fuzzybirthdate "1856"; + base:person\#fuzzydeathdate "1926"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tantsman-berta.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-berta.htm"; + base:person\#ref-IDBirthPlace base:location\/LV-RIX-00; + base:person\#ref-IDDeathPlace base:location\/USA-Pittsb-00; + base:person\#religion "Jewish" . + +base:person\/TicJos-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00651805"; + base:person\#GND "https://d-nb.info/gnd/117375098"; + base:person\#IDPerson "TicJos-00"; + base:person\#ISNI "https://isni.org/isni/0000000055343933"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2018063617"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6v52whj#resources"; + base:person\#Source "Biographisches Lexikon des Kaiserthums Oesterreich"; + base:person\#VIAF "https://viaf.org/viaf/35232623"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q216058"; + base:person\#birthdate "1807-07-11"^^xsd:date; + base:person\#birthdate_max "1807-07-11"^^xsd:date; + base:person\#deathdate "1886-01-18"^^xsd:date; + base:person\#deathdate_max "1886-01-18"^^xsd:date; + base:person\#family_name "Tichatschek"; + base:person\#first_name "Josef"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Alois_Ticháček_-_Jan_Vilímek.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q216058#/media/File:Josef_Alois_Tich%C3%A1%C4%8Dek_-_Jan_Vil%C3%ADmek.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/CZ-Wecksels-00; + base:person\#ref-IDDeathPlace base:location\/GER-Dresd-00 . + +base:person\/TurZyg-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119271796"; + base:person\#IDPerson "TurZyg-00"; + base:person\#ISNI "https://isni.org/isni/0000000083815125"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2002106999"; + base:person\#VIAF "https://viaf.org/viaf/50032079/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2902473"; + base:person\#family_name "Turkow"; + base:person\#first_name "Zygmunt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zygmunt_Turkow.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2902473#/media/File:Zygmunt_Turkow.jpg"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00 . + +base:Country-India a base:Country; + rdfs:label "India"@en . + +base:Country-Scotland a base:Country; + rdfs:label "Scotland"@en . + +base:RelationshipTypePrecise-Nephew a base:RelationshipTypePrecise; + rdfs:label "Nephew"@en . + +base:RelationshipTypePrecise-Niece a base:RelationshipTypePrecise; + rdfs:label "Niece"@en . + +base:State-Connecticut a base:State; + rdfs:label "Connecticut"@en . + +base:State-Iowa a base:State; + rdfs:label "Iowa"@en . + +base:location\/AT-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2782113"; + base:location\#IDLocation "AT-00"; + base:location\#latitude 4.73333e1; + base:location\#longitude 1.33333e1; + base:location\#wikidata "Q40"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Austria" . + +base:location\/BR-PortAleg-00 a base:location; + base:location\#City base:City-PortoAlegre; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3452925"; + base:location\#IDLocation "BR-PortAleg-00"; + base:location\#latitude -3.00394e1; + base:location\#longitude -5.12081e1; + base:location\#wikidata "Q40269"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Porto_Alegre" . + +base:location\/BR-RioGra-0 a base:location; + base:location\#City base:City-RioGrande; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#IDLocation "BR-RioGra-0"; + base:location\#latitude 2.59562e1; + base:location\#longitude -9.71452e1; + base:location\#wikidata "Q869571" . + +base:location\/BR-SaoLuis-00 a base:location; + base:location\#City base:City-S\%C3\%A3oLuis; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3388368"; + base:location\#IDLocation "BR-SaoLuis-00"; + base:location\#latitude -2.51667e0; + base:location\#longitude -4.42667e1; + base:location\#wikidata "Q28441"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/S%C3%A3o_Lu%C3%ADs,_Maranh%C3%A3o" . + +base:location\/CA-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6251999"; + base:location\#IDLocation "CA-00"; + base:location\#latitude 6.0e1; + base:location\#longitude -1.1e2; + base:location\#wikidata "Q16"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Canada" . + +base:location\/CZ-Olo-00 a base:location; + base:location\#City base:City-Olomouc; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3069011"; + base:location\#IDLocation "CZ-Olo-00"; + base:location\#latitude 4.95939e1; + base:location\#longitude 1.72508e1; + base:location\#wikidata "Q81137"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Olomouc" . + +base:location\/FR-Barr-00 a base:location; + base:location\#City base:City-Barr; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3034868"; + base:location\#IDLocation "FR-Barr-00"; + base:location\#State base:State-Alsace; + base:location\#latitude 4.84081e1; + base:location\#longitude 7.44972e0; + base:location\#wikidata "Q22758"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Barr,_Bas-Rhin" . + +base:location\/GER-BadBad-00 a base:location; + base:location\#City base:City-Baden-Baden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2953504"; + base:location\#IDLocation "GER-BadBad-00"; + base:location\#State base:State-Baden-W\%C3\%BCrttemberg; + base:location\#latitude 4.87628e1; + base:location\#longitude 8.240830000000001e0; + base:location\#wikidata "Q4100"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Baden-Baden" . + +base:location\/GER-Goett-00 a base:location; + base:location\#City base:City-G\%C3\%B6ttingen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2918632"; + base:location\#IDLocation "GER-Goett-00"; + base:location\#latitude 5.15339e1; + base:location\#longitude 9.935560000000001e0; + base:location\#wikidata "Q3033"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/G%C3%B6ttingen" . + +base:location\/GER-Nur-00 a base:location; + base:location\#City base:City-Nuremberg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2861650"; + base:location\#IDLocation "GER-Nur-00"; + base:location\#latitude 4.94539e1; + base:location\#longitude 1.10775e1; + base:location\#wikidata "Q2090"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Nuremberg" . + +base:location\/GER-Wzbrg-00 a base:location; + base:location\#City base:City-W\%C3\%BCrzburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2805615"; + base:location\#IDLocation "GER-Wzbrg-00"; + base:location\#latitude 4.97833e1; + base:location\#longitude 9.93333e0; + base:location\#wikidata "Q2999"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/W%C3%BCrzburg" . + +base:location\/Lit-DiJeSt-111 a base:location; + base:location\#City base:City-Kaunas; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Lithuania; + base:location\#IDLocation "Lit-DiJeSt-111"; + base:location\#latitude 5.49e1; + base:location\#longitude 2.39333e1; + base:location\#wikidata "Q4115712"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/TR-Ist-00 a base:location; + base:location\#City base:City-Istanbul; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Turkey; + base:location\#GeoNamesID "745044"; + base:location\#IDLocation "TR-Ist-00"; + base:location\#latitude 4.10766e1; + base:location\#longitude 2.90525e1; + base:location\#wikidata "Q406"; + base:location\#wikipedia "https://en.m.wikipedia.org/wiki/Istanbul" . + +base:location\/USA-KansCity-00 a base:location; + base:location\#City base:City-KansasCity; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4393217"; + base:location\#IDLocation "USA-KansCity-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.91e1; + base:location\#longitude -9.458e1; + base:location\#wikidata "Q41819"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kansas_City,_Missouri" . + +base:location\/USA-LincN-00 a base:location; + base:location\#City base:City-Lincoln; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-LincN-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.08097e1; + base:location\#longitude -9.667529999999999e1; + base:location\#wikidata "Q28260" . + +base:location\/USA-Minnea-00 a base:location; + base:location\#City base:City-Minneapolis; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Minnea-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.49802e1; + base:location\#longitude -9.32641e1; + base:location\#wikidata "Q36091" . + +base:location\/USA-Newa-00 a base:location; + base:location\#City base:City-Newark; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5101798"; + base:location\#IDLocation "USA-Newa-00"; + base:location\#State base:State-NewJersey; + base:location\#latitude 4.07353e1; + base:location\#longitude -7.4185e1; + base:location\#wikidata "Q25395"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Newark,_New_Jersey" . + +base:organisation\/1080 a base:organisation; + base:organisation\#IDOrganisation 1080; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Standard Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/1931 a base:organisation; + base:organisation\#IDOrganisation 1931; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Alcazar Lyrique" . + +base:organisation\/2580 a base:organisation; + base:organisation\#IDOrganisation 2580; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Politeama" . + +base:organisation\/2620 a base:organisation; + base:organisation\#IDOrganisation 2620; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera Theatre Convent Garden" . + +base:organisation\/2630 a base:organisation; + base:organisation\#IDOrganisation 2630; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Casa del Teatro" . + +base:organisation\/3335 a base:organisation; + base:organisation\#IDOrganisation 3335; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Ópera" . + +base:organisation\/4684 a base:organisation; + base:organisation\#IDOrganisation 4684; + base:organisation\#comment ""; + base:organisation\#inst_name "Buffalo Academy of Music" . + +base:organisation\/53140 a base:organisation; + base:organisation\#IDOrganisation 53140; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Eldorado Theatre" . + +base:organisation\/56810 a base:organisation; + base:organisation\#IDOrganisation 56810; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Kompaneyets Troupe" . + +base:organisation\/584 a base:organisation; + base:organisation\#IDOrganisation 584; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro do Ginásio"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/70040 a base:organisation; + base:organisation\#IDOrganisation 70040; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#inst_name "Vilna Troupe" . + +base:organisation\/95 a base:organisation; + base:organisation\#IDOrganisation 95; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hamburg Opernhaus"; + base:organisation\#ref-IDLocation base:location\/GER-HH-00 . + +base:person\/BenBen-1256 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "BenBen-1256"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm + +https://congressforjewishculture.org/people/6457/Ben-Zion-Benedikt + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.187."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1839-01-01"^^xsd:date; + base:person\#birthdate_max "1839-12-31"^^xsd:date; + base:person\#deathdate "1915-01-01"^^xsd:date; + base:person\#deathdate_max "1915-12-31"^^xsd:date; + base:person\#family_name "Benzion"; + base:person\#first_name "Benedict"; + base:person\#fuzzybirthdate "1839"; + base:person\#fuzzydeathdate "1915"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-101; + base:person\#ref-IDDeathPlace base:location\/USA-00; + base:person\#religion "Jewish" . + +base:person\/BerRud-1262 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "BerRud-1262"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berg-rudolf.htm + +https://lia.lvivcenter.org/en/themes/?ci_themeid=86 + +https://lia.lvivcenter.org/en/themes/?ci_themeid=87 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.197."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1876-11-24"^^xsd:date; + base:person\#birthdate_max "1876-11-24"^^xsd:date; + base:person\#family_name "Berg"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-berg-rudolf.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/berg-rudolf.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/BlaLeo-1000 a base:person; + base:person\#IDPerson "BlaLeo-1000"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#Source """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/blank-leon.htm +https://jewish-music.huji.ac.il/en/content/leon-blank +Leon Blank Dies. In: New York Times, September 9, 1934, p. 34 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.172."""; + base:person\#birthdate "1867-01-01"^^xsd:date; + base:person\#birthdate_max "1867-12-31"^^xsd:date; + base:person\#deathdate "1934-09-08"^^xsd:date; + base:person\#deathdate_max "1934-09-08"^^xsd:date; + base:person\#family_name "Blank"; + base:person\#first_name "Leon"; + base:person\#fuzzybirthdate "1867"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/blank-leon-1a.jpg"; + base:person\#image_source "https://www.moyt.org/gallery/blank-leon.htm"; + base:person\#ref-IDBirthPlace base:location\/Mol-DiJeSt-73; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/GolSam-1821 a base:person; + base:person\#IDPerson "GolSam-1821"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldberg-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.269."""; + base:person\#birthdate "1875-01-01"^^xsd:date; + base:person\#birthdate_max "1875-12-31"^^xsd:date; + base:person\#family_name "Goldberg"; + base:person\#first_name "Sam"; + base:person\#fuzzybirthdate "1875"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-goldberg-sam.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/G/goldberg-sam.htm"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-58; + base:person\#religion "Jewish" . + +base:person\/KamEst-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119165074"; + base:person\#IDPerson "KamEst-00"; + base:person\#ISNI "https://isni.org/isni/0000000073685574"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no00098997"; + base:person\#VIAF "https://viaf.org/viaf/22945211"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220826"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ester_Rachel_Kami%C5%84ska"; + base:person\#birthdate "1870-03-10"^^xsd:date; + base:person\#birthdate_max "1870-03-10"^^xsd:date; + base:person\#deathdate "1925-01-01"^^xsd:date; + base:person\#deathdate_max "1925-12-31"^^xsd:date; + base:person\#family_name "Kaminska"; + base:person\#first_name "Ester-Rokhl"; + base:person\#fuzzydeathdate "1925"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Esther_Rokhl_Kaminska_portrait_from_Klangen_fun_mayn_lebn.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Ester_Rachel_Kami%C5%84ska#/media/File:Esther_Rokhl_Kaminska_portrait_from_Klangen_fun_mayn_lebn.jpg"; + base:person\#ref-IDBirthPlace base:location\/BY-Grod-00; + base:person\#ref-IDDeathPlace base:location\/PL-WA-00 . + +base:person\/LieIgn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/136695876"; + base:person\#IDPerson "LieIgn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/80997239"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220972"; + base:person\#birthdate "1850-02-22"^^xsd:date; + base:person\#birthdate_max "1850-02-22"^^xsd:date; + base:person\#deathdate "1901-10-27"^^xsd:date; + base:person\#deathdate_max "1901-10-27"^^xsd:date; + base:person\#family_name "Liebhardt"; + base:person\#first_name "Ignaz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/SVK-Pez-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/LubErn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118729306"; + base:person\#IDPerson "LubErn-00"; + base:person\#ISNI "https://isni.org/isni/0000000121340870"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50043553"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6379dt9#resources"; + base:person\#VIAF "https://viaf.org/viaf/56627503"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q51562"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ernst_Lubitsch"; + base:person\#birthdate "1892-01-29"^^xsd:date; + base:person\#birthdate_max "1892-01-29"^^xsd:date; + base:person\#comment "buried in Forest Lawn Memorial Park (Glendale)"; + base:person\#deathdate "1947-11-30"^^xsd:date; + base:person\#deathdate_max "1947-11-30"^^xsd:date; + base:person\#family_name "Lubitsch"; + base:person\#first_name "Ernst"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Ernst_Lubitsch_01.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q51562#/media/File:Ernst_Lubitsch_01.jpg"; + base:person\#profession "film director, producer, writer,actor"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00; + base:person\#religion "Jewish" . + +base:person\/MalMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01318912"; + base:person\#GND "https://d-nb.info/gnd/118781421"; + base:person\#IDPerson "MalMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000115929486"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83162687"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6n307mq"; + base:person\#VIAF "https://viaf.org/viaf/9855564"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q232783"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Maria_Malibran"; + base:person\#birthdate "1808-03-24"^^xsd:date; + base:person\#birthdate_max "1808-03-24"^^xsd:date; + base:person\#deathdate "1836-09-23"^^xsd:date; + base:person\#deathdate_max "1836-09-23"^^xsd:date; + base:person\#family_name "Malibran"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/(Gaillac)_Maria_Malibran_-_Firmin_Salabert_-_Musée_des_Beaux-Arts_de_Gaillac.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q232783#/media/File:(Gaillac)_Maria_Malibran_-_Firmin_Salabert_-_Mus%C3%A9e_des_Beaux-Arts_de_Gaillac.jpg"; + base:person\#profession "Opera singer,Mezzo"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/EN-MANCH-00 . + +base:person\/MisMim-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1022981390"; + base:person\#IDPerson "MisMim-00"; + base:person\#ISNI "https://isni.org/isni/0000000370335511"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2012072957"; + base:person\#Nametype base:Nametype-Other; + base:person\#Source """# +Ellis Island records, Misu arrived in the US on 27 October 1915 aboard the Frederik VIII from Berlin as the name of Misu Rosescu, the port of departure is Copenhagen, https://heritage.statueofliberty.org/passenger-details/czoxMjoiNjEwMTE0MDUwMDIzIjs=/czo5OiJwYXNzZW5nZXIiOw==. +# +IMDB, “Biography of Mime Misu”, https://www.imdb.com/name/nm0593010/bio. +# +Ellis Island records, Misu arrived in the US 1st February 1917 on the Noordam from Rotterdam, https://heritage.statueofliberty.org/passenger-details/czoxMjoiNjEwMTg5MDExMjMzIjs=/czo5OiJwYXNzZW5nZXIiOw==."""; + base:person\#VIAF "http://viaf.org/viaf/249643813"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1348485"; + base:person\#birthdate "1888-01-21"^^xsd:date; + base:person\#birthdate_max "1888-01-21"^^xsd:date; + base:person\#deathdate "1953-07-28"^^xsd:date; + base:person\#deathdate_max "1953-07-28"^^xsd:date; + base:person\#family_name "Misu"; + base:person\#first_name "Mime"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Dancer, Actor"; + base:person\#ref-IDBirthPlace base:location\/ROU-Bot-00; + base:person\#ref-IDDeathPlace base:location\/BE-Antw-00 . + +base:person\/PauRos-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116067144"; + base:person\#IDPerson "PauRos-00"; + base:person\#ISNI "https://isni.org/isni/0000000021379882"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nb2014025070"; + base:person\#VIAF "https://viaf.org/viaf/47504321"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q86708"; + base:person\#birthdate "1858-09-18"^^xsd:date; + base:person\#birthdate_max "1858-09-18"^^xsd:date; + base:person\#comment """Laryngitis ended her active career as a singer in 1891. +In Innsbruck, she became the only female member of the Akademischer Gesangsverein."""; + base:person\#deathdate "1932-02-09"^^xsd:date; + base:person\#deathdate_max "1932-02-09"^^xsd:date; + base:person\#family_name "Paumgartner"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Rosa_Papier_by_August_Weger.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q86708#/media/File:Rosa_Papier_by_August_Weger.jpg"; + base:person\#profession "Singer"; + base:person\#ref-IDBirthPlace base:location\/AT-BadVie-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/PonLor-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01443555"; + base:person\#GND "https://d-nb.info/gnd/118678841"; + base:person\#IDPerson "PonLor-00"; + base:person\#ISNI "https://isni.org/isni/0000000439590386"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80057191"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6h70h3f"; + base:person\#VIAF "https://viaf.org/viaf/41838569/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q268166"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Lorenzo_Da_Ponte"; + base:person\#birthdate "1749-03-10"^^xsd:date; + base:person\#birthdate_max "1749-03-10"^^xsd:date; + base:person\#comment "born in Cènada, Venice"; + base:person\#deathdate "1838-08-17"^^xsd:date; + base:person\#deathdate_max "1838-08-17"^^xsd:date; + base:person\#family_name "DaPonte"; + base:person\#first_name "Lorenzo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Lorenzo_da_Ponte.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q268166#/media/File:Lorenzo_da_Ponte.jpg"; + base:person\#profession "Opera Librettist, Poet,Priest"; + base:person\#ref-IDBirthPlace base:location\/IT-Ven-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/RobKur-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116577967"; + base:person\#IDPerson "RobKur-00"; + base:person\#ISNI "https://isni.org/isni/000000005311431X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr2004037989"; + base:person\#VIAF "https://viaf.org/viaf/40133567"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1496482"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Kurt_Robitschek"; + base:person\#birthdate "1890-08-23"^^xsd:date; + base:person\#birthdate_max "1890-08-23"^^xsd:date; + base:person\#deathdate "1950-12-16"^^xsd:date; + base:person\#deathdate_max "1950-12-16"^^xsd:date; + base:person\#family_name "Robitschek"; + base:person\#first_name "Kurt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Theater director"; + base:person\#ref-IDBirthPlace base:location\/CZ-Prag-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/StaAgn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117223786"; + base:person\#IDPerson "StaAgn-00"; + base:person\#ISNI "https://isni.org/isni/0000000054634528"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2008061455"; + base:person\#Source "Gerhard Kohlweyer: Agnes Stavenhagen, Weimarer Primadonna zwischen Johannes Brahms und Richard Strauss. Weimarer Taschenbuchverlag, 2007"; + base:person\#VIAF "https://viaf.org/viaf/30307789"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q15428584"; + base:person\#birthdate "1860-09-03"^^xsd:date; + base:person\#birthdate_max "1860-09-03"^^xsd:date; + base:person\#deathdate "1945-09-30"^^xsd:date; + base:person\#deathdate_max "1945-09-30"^^xsd:date; + base:person\#family_name "Stavenhagen"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Agnes_Denis_1889_Eigner.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q15428584#/media/File:Agnes_Denis_1889_Eigner.jpg"; + base:person\#ref-IDBirthPlace base:location\/GER-Wins-00; + base:person\#ref-IDDeathPlace base:location\/GER-Bautz-00 . + +base:person\/TurYit-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/172859204"; + base:person\#IDPerson "TurYit-00"; + base:person\#ISNI "https://isni.org/isni/0000000052671333"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no93034801"; + base:person\#Source "http://yleksikon.blogspot.com/2015/09/yitskhok-ber-grudberg-turkov-yitskhok.html"; + base:person\#VIAF "https://viaf.org/viaf/24173821/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q94662637"; + base:person\#comment """He wrote and translated Yiddish plays. +After WWII he published numerous popular works about Yiddish theater in Poland and Israel."""; + base:person\#family_name "Turkow"; + base:person\#first_name "Yitskhok Ber"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Theater actor"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/ISR-TelAv-00 . + +base:person\/VeiCon-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119228866"; + base:person\#IDPerson "VeiCon-00"; + base:person\#ISNI "https://isni.org/isni/000000010877018X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86011089"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6rs5s4s#resources"; + base:person\#VIAF "https://viaf.org/viaf/19875176"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q58801"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Conrad_Veidt"; + base:person\#birthdate "1893-01-22"^^xsd:date; + base:person\#birthdate_max "1893-01-22"^^xsd:date; + base:person\#deathdate "1943-04-03"^^xsd:date; + base:person\#deathdate_max "1943-04-03"^^xsd:date; + base:person\#family_name "Veidt"; + base:person\#first_name "Conrad"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Conrad_Veidt_1941.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q58801#/media/File:Conrad_Veidt_1941.jpg"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00 . + +base:Country-UnitedKingdom a base:Country; + rdfs:label "United Kingdom"@en . + +base:State-Texas a base:State; + rdfs:label "Texas"@en . + +base:State-Washington a base:State; + rdfs:label "Washington"@en . + +base:State-Wisconsin a base:State; + rdfs:label "Wisconsin"@en, + "Wisconsin "@en . + +base:location\/ARG-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3865483"; + base:location\#IDLocation "ARG-00"; + base:location\#latitude -3.46e1; + base:location\#longitude -5.838e1; + base:location\#wikidata "Q414"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Argentina" . + +base:location\/CH-Bas-00 a base:location; + base:location\#City base:City-Basel; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2661604"; + base:location\#IDLocation "CH-Bas-00"; + base:location\#latitude 4.75547e1; + base:location\#longitude 7.59056e0; + base:location\#wikidata "Q78"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Basel" . + +base:location\/FR-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "3017382"; + base:location\#IDLocation "FR-00"; + base:location\#latitude 4.7e1; + base:location\#longitude 2.0e0; + base:location\#wikidata "Q142"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/France" . + +base:location\/NL-AMS-00 a base:location; + base:location\#City base:City-Amsterdam; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Netherlands; + base:location\#GeoNamesID "2759794"; + base:location\#IDLocation "NL-AMS-00"; + base:location\#latitude 5.23667e1; + base:location\#longitude 4.9e0; + base:location\#wikidata "Q727"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Amsterdam" . + +base:location\/PRU-Koen-00 a base:location; + base:location\#City base:City-K\%C3\%B6nigsberg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Prussia; + base:location\#IDLocation "PRU-Koen-00"; + base:location\#latitude 5.47333e1; + base:location\#longitude 2.04833e1; + base:location\#wikidata "Q4120832" . + +base:location\/UK-EDI-00 a base:location; + base:location\#City base:City-Edinburgh; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Scotland; + base:location\#GeoNamesID "2650225"; + base:location\#IDLocation "UK-EDI-00"; + base:location\#latitude 5.5953e1; + base:location\#longitude -3.189e0; + base:location\#wikidata "Q23436"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Edinburgh" . + +base:location\/USA-CA-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5332921"; + base:location\#IDLocation "USA-CA-00"; + base:location\#State base:State-California; + base:location\#latitude 3.7e1; + base:location\#longitude -1.2e2; + base:location\#wikidata "Q99"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/California" . + +base:location\/USA-Denv-00 a base:location; + base:location\#City base:City-Denver; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5419384"; + base:location\#IDLocation "USA-Denv-00"; + base:location\#State base:State-Colorado; + base:location\#latitude 3.97789e1; + base:location\#longitude -1.04982e2; + base:location\#wikidata "Q16554"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Denver" . + +base:location\/USA-Fort-00 a base:location; + base:location\#City base:City-FortWayne; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4920423"; + base:location\#IDLocation "USA-Fort-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 4.10806e1; + base:location\#longitude -8.51392e1; + base:location\#wikidata "Q49268"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Fort_Wayne,_Indiana" . + +base:location\/USA-GrRap-00 a base:location; + base:location\#City base:City-GrandRapids; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-GrRap-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.29613e1; + base:location\#longitude -8.56557e1; + base:location\#wikidata "Q184587" . + +base:location\/USA-Hartf-00 a base:location; + base:location\#City base:City-Hartford; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4835797"; + base:location\#IDLocation "USA-Hartf-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.17625e1; + base:location\#longitude -7.26742e1; + base:location\#wikidata "Q33486"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hartford,_Connecticut" . + +base:location\/USA-Memph-00 a base:location; + base:location\#City base:City-Memphis; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4641239"; + base:location\#IDLocation "USA-Memph-00"; + base:location\#State base:State-Tennessee; + base:location\#latitude 3.51494e1; + base:location\#longitude -9.00489e1; + base:location\#wikidata "Q16563"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Memphis,_Tennessee" . + +base:location\/USA-Troy-00 a base:location; + base:location\#City base:City-Troy; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Troy-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.27355e1; + base:location\#longitude -7.36751e1; + base:location\#wikidata "Q600301" . + +base:location\/ZA-Cpt-00 a base:location; + base:location\#City base:City-CapeTown; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#GeoNamesID "3369157"; + base:location\#IDLocation "ZA-Cpt-00"; + base:location\#latitude -3.39227e1; + base:location\#longitude 1.84167e1; + base:location\#wikidata "Q5465"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cape_Town" . + +base:organisation\/126 a base:organisation; + base:organisation\#IDOrganisation 126; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Münchner Hofoper"; + base:organisation\#ref-IDLocation base:location\/GER-MUC-00 . + +base:organisation\/201 a base:organisation; + base:organisation\#IDOrganisation 201; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Theater an der Wien" . + +base:organisation\/267 a base:organisation; + base:organisation\#IDOrganisation 267; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitan Opera Company"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/309 a base:organisation; + base:organisation\#IDOrganisation 309; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Colón in Buenos Aires" . + +base:organisation\/313 a base:organisation; + base:organisation\#IDOrganisation 313; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Covent Garden Oper London"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/4688 a base:organisation; + base:organisation\#IDOrganisation 4688; + base:organisation\#comment ""; + base:organisation\#inst_name "Utica Opera House"; + base:organisation\#ref-IDLocation base:location\/USA-Utic-00 . + +base:organisation\/56000 a base:organisation; + base:organisation\#IDOrganisation 56000; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Irwing Place (Deutsches) Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/57520 a base:organisation; + base:organisation\#IDOrganisation 57520; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Liberty Theatre" . + +base:organisation\/60920 a base:organisation; + base:organisation\#IDOrganisation 60920; + base:organisation\#InstType base:InstitutionType-Kleinkunst; + base:organisation\#comment ""; + base:organisation\#inst_name "People's Theatre NY"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/649 a base:organisation; + base:organisation\#IDOrganisation 649; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro da Trindade" . + +base:organisation\/70856 a base:organisation; + base:organisation\#IDOrganisation 70856; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Own troupe" . + +base:organisation\/97 a base:organisation; + base:organisation\#IDOrganisation 97; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Théâtre-Italien"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:person\/AdlIsr-1121 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "AdlIsr-1121"; + base:person\#ISNI "https://isni.org/isni/0000000052352922"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-israel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.29."""; + base:person\#VIAF "http://viaf.org/viaf/9823102"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1898-11-15"^^xsd:date; + base:person\#birthdate_max "1898-11-15"^^xsd:date; + base:person\#family_name "Adler"; + base:person\#first_name "Israel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/AscLeo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116360593"; + base:person\#IDPerson "AscLeo-00"; + base:person\#ISNI "https://isni.org/isni/0000000078573045"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n84212876"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w68d20p5"; + base:person\#Source "R. Wiesinger: Ascher, Leo. in: Österreichisches Biographisches Lexikon 1815–1950, Online-Ausgabe, https://www.biographien.ac.at/oebl/oebl_A/Ascher_Leo_1880_1942.xmlWerner Röder; Herbert A. Strauss (edd): International Biographical Dictionary of Central European Emigrés 1933–1945. Band 2, München: Saur 1983, p. 36f."; + base:person\#VIAF "https://viaf.org/viaf/8137331"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q214530"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Leo_Ascher"; + base:person\#birthdate "1880-08-17"^^xsd:date; + base:person\#birthdate_max "1880-08-17"^^xsd:date; + base:person\#comment """Doctor of law (1904) +His artistic estate is preserved at the Leo Ascher Centre of Operetta Music at Millersville University of Pennsylvania. Letters, pictures, manuscripts and printed music are well preserved there."""; + base:person\#deathdate "1942-02-25"^^xsd:date; + base:person\#deathdate_max "1942-02-25"^^xsd:date; + base:person\#family_name "Ascher"; + base:person\#first_name "Leo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leo_Ascher._Foto,_Widmung,_c._1912_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q214530#/media/File:Leo_Ascher._Foto,_Widmung,_c._1912_(cropped).jpg"; + base:person\#profession "Operetta composer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/BerBer-859 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "BerBer-859"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bernstein-berl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.207."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1860-01-01"^^xsd:date; + base:person\#birthdate_max "1860-12-31"^^xsd:date; + base:person\#family_name "Börnstein"; + base:person\#first_name "Berl"; + base:person\#fuzzybirthdate "1860"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/2ave_285_large.jpg"; + base:person\#image_source "Berl Bernstein and his son :  https://archive.nyu.edu/bitstream/2451/56150/1/2ave_285_large.jpg "; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/BezIse-1292 a base:person; + base:person\#IDPerson "BezIse-1292"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bezman-iser.htm + +chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/https://www.yivo.org/cimages/institutional_newsletter_9_-_fall_2020_lo-res.pdf + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.188."""; + base:person\#birthdate "1867-01-01"^^xsd:date; + base:person\#birthdate_max "1867-12-31"^^xsd:date; + base:person\#family_name "Bezman"; + base:person\#first_name "Iser"; + base:person\#fuzzybirthdate "1867"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Iser_Bezman.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/bezman-iser.htm"; + base:person\#ref-IDBirthPlace base:location\/RU-Berdi-00; + base:person\#religion "Jewish" . + +base:person\/BoiIls-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1061047350"; + base:person\#IDPerson "BoiIls-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "https://de.wikipedia.org/wiki/Ilse_Bois"; + base:person\#VIAF "https://viaf.org/viaf/311599217"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1659091"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Ilse_Bois"; + base:person\#birthdate "1896-03-11"^^xsd:date; + base:person\#birthdate_max "1896-03-11"^^xsd:date; + base:person\#family_name "Bois"; + base:person\#first_name "Ilse"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ilse_Bois_by_Nicola_Perscheid.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Ilse_Bois#/media/Datei:Ilse_Bois_by_Nicola_Perscheid.jpg"; + base:person\#profession "Kabarettist, Actress, Parodist"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/BorRap-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118856626"; + base:person\#IDPerson "BorRap-00"; + base:person\#ISNI "https://isni.org/isni/0000000081351347"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://www.worldcat.org/identities/lccn-n82067739/"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6kw88vm"; + base:person\#Source """WERNECK, Maria Helena; REIS, Angela de Castro (org.). Rotas de Teatro: entre Portugal e Brasil. Rio de Janeiro: 7Letras, 2012. + +Website of Bordalo Pinheiro’s museum in Lisboa: https://museubordalopinheiro.pt/rafael-bordalo-pinheiro/bordalo-e-o-brasil/"""; + base:person\#VIAF "https://viaf.org/viaf/56618026/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3327209"; + base:person\#birthdate "1846-03-21"^^xsd:date; + base:person\#birthdate_max "1846-03-21"^^xsd:date; + base:person\#deathdate "1905-01-23"^^xsd:date; + base:person\#deathdate_max "1905-01-23"^^xsd:date; + base:person\#family_name "Bordallo Pinheiro"; + base:person\#first_name "Raphael"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RafaelBordaloPinheiro.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3327209#/media/File:RafaelBordaloPinheiro.jpg"; + base:person\#profession "Cartoonist, Journalist, Theater Critic,Ceramist, Costume designer, Stage Designer, Actor"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/PT-Liss-00 . + +base:person\/BraOsk-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116422173"; + base:person\#IDPerson "BraOsk-00"; + base:person\#ISNI "https://isni.org/isni/000000038306516X "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2006134494"; + base:person\#Source "Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert."; + base:person\#VIAF "https://viaf.org/viaf/267454746/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19297712"; + base:person\#birthdate "1867-02-16"^^xsd:date; + base:person\#birthdate_max "1867-02-16"^^xsd:date; + base:person\#deathdate "1944-04-15"^^xsd:date; + base:person\#deathdate_max "1944-04-15"^^xsd:date; + base:person\#family_name "Braun"; + base:person\#first_name "Oskar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/746px-Oskar_Braun_1893_Vilimek.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Oskar_Braun_1893_Vilimek.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/HU-Buda-00 . + +base:person\/CasJul-00 a base:person; + base:person\#IDPerson "CasJul-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccoo"; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + base:person\#VIAF "viaf.org/viaf/9156809346845120994/#Castellanos,_Julio_R.,_1872-1959"; + base:person\#birthdate "1873-01-01"^^xsd:date; + base:person\#birthdate_max "1873-12-31"^^xsd:date; + base:person\#deathdate "1959-06-07"^^xsd:date; + base:person\#deathdate_max "1959-06-07"^^xsd:date; + base:person\#family_name "Castellanos"; + base:person\#first_name "Julio"; + base:person\#fuzzybirthdate "1873"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/CogRos-00 a base:person; + base:person\#Birth_Info "other sources: 18 March 1850 or 1851 in Petersborough, Lincolnshire"; + base:person\#GND "https://d-nb.info/gnd/124976114X"; + base:person\#IDPerson "CogRos-00"; + base:person\#ISNI "https://isni.org/isni/0000000448836878"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2009015160"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w63f5f5r#resources"; + base:person\#VIAF "https://viaf.org/viaf/78910814"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1606992"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Rose_Coghlan"; + base:person\#birthdate "1852-03-18"^^xsd:date; + base:person\#birthdate_max "1852-03-18"^^xsd:date; + base:person\#deathdate "1932-04-02"^^xsd:date; + base:person\#deathdate_max "1932-04-02"^^xsd:date; + base:person\#family_name "Coghlan"; + base:person\#first_name "Rose "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RoseCoghlan1884.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Rose_Coghlan#/media/File:RoseCoghlan1884.jpg"; + base:person\#profession "Actress, Leading Lady"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-03 . + +base:person\/DamWal-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116020776"; + base:person\#IDPerson "DamWal-00"; + base:person\#ISNI "https://isni.org/isni/0000000110516519"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no91016435"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6rv0nvb"; + base:person\#VIAF "https://viaf.org/viaf/32185765"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q725579"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Walter_Damrosch"; + base:person\#birthdate "1862-01-30"^^xsd:date; + base:person\#birthdate_max "1862-01-30"^^xsd:date; + base:person\#deathdate "1950-12-22"^^xsd:date; + base:person\#deathdate_max "1950-12-22"^^xsd:date; + base:person\#family_name "Damrosch"; + base:person\#first_name "Walter"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Walter_Damrosch.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q725579#/media/File:Walter_Damrosch.jpg"; + base:person\#profession "Assistant, Conductor"; + base:person\#ref-IDBirthPlace base:location\/PL-Bres-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/EibKar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1068982497"; + base:person\#IDPerson "EibKar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220368"; + base:person\#birthdate "1829-01-04"^^xsd:date; + base:person\#birthdate_max "1829-01-04"^^xsd:date; + base:person\#family_name "Eibenschütz"; + base:person\#first_name "Karl-Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer,Bariton"; + base:person\#ref-IDBirthPlace base:location\/HU-Pest-00; + base:person\#ref-IDDeathPlace base:location\/HU-Buda-00 . + +base:person\/FonAgu-00 a base:person; + base:person\#IDPerson "FonAgu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/view/41732743#resources"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikimedia: Agustín Fontanella, online: https://commons.wikimedia.org/wiki/File:Tranquera_-_Agustin_Fontanella.pdfAgustín Fontanella: Tranquera. Drama criollo, Buenos +Aires: N. Tommasi Editor 1898, online: https://digital.iai.spk-berlin.de/viewer/image/835984818/1/#topDocAnchor"""; + base:person\#VIAF "https://viaf.org/en/viaf/search?field=local.names&index=viaf&s"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q55466364"; + base:person\#birthdate "1873-12-18"^^xsd:date; + base:person\#deathdate "1944-11-10"^^xsd:date; + base:person\#family_name "Fontanella"; + base:person\#first_name "Agustín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fontanella_Agustín.pdf.jpg"; + base:person\#image_source "https://commons.wikimedia.org/w/index.php?title=File:Restauracion_-_Agustin_Fontanella.pdf&"; + base:person\#ref-IDBirthPlace base:location\/IT-PiedM-00 . + +base:person\/GerBer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1204888396"; + base:person\#IDPerson "GerBer-00"; + base:person\#ISNI "https://isni.org/isni/0000000073718487"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.108-109. "; + base:person\#VIAF "https://viaf.org/viaf/98489610/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q60331908"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Berta_Gersten"; + base:person\#birthdate "1894-08-20"^^xsd:date; + base:person\#birthdate_max "1894-08-20"^^xsd:date; + base:person\#comment "buried at Mount Zion Cemetery, NY"; + base:person\#deathdate "1972-09-10"^^xsd:date; + base:person\#deathdate_max "1972-09-10"^^xsd:date; + base:person\#family_name "Gersten "; + base:person\#first_name "Berta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Berta_Gersten.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q60331908#/media/File:Berta_Gersten.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/PL-Krak-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/GluAlm-00 a base:person; + base:person\#Birth_Info "other sources: Bucharest"; + base:person\#GND "https://d-nb.info/gnd/129818089"; + base:person\#IDPerson "GluAlm-00"; + base:person\#ISNI "https://isni.org/isni/0000000027389918"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86862843"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w65b0537"; + base:person\#VIAF "https://viaf.org/viaf/61731966"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q269815"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Alma_Gluck"; + base:person\#birthdate "1884-05-11"^^xsd:date; + base:person\#birthdate_max "1884-05-11"^^xsd:date; + base:person\#comment "buried at Town Hill Cemetery in New Hardford, Connecticut"; + base:person\#deathdate "1938-10-27"^^xsd:date; + base:person\#deathdate_max "1938-10-27"^^xsd:date; + base:person\#family_name "Gluck"; + base:person\#first_name "Alma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Almagluck.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q269815#/media/File:Almagluck.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/KemFra-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01356011"; + base:person\#GND "https://d-nb.info/gnd/116126574"; + base:person\#IDPerson "KemFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000081462741"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50045686"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6fj2f3v"; + base:person\#VIAF "https://viaf.org/viaf/66594114"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q433397"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Fanny_Kemble"; + base:person\#birthdate "1809-11-27"^^xsd:date; + base:person\#birthdate_max "1809-11-27"^^xsd:date; + base:person\#comment "Burial: Kensal Green Cemetery Royal Borough of Kensington and Chelsea, Greater London, England "; + base:person\#deathdate "1893-01-15"^^xsd:date; + base:person\#deathdate_max "1893-01-15"^^xsd:date; + base:person\#family_name "Kemble"; + base:person\#first_name "Frances Anne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frances_Anne_Kemble_-_adapted_from_Project_Gutenberg_eText_16478.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q433397#/media/File:Frances_Anne_Kemble_-_adapted_from_Project_Gutenberg_eText_16478.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/KomMax-2133 a base:person; + base:person\#IDPerson "KomMax-2133"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-max.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 4, New York: 1963, p.2685."""; + base:person\#birthdate "1905-01-01"^^xsd:date; + base:person\#birthdate_max "1905-12-31"^^xsd:date; + base:person\#comment "Buried in Paris, France"; + base:person\#family_name "Kompaneyets"; + base:person\#first_name "Max"; + base:person\#fuzzybirthdate "1905"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-kompaneyets-max.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/K/kompaneyets-max.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00; + base:person\#religion "Jewish" . + +base:person\/KruMin-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/126673896"; + base:person\#IDPerson "KruMin-00"; + base:person\#ISNI "https://isni.org/isni/0000000028383155"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86092441"; + base:person\#VIAF "https://viaf.org/viaf/19812776"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2019499"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Mina_Kruseman"; + base:person\#birthdate "1839-09-25"^^xsd:date; + base:person\#birthdate_max "1839-09-25"^^xsd:date; + base:person\#comment "Jugend in Indonesien"; + base:person\#deathdate "1922-08-02"^^xsd:date; + base:person\#deathdate_max "1922-08-02"^^xsd:date; + base:person\#family_name "Krusemann"; + base:person\#first_name "Mina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mina_Kruseman.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2019499#/media/File:Mina_Kruseman.jpg"; + base:person\#profession "Feminist, Actrice,Author"; + base:person\#ref-IDBirthPlace base:location\/NL-VELP-00; + base:person\#ref-IDDeathPlace base:location\/FR-Paris-01 . + +base:person\/LitRob-00 a base:person; + base:person\#IDPerson "LitRob-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Historical Photographs of China (ed.): “Robert William Little, editor of the North-China Herald, Shanghai”, https://hpcbristol.net/visual/ld01-137. +Evening Irish Times (ed.). 27th April 1906. p. 5: https://www.britishnewspaperarchive.co.uk/viewer/bl/0003464/19060427/104/0005#. +North China Herald (ed.). 29th March 1877. p.315: https://archive.org/details/north-china-herald-1877.03.29/mode/2up?q=R.W.Little. +The North-China Daily News (ed.). 10th October 1872. p.298: https://archive.org/details/north-china-herald-1872.10.10/page/298/mode/2up?q=R.W.Little. +The North-China Daily News(ed.). 25th May 1872. p.414: https://archive.org/details/north-china-herald-1872.05.25/page/414/mode/2up?q=R.W.Little. +Historical Photographs of China (ed.): “R.W. ‘Bob’ Little as Solomon Probity in 'The Chimney Corner', Shanghai”, https://www.hpcbristol.net/visual/hd-s46; “Cast of 'The Chimney Corner', Shanghai, 1873”, https://hpcbristol.net/visual/hd-s43. +The North-China Daily News (ed.). 22nd October 1874. p. 400: https://archive.org/details/north-china-herald-1874.10.22/page/400/mode/2up?q=Little. +The North-China Daily News (ed.). 28th March 1879. p. 300: https://archive.org/details/north-china-herald-1879.03.28/page/300/mode/2up?q=Little. +The North-China Daily News (ed.). 05th December 1925. p.452: https://archive.org/details/north-china-herald-1925.12.05/page/n33/mode/2up?q=1882. +The North-China Daily News (ed.). 03rd August 1920. p.1: https://archive.org/details/north-china-herald-1920.08.03/page/n1/mode/2up?q=R.W.Little. +The North-China Daily News (ed.). 11st November 1904. p.1086: https://archive.org/details/north-china-herald-1904.11.11/page/1086/mode/2up?q=Little. +The North-China Daily News (ed.). 22nd April 1904. p.832: https://archive.org/details/north-china-herald-1904.04.22/page/832/mode/2up?q=Little. +The North-China Daily News (ed.). 07th April 1905. p.22: https://archive.org/details/north-china-herald-1905.04.07/page/n21/mode/2up?q=A.D.C. +The North-China Daily News (ed.). 24th May 1933. p.316: https://archive.org/details/north-china-herald-1933.05.24/page/316/mode/2up?q=R.W.Little. +Manchester Museum (ed.): “A Remarkable Couple in China: Archibald and Alicia Little”, https://mmhellofuture.wordpress.com/2020/08/05/a-remarkable-couple-in-china-archibald-and-alicia-little/. +The North-China Daily News (ed.). 29th May 1920. p.508: https://archive.org/details/north-china-herald-1920.05.29/page/508/mode/2up?q=R.W.Little. +Robert William Little: Poems, New York: Cornell University Library 2009[1907]."""; + base:person\#birthdate "1840-01-01"^^xsd:date; + base:person\#birthdate_max "1840-12-31"^^xsd:date; + base:person\#comment """Englischer Geschäftsmann in China; +for some years past Reuter´s correspondent at Shanghai +Organisator von Amateur Dramatic Club of Shanghai (A.D.C.) usw.. Ein veröffentlichtes Buch: Poems (Report of International Opium Commission held at Shanghai, Februar, 1909, 2 vola.) """; + base:person\#deathdate "1906-04-21"^^xsd:date; + base:person\#deathdate_max "1906-04-21"^^xsd:date; + base:person\#family_name "Little"; + base:person\#first_name "Robert William"; + base:person\#fuzzybirthdate "1840"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/robertlittle.jpg"; + base:person\#image_source "https://hpcbristol.net/visual/LD01-137"; + base:person\#profession "Critic, Founder"; + base:person\#ref-IDBirthPlace base:location\/EN-MANCH-00; + base:person\#ref-IDDeathPlace base:location\/CN-SH-00 . + +base:person\/MonLaz-2502 a base:person; + base:person\#IDPerson "MonLaz-2502"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#Source """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/monfried-lazarus.htm +https://congressforjewishculture.org/people/3065/Monfrid-Leyzer-August-1885-October-14-1955 +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1225."""; + base:person\#birthdate "1885-08-01"^^xsd:date; + base:person\#birthdate_max "1885-08-31"^^xsd:date; + base:person\#family_name "Monfried"; + base:person\#first_name "Lazarus"; + base:person\#fuzzybirthdate "August 1885"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Lit-DiJeSt-82; + base:person\#religion "Jewish" . + +base:person\/MosMin-00 a base:person; + base:person\#Birth_Info "other sources: 18 March 1866"; + base:person\#GND "https://d-nb.info/gnd/1012708241"; + base:person\#IDPerson "MosMin-00"; + base:person\#ISNI "https://isni.org/isni/0000000120610349"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-no00083144/"; + base:person\#SNAC "https://snaccooperative.org/view/21827208#resources"; + base:person\#Source """Ancestry.com, “Einwanderung und Reisen: Alle Suchergebnisse für Minna Moscherosch Schmidt”, https://www.ancestry.de/search/categories/40/?name=Minna_Moscherosch+Schmidt&birth=1866&birth_x=0-0-0&gender=f. +# +Gerlinde Wicke-Nabe: „Das US-Erbe der berühmten Sindelfingerin“, Stuttgarter Nachrichten, 09.12.2018, https://www.stuttgarter-nachrichten.de/inhalt.sindelfingen-das-us-erbe-der-beruehmten-sindelfingerin.bc4cdd5d-f1f0-4fae-8f0f-6055dffd2c8d.html. +# +Gerlinde Wicke-Nabe: „Die Abenteurerin und der Schultheiß“, Stuttgarter Nachrichten, 13. 07. 2019, https://www.stuttgarter-nachrichten.de/inhalt.sindelfinger-biennale-die-abenteurerin-und-der-schultheiss.16c71b66-6d96-406c-9543-f9e9e6290dbc.html. +# +Evanston Women´s History Project: „Minna Schmidt“, https://evanstonwomen.org/woman/minna-schmidt/. """; + base:person\#VIAF "https://viaf.org/viaf/171591978"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q94298709"; + base:person\#birthdate "1866-03-17"^^xsd:date; + base:person\#birthdate_max "1866-03-17"^^xsd:date; + base:person\#comment "Burial: Wunder Cemetery in Chicago"; + base:person\#deathdate "1961-12-08"^^xsd:date; + base:person\#deathdate_max "1961-12-08"^^xsd:date; + base:person\#family_name "Moscherosch Schmidt"; + base:person\#first_name "Minna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/moscherosch.jpg"; + base:person\#image_source "https://www.stuttgarter-zeitung.de/gallery.sindelfingen-das-us-erbe-der-beruehmten-sindelfingerin.385cdc2b-b81c-498a-a1fc-93c086c392c9.html"; + base:person\#profession "Dancer, Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-Sindlf-00; + base:person\#ref-IDDeathPlace base:location\/USA-CHIC-00 . + +base:person\/MotHen-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116942045"; + base:person\#IDPerson "MotHen-00"; + base:person\#ISNI "https://isni.org/isni/0000000368207123"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/309799180"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q55857124"; + base:person\#birthdate "1866-12-06"^^xsd:date; + base:person\#birthdate_max "1866-12-06"^^xsd:date; + base:person\#deathdate "1933-04-15"^^xsd:date; + base:person\#deathdate_max "1933-04-15"^^xsd:date; + base:person\#family_name "Mottl"; + base:person\#first_name "Henriette"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载.png"; + base:person\#image_source "https://www.theatermuseum.at/en/onlinesammlung/detail/578868/"; + base:person\#profession "Opera Singer, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:person\/StrFer-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02030918"; + base:person\#GND "https://d-nb.info/gnd/117306258"; + base:person\#IDPerson "StrFer-00"; + base:person\#ISNI "https://isni.org/isni/0000000010447931"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Österreichisches Biographisches Lexikon"; + base:person\#VIAF "https://viaf.org/viaf/64780580/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q94896443"; + base:person\#comment """Part of the Strakosch family, the “sugar barons”. +Director of various theatres in Stockholm, Florence, Barcelona, Paris, Rome etc. """; + base:person\#deathdate "1902-08-04"^^xsd:date; + base:person\#deathdate_max "1902-08-04"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Impresario"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/WalEll-3202 a base:person; + base:person\#IDPerson "WalEll-3202"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-; + base:person\#Source """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-ella.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.65."""; + base:person\#birthdate "1892-09-24"^^xsd:date; + base:person\#birthdate_max "1892-09-24"^^xsd:date; + base:person\#family_name "Wallerstein"; + base:person\#first_name "Ella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:person\/WeeMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/133461246"; + base:person\#IDPerson "WeeMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/47953047"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18628994"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marion_Weed"; + base:person\#birthdate "1865-09-12"^^xsd:date; + base:person\#birthdate_max "1865-09-12"^^xsd:date; + base:person\#deathdate "1947-06-22"^^xsd:date; + base:person\#deathdate_max "1947-06-22"^^xsd:date; + base:person\#family_name "Weed"; + base:person\#first_name "Marion"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marion_Weed.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q18628994#/media/File:Marion_Weed.jpg"; + base:person\#profession "Singing teacher"; + base:person\#ref-IDBirthPlace base:location\/USA-NY-02; + base:person\#ref-IDDeathPlace base:location\/USA-NY-02 . + +base:Country-Netherlands a base:Country; + rdfs:label "Netherlands"@en . + +base:InstitutionType-Casino a base:InstitutionType; + rdfs:label "Casino"@en . + +base:State-NewJersey a base:State; + rdfs:label "New Jersey"@en . + +base:location\/BR-00 a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3469034"; + base:location\#IDLocation "BR-00"; + base:location\#latitude -1.065e1; + base:location\#longitude -5.295e1; + base:location\#wikidata "Q155"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brazil" . + +base:location\/CN-HKG-00 a base:location; + base:location\#City base:City-HongKong; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#GeoNamesID "1819729"; + base:location\#IDLocation "CN-HKG-00"; + base:location\#latitude 2.23e1; + base:location\#longitude 1.14167e2; + base:location\#wikidata "Q8646"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hong_Kong" . + +base:location\/DK-Kop-00 a base:location; + base:location\#City base:City-Copenhagen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Denmark; + base:location\#GeoNamesID "2618425"; + base:location\#IDLocation "DK-Kop-00"; + base:location\#latitude 5.56761e1; + base:location\#longitude 1.25683e1; + base:location\#wikidata "Q1748"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Copenhagen" . + +base:location\/GER-Mainz-00 a base:location; + base:location\#City base:City-Mainz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2874225"; + base:location\#IDLocation "GER-Mainz-00"; + base:location\#latitude 4.99833e1; + base:location\#longitude 8.26667e0; + base:location\#wikidata "Q1720"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mainz" . + +base:location\/SouthAmerica a base:location; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#GeoNamesID "6255150"; + base:location\#IDLocation "SouthAmerica"; + base:location\#latitude -2.61484e1; + base:location\#longitude -6.08994e1; + base:location\#wikidata "Q18"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/South_America" . + +base:location\/USA-Richm-00 a base:location; + base:location\#City base:City-Richmond; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4781708"; + base:location\#IDLocation "USA-Richm-00"; + base:location\#State base:State-Virginia; + base:location\#latitude 3.75489e1; + base:location\#longitude -7.74474e1; + base:location\#wikidata "Q43421"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Richmond,_Virginia" . + +base:location\/USA-Sacram-00 a base:location; + base:location\#City base:City-Sacramento; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5389489"; + base:location\#IDLocation "USA-Sacram-00"; + base:location\#State base:State-California; + base:location\#latitude 3.85754e1; + base:location\#longitude -1.21486e2; + base:location\#wikidata "Q18013"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sacramento,_California" . + +base:location\/Ukr-DiJeSt-29 a base:location; + base:location\#City base:City-Chernivtsi; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-29"; + base:location\#latitude 4.82908e1; + base:location\#longitude 2.59344e1; + base:location\#wikidata "Q157725"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:location\/Ukr-DiJeSt-57 a base:location; + base:location\#City base:City-Kyiv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#IDLocation "Ukr-DiJeSt-57"; + base:location\#latitude 5.045e1; + base:location\#longitude 3.05236e1; + base:location\#wikidata "Q1899"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/" . + +base:organisation\/1287 a base:organisation; + base:organisation\#IDOrganisation 1287; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Honest John Templeton " . + +base:organisation\/2801 a base:organisation; + base:organisation\#IDOrganisation 2801; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Boston theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Bost-00 . + +base:organisation\/2940 a base:organisation; + base:organisation\#IDOrganisation 2940; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Buenos Aires" . + +base:organisation\/2960 a base:organisation; + base:organisation\#IDOrganisation 2960; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Maipo" . + +base:organisation\/384 a base:organisation; + base:organisation\#IDOrganisation 384; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hebbel-Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/441 a base:organisation; + base:organisation\#IDOrganisation 441; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opéra-comique"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/488 a base:organisation; + base:organisation\#IDOrganisation 488; + base:organisation\#InstType base:InstitutionType-Education\%28Theatrerelated\%29; + base:organisation\#comment ""; + base:organisation\#inst_name "Konservatorium der Gesellschaft der Musikfreunde"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/5292 a base:organisation; + base:organisation\#IDOrganisation 5292; + base:organisation\#inst_name "Boyd`s Opera House (Omaha)" . + +base:organisation\/604 a base:organisation; + base:organisation\#IDOrganisation 604; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Januário" . + +base:organisation\/66690 a base:organisation; + base:organisation\#IDOrganisation 66690; + base:organisation\#InstType base:InstitutionType-CompanyonTour; + base:organisation\#comment ""; + base:organisation\#inst_name "The Vilna Troupe" . + +base:organisation\/70736 a base:organisation; + base:organisation\#IDOrganisation 70736; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Spivakovski-Rozenberg troupe" . + +base:organisation\/71820 a base:organisation; + base:organisation\#IDOrganisation 71820; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "גאָלדפאדעןס טרופּע" . + +base:organisation\/82 a base:organisation; + base:organisation\#IDOrganisation 82; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Kärtnertortheater" . + +base:person\/AdlSte-1127 a base:person; + base:person\#IDPerson "AdlSte-1127"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-stella.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.29."""; + base:person\#birthdate "1903-02-10"^^xsd:date; + base:person\#birthdate_max "1903-02-10"^^xsd:date; + base:person\#family_name "Adler"; + base:person\#first_name "Stella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-adler-stella.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/lex-adler-stella.jpg"; + base:person\#ref-IDBirthPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/BerLeo-1264 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "BerLeo-1264"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berger-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.2."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#family_name "Berger"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#religion "Jewish" . + +base:person\/BisKat-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/1249759870"; + base:person\#IDPerson "BisKat-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#VIAF "https://viaf.org/viaf/5938164298432908630000"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6375375"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Kate_Bishop_(actress)"; + base:person\#birthdate "1849-10-01"^^xsd:date; + base:person\#birthdate_max "1849-10-01"^^xsd:date; + base:person\#deathdate "1923-06-12"^^xsd:date; + base:person\#deathdate_max "1923-06-12"^^xsd:date; + base:person\#family_name "Bishop"; + base:person\#first_name "Kate Alice"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Kate_Bishop.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Kate_Bishop.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/UK-Bris-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/BraMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02069976"; + base:person\#GND "https://d-nb.info/gnd/103197105X"; + base:person\#IDPerson "BraMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97858337"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/58378741"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q21041733"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Sofia_Fuoco"; + base:person\#birthdate "1830-01-16"^^xsd:date; + base:person\#birthdate_max "1830-01-16"^^xsd:date; + base:person\#comment "Carate Urio (Province Como)"; + base:person\#deathdate "1916-06-16"^^xsd:date; + base:person\#deathdate_max "1916-06-16"^^xsd:date; + base:person\#family_name "Brambilla"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Brambilla_Maria.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Sofia_Fuoco "; + base:person\#profession "Danseuse"; + base:person\#ref-IDBirthPlace base:location\/IT-Mila-00; + base:person\#ref-IDDeathPlace base:location\/IT-Como-00 . + +base:person\/EibAnt-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/1068983930"; + base:person\#IDPerson "EibAnt-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903 + +Oberösterreichische Nachrichten. 12. November 1946, S. 3. https://anno.onb.ac.at/cgi-content/anno?aid=oon&datum=19461112&seite=3&zoom=33 +"""; + base:person\#VIAF "https://viaf.org/viaf/315112491"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220241"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Toni_Claar-Eibensch%C3%BCtz"; + base:person\#birthdate "1866-06-28"^^xsd:date; + base:person\#birthdate_max "1866-06-28"^^xsd:date; + base:person\#family_name "Eibenschütz"; + base:person\#first_name "Antonia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera,Operetta Singer, Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/AT-Gmun-00 . + +base:person\/GalCae-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1112677380"; + base:person\#IDPerson "GalCae-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/3810147312825037970005"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115220640"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/C%C3%A4sar_Galster"; + base:person\#birthdate "1844-01-12"^^xsd:date; + base:person\#birthdate_max "1844-01-12"^^xsd:date; + base:person\#deathdate "1917-12-17"^^xsd:date; + base:person\#deathdate_max "1917-12-17"^^xsd:date; + base:person\#family_name "Galster"; + base:person\#first_name "Caeser"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/GER-NeuStrel-00 . + +base:person\/GeaMig-00 a base:person; + base:person\#IDPerson "GeaMig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Carolina González Velasco. “Una pandilla de truhanes y un cándido público: el negocio de los espectáculos teatrales, Buenos Aires, 1920”. Revista Nuevo Mundo, 2010. https://doi.org/10.4000/nuevomundo.60069. Online, https://journals.openedition.org/nuevomundo/60069"; + base:person\#family_name "Gea"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/HaeNat-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116362766"; + base:person\#IDPerson "HaeNat-00"; + base:person\#ISNI "https://isni.org/isni/0000000013189915"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "BMLO, Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/8137396"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q21582257"; + base:person\#birthdate "1837-06-03"^^xsd:date; + base:person\#birthdate_max "1837-06-03"^^xsd:date; + base:person\#deathdate "1921-10-13"^^xsd:date; + base:person\#deathdate_max "1921-10-13"^^xsd:date; + base:person\#family_name "Haenisch"; + base:person\#first_name "Natalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720472271396.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q21582257#/media/File:NatalieHaenisch1905.jpg"; + base:person\#ref-IDBirthPlace base:location\/PL-Marienw-00; + base:person\#ref-IDDeathPlace base:location\/GER-Dresd-00 . + +base:person\/LauHei-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01371159"; + base:person\#GND "https://d-nb.info/gnd/118570080"; + base:person\#IDPerson "LauHei-00"; + base:person\#ISNI "https://isni.org/isni/0000000109024840"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83012970"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cj8s3n"; + base:person\#Source "Österreichisches Biographisches Lexikon 1815–1950"; + base:person\#VIAF "https://viaf.org/viaf/54243995"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q77470"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Heinrich_Laube"; + base:person\#birthdate "1806-09-18"^^xsd:date; + base:person\#birthdate_max "1806-09-18"^^xsd:date; + base:person\#comment "buried in the evangelic cemetery Wien Matzleinsdorf"; + base:person\#deathdate "1884-08-01"^^xsd:date; + base:person\#deathdate_max "1884-08-01"^^xsd:date; + base:person\#family_name "Laube"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/H_Laube_Portrait.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q77470#/media/File:H_Laube_Portrait.jpg"; + base:person\#profession "Writer, playwright ,theatre director"; + base:person\#ref-IDBirthPlace base:location\/PL-Sprott-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/LevHer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118865900"; + base:person\#IDPerson "LevHer-00"; + base:person\#ISNI "https://isni.org/isni/0000000120208376"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86138022"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w69k4p8v"; + base:person\#VIAF "https://viaf.org/viaf/10643494"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q61175"; + base:person\#birthdate "1839-11-07"^^xsd:date; + base:person\#birthdate_max "1839-11-07"^^xsd:date; + base:person\#comment "He conducted the world premiere of Parsifal in Bayreuth at the Bayreuther Festspiele 1882"; + base:person\#deathdate "1900-05-13"^^xsd:date; + base:person\#deathdate_max "1900-05-13"^^xsd:date; + base:person\#family_name "Levi"; + base:person\#first_name "Herrmann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hermann_Levi.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q61175#/media/File:Hermann_Levi.jpg"; + base:person\#profession "Conductor,composer"; + base:person\#ref-IDBirthPlace base:location\/GER-Gies-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00; + base:person\#religion "Jewish" . + +base:person\/LoeMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00822311"; + base:person\#GND "https://d-nb.info/gnd/131713604"; + base:person\#IDPerson "LoeMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Artikel über Lilli Lehmann"; + base:person\#VIAF "https://viaf.org/viaf/47901953"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q98057"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Maria_Theresia_L%C3%B6w"; + base:person\#birthdate "1809-03-27"^^xsd:date; + base:person\#birthdate_max "1809-03-27"^^xsd:date; + base:person\#deathdate "1885-12-30"^^xsd:date; + base:person\#deathdate_max "1885-12-30"^^xsd:date; + base:person\#family_name "Loew"; + base:person\#first_name "Marie Theresia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Theresia_Löw_als_Rebecca.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q98057#/media/File:Maria_Theresia_L%C3%B6w_als_Rebecca.jpg"; + base:person\#profession "Opera Singer,Soprano, Vocal Teacher, Harpist"; + base:person\#ref-IDBirthPlace base:location\/GER-Heidelb-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/PhiAdo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1049618238"; + base:person\#IDPerson "PhiAdo-00"; + base:person\#ISNI "https://isni.org/isni/0000000064373245"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://www.worldcat.org/identities/lccn-nr99020110/"; + base:person\#Source "Adolf Philipp Petitions for Naturalization, Soundex Index to Petitions for Naturalization filed in Federal, State, and Local Courts located in New York City, 1792-1989. New York, NY, USA: The National Archives at New York City, via ancestry.comAdolf Philipp Passport Application, National Archives and Records Administration (NARA); Washington D.C.; NARA-Serie: Passport Applications, January 2, 1906 - March 31, 1925, roll 2468 - Certificates: 391350-391849, 10 Apr 1924-11 Apr 1924, via ancestry.com John Koegel: Adolf Philipp and Ethnic Musical Comedy in New York’s Little Germany, in: American Music (2006) 24 (3): 267–319. https://doi.org/10.2307/25046034"; + base:person\#VIAF "https://viaf.org/viaf/78699474/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q15429454"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Adolf_Philipp"; + base:person\#birthdate "1864-01-29"^^xsd:date; + base:person\#birthdate_max "1864-01-29"^^xsd:date; + base:person\#deathdate "1936-07-30"^^xsd:date; + base:person\#deathdate_max "1936-07-30"^^xsd:date; + base:person\#family_name "Philipp"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Composer, Librettist, Theater Manager, Actor"; + base:person\#ref-IDBirthPlace base:location\/GER-Lueb-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/ResJoh-00 a base:person; + base:person\#GND "http://d-nb.info/gnd/13363017X"; + base:person\#IDPerson "ResJoh-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 3900.Alexander Rausch: „Ress, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x00075a4e"; + base:person\#VIAF "http://viaf.org/viaf/28266290"; + base:person\#birthdate "1839-08-08"^^xsd:date; + base:person\#birthdate_max "1839-08-08"^^xsd:date; + base:person\#deathdate "1916-12-16"^^xsd:date; + base:person\#deathdate_max "1916-12-16"^^xsd:date; + base:person\#family_name "Ress"; + base:person\#first_name "Johannes"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/SeiLeo-2882 a base:person; + base:person\#IDPerson "SeiLeo-2882"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/seidenberg-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.771."""; + base:person\#VIAF "https://viaf.org/en/viaf/305369048"; + base:person\#birthdate "1896-07-04"^^xsd:date; + base:person\#birthdate_max "1896-07-04"^^xsd:date; + base:person\#family_name "Seidenberg"; + base:person\#first_name "Leon"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-seidenberg-leon.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/S/seidenberg-leon.htm"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-24; + base:person\#religion "Jewish" . + +base:person\/ShlAdo-2932 a base:person; + base:person\#IDPerson "ShlAdo-2932"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/shliferstein-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4964."""; + base:person\#family_name "Shliferstein"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:person\/SinAbr-2985 a base:person; + base:person\#IDPerson "SinAbr-2985"; + base:person\#Importsource base:ImportSource-Own; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png" . + +base:person\/SinFis-2987 a base:person; + base:person\#IDPerson "SinFis-2987"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG +No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/S/singer-fishel.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.792."""; + base:person\#birthdate "1887-09-04"^^xsd:date; + base:person\#birthdate_max "1887-09-04"^^xsd:date; + base:person\#family_name "Singer"; + base:person\#first_name "Fishel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#religion "Jewish" . + +base:person\/StrIrm-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/104647880X"; + base:person\#IDPerson "StrIrm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/306267679/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q38051185"; + base:person\#birthdate "1860-01-06"^^xsd:date; + base:person\#birthdate_max "1860-01-06"^^xsd:date; + base:person\#deathdate "1931-08-22"^^xsd:date; + base:person\#deathdate_max "1931-08-22"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Irma Maria Ludmilla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Singer, Singing Teacher, Writer"; + base:person\#ref-IDBirthPlace base:location\/CZ-Prag-00; + base:person\#ref-IDDeathPlace base:location\/GER-HH-00 . + +base:person\/TimAdo-3076 a base:person; + base:person\#IDPerson "TimAdo-3076"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/timianoff-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.881."""; + base:person\#birthdate "1886-07-15"^^xsd:date; + base:person\#birthdate_max "1886-07-15"^^xsd:date; + base:person\#family_name "Timianoff"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-timianof-adolf.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/timianoff-adolf.htm "; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/TorSam-3082 a base:person; + base:person\#IDPerson "TorSam-3082"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tornberg-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.858."""; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q123272275"; + base:person\#birthdate "1872-01-01"^^xsd:date; + base:person\#birthdate_max "1872-12-31"^^xsd:date; + base:person\#comment "Buried in Mount Zion Cemetery, Radom section"; + base:person\#family_name "Tornberg"; + base:person\#first_name "Samuel"; + base:person\#fuzzybirthdate "1872"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tornberg-samuel.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/tornberg-samuel.htm "; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/WalGus-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117130990"; + base:person\#IDPerson "WalGus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2012119472"; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/64193387"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q12018560"; + base:person\#birthdate "1834-02-11"^^xsd:date; + base:person\#birthdate_max "1834-02-11"^^xsd:date; + base:person\#deathdate "1910-01-31"^^xsd:date; + base:person\#deathdate_max "1910-01-31"^^xsd:date; + base:person\#family_name "Walter"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Székely_-_Gustav_Walter.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q12018560#/media/File:Josef_Sz%C3%A9kely_-_Gustav_Walter.jpg"; + base:person\#ref-IDBirthPlace base:location\/CZ-Bilin-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/ZieRos-3391 a base:person; + base:person\#IDPerson "ZieRos-3391"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/ziegler-rosa.htm + +Jewish Telegraphic Agency, February 1930: https://www.jta.org/archive/samuel-rosenstein-yiddish-actor-dies-in-chicago + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.769."""; + base:person\#birthdate "1888-12-25"^^xsd:date; + base:person\#birthdate_max "1888-12-25"^^xsd:date; + base:person\#family_name "Ziegler"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zigler-roza.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/ziegler-rosa.htm"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#religion "Jewish" . + +base:Country-Portugal a base:Country; + rdfs:label "Portugal"@en . + +base:location\/AUS-Adel-00 a base:location; + base:location\#City base:City-Adelaide; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2078025"; + base:location\#IDLocation "AUS-Adel-00"; + base:location\#latitude -3.49167e1; + base:location\#longitude 1.386e2; + base:location\#wikidata "Q5112"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Adelaide" . + +base:location\/GER-Magdb-00 a base:location; + base:location\#City base:City-Magdeburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2874545"; + base:location\#IDLocation "GER-Magdb-00"; + base:location\#latitude 5.21333e1; + base:location\#longitude 1.16167e1; + base:location\#wikidata "Q1733"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Magdeburg" . + +base:location\/GER-Weim-00 a base:location; + base:location\#City base:City-Weimar; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2812482"; + base:location\#IDLocation "GER-Weim-00"; + base:location\#latitude 5.09833e1; + base:location\#longitude 1.13167e1; + base:location\#wikidata "Q3955"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Weimar" . + +base:location\/IT-Rom-00 a base:location; + base:location\#City base:City-Rome; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3169070"; + base:location\#IDLocation "IT-Rom-00"; + base:location\#latitude 4.18833e1; + base:location\#longitude 1.25e1; + base:location\#wikidata "Q220"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rome" . + +base:location\/PL-Crac-00 a base:location; + base:location\#City base:City-Cracow; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#IDLocation "PL-Crac-00"; + base:location\#latitude 5.00617e1; + base:location\#longitude 1.99372e1; + base:location\#wikidata "Q31487" . + +base:location\/USA-Scrnt-00 a base:location; + base:location\#City base:City-Scranton; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5211303"; + base:location\#IDLocation "USA-Scrnt-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.14106e1; + base:location\#longitude -7.56675e1; + base:location\#wikidata "Q271395"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Scranton,_Pennsylvania" . + +base:organisation\/56520 a base:organisation; + base:organisation\#IDOrganisation 56520; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#comment ""; + base:organisation\#inst_name "Kalmen Juvelier's Theatre Troupe" . + +base:organisation\/568 a base:organisation; + base:organisation\#IDOrganisation 568; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyceum Theatre "; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/602 a base:organisation; + base:organisation\#IDOrganisation 602; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro São Pedro de Alcântara"; + base:organisation\#ref-IDLocation base:location\/BR-RdJ-00 . + +base:organisation\/61220 a base:organisation; + base:organisation\#IDOrganisation 61220; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Poole's Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/65730 a base:organisation; + base:organisation\#IDOrganisation 65730; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Thalia Theatre|Bowery Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/752 a base:organisation; + base:organisation\#IDOrganisation 752; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro San Martín" . + +base:organisation\/79 a base:organisation; + base:organisation\#IDOrganisation 79; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater Prag"; + base:organisation\#ref-IDLocation base:location\/CZ-Prag-00 . + +base:person\/AlbHer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116279745"; + base:person\#IDPerson "AlbHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Albrecht, Hermine. In: Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen Akademie der Wissenschaften, Wien 1957, S. 13."; + base:person\#VIAF "https://viaf.org/viaf/13053876"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17425325"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Hermine_Albrecht"; + base:person\#birthdate "1856-12-18"^^xsd:date; + base:person\#birthdate_max "1856-12-18"^^xsd:date; + base:person\#comment "Buried at Hietzinger Friedhof in Wien."; + base:person\#deathdate "1929-05-21"^^xsd:date; + base:person\#deathdate_max "1929-05-21"^^xsd:date; + base:person\#family_name "Albrecht"; + base:person\#first_name "Hermine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Albrecht_Hermine_Nyaryi.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Hermine_Albrecht  "; + base:person\#profession """Actress +"""; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-Graz-00 . + +base:person\/AntAnd-00 a base:person; + base:person\#GND "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&am"; + base:person\#IDPerson "AntAnd-00"; + base:person\#ISNI "https://isni.org/page/search-database/"; + base:person\#Source """İstanbul Encyclopedia – Sermet Muhtar Alus, https://istanbulansiklopedisi.org/handle/rek/4328 +Atatürk Encyclopedia – İbrahim Hamaloğlu, “Mösyü Antuvan: 1858-1943 Fransız Tiyatrocu ve Darülbedayii Osmani’nin İlk Müdürü” https://ataturkansiklopedisi.gov.tr/detay/1519/Mösyö-Antuvan-(1858-1943) +“Mösyö “Antuvan”la Mülakat”, İctihad, sayı 113, 3 Temmuz 1330/15 Temmuz 1914, İstanbul. (Salt Arşivi/Salt Archives FFT541022)"""; + base:person\#VIAF "https://viaf.org/en/viaf/2532045"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q529001"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Andr%C3%A9_Antoine"; + base:person\#birthdate_max "1858-01-31"^^xsd:date; + base:person\#deathdate_max "1943-10-23"^^xsd:date; + base:person\#family_name "Antoine"; + base:person\#first_name "Andre"; + base:person\#fuzzybirthdate "1858-01-31"; + base:person\#fuzzydeathdate "1943-10-23"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/André_Antoine_actor.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/André_Antoine "; + base:person\#ref-IDBirthPlace base:location\/FR-Limo-00; + base:person\#ref-IDDeathPlace base:location\/FR-LePoul-00 . + +base:person\/AubDan-00 a base:person; + base:person\#CERL "http://data.cerl.org/thesaurus/cnp01471694"; + base:person\#GND "https://d-nb.info/gnd/118646192"; + base:person\#IDPerson "AubDan-00"; + base:person\#ISNI "https://isni.org/isni/0000000121195909 "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n80079937"; + base:person\#SNAC "http://n2t.net/ark:/99166/w69d7qgc"; + base:person\#Source """MGG – Online. Auber, Daniel-François-Esprit: https://www.mgg-online.com/articles/mgg00689/1.1/mgg00689 + +Adolph Kohut: Auber. Reclam, Leipzig 1892: https://www.digitale-sammlungen.de/de/view/bsb11557194?page=,1 + +"""; + base:person\#VIAF "http://viaf.org/viaf/7573044 "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q157672"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Daniel_Auber"; + base:person\#birthdate "1782-01-29"^^xsd:date; + base:person\#birthdate_max "1782-01-29"^^xsd:date; + base:person\#comment "Burried at Père Lachaise Cemetery"; + base:person\#deathdate "1871-05-12"^^xsd:date; + base:person\#deathdate_max "1871-05-12"^^xsd:date; + base:person\#family_name "Auber"; + base:person\#first_name "Daniel-François-Esprit"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/WP_Daniel-François-Esprit_Auber.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Daniel-Fran%C3%A7ois-Esprit_Auber#/media/Datei:WP_Daniel-Fran%C3%A7ois-Esprit_Auber.jpg"; + base:person\#profession "Composer"; + base:person\#ref-IDBirthPlace base:location\/FR-Caen-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/BukChr-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/130124494"; + base:person\#IDPerson "BukChr-00"; + base:person\#ISNI "https://isni.org/isni/0000000026339759"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. "; + base:person\#VIAF "https://viaf.org/viaf/18322891"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18202157"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Christine_von_Bukovics"; + base:person\#deathdate "1937-07-24"^^xsd:date; + base:person\#deathdate_max "1937-07-24"^^xsd:date; + base:person\#family_name "Bukovics"; + base:person\#first_name "Christine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Christine_von_Bukovics_1889_Eigner.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q18202157#/media/File:Christine_von_Bukovics_1889_Eigner.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Brem-00 . + +base:person\/FerAma-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1240344848"; + base:person\#IDPerson "FerAma-00"; + base:person\#ISNI "https://isni.org/isni/0000000117482323"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97858269"; + base:person\#VIAF "https://viaf.org/viaf/18981325/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q452887"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Amalia_Ferraris"; + base:person\#deathdate "1904-04-01"^^xsd:date; + base:person\#deathdate_max "1904-04-01"^^xsd:date; + base:person\#family_name "Ferraris"; + base:person\#first_name "Amalia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Amalia_Ferraris_dancing,_Vicenza_1853.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q452887#/media/File:Amalia_Ferraris_dancing,_Vicenza_1853.jpg"; + base:person\#profession "Dancer"; + base:person\#ref-IDBirthPlace base:location\/IT-Vogh-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/GalCar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1064116019"; + base:person\#IDPerson "GalCar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/313256707"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q20020610"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Carl_Galster_%28Schauspieler%2C_1810%29"; + base:person\#birthdate "1849-12-18"^^xsd:date; + base:person\#birthdate_max "1849-12-18"^^xsd:date; + base:person\#deathdate "1931-06-22"^^xsd:date; + base:person\#deathdate_max "1931-06-22"^^xsd:date; + base:person\#family_name "Galster"; + base:person\#first_name "Carl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/GroAde-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250086914"; + base:person\#IDPerson "GroAde-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX, Leipzig:List 1903, S. 484. + +Paul Ullrich: Theater, Tanz und Musik im Deutschen Bühnenjahrbuch. Ein Fundstellennachweis von biographischen Eintragungen, Abbildungen und Aufsätzenaus dem Bereich Theater, Tanz und Musik, die von 1836 bis 1984 im Deutschen Bühnenjahrbuch, seinen Vorgängern oder einigen anderen deutschen Theaterjahrbüchern erscheinen sind, Berlin: Berlin Verlag Arno Spitz Bd. 1 1985. + +Wilhelm Kosch: Deutsches Theater-Lexicon. Biographisches und bibliographisches Handbuch. Bd 1 Klagenfurt u. Wien: Kleinmayer 1953. + +Genossenschaft Deutscher Bühnen-Angehörige (ed): Neuer Theater Almanach für das Jahr 1890,Berlin: Günther & Sohn 1890.  + +"""; + base:person\#VIAF "http://viaf.org/viaf/797164357917213250000"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18018158"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Adele_Gro%C3%9F"; + base:person\#birthdate "1853-04-28"^^xsd:date; + base:person\#birthdate_max "1853-04-28"^^xsd:date; + base:person\#deathdate "1902-01-01"^^xsd:date; + base:person\#deathdate_max "1902-12-31"^^xsd:date; + base:person\#family_name "Groß"; + base:person\#first_name "Adele"; + base:person\#fuzzydeathdate "1902"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/GruFri-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119368129"; + base:person\#IDPerson "GruFri-00"; + base:person\#ISNI "https://isni.org/isni/000000012139705X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86138300"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w63r32kx#resources"; + base:person\#VIAF "https://viaf.org/viaf/74077040"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q87857"; + base:person\#birthdate "1880-04-07"^^xsd:date; + base:person\#birthdate_max "1880-04-07"^^xsd:date; + base:person\#deathdate "1941-01-14"^^xsd:date; + base:person\#deathdate_max "1941-01-14"^^xsd:date; + base:person\#family_name "Grünbaum"; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fritz_Grünbaum.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q87857#/media/File:Fritz_Gr%C3%BCnbaum.jpg"; + base:person\#profession "Cabaret artist, operetta,Schlager author, director, actor,emcee"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/GER-Dach-00; + base:person\#religion "Jewish" . + +base:person\/GulEll-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11692442X"; + base:person\#IDPerson "GulEll-00"; + base:person\#ISNI "https://isni.org/isni/0000000368472322"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n84130385"; + base:person\#VIAF "https://viaf.org/viaf/13715061"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1796695"; + base:person\#birthdate "1863-03-04"^^xsd:date; + base:person\#birthdate_max "1863-03-04"^^xsd:date; + base:person\#comment "1911 she got the Verdienstmedaille des Königs in Gold"; + base:person\#deathdate "1947-01-02"^^xsd:date; + base:person\#deathdate_max "1947-01-02"^^xsd:date; + base:person\#family_name "Gulbranson"; + base:person\#first_name "Ellen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ellen-gulbranson-brunhilde.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1796695#/media/File:Ellen-gulbranson-brunhilde.jpg"; + base:person\#profession "opera singer, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/SE-Stock-00; + base:person\#ref-IDDeathPlace base:location\/SE-Oslo-00 . + +base:person\/JeaRes-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116449551"; + base:person\#IDPerson "JeaRes-00"; + base:person\#ISNI "https://isni.org/isni/0000000368484390"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83014174"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6tt52ns"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/54900594"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q924545"; + base:person\#birthdate "1850-01-01"^^xsd:date; + base:person\#birthdate_max "1850-01-01"^^xsd:date; + base:person\#deathdate "1925-04-03"^^xsd:date; + base:person\#deathdate_max "1925-04-03"^^xsd:date; + base:person\#family_name "de Reszke"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Jan_Reszke_cropped.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q924545#/media/File:Jan_Reszke_cropped.jpg"; + base:person\#profession "Opera Singer, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/FR-Niz-00 . + +base:person\/MerWol-2448 a base:person; + base:person\#IDPerson "MerWol-2448"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/M/merkur-wolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1379."""; + base:person\#birthdate "1897-11-10"^^xsd:date; + base:person\#birthdate_max "1897-11-10"^^xsd:date; + base:person\#family_name "Merkur"; + base:person\#first_name "Wolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:person\/PatAde-00 a base:person; + base:person\#Birth_Info "other sources: 18 February 1842"; + base:person\#GND "https://d-nb.info/gnd/119235323"; + base:person\#IDPerson "PatAde-00"; + base:person\#ISNI " https://isni.org/isni/0000000116448174"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80148743"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bk1k3j"; + base:person\#Source "Rieger, Eva / Steegmann, Monica (Hg.): Göttliche Stimmen: Lebensberichte berühmter Sängerinnen von Elisabeth Mara bis Maria Callas, Insel Verlag, Frankfurt a. Main 2002"; + base:person\#VIAF "https://viaf.org/viaf/54166340"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q234166"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Adelina_Patti"; + base:person\#birthdate "1842-02-10"^^xsd:date; + base:person\#birthdate_max "1842-02-10"^^xsd:date; + base:person\#comment "died at her estate Craig-y-Nos (which she bought as Baroness Cederström after her retirement), in Brecknock, Wales; Burial: Père Lachaise Cemetery in Paris (according to her wish)"; + base:person\#deathdate "1919-09-27"^^xsd:date; + base:person\#deathdate_max "1919-09-27"^^xsd:date; + base:person\#family_name "Patti"; + base:person\#first_name "Adelina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Adelina_Patti_portrait_(11063797055)_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q234166#/media/File:Adelina_Patti_portrait_(11063797055)_(cropped).jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/UK-Craigy-00 . + +base:person\/RehAda-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/11639143X"; + base:person\#IDPerson "RehAda-00"; + base:person\#ISNI "https://isni.org/isni/0000000043439049"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no90006797"; + base:person\#SNAC "-"; + base:person\#VIAF "https://viaf.org/viaf/126149106266268492142"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q103876623"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ada_Rehan"; + base:person\#birthdate "1857-06-12"^^xsd:date; + base:person\#birthdate_max "1857-06-12"^^xsd:date; + base:person\#comment "Although by the time she applied for a U.S. passport she had shaved a few years off and gave 1860 as her year of birth. Died in New York City (Roosevelt Hospital); Burial: Greenwood Cemetery, Brookly NY"; + base:person\#deathdate "1916-01-08"^^xsd:date; + base:person\#deathdate_max "1916-01-08"^^xsd:date; + base:person\#family_name "Rehan"; + base:person\#first_name "Ada"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ada_Rehan_1897.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Ada_Rehan#/media/File:Ada_Rehan_1897.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/IE-Lime-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Christian" . + +base:person\/ReiMax-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02033600"; + base:person\#GND "https://d-nb.info/gnd/118599380"; + base:person\#IDPerson "ReiMax-00"; + base:person\#ISNI "https://isni.org/isni/0000000368572761"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50050955"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6wh2rcv"; + base:person\#VIAF "https://viaf.org/viaf/54194383"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q78639"; + base:person\#birthdate "1873-09-09"^^xsd:date; + base:person\#birthdate_max "1873-09-09"^^xsd:date; + base:person\#deathdate "1943-10-31"^^xsd:date; + base:person\#deathdate_max "1943-10-31"^^xsd:date; + base:person\#family_name "Reinhardt"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Theaterdirector, Filmdirector, Intendant,Theaterproducent,Theaterfounder"; + base:person\#ref-IDBirthPlace base:location\/AT-BadVie-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/RicHan-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118744984"; + base:person\#IDPerson "RicHan-00"; + base:person\#ISNI "https://isni.org/isni/000000006654903X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n92096016"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6gq6z99"; + base:person\#VIAF "https://viaf.org/viaf/59272058"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q366147"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Hans_Richter_(conductor)"; + base:person\#birthdate "1843-04-04"^^xsd:date; + base:person\#birthdate_max "1843-04-04"^^xsd:date; + base:person\#comment "(buried at the Bayreuther Stadtfriedhof)"; + base:person\#deathdate "1916-12-05"^^xsd:date; + base:person\#deathdate_max "1916-12-05"^^xsd:date; + base:person\#family_name "Richter"; + base:person\#first_name "Hans"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Hans_Richter_portrait_photo.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q366147#/media/File:Hans_Richter_portrait_photo.jpg"; + base:person\#profession "Conductor"; + base:person\#ref-IDBirthPlace base:location\/HU-Gyo-00; + base:person\#ref-IDDeathPlace base:location\/GER-Bayr-00 . + +base:person\/SeeMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00587786"; + base:person\#GND "https://d-nb.info/gnd/118760394"; + base:person\#IDPerson "SeeMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000037296256"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-n97092269/"; + base:person\#VIAF "https://viaf.org/viaf/8183287"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q273438"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marie_Seebach"; + base:person\#birthdate "1829-02-24"^^xsd:date; + base:person\#birthdate_max "1829-02-24"^^xsd:date; + base:person\#deathdate "1897-08-03"^^xsd:date; + base:person\#deathdate_max "1897-08-03"^^xsd:date; + base:person\#family_name "Seebach"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marie_Seebach_Kriehuber.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q273438#/media/File:Marie_Seebach_Kriehuber.jpg"; + base:person\#profession "opera singer,Soubrette, Actress"; + base:person\#ref-IDBirthPlace base:location\/LV-RIX-00; + base:person\#ref-IDDeathPlace base:location\/CH-StMor-00 . + +base:person\/TurJon-00 a base:person; + base:person\#Death_Info "other sources: 1882"; + base:person\#GND "https://d-nb.info/gnd/119238640"; + base:person\#IDPerson "TurJon-00"; + base:person\#ISNI "https://isni.org/isni/0000000051508569"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n88615119"; + base:person\#VIAF "https://viaf.org/viaf/9957256"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2916891"; + base:person\#birthdate "1898-01-01"^^xsd:date; + base:person\#birthdate_max "1898-12-31"^^xsd:date; + base:person\#comment """The Krokever Yidish Teater in Poland was under Jonas a subsidy by the Krakow municipal government awarded. +Most of WWII he spend in the Warsaw Ghetto. There he worked with the underground resistance.After the war he was involved in the Jewish organizations that arose in Poland. +One of the first Yiddish radio programs in Poland was his doing."""; + base:person\#deathdate "1988-02-04"^^xsd:date; + base:person\#deathdate_max "1988-02-04"^^xsd:date; + base:person\#family_name "Turkow"; + base:person\#first_name "Jonas"; + base:person\#fuzzybirthdate "1898"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1720732009170.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2916891#/media/File:Jonas_Turkow_5.jpg"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/ISR-TelAv-00 . + +base:Country-Romania a base:Country; + rdfs:label "Romania"@en . + +base:Country-Switzerland a base:Country; + rdfs:label "Switzerland"@en . + +base:Religion-Christian a base:Religion; + rdfs:label "Christian"@en . + +base:State-Indiana a base:State; + rdfs:label "Indiana"@en, + "Indiana "@en . + +base:location\/AT-Linz-00 a base:location; + base:location\#City base:City-Linz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2772400"; + base:location\#IDLocation "AT-Linz-00"; + base:location\#latitude 4.83e1; + base:location\#longitude 1.42833e1; + base:location\#wikidata "Q41329"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Linz" . + +base:location\/AUS-Syd-00 a base:location; + base:location\#City base:City-Sydney; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2147714"; + base:location\#IDLocation "AUS-Syd-00"; + base:location\#latitude -3.385e1; + base:location\#longitude 1.512e2; + base:location\#wikidata "Q3130"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Sydney" . + +base:location\/BY-Minsk-00 a base:location; + base:location\#City base:City-Minsk; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belarus; + base:location\#GeoNamesID "625144"; + base:location\#IDLocation "BY-Minsk-00"; + base:location\#latitude 5.39e1; + base:location\#longitude 2.75667e1; + base:location\#wikidata "Q2280"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Minsk" . + +base:location\/IT-Tries-00 a base:location; + base:location\#City base:City-Trieste; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3165185"; + base:location\#IDLocation "IT-Tries-00"; + base:location\#latitude 4.56503e1; + base:location\#longitude 1.37703e1; + base:location\#wikidata "Q546"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Trieste" . + +base:location\/MX-MX-00 a base:location; + base:location\#City base:City-MexicoCity; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Mexico; + base:location\#GeoNamesID "3530597"; + base:location\#IDLocation "MX-MX-00"; + base:location\#latitude 1.94333e1; + base:location\#longitude -9.913330000000001e1; + base:location\#wikidata "Q1489"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mexico_City" . + +base:location\/USA-Omah-00 a base:location; + base:location\#City base:City-Omaha; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#IDLocation "USA-Omah-00"; + base:location\#State base:State-Nebraska; + base:location\#latitude 4.12603e1; + base:location\#longitude -9.60128e1; + base:location\#wikidata "Q43199" . + +base:location\/USA-Pittsb-00 a base:location; + base:location\#City base:City-Pittsburgh; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5206379"; + base:location\#IDLocation "USA-Pittsb-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 4.04396e1; + base:location\#longitude -7.997629999999999e1; + base:location\#wikidata "Q1342"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pittsburgh" . + +base:organisation\/188 a base:organisation; + base:organisation\#IDOrganisation 188; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gaiety Theatre" . + +base:organisation\/2151 a base:organisation; + base:organisation\#IDOrganisation 2151; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Le Bouffes Parisiens"; + base:organisation\#ref-IDLocation base:location\/FR-PARIS-00 . + +base:organisation\/284 a base:organisation; + base:organisation\#IDOrganisation 284; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Arch Street Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-Phila-00 . + +base:person\/BaiAnn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1017960437"; + base:person\#IDPerson "BaiAnn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 208.Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. List: Leipzig 1903, p. 4."; + base:person\#VIAF "https://viaf.org/viaf/220764828/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17521286"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Anna_Baier"; + base:person\#birthdate "1858-04-28"^^xsd:date; + base:person\#birthdate_max "1858-04-28"^^xsd:date; + base:person\#comment "After 1899 nothing is known about her."; + base:person\#deathdate "1935-06-04"^^xsd:date; + base:person\#deathdate_max "1935-06-04"^^xsd:date; + base:person\#family_name "Baier"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anna_Baier_1885_Eigner.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q17521286#/media/File:Anna_Baier_1885_Eigner.jpg"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/BasAlb-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118653407"; + base:person\#IDPerson "BasAlb-00"; + base:person\#ISNI "https://isni.org/isni/0000000076909967"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr97034504"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w64z2s4s#resources"; + base:person\#Source "Neue Deutsche Biographie"; + base:person\#VIAF "https://viaf.org/viaf/18015744/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q64150"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Albert_Bassermann"; + base:person\#birthdate "1867-09-07"^^xsd:date; + base:person\#birthdate_max "1867-09-07"^^xsd:date; + base:person\#comment "Husband of Else Bassermann, died at or near the Zurich Airport, soon after his flight from the United States had arrived. He was 85. He is buried in Mannheim."; + base:person\#deathdate "1952-05-15"^^xsd:date; + base:person\#deathdate_max "1952-05-15"^^xsd:date; + base:person\#family_name "Bassermann"; + base:person\#first_name "Albert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Albert_Bassermann_1918_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q64150#/media/File:Albert_Bassermann_1918_(cropped).jpg"; + base:person\#profession "stage,screen actor"; + base:person\#ref-IDBirthPlace base:location\/GER-Mnhm-00; + base:person\#ref-IDDeathPlace base:location\/CH-Zur-00 . + +base:person\/BerYit-1275 a base:person; + base:person\#Birth_Info "In other sources: 16.10.1885"; + base:person\#CERL "http://data.cerl.org/thesaurus/cnp02034186"; + base:person\#GND "https://d-nb.info/gnd/119280302"; + base:person\#IDPerson "BerYit-1275"; + base:person\#ISNI "https://isni.org/isni/0000000108786392"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/n84022348"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "http://n2t.net/ark:/99166/w68s62vj"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/berkowitz-yitzhak-dov.htm + +https://www.encyclopedia.com/religion/encyclopedias-almanacs-transcripts-and-maps/berkowitz-yitzhak-dov + +https://en.wikipedia.org/wiki/Isaac_Dov_Berkowitz + + + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.21."""; + base:person\#VIAF "http://viaf.org/viaf/22376920"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2909488"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Isaac_Dov_Berkowitz"; + base:person\#birthdate "1885-10-15"^^xsd:date; + base:person\#birthdate_max "1885-10-15"^^xsd:date; + base:person\#deathdate "1967-03-29"^^xsd:date; + base:person\#deathdate_max "1967-03-29"^^xsd:date; + base:person\#family_name "Berkowitz"; + base:person\#first_name "Yitzhak Dov"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/HEBREW_WRITER_ITZHAK_DOV_BERKIVITZ._פורטרט_של_הסופר_העברי,_יצחק_דב_ברקוביץ.D22-083.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2909488#/media/File:HEBREW_WRITER_ITZHAK_DOV_BERKIVITZ._%D7%A4%D7%95%D7%A8%D7%98%D7%A8%D7%98_%D7%A9%D7%9C_%D7%94%D7%A1%D7%95%D7%A4%D7%A8_%D7%94%D7%A2%D7%91%D7%A8%D7%99,_%D7%99%D7%A6%D7%97%D7%A7_%D7%93%D7%91_%D7%91%D7%A8%D7%A7%D7%95%D7%91%D7%99%D7%A5.D22-083.jpg"; + base:person\#ref-IDBirthPlace base:location\/Bel-DiJeSt-63; + base:person\#religion "Jewish" . + +base:person\/GriGiu-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01426107"; + base:person\#GND "https://d-nb.info/gnd/1019729740"; + base:person\#IDPerson "GriGiu-00"; + base:person\#ISNI "https://isni.org/isni/000000005520372X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2009038083"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6v416tk"; + base:person\#Source "Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/17489071/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q451972"; + base:person\#birthdate "1805-07-28"^^xsd:date; + base:person\#birthdate_max "1805-07-28"^^xsd:date; + base:person\#deathdate "1840-05-01"^^xsd:date; + base:person\#deathdate_max "1840-05-01"^^xsd:date; + base:person\#family_name "Grisi"; + base:person\#first_name "Giuditta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera singer,mezzo-sopran" . + +base:person\/LinWil-00 a base:person; + base:person\#Birth_Info "Other Scource: christened on 27 May 1837"; + base:person\#IDPerson "LinWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no92020627"; + base:person\#SNAC "http://n2t.net/ark:/99166/w6t22r8d"; + base:person\#VIAF "http://viaf.org/viaf/16793561"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q8014591"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/William_Lingard"; + base:person\#birthdate "1839-01-01"^^xsd:date; + base:person\#birthdate_max "1839-12-31"^^xsd:date; + base:person\#deathdate "1927-01-01"^^xsd:date; + base:person\#deathdate_max "1927-12-31"^^xsd:date; + base:person\#family_name "Lingard"; + base:person\#first_name "William"; + base:person\#fuzzybirthdate "1839"; + base:person\#fuzzydeathdate "1927"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/William_Horace_Lingard_(c._1868).jpg"; + base:person\#image_source "https://upload.wikimedia.org/wikipedia/commons/3/36/William_Horace_Lingard_%28c._1868%29.jpg"; + base:person\#ref-IDBirthPlace base:location\/EN-00 . + +base:person\/MauVic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116854553"; + base:person\#IDPerson "MauVic-00"; + base:person\#ISNI "https://isni.org/isni/0000000063081494"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89011057"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6m61r39"; + base:person\#VIAF "https://viaf.org/viaf/76403569"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q258482"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Victor_Maurel"; + base:person\#birthdate "1848-06-17"^^xsd:date; + base:person\#birthdate_max "1848-06-17"^^xsd:date; + base:person\#deathdate "1923-10-22"^^xsd:date; + base:person\#deathdate_max "1923-10-22"^^xsd:date; + base:person\#family_name "Maurel"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Maurel.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q258482#/media/File:Victor_Maurel.png"; + base:person\#profession "Baritone"; + base:person\#ref-IDBirthPlace base:location\/FR-Mars-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/NomHer-2572 a base:person; + base:person\#IDPerson "NomHer-2572"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nomberg-hersh-dovid.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1405."""; + base:person\#birthdate "1876-04-04"^^xsd:date; + base:person\#birthdate_max "1876-04-04"^^xsd:date; + base:person\#comment "Buried in Okopowa Street Jewish Cemetery, Warsaw"; + base:person\#family_name "Nomberg"; + base:person\#first_name "Hersh Dovid"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-121; + base:person\#ref-IDDeathPlace base:location\/Pol-DiJeSt-138; + base:person\#religion "Jewish" . + +base:person\/ResFre-00 a base:person; + base:person\#GND "http://d-nb.info/gnd/133630226"; + base:person\#IDPerson "ResFre-00"; + base:person\#ISNI "https://isni.org/isni/0000000022593151"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 3899."; + base:person\#VIAF "http://viaf.org/viaf/23335380"; + base:person\#birthdate "1841-04-06"^^xsd:date; + base:person\#birthdate_max "1841-04-06"^^xsd:date; + base:person\#deathdate "1869-06-27"^^xsd:date; + base:person\#deathdate_max "1869-06-27"^^xsd:date; + base:person\#family_name "Ress"; + base:person\#first_name "Frederika"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/SchFra-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117366579"; + base:person\#IDPerson "SchFra-00"; + base:person\#ISNI "https://isni.org/isni/000000002010115X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/788338"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q29450959"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Franz_Schwarz_(S%C3%A4nger)"; + base:person\#birthdate "1858-06-11"^^xsd:date; + base:person\#birthdate_max "1858-06-11"^^xsd:date; + base:person\#deathdate "1919-03-10"^^xsd:date; + base:person\#deathdate_max "1919-03-10"^^xsd:date; + base:person\#family_name "Schwarz"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/GER-Magdb-00 . + +base:person\/SomAgn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118798073"; + base:person\#IDPerson "SomAgn-00"; + base:person\#ISNI " https://isni.org/isni/0000000010006618"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/42634165/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q121950"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Agnes_Sorma"; + base:person\#birthdate "1862-05-17"^^xsd:date; + base:person\#birthdate_max "1862-05-17"^^xsd:date; + base:person\#deathdate "1927-02-10"^^xsd:date; + base:person\#deathdate_max "1927-02-10"^^xsd:date; + base:person\#family_name "Sorma"; + base:person\#first_name "Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Agnes_Sorma.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q121950#/media/File:Agnes_Sorma.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/PL-Bres-00; + base:person\#ref-IDDeathPlace base:location\/USA-CrownK-00 . + +base:Country-Canada a base:Country; + rdfs:label "Canada"@en . + +base:InstitutionType-Circus a base:InstitutionType; + rdfs:label "Circus"@en . + +base:location\/BE-Antw-00 a base:location; + base:location\#City base:City-Antwerp; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#GeoNamesID "2803138"; + base:location\#IDLocation "BE-Antw-00"; + base:location\#latitude 5.12178e1; + base:location\#longitude 4.40028e0; + base:location\#wikidata "Q12892"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Antwerp" . + +base:location\/IN-Calc-00 a base:location; + base:location\#City base:City-Calcutta; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-India; + base:location\#IDLocation "IN-Calc-00"; + base:location\#latitude 2.25675e1; + base:location\#longitude 8.837e1; + base:location\#wikidata "Q1348" . + +base:location\/USA-Indy-00 a base:location; + base:location\#City base:City-Indianapolis; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4259418"; + base:location\#IDLocation "USA-Indy-00"; + base:location\#State base:State-Indiana; + base:location\#latitude 3.9768e1; + base:location\#longitude -8.61581e1; + base:location\#wikidata "Q6346"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Indianapolis" . + +base:organisation\/1004 a base:organisation; + base:organisation\#IDOrganisation 1004; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Strampfer-Theater" . + +base:organisation\/2930 a base:organisation; + base:organisation\#IDOrganisation 2930; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Mayo" . + +base:organisation\/547 a base:organisation; + base:organisation\#IDOrganisation 547; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Thalia Theatre"; + base:organisation\#ref-IDLocation base:location\/GER-HH-00 . + +base:organisation\/55710 a base:organisation; + base:organisation\#IDOrganisation 55710; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hopkinson Theatre" . + +base:organisation\/71152 a base:organisation; + base:organisation\#IDOrganisation 71152; + base:organisation\#inst_name "Rosenberg's troupe" . + +base:person\/AxeAvr-1204 a base:person; + base:person\#IDPerson "AxeAvr-1204"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/axelrad-avraham.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.86."""; + base:person\#birthdate "1858-07-20"^^xsd:date; + base:person\#birthdate_max "1858-07-20"^^xsd:date; + base:person\#deathdate "1925-11-11"^^xsd:date; + base:person\#family_name "Axelrad"; + base:person\#first_name "Avraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/axelrad-avraham.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/lex-axelrad-avraham.jpg"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/Ukr-DiJeSt-29; + base:person\#religion "Jewish" . + +base:person\/BasJoa-00 a base:person; + base:person\#IDPerson "BasJoa-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-https://catalog.loc.gov/vwebv/search?searchType=7&searchld=27873&"; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Fundación Konex. Joaquín Gomez Bas. Online, https://www.fundacionkonex.org/b1078-joaquin-gomez-basWikipedia: Joaquín Gomez Bas. Online, https://es.wikipedia.org/wiki/Joaqu%C3%ADn_G%C3%B3mez_BasIMDb: Joaquín Gomez Bas. Online, https://www.imdb.com/de/name/nm0350863/Joaquín Gomez Bas, Todo Tango, online, https://www.todotango.com/english/artists/info/642/Joaquin-Gomez-Bas"; + base:person\#VIAF "https://viaf.org/en/viaf/71018439"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5932064"; + base:person\#birthdate "1907-05-26"^^xsd:date; + base:person\#deathdate "1984-11-04"^^xsd:date; + base:person\#family_name "Gómez Bas"; + base:person\#first_name "Joaquín"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Joaquín Gómez Bas.jpg"; + base:person\#image_source "https://cuentosdelatinoamerica.blogspot.com/2014/04/el-horno-joaquin-gomez-bas.html "; + base:person\#ref-IDBirthPlace base:location\/ES-CanOn-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/BlaYet-1319 a base:person; + base:person\#IDPerson "BlaYet-1319"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/black-yetta.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.173."""; + base:person\#birthdate "1880-05-01"^^xsd:date; + base:person\#birthdate_max "1880-05-01"^^xsd:date; + base:person\#family_name "Black"; + base:person\#first_name "Yetta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Yetta_Black.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/black-yetta.htm"; + base:person\#ref-IDBirthPlace base:location\/Lit-DiJeSt-111; + base:person\#religion "Jewish" . + +base:person\/DesEma-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119357437"; + base:person\#IDPerson "DesEma-00"; + base:person\#ISNI """ +https://isni.org/isni/0000000368500629 """; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82161395"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w63j3swk#resources"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/66640668/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q271731"; + base:person\#birthdate "1878-02-26"^^xsd:date; + base:person\#birthdate_max "1878-02-26"^^xsd:date; + base:person\#deathdate "1930-01-28"^^xsd:date; + base:person\#deathdate_max "1930-01-28"^^xsd:date; + base:person\#family_name "Destinová"; + base:person\#first_name "Ema"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emmy_Destinn.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q271731#/media/File:Emmy_Destinn.jpg"; + base:person\#profession "Chamber Singer"; + base:person\#ref-IDBirthPlace base:location\/CZ-Prag-00; + base:person\#ref-IDDeathPlace base:location\/CZ-Budweis-00 . + +base:person\/FodJos-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01384444"; + base:person\#GND "https://d-nb.info/gnd/116689498"; + base:person\#IDPerson "FodJos-00"; + base:person\#ISNI "https://isni.org/isni/000000004788692X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2005072325"; + base:person\#VIAF "https://viaf.org/viaf/5194888"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1002317"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Jos%C3%A9phine_Fodor"; + base:person\#birthdate "1789-10-13"^^xsd:date; + base:person\#birthdate_max "1789-10-13"^^xsd:date; + base:person\#deathdate "1870-08-10"^^xsd:date; + base:person\#deathdate_max "1870-08-10"^^xsd:date; + base:person\#family_name "Fodor"; + base:person\#first_name "Joséphine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fodor_Josephine.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1002317#/media/File:Fodor_Josephine.jpg
"; + base:person\#profession "Opera singer,soprano"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/FR-StGenLav-00 . + +base:person\/GarMan-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00549510"; + base:person\#GND "https://d-nb.info/gnd/119186497"; + base:person\#IDPerson "GarMan-00"; + base:person\#ISNI "https://isni.org/isni/000000008115807X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-nr93012923/"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6rx9pvv"; + base:person\#VIAF "https://viaf.org/viaf/37022651/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q704645"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Manuel_Garc%C3%ADa_(tenor)"; + base:person\#birthdate "1775-01-21"^^xsd:date; + base:person\#birthdate_max "1775-01-21"^^xsd:date; + base:person\#comment "He invented the first laryngoscope"; + base:person\#deathdate "1832-06-09"^^xsd:date; + base:person\#deathdate_max "1832-06-09"^^xsd:date; + base:person\#family_name "García"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuel_Vicente_del_Popolo_Rodriguez_(Garcia).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q704645#/media/File:Manuel_Vicente_del_Popolo_Rodriguez_(Garcia).jpg"; + base:person\#profession "Singer, Music Educator, Vocal Pedagogue"; + base:person\#ref-IDBirthPlace base:location\/ES-SEVILLA-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/GolIts-1826 a base:person; + base:person\#IDPerson "GolIts-1826"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldenberg-itsikl.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.273."""; + base:person\#birthdate "1872-01-01"^^xsd:date; + base:person\#birthdate_max "1872-01-01"^^xsd:date; + base:person\#family_name "Goldenberg"; + base:person\#first_name "Itsikl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#religion "Jewish" . + +base:person\/JagEls-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250087104"; + base:person\#IDPerson "JagEls-00"; + base:person\#ISNI "https://isni.org/isni/0000000040210791"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n2008078191"; + base:person\#Source "Andrea Harrandt: Jäger (-Wilczek), Familie. In: Oesterreichisches Musiklexikon. Online-Ausgabe, Wien 2002 , http://www.musiklexikon.ac.at/ml/musik_J/Jaeger_Familie_2.xmlLudwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, pp. 468- 469. Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. "; + base:person\#VIAF "https://viaf.org/viaf/16704442"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18019937"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Elsa_J%C3%A4ger"; + base:person\#birthdate "1869-07-25"^^xsd:date; + base:person\#birthdate_max "1869-07-25"^^xsd:date; + base:person\#deathdate "1899-01-01"^^xsd:date; + base:person\#deathdate_max "1969-12-31"^^xsd:date; + base:person\#family_name "Jäger"; + base:person\#first_name "Elsa "; + base:person\#fuzzydeathdate "after 1898"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载.png"; + base:person\#image_source "https://www.theatermuseum.at/online-sammlung/detail/542583/"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Schwer-00 . + +base:person\/KeeLau-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119086077"; + base:person\#IDPerson "KeeLau-00"; + base:person\#ISNI "https://isni.org/isni/0000000033550560"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n91041259"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6qj87rn"; + base:person\#VIAF "https://viaf.org/viaf/45103975"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q13606858"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Laura_Keene"; + base:person\#birthdate "1826-07-20"^^xsd:date; + base:person\#birthdate_max "1826-07-20"^^xsd:date; + base:person\#deathdate "1873-11-04"^^xsd:date; + base:person\#deathdate_max "1873-11-04"^^xsd:date; + base:person\#family_name "Keene"; + base:person\#first_name "Laura"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Laura_Keene_-_Brady-Handy.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q13606858#/media/File:Laura_Keene_-_Brady-Handy.jpg"; + base:person\#profession "Performer, Manager, Actress, Travelling Actress"; + base:person\#ref-IDBirthPlace base:location\/UK-Winch-00; + base:person\#ref-IDDeathPlace base:location\/USA-NJ-02 . + +base:person\/RicHar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/252807458"; + base:person\#IDPerson "RicHar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6c03pd1#resources"; + base:person\#VIAF "https://viaf.org/viaf/252807458"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2091359"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Harry_Rickards"; + base:person\#birthdate "1843-12-04"^^xsd:date; + base:person\#birthdate_max "1843-12-04"^^xsd:date; + base:person\#deathdate "1911-10-13"^^xsd:date; + base:person\#deathdate_max "1911-10-13"^^xsd:date; + base:person\#family_name "Rickards"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harry_Rickards_by_Talma_Studio,_Sydney.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2091359#/media/File:Harry_Rickards_by_Talma_Studio,_Sydney.jpg"; + base:person\#profession "Actor, Theatre Owner"; + base:person\#ref-IDBirthPlace base:location\/UK-STRATFORD-00; + base:person\#ref-IDDeathPlace base:location\/UK-CROY-00 . + +base:person\/RosAdo-2777 a base:person; + base:person\#IDPerson "RosAdo-2777"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/R/rosenblum-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.504."""; + base:person\#birthdate "1850-01-01"^^xsd:date; + base:person\#birthdate_max "1850-12-31"^^xsd:date; + base:person\#family_name "Rosenblum"; + base:person\#first_name "Adolf"; + base:person\#fuzzybirthdate "1850"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-rozenblum-adolf.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/R/rosenblum-adolf.htm "; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/StrMax-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1046479857"; + base:person\#IDPerson "StrMax-00"; + base:person\#ISNI "https://isni.org/isni/0000000045461901"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2009005861"; + base:person\#Source "Österreichisches Biographisches Lexikon"; + base:person\#VIAF "https://viaf.org/viaf/12142018"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1913509"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Max_Strakosch"; + base:person\#birthdate "1835-09-27"^^xsd:date; + base:person\#birthdate_max "1835-09-27"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Pianist, Vocal Coach, Impresario ,Opera Director"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/WalRao-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117131369"; + base:person\#IDPerson "WalRao-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/47532012"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q38158766"; + base:person\#birthdate "1863-08-16"^^xsd:date; + base:person\#birthdate_max "1863-08-16"^^xsd:date; + base:person\#comment """He sang the role of Alfred under the baton of Johann Strauss at the 200th performance of Die Fledermaus on May 15, 1888. + +His most famous role was that of Mathias Freudhofer in Kienzl's opera Der Evangelimann, which he created at the Munich premiere in 1896, was the only singer to embody for twenty years, and was impressed by the composer's performance."""; + base:person\#deathdate "1917-08-21"^^xsd:date; + base:person\#deathdate_max "1917-08-21"^^xsd:date; + base:person\#family_name "Walter"; + base:person\#first_name "Raoul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Dr._Raoul_Walter.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q38158766#/media/File:Dr._Raoul_Walter.jpg"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:State-Illinois a base:State; + rdfs:label "Illinois"@en . + +base:State-Massachusetts a base:State; + rdfs:label "Massachusetts"@en . + +base:location\/BR-Bel-00 a base:location; + base:location\#City base:City-Bel\%C3\%A9m; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3405870"; + base:location\#IDLocation "BR-Bel-00"; + base:location\#latitude -1.46667e0; + base:location\#longitude -4.84833e1; + base:location\#wikidata "Q12829733"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bel%C3%A9m" . + +base:location\/CA-Montr-00 a base:location; + base:location\#City base:City-Montreal; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6077243"; + base:location\#IDLocation "CA-Montr-00"; + base:location\#State base:State-Quebec; + base:location\#latitude 4.55089e1; + base:location\#longitude -7.355419999999999e1; + base:location\#wikidata "Q340"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montreal" . + +base:location\/GER-STR-00 a base:location; + base:location\#City base:City-Stuttgart; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2825297"; + base:location\#IDLocation "GER-STR-00"; + base:location\#latitude 4.8782e1; + base:location\#longitude 9.183999999999999e0; + base:location\#wikidata "Q1022"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Stuttgart" . + +base:location\/IT-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3175395"; + base:location\#IDLocation "IT-00"; + base:location\#latitude 4.3e1; + base:location\#longitude 1.2e1; + base:location\#wikidata "Q38"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Italy" . + +base:location\/PL-Galz-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland\%2FUkraine; + base:location\#GeoNamesID "562153"; + base:location\#IDLocation "PL-Galz-00"; + base:location\#State base:State-Galicia; + base:location\#latitude 4.983e1; + base:location\#longitude 2.40142e1; + base:location\#wikidata "Q180086"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Galicia_(Eastern_Europe)" . + +base:location\/USA-Prov-00 a base:location; + base:location\#City base:City-Providence; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5224151"; + base:location\#IDLocation "USA-Prov-00"; + base:location\#State base:State-RhodeIsland; + base:location\#latitude 4.18308e1; + base:location\#longitude -7.141500000000001e1; + base:location\#wikidata "Q18383"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Providence,_Rhode_Island" . + +base:location\/USA-StPaul-00 a base:location; + base:location\#City base:City-St\.Paul; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5045360"; + base:location\#IDLocation "USA-StPaul-00"; + base:location\#State base:State-Minnesota; + base:location\#latitude 4.4944e1; + base:location\#longitude -9.309269999999999e1; + base:location\#wikidata "Q28848"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint_Paul,_Minnesota" . + +base:location\/USA-Utic-00 a base:location; + base:location\#City base:City-Utica; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5142056"; + base:location\#IDLocation "USA-Utic-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.30961e1; + base:location\#longitude -7.52261e1; + base:location\#wikidata "Q2495519"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Utica,_New_York" . + +base:organisation\/240 a base:organisation; + base:organisation\#IDOrganisation 240; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Second Avenue Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/556 a base:organisation; + base:organisation\#IDOrganisation 556; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment "Royal Olympic Theatre, London"; + base:organisation\#inst_name "Olympic Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:person\/AmoEdu-00 a base:person; + base:person\#IDPerson "AmoEdu-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Wikipedia. Roberto Casaux. Online, https://es.wikipedia.org/wiki/Roberto_Casaux + +Wikipedia. Guillermo Battaglia. Online, https://es.wikipedia.org/wiki/Guillermo_Battaglia"""; + base:person\#VIAF "https://viaf.org/viaf/18160789758802682297/#Amoroso,_Eduardo_1888-1958"; + base:person\#birthdate "1888-09-15"^^xsd:date; + base:person\#birthdate_max "1888-09-15"^^xsd:date; + base:person\#deathdate "1958-05-23"^^xsd:date; + base:person\#deathdate_max "1958-05-23"^^xsd:date; + base:person\#family_name "Amoroso"; + base:person\#first_name "Eduardo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-Chieti-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/FieOsc-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/130811556"; + base:person\#IDPerson "FieOsc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/57727100"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q23061504"; + base:person\#birthdate "1848-06-03"^^xsd:date; + base:person\#birthdate_max "1848-06-03"^^xsd:date; + base:person\#deathdate "1906-06-11"^^xsd:date; + base:person\#deathdate_max "1906-06-11"^^xsd:date; + base:person\#family_name "Fiedler"; + base:person\#first_name "Oscar"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Theater actor, opera singer baritone, opera director ,theater manager"; + base:person\#ref-IDBirthPlace base:location\/GER-Bautz-00; + base:person\#ref-IDDeathPlace base:location\/GER-KoenW-00 . + +base:person\/GilLou-1764 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/132977680"; + base:person\#IDPerson "GilLou-1764"; + base:person\#ISNI "https://isni.org/isni/0000000044061797"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/no2006010383"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/gilrod-louie.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.478."""; + base:person\#VIAF "http://viaf.org/viaf/50403192"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Louis_Gilrod"; + base:person\#birthdate "1879-09-10"^^xsd:date; + base:person\#birthdate_max "1879-09-10"^^xsd:date; + base:person\#comment "Buried in Mount Hebron Cemetery, Flushing, Queens, New York"; + base:person\#deathdate "1930-03-12"^^xsd:date; + base:person\#deathdate_max "1930-03-12"^^xsd:date; + base:person\#family_name "Gilrod"; + base:person\#first_name "Louie"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Louis-gilrod.png"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Louis-gilrod.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Podo-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/JagFer-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/1037101405"; + base:person\#IDPerson "JagFer-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Leipzig: List 1903, pp. 468- 469. + +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. + +"""; + base:person\#VIAF "https://viaf.org/viaf/304930617"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18020136"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Ferdinand_J%C3%A4ger_%28S%C3%A4nger%2C_1874%29"; + base:person\#birthdate "1871-01-19"^^xsd:date; + base:person\#birthdate_max "1871-01-19"^^xsd:date; + base:person\#deathdate "1954-01-12"^^xsd:date; + base:person\#deathdate_max "1954-01-12"^^xsd:date; + base:person\#family_name "Jäger"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/GER-Dresd-00; + base:person\#ref-IDDeathPlace base:location\/AT-Gois-00 . + +base:person\/JanFan-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00643327"; + base:person\#GND "https://d-nb.info/gnd/117077879"; + base:person\#IDPerson "JanFan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr92034197"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w64x7tfs#resources"; + base:person\#VIAF "https://viaf.org/viaf/64774589"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q547592"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Fanny_Janauschek"; + base:person\#birthdate "1829-07-20"^^xsd:date; + base:person\#birthdate_max "1829-07-20"^^xsd:date; + base:person\#comment "died in Long Island, New York; Burial: Evergreen Cemetery Brooklyn"; + base:person\#deathdate "1904-11-28"^^xsd:date; + base:person\#deathdate_max "1904-11-28"^^xsd:date; + base:person\#family_name "Janauschek"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fanny_Janauschek.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q547592#/media/File:Fanny_Janauschek.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/CZ-Prag-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/KamIda-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118973800"; + base:person\#IDPerson "KamIda-00"; + base:person\#ISNI "https://isni.org/isni/0000000109280131"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no93031688"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6ff4ns1#resources"; + base:person\#Source "Internet Broadway Database, Ida Kaminska: https://www.ibdb.com/broadway-cast-staff/ida-kaminska-9557"; + base:person\#VIAF "https://viaf.org/viaf/97943468"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q284087"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ida_Kami%C5%84ska"; + base:person\#birthdate "1899-11-18"^^xsd:date; + base:person\#birthdate_max "1899-11-18"^^xsd:date; + base:person\#comment "Ida Kaminska became internationally known because of her role in the Czech film “Obchod na Korze” . The film won an Academy Award in 1965 and Kaminska was nominated for Best Actress in the following year."; + base:person\#deathdate "1980-05-21"^^xsd:date; + base:person\#deathdate_max "1980-05-21"^^xsd:date; + base:person\#family_name "Kaminska"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ida_Kaminska.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Ida_Kami%C5%84ska#/media/File:Ida_Kaminska.jpg"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/NazAll-00 a base:person; + base:person\#Birth_Info "other sources: 4 June 1879 "; + base:person\#GND "https://d-nb.info/gnd/119540649"; + base:person\#IDPerson "NazAll-00"; + base:person\#ISNI "https://isni.org/isni/0000000028872741"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n85151664"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w62v3525"; + base:person\#VIAF "https://viaf.org/viaf/39587765"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q234795"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Alla_Nazimova"; + base:person\#birthdate "1879-06-03"^^xsd:date; + base:person\#birthdate_max "1879-06-03"^^xsd:date; + base:person\#comment "died in Hollywood, California; Burial: Forest Lawn Memorial Park, Glendale, Los Angeles County, California"; + base:person\#deathdate "1945-07-13"^^xsd:date; + base:person\#deathdate_max "1945-07-13"^^xsd:date; + base:person\#family_name "Nazimova"; + base:person\#first_name "Alla"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Nazimova_LCCN2014718506.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q234795#/media/File:Nazimova_LCCN2014718506.jpg"; + base:person\#profession "Actress, Producer"; + base:person\#ref-IDBirthPlace base:location\/RU-Yal-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00; + base:person\#religion "Jewish,Christian" . + +base:person\/NorCat-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250127629"; + base:person\#IDPerson "NorCat-00"; + base:person\#ISNI "https://isni.org/isni/000000005105267X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-nr92031662/"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6d527rs#resources"; + base:person\#Source """Report of the Forrest divorce case: containing the full and unabridged testimony of all the witnesses, the affidavits and depositions, together with the Consuelo and Forney letters, New York : De Witt & Davenport, 1852, https://archive.org/details/reportofforrestd00forr/page/8/mode/2up. +# +Chris Enss: Wild Women of The West: Catherine Norton Sinclair, 25 Mai 2022, https://cowgirlmagazine.com/wild-women-of-the-west-catherine-norton-sinclair-1/. """; + base:person\#VIAF "https://viaf.org/viaf/26929500"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q16062502"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Catherine_Norton_Sinclair"; + base:person\#birthdate "1817-02-20"^^xsd:date; + base:person\#birthdate_max "1817-02-20"^^xsd:date; + base:person\#comment "born near London, died Staten Island, buried Silver Mount Cemetery, Staten Island"; + base:person\#deathdate "1891-06-09"^^xsd:date; + base:person\#deathdate_max "1891-06-09"^^xsd:date; + base:person\#family_name "Norton Sinclair"; + base:person\#first_name "Catherine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harvard_Theatre_Collection_-_Catharine_Norton_Sinclair_TC-48.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Catherine_Norton_Sinclair#/media/File:Harvard_Theatre_Collection_-_Catharine_Norton_Sinclair_TC-48.jpg"; + base:person\#profession "Actor, Manager"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/ZayDav-3358 a base:person; + base:person\#IDPerson "ZayDav-3358"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zayderman-david.htm + +Center for Jewish History: https://archives.cjh.org/repositories/7/archival_objects/1270758 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.771."""; + base:person\#birthdate "1895-02-12"^^xsd:date; + base:person\#birthdate_max "1895-02-12"^^xsd:date; + base:person\#family_name "Zayderman"; + base:person\#first_name "David"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/David Zayderman.png"; + base:person\#image_source "https://archives.cjh.org/repositories/7/archival_objects/1270758"; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/ZemAle-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11863643X"; + base:person\#IDPerson "ZemAle-00"; + base:person\#ISNI "https://isni.org/isni/0000000121351350"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80086154"; + base:person\#SNAC "https://www.wikidata.org/wiki/Property:P3430"; + base:person\#Source "http://www.zemlinsky.at/de/biographie"; + base:person\#VIAF "https://viaf.org/viaf/59271270/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q78524"; + base:person\#birthdate "1871-10-14"^^xsd:date; + base:person\#birthdate_max "1871-10-14"^^xsd:date; + base:person\#comment "He received a Rubinstein stipend of 1,000 guilders per year."; + base:person\#deathdate "1942-03-15"^^xsd:date; + base:person\#deathdate_max "1942-03-15"^^xsd:date; + base:person\#family_name "von Zemlinsky"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zemlinsky.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q78524#/media/File:Zemlinsky.jpg"; + base:person\#profession "Composer, Conductor"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish, Christian" . + +base:Country-Belarus a base:Country; + rdfs:label "Belarus"@en . + +base:Country-CzechRepublic a base:Country; + rdfs:label "Czech Republic"@en . + +base:Country-NewZealand a base:Country; + rdfs:label "New Zealand"@en . + +base:location\/GER-Karls-00 a base:location; + base:location\#City base:City-Karlsruhe; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2892794"; + base:location\#IDLocation "GER-Karls-00"; + base:location\#latitude 4.90092e1; + base:location\#longitude 8.40395e0; + base:location\#wikidata "Q1040"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Karlsruhe" . + +base:location\/ZA-00 a base:location; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#IDLocation "ZA-00"; + base:location\#latitude -3.0e1; + base:location\#longitude 2.5e1; + base:location\#wikidata "Q258" . + +base:organisation\/539 a base:organisation; + base:organisation\#IDOrganisation 539; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lessing-Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:organisation\/590 a base:organisation; + base:organisation\#IDOrganisation 590; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nacional"; + base:organisation\#ref-IDLocation base:location\/PT-Liss-00 . + +base:organisation\/81 a base:organisation; + base:organisation\#IDOrganisation 81; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro alla Scala, Milano"; + base:organisation\#ref-IDLocation base:location\/IT-Mila-00 . + +base:person\/AbrBin-742 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "AbrBin-742"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.4.Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/abramovich-bina.htm +YIVO Archives: Bina Abramowitz, http://yivoarchives.org/index.php?p=core/search&subjectid=32657&collection=allphotos"""; + base:person\#VIAF "-"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q107609823"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Bina_Abramowitz"; + base:person\#birthdate "1865-10-30"^^xsd:date; + base:person\#birthdate_max "1865-10-30"^^xsd:date; + base:person\#deathdate "1853-06-24"^^xsd:date; + base:person\#deathdate_max "1853-06-24"^^xsd:date; + base:person\#family_name "Abramovich"; + base:person\#first_name "Bina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/abramowitz-bina-2b.jpg"; + base:person\#image_source "https://www.moyt.org/gallery/abramowitz-bina.htm "; + base:person\#ref-IDBirthPlace base:location\/Rus-DiJeSt-127; + base:person\#religion "Jewish" . + +base:person\/AldFra-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/134312392"; + base:person\#IDPerson "AldFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000063098376"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82040707"; + base:person\#SNAC "https://snaccooperative.org/ark:/99v166/w66t109c#resources"; + base:person\#Source """Charlotte Macdonald: The book of New Zealand women (First ed.). Wellington: Williams 1992. +Simpson, Adrienne: “Alda, Frances”, Dictionary of New Zealand Biography, https://teara.govt.nz/en/biographies/3a9/alda-frances. +The New York Times : \"Frances Alda Dies. Former Met Star. 21 Years Before Retiring in 1929. Sang 40 Roles. A Gatti-Casazza Protege. Came to U.S. With Milanese Impresario in 1908. Stricken by Brain Hemorrhage\".. 19th Septembre 1952, New York. +The New York Times: “Mme. Frances Alda Wed To Ray Vir Den. Former Opera. Singer Bride Of New York Advertising M”an\". 15th April 1941, New York. +The New York Times: “Singers Back From Europe: Mme. Frances Alda and Anna Case, Also Spalding, Violinist.”,18th Septembre 1920, New York. +The New York Times; “New Manon Heard.: Frances Alda Appears in Massenet's Opera”, 27th February 1909, New York.Charlotte Macdonald: The book of New Zealand women (First ed.). Wellington: Williams 1992.Simpson, Adrienne: “Alda, Frances”, Dictionary of New Zealand Biography, https://teara.govt.nz/en/biographies/3a9/alda-frances.The New York Times : \"Frances Alda Dies. Former Met Star. 21 Years Before Retiring in 1929. Sang 40 Roles. A Gatti-Casazza Protege. Came to U.S. With Milanese Impresario in 1908. Stricken by Brain Hemorrhage\".. 19th Septembre 1952, New York.The New York Times: “Mme. Frances Alda Wed To Ray Vir Den. Former Opera. Singer Bride Of New York Advertising M”an\". 15th April 1941, New York.The New York Times: “Singers Back From Europe: Mme. Frances Alda and Anna Case, Also Spalding, Violinist.”,18th Septembre 1920, New York.The New York Times; “New Manon Heard.: Frances Alda Appears in Massenet's Opera”, 27th February 1909, New York."""; + base:person\#VIAF "https://viaf.org/viaf/39564759"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3398990"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Frances_Alda"; + base:person\#birthdate "1879-05-31"^^xsd:date; + base:person\#birthdate_max "1879-05-31"^^xsd:date; + base:person\#comment "wrote an autobiographie Men, Women, & Tenors she was proud tob e native from New Zealand and sang sometimes in Maori."; + base:person\#deathdate "1952-09-18"^^xsd:date; + base:person\#deathdate_max "1952-09-18"^^xsd:date; + base:person\#family_name "Alda"; + base:person\#first_name "Frances"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frances_Alda_and_dog.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Frances_Alda#/media/Datei:Frances_Alda_and_dog.jpg"; + base:person\#ref-IDBirthPlace base:location\/NZ-ChristChurch-00; + base:person\#ref-IDDeathPlace base:location\/IT-Ven-00 . + +base:person\/BarDom-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01387647"; + base:person\#GND "https://d-nb.info/gnd/116050438"; + base:person\#IDPerson "BarDom-00"; + base:person\#ISNI "https://isni.org/isni/0000000108148585"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97876029"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6v12gpf#resources"; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/64747908"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q908235"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Domenico_Barbaia"; + base:person\#birthdate "1777-08-10"^^xsd:date; + base:person\#birthdate_max "1777-08-10"^^xsd:date; + base:person\#comment "born on Ponte Sesto, Mailand, died in Posillipo or Mergellina, Naples"; + base:person\#deathdate "1841-10-16"^^xsd:date; + base:person\#deathdate_max "1841-10-16"^^xsd:date; + base:person\#family_name "Barbaja"; + base:person\#first_name "Domenico"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barbaja_Domenico.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Domenico_Barbaja"; + base:person\#profession "Impresario, entrepreneur, theatre director,artist agent"; + base:person\#ref-IDBirthPlace base:location\/IT-Mila-00; + base:person\#ref-IDDeathPlace base:location\/IT-Nap-00 . + +base:person\/BraTer-01 a base:person; + base:person\#IDPerson "BraTer-01"; + base:person\#ISNI "https://isni.org/isni/0000000002451543"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "MGG"; + base:person\#VIAF "https://viaf.org/viaf/64341188/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3984325"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Teresina_Brambilla"; + base:person\#birthdate "1845-04-15"^^xsd:date; + base:person\#birthdate_max "1845-04-15"^^xsd:date; + base:person\#deathdate "1921-07-01"^^xsd:date; + base:person\#deathdate_max "1921-07-01"^^xsd:date; + base:person\#family_name "Brambilla"; + base:person\#first_name "Teresina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Teresina_Brambilla_Ponchielli_by_Ernesto_Fontana.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3984325#/media/File:Teresina_Brambilla_Ponchielli_by_Ernesto_Fontana.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/IT-CasMon-00; + base:person\#ref-IDDeathPlace base:location\/IT-Verc-00 . + +base:person\/BreEli-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116493348"; + base:person\#IDPerson "BreEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 585.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.,List: Leipzig 1903, p. 127."; + base:person\#VIAF "https://viaf.org/viaf/54901640"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18620774"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Elise_Breuer"; + base:person\#birthdate "1872-05-31"^^xsd:date; + base:person\#birthdate_max "1872-05-31"^^xsd:date; + base:person\#deathdate "1914-01-01"^^xsd:date; + base:person\#deathdate_max "1972-12-31"^^xsd:date; + base:person\#family_name "Breuer"; + base:person\#first_name "Elise"; + base:person\#fuzzydeathdate "last notice 1914"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/GER-Muens-00 . + +base:person\/ChaCha-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118520113"; + base:person\#IDPerson "ChaCha-00"; + base:person\#ISNI "https://isni.org/isni/0000000121213863"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79126907"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6p84dr4"; + base:person\#VIAF "https://viaf.org/viaf/14767533"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q882"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Charlie_Chaplin"; + base:person\#birthdate "1889-04-16"^^xsd:date; + base:person\#birthdate_max "1889-04-16"^^xsd:date; + base:person\#deathdate "1977-12-15"^^xsd:date; + base:person\#deathdate_max "1977-12-15"^^xsd:date; + base:person\#family_name "Chaplin"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charlie_Chaplin_portrait.jpg.webp"; + base:person\#image_source "https://www.wikidata.org/wiki/Q882#/media/File:Charlie_Chaplin_portrait.jpg"; + base:person\#profession "Actor, Director, Screenwriter, Cutter, Composer, Comedian, Film producer"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/CH-CorsVev-00 . + +base:person\/RosCa-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116608714"; + base:person\#IDPerson "RosCa-00"; + base:person\#ISNI "https://isni.org/isni/0000000365016532"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97858982"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6864cr9#resources"; + base:person\#Source "-"; + base:person\#VIAF "https://viaf.org/viaf/229380553"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3660571"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Carolina_Rosati"; + base:person\#birthdate "1826-12-13"^^xsd:date; + base:person\#birthdate_max "1826-12-13"^^xsd:date; + base:person\#family_name "Rosati"; + base:person\#first_name "Carolina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Camilla_Guiscardi_Gandolfi,_ritratto_di_Carolina_Galletti_-_crop_2.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3660571#/media/File:Camilla_Guiscardi_Gandolfi,_ritratto_di_Carolina_Galletti_-_crop_2.jpg"; + base:person\#profession "Dancer"; + base:person\#ref-IDBirthPlace base:location\/IT-BOL-00; + base:person\#ref-IDDeathPlace base:location\/FR-Cans-00 . + +base:person\/SanMan-00 a base:person; + base:person\#Birth_Info "1908-01-01 - 1908-12-31"; + base:person\#Death_Info "1979-01-01 - 1979-12-31"; + base:person\#IDPerson "SanMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Wikipedia: Manuel Domínguez Santamaría, online: https://gl.wikipedia.org/wiki/Manuel_Dom%C3%ADnguez_Santamar%C3%ADaGastón Borges: “Memorias de las tablas: Teatro del Pueblo”, La diaria cultura, 24 February 2023, online: https://ladiaria.com.uy/cultura/articulo/2023/2/memoria-de-las-tablas-teatro-del-pueblo/Aldo Roque Difilippo: “Teatro del Pueblo: escuela y semilla actoral. Los albores del teatro independiente uruguayo”, Letralia, Año XI • Nº 150, 9 October 2006 Cagua, Venezuela, online: https://letralia.com/150/entrevistas01.htm"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q71955894"; + base:person\#family_name "Santamaría"; + base:person\#first_name "Manuel"; + base:person\#fuzzybirthdate "1908"; + base:person\#fuzzydeathdate "1979"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/PT-Arn-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/TagMar-01 a base:person; + base:person\#Birth_Info """other sources: 27 Octobre 1833 +"""; + base:person\#GND "https://d-nb.info/gnd/118801201"; + base:person\#IDPerson "TagMar-01"; + base:person\#ISNI "https://isni.org/isni/0000000034361534"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97873698"; + base:person\#Source "Biographisches Lexikon des Kaiserthums Oesterreich"; + base:person\#VIAF "https://viaf.org/viaf/72190599"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q25414258"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Marie_Taglioni_die_J%C3%BCngere"; + base:person\#birthdate "1830-10-27"^^xsd:date; + base:person\#birthdate_max "1830-10-27"^^xsd:date; + base:person\#comment "Neuaigen near Wien"; + base:person\#deathdate "1891-08-27"^^xsd:date; + base:person\#deathdate_max "1891-08-27"^^xsd:date; + base:person\#family_name "Taglioni"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Taglioni_die_Jüngere_(1833-1891)_Litho.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q25414258#/media/File:Maria_Taglioni_die_J%C3%BCngere_(1833-1891)_Litho.jpg"; + base:person\#profession "Dancer"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00 . + +base:Continent-Oceania a base:Continent; + rdfs:label "Oceania"@en . + +base:Profession-Prompter a base:Profession; + rdfs:label "Prompter"@en . + +base:location\/AUS-00 a base:location; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2077456"; + base:location\#IDLocation "AUS-00"; + base:location\#latitude -2.5e1; + base:location\#longitude 1.33e2; + base:location\#wikidata "Q408"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Australia" . + +base:location\/GER-Kas-00 a base:location; + base:location\#City base:City-Kassel; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2892518"; + base:location\#IDLocation "GER-Kas-00"; + base:location\#latitude 5.13158e1; + base:location\#longitude 9.4979e0; + base:location\#wikidata "Q2865"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Kassel" . + +base:location\/HU-Pest-00 a base:location; + base:location\#City base:City-Pest\%28Budapest\%29; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3046446"; + base:location\#IDLocation "HU-Pest-00"; + base:location\#latitude 4.75174e1; + base:location\#longitude 1.90847e1; + base:location\#wikidata "Q210205"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Pest,_Hungary" . + +base:location\/USA-Syrac-00 a base:location; + base:location\#City base:City-Syracuse; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5140405"; + base:location\#IDLocation "USA-Syrac-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.30409e1; + base:location\#longitude -7.61438e1; + base:location\#wikidata "Q128069"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Syracuse,_New_York" . + +base:organisation\/1022 a base:organisation; + base:organisation\#IDOrganisation 1022; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name " k.k. priv. Carl-Theater"; + base:organisation\#ref-IDLocation base:location\/AT-VIE-00 . + +base:organisation\/60410 a base:organisation; + base:organisation\#IDOrganisation 60410; + base:organisation\#InstType base:InstitutionType-Society\%2FUnion; + base:organisation\#comment ""; + base:organisation\#inst_name "Oriental Operetta Society" . + +base:organisation\/60880 a base:organisation; + base:organisation\#IDOrganisation 60880; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Pavilion Theatre" . + +base:organisation\/68070 a base:organisation; + base:organisation\#IDOrganisation 68070; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Yiddish Art Theatre" . + +base:organisation\/754 a base:organisation; + base:organisation\#IDOrganisation 754; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Nacional" . + +base:organisation\/902 a base:organisation; + base:organisation\#IDOrganisation 902; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Apolo" . + +base:person\/AlbMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01384136"; + base:person\#GND "https://d-nb.info/gnd/116279389"; + base:person\#IDPerson "AlbMar-00"; + base:person\#ISNI "https://isni.org/isni/000000011649148X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n89623931"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6rf6q5b#resources"; + base:person\#Source "Arthur Pougin:  Marietta Alboni. Paris 1912."; + base:person\#VIAF "https://viaf.org/viaf/56874943"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q269130"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marietta_Alboni"; + base:person\#birthdate "1826-03-06"^^xsd:date; + base:person\#birthdate_max "1826-03-06"^^xsd:date; + base:person\#deathdate "1894-06-23"^^xsd:date; + base:person\#deathdate_max "1894-06-23"^^xsd:date; + base:person\#family_name "Alboni"; + base:person\#first_name "Marietta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alboni_Marietta.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Marietta_Alboni#/media/Datei:Marietta_Alboni_by_Charles_Vogt.jpg"; + base:person\#profession "Opera singer, Actress"; + base:person\#ref-IDBirthPlace base:location\/IT-CitCast-00; + base:person\#ref-IDDeathPlace base:location\/FR-VdAvr-00 . + +base:person\/ArnJos-00 a base:person; + base:person\#IDPerson "ArnJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Callipo, Daniela Mantarro. O Teatro Musicado Francês No Rio De Janeiro Oitocentista: sucesso, ruína, aplausos e críticas. In.: Miscelânea, Assis, v. 31, 2022, p. 49-64: https://seer.assis.unesp.br/index.php/miscelanea/article/view/2211 Callipo, Daniela Mantarro. De vedete à poeta: a trajetória de Rose Méryss. In Miscelânea, Assis, v. 24, p. 145-163, jul.-dez., 2018. https://seer.assis.unesp.br/index.php/miscelanea/article/view/1222 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Neves, Larissa de Oliveira. A opereta francesa e o teatro brasileiro: uma proposta de pesquisa. In.: Cadernos Letra e Ato, v.5, 2015, p.60-68. https://www.publionline.iar.unicamp.br/index.php/letraeato/article/view/328 (Hemeroteca of Brazilian National Library) Diário do Rio de Janeiro. 20th June 1867. Ed. 00156. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=21959 Diário do Rio de Janeiro. 27th September 1874. Ed. 00267. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=32174Diário do Rio de Janeiro. 24th August 1875. Ed. 00234. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=33482Diário do Rio de Janeiro. 14th August 1873. Ed. 00223. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=30556 Diário do Rio de Janeiro. 11th April 1877. Ed. 00095. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pesq=%22Joseph%20Arnaud%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=35920 Jornal da Tarde : Folha Politica e Noticiosa. 22nd February 1878. Ed. 00044. Rio de Janeiro, p.3.https://memoria.bn.br/DocReader/DocReader.aspx?bib=748919&pesq=%22Joseph%20Arnaud%22&pasta=ano%20187&hf=memoria.bn.br&pagfis=1175 "; + base:person\#deathdate "1878-02-22"^^xsd:date; + base:person\#deathdate_max "1878-02-22"^^xsd:date; + base:person\#family_name "Arnaud"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Founder, Impresario, Actor"; + base:person\#ref-IDBirthPlace base:location\/FR-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:person\/BelAdo-1246 a base:person; + base:person\#CERL "-"; + base:person\#IDPerson "BelAdo-1246"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/bell-adolf.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.191."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1886-09-04"^^xsd:date; + base:person\#birthdate_max "1886-09-04"^^xsd:date; + base:person\#family_name "Bell"; + base:person\#first_name "Adolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-bell-adolf.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/bell-adolf.htm"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-72; + base:person\#religion "Jewish" . + +base:person\/FeiRac-1622 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/173595855"; + base:person\#IDPerson "FeiRac-1622"; + base:person\#ISNI "https://isni.org/isni/000000006692950X"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr98010202"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/F/feigenberg-rachel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.5152."""; + base:person\#VIAF "http://viaf.org/viaf/49139643"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q16655496"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Rakhel_Feygenberg"; + base:person\#birthdate "1885-09-12"^^xsd:date; + base:person\#birthdate_max "1885-09-12"^^xsd:date; + base:person\#comment "Buried in Tel Aviv"; + base:person\#deathdate "1872-06-05"^^xsd:date; + base:person\#deathdate_max "1872-06-05"^^xsd:date; + base:person\#family_name "Feigenberg"; + base:person\#first_name "Rachel"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/rachel faigelberg.jpg"; + base:person\#image_source "https://infocenters.co.il/gnazim/lightbox.asp?lang=HEB&dlang=HEB&module=search&page=lightbox&rsvr=7&param=%3Crsvr_ser%3E@@3@@6@@8@@7@@10%3C/%3E%3Csearch_type%3Eglobal%3C/%3E%3Cuppernav%3Eglobal%3C/%3E%3Cdlang%3EHEB%3C/%3E%3Cnrsvr%3EY%3C/%3E%3Csort%3ERE@A%3C/%3E%3Ces_query_reuse_id%3E3%3C/%3E%3Cquantity%3E10%3C/%3E%3Cstart_entry%3E11%3C/%3E%3Cnum_of_items%3E3028%3C/%3E%3Cthumb%3E0%3C/%3E%3Csmode%3Edts%3C/%3E%3Cnob%3E-3%3C/%3E%3Cagg_cbx3v1%3Emul@y%3C/%3E%3Ccurr_agg%3Emul$y%3C/%3E%3Cbook_id%3E249019%3C/%3E%3Cview%3Erecords%3C/%3E%3Cnext_litem%3Ey%3C/%3E%3Clb_file%3Emultimedia/PhotoCollection/602_6.jpg%3C/%3E&param2=&site=gnazim"; + base:person\#ref-IDBirthPlace base:location\/Bel-DiJeSt-62; + base:person\#ref-IDDeathPlace base:location\/ISR-Gad-00; + base:person\#religion "Jewish" . + +base:person\/GolSam-1829 a base:person; + base:person\#GND "https://d-nb.info/gnd/1199507849"; + base:person\#IDPerson "GolSam-1829"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldenburg-samuel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.271."""; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Samuel_Goldenberg_(actor)"; + base:person\#birthdate "1886-02-08"^^xsd:date; + base:person\#birthdate_max "1886-02-08"^^xsd:date; + base:person\#family_name "Goldenburg"; + base:person\#first_name "Samuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/samuel goldenburg.jpg"; + base:person\#image_source "https://archive.nyu.edu/handle/2451/58186"; + base:person\#ref-IDBirthPlace base:location\/Bel-DiJeSt-16; + base:person\#religion "Jewish" . + +base:person\/GriErn-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02027722"; + base:person\#GND "https://d-nb.info/gnd/116855819"; + base:person\#IDPerson "GriErn-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-no2019121906/"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 1841."; + base:person\#VIAF "https://viaf.org/viaf/100996600"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q21044765"; + base:person\#birthdate "1816-10-25"^^xsd:date; + base:person\#birthdate_max "1816-10-25"^^xsd:date; + base:person\#comment "died in Villiers by Paris"; + base:person\#deathdate "1895-12-11"^^xsd:date; + base:person\#deathdate_max "1895-12-11"^^xsd:date; + base:person\#family_name "Grisi"; + base:person\#first_name "Ernesta Giuseppina Jacomina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charles_Adolphe_Bonnegrace_-_Portrait_of_Ernesta_Grisi_1816-1895_1866_-_(MeisterDrucke-1139850).jpg"; + base:person\#image_source "https://www.meisterdrucke.de/kunstdrucke/Charles-Adolphe-Bonnegrace/1139850/Portr%C3%A4t-von-Ernesta-Grisi-1816-1895%2C-1866.html"; + base:person\#profession "Opera singer,dancer"; + base:person\#ref-IDBirthPlace base:location\/HR-Viz-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/HerAgn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250087015"; + base:person\#IDPerson "HerAgn-00"; + base:person\#ISNI "https://isni.org/isni/0000000033655549"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83071757"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6ks8xbq"; + base:person\#Source "Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.139-141."; + base:person\#VIAF "https://viaf.org/viaf/48138368"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6787507"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Matilda_Heron"; + base:person\#birthdate "1830-12-01"^^xsd:date; + base:person\#birthdate_max "1830-12-01"^^xsd:date; + base:person\#comment " Burial: Green-Wood Cemetery, Brooklyn"; + base:person\#deathdate "1877-03-07"^^xsd:date; + base:person\#deathdate_max "1877-03-07"^^xsd:date; + base:person\#family_name "Heron"; + base:person\#first_name "Matilda Agnes"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Matilda_Heron_c1850.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q6787507#/media/File:Matilda_Heron_c1850.jpg"; + base:person\#profession "Actress, Playwright, Performer"; + base:person\#ref-IDBirthPlace base:location\/IE-Ldnder-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/KalPau-00 a base:person; + base:person\#GND "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&query="; + base:person\#IDPerson "KalPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Paul Kalisch. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/52431976/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q95667"; + base:person\#birthdate "1855-11-06"^^xsd:date; + base:person\#birthdate_max "1855-11-06"^^xsd:date; + base:person\#comment "Ernst II of Saxe-Coburg-Gotha appointed him a chamber singer after he hear him singing at the festival in Wiesbaden "; + base:person\#deathdate "1946-01-27"^^xsd:date; + base:person\#deathdate_max "1946-01-27"^^xsd:date; + base:person\#family_name "Paul"; + base:person\#first_name "Kalisch"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Kalisch.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Paul_Kalisch#/media/Datei:Paul_Kalisch.jpg"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/AT-StLor-00 . + +base:person\/LehMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116871199"; + base:person\#IDPerson "LehMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/15531011"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q10326330"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marie_Lehmann_(soprano)"; + base:person\#birthdate "1851-05-15"^^xsd:date; + base:person\#birthdate_max "1851-05-15"^^xsd:date; + base:person\#deathdate "1931-12-19"^^xsd:date; + base:person\#deathdate_max "1931-12-19"^^xsd:date; + base:person\#family_name "Lehmann"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marie_Lehmann_AEhrlichSängerinnen1895.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q10326330#/media/File:Marie_Lehmann_AEhrlichS%C3%A4ngerinnen1895.jpg"; + base:person\#profession "Opera singer ,soprano,Vocal trainer"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/SavZar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1029270236"; + base:person\#IDPerson "SavZar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q115221008"; + base:person\#birthdate "1861-08-28"^^xsd:date; + base:person\#birthdate_max "1861-08-28"^^xsd:date; + base:person\#deathdate "1930-01-18"^^xsd:date; + base:person\#deathdate_max "1930-01-18"^^xsd:date; + base:person\#family_name "Savic"; + base:person\#first_name "Zarko"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Director, Vocal Teacher"; + base:person\#ref-IDBirthPlace base:location\/SRB-BEL-00; + base:person\#ref-IDDeathPlace base:location\/USA-CHIC-00 . + +base:Profession-Composer a base:Profession; + rdfs:label "Composer"@en . + +base:location\/AT-Salzb-00 a base:location; + base:location\#City base:City-Salzburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2766824"; + base:location\#IDLocation "AT-Salzb-00"; + base:location\#latitude 4.78112e1; + base:location\#longitude 1.30332e1; + base:location\#wikidata "Q34713"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Salzburg" . + +base:location\/LT-Viln-00 a base:location; + base:location\#City base:City-Vilnius; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Lithuania; + base:location\#GeoNamesID "593116"; + base:location\#IDLocation "LT-Viln-00"; + base:location\#latitude 5.46833e1; + base:location\#longitude 2.52833e1; + base:location\#wikidata "Q216"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vilnius" . + +base:location\/SL-Laib-00 a base:location; + base:location\#City base:City-Ljubljana; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Slovenia; + base:location\#GeoNamesID "3196359"; + base:location\#IDLocation "SL-Laib-00"; + base:location\#latitude 4.60556e1; + base:location\#longitude 1.45083e1; + base:location\#wikidata "Q437"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ljubljana" . + +base:location\/USA-Cinc-00 a base:location; + base:location\#City base:City-Cincinnati; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4508722"; + base:location\#IDLocation "USA-Cinc-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 3.91e1; + base:location\#longitude -8.45125e1; + base:location\#wikidata "Q43196"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cincinnati" . + +base:location\/USA-Detroit-00 a base:location; + base:location\#City base:City-Detroit; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4990729"; + base:location\#IDLocation "USA-Detroit-00"; + base:location\#State base:State-Michigan; + base:location\#latitude 4.23316e1; + base:location\#longitude -8.30475e1; + base:location\#wikidata "Q12439"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Detroit" . + +base:location\/ZA-Joburg a base:location; + base:location\#City base:City-Johannesburg; + base:location\#Continent base:Continent-Africa; + base:location\#Country base:Country-SouthAfrica; + base:location\#GeoNamesID "993800"; + base:location\#IDLocation "ZA-Joburg"; + base:location\#latitude -2.62e1; + base:location\#longitude 2.80455e1; + base:location\#wikidata "Q34647"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Johannesburg" . + +base:organisation\/3275 a base:organisation; + base:organisation\#IDOrganisation 3275; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Comedia" . + +base:organisation\/54290 a base:organisation; + base:organisation\#IDOrganisation 54290; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Gimpel Theatre" . + +base:person\/AntRiv-1161 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "AntRiv-1161"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/antsipovitsh-riva.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 6, Mexico City: 1969, p.4881."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1870-06-06"^^xsd:date; + base:person\#birthdate_max "1870-06-06"^^xsd:date; + base:person\#family_name "Antsipovitsh"; + base:person\#first_name "Riva"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-antsipovitsh-riva.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/antsipovitsh-riva.htm"; + base:person\#ref-IDBirthPlace base:location\/BY-Zhuk-00; + base:person\#religion "Jewish" . + +base:person\/BasEls-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116080027"; + base:person\#IDPerson "BasEls-00"; + base:person\#ISNI "https://isni.org/isni/0000000045009704"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2003017524"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6841b06#resources"; + base:person\#Source """Thomas Blubacher: Else Basserman. In: Andreas Kotte (ed.): Theaterlexikon der Schweiz, vol 1, Chronos, Zürich 2005,  p. 128. +https://de.findagrave.com/memorial/104714687/elisabeth-sara-bassermann +"""; + base:person\#VIAF "https://viaf.org/viaf/77058244"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q109211"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Elsa_Bassermann"; + base:person\#birthdate "1878-01-14"^^xsd:date; + base:person\#birthdate_max "1878-01-14"^^xsd:date; + base:person\#comment "Sie ist auf dem Hauptfriedhof in Baden-Baden beerdigt."; + base:person\#deathdate "1961-05-30"^^xsd:date; + base:person\#deathdate_max "1961-05-30"^^xsd:date; + base:person\#family_name "Bassermann"; + base:person\#first_name "Else "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PE275805alt.jpg"; + base:person\#image_source "Theatermuseum Wien, www.theatermuseum.at/de/object/512210/"; + base:person\#profession "Screenwriter,stage,Film Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Leip-00; + base:person\#ref-IDDeathPlace base:location\/GER-BadBad-00; + base:person\#religion "Jewish" . + +base:person\/BogDaw-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01429927"; + base:person\#GND "https://d-nb.info/gnd/118524097"; + base:person\#IDPerson "BogDaw-00"; + base:person\#ISNI "https://isni.org/isni/0000000108620712"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79023804"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6ps1w3f#resources"; + base:person\#Source """Alfred von Wurzbach: Bogumil Dawison. Zeitgenossen. Biographische Skizzen von Alfred von Wurzbach, XI. Heft, Wien u. a. 1871 +Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert. Verlag von Paul List, Leipzig 1903, pp. 176-179 +\"Erinnerungen an Bogumil Dawiso\", in: Blätter für Musik, Theater und Kunst , 14. May 1872, p. 154 +Kürschner, Joseph, \"Dawison, Bogumil\" in: Allgemeine Deutsche Biographie 4 (1876), pp. 787-789 ]; https://www.deutsche-biographie.de/pnd118524097.html#adbcontent +Peter Kollek: Bogumil Dawison. Porträt und Deutung eines genialen Schauspielers. Henn 1978. +"""; + base:person\#VIAF "https://viaf.org/viaf/803327"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q316722"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Bogumil_Dawison"; + base:person\#birthdate "1818-05-15"^^xsd:date; + base:person\#birthdate_max "1818-05-15"^^xsd:date; + base:person\#deathdate "1872-02-01"^^xsd:date; + base:person\#deathdate_max "1872-02-01"^^xsd:date; + base:person\#family_name "Bogumil"; + base:person\#first_name "Dawison"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Bogumil_Dawison.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Bogumil_Dawison#/media/Datei:Bogumil_Dawison.jpg"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/GER-Dresd-00; + base:person\#religion "Jewish" . + +base:person\/CarGae-00 a base:person; + base:person\#IDPerson "CarGae-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source "Bastos, Sousa. A Carteira do Artista. Apontamentos para a História do Theatro Portuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898.Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Tese (Doutorado em História). Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Prado, Décio de Almeida. História Concisa do Teatro Brasileiro: 1570-1908. EdUSP, 1999.(Newspapers of Hemeroteca Nacional Website):Gazeta de Notícias. 21st March 1885. Ed. 00080. Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=8390 O Fluminense. 7th April 1886. Ed. 01229. Niterói, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=100439_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=3896 Gazeta de Notícias. 11th January 1886. Ed. 00011. Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&pesq=%22Carrancini%22&pasta=ano%20188&hf=memoria.bn.br&pagfis=9734 O Paiz. 17th January 1910. Ed. 09236. Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=272 O Paiz. 20th Fabruary 1913. Ed. 10363. Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=15589 O Paiz. 9th November 1911. Ed. 09895. Rio de Janeiro, p.5:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=9164 O Paiz. 21th March 1913. Ed. 10392. Rio de Janeiro, p.12:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=15997 Correio da Manhã. 8th May 1918. Ed. 07012. Rio de Janeiro, p.5:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_02&pesq=%22Carrancini%22&pasta=ano%20191&hf=memoria.bn.br&pagfis=35214 "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q30933419"; + base:person\#Wikipedia "https://pt.wikipedia.org/wiki/Gaetano_Carrancini"; + base:person\#birthdate "1856-01-01"^^xsd:date; + base:person\#birthdate_max "1856-12-31"^^xsd:date; + base:person\#family_name "Carrancini"; + base:person\#first_name "Gaetano"; + base:person\#fuzzybirthdate "1856"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Stage Designer"; + base:person\#ref-IDBirthPlace base:location\/IT-Rom-00 . + +base:person\/EibRiz-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/132377314"; + base:person\#IDPerson "EibRiz-00"; + base:person\#ISNI "https://isni.org/isni/0000000077817554"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2010060844"; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/60240547"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q14541853"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Riza_Eibensch%C3%BCtz"; + base:person\#birthdate "1870-02-17"^^xsd:date; + base:person\#birthdate_max "1870-02-17"^^xsd:date; + base:person\#deathdate "1947-01-16"^^xsd:date; + base:person\#deathdate_max "1947-01-16"^^xsd:date; + base:person\#family_name "Eibenschütz"; + base:person\#first_name "Riza"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Riza_Eibenschuetz_1898.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q14541853#/media/File:Riza_Eibenschuetz_1898.jpg"; + base:person\#profession "Opera Singer,Soprano, Ald"; + base:person\#ref-IDBirthPlace base:location\/HU-Buda-00; + base:person\#ref-IDDeathPlace base:location\/AT-Perch-00 . + +base:person\/GeoWil-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250085640"; + base:person\#IDPerson "GeoWil-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no91005681"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6x678kv#resources"; + base:person\#Source """Charles Eyre Pascoe: The Dramatic List: A Record of the Principal Performances of Living Actors and Actresses of the British Stage with Criticisms from Contemporary Journals, The Temple Publishing Company: London, 1880, p. 8-9.# +Matthew Somerville: Theatralica, https://the atricalia.com/person/anc/g-w-anson.# +The Broadway League: Internet Broadway Database, https://www.ibdb.com/broadway-cast-staff/g-w-anson-76638."""; + base:person\#VIAF "https://viaf.org/viaf/61105565"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q16043452"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/George_W._Anson"; + base:person\#birthdate "1847-11-25"^^xsd:date; + base:person\#birthdate_max "1847-11-25"^^xsd:date; + base:person\#deathdate "1920-08-02"^^xsd:date; + base:person\#deathdate_max "1920-08-02"^^xsd:date; + base:person\#family_name "Anson"; + base:person\#first_name "George William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anson_George.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q16043452#/media/File:George_Anson_p_52_from_album_compiled_Gordon_Ireland_MS_6135_Collection_State_Library_Victoria.jpg"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/UK-Montr-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/GilAnn-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/1250084733"; + base:person\#IDPerson "GilAnn-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2008120871"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6h13hm7#resources"; + base:person\#VIAF "https://viaf.org/viaf/51509259"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4766413"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Anne_Hartley_Gilbert"; + base:person\#birthdate "1821-10-21"^^xsd:date; + base:person\#birthdate_max "1821-10-21"^^xsd:date; + base:person\#comment "Burial: Green-Wood Cemetery, Brooklyn, King’s County, New York"; + base:person\#deathdate "1904-04-12"^^xsd:date; + base:person\#deathdate_max "1904-04-12"^^xsd:date; + base:person\#family_name "Gilbert"; + base:person\#first_name "Anne Hartley "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mrs._G._H._Gilbert_seated_portrait._Sarony.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q4766413#/media/File:Mrs._G._H._Gilbert_seated_portrait._Sarony.jpg"; + base:person\#profession "Dancer, Actress"; + base:person\#ref-IDBirthPlace base:location\/GB-Roch-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/JohGad-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116328940"; + base:person\#IDPerson "JohGad-00"; + base:person\#ISNI "https://isni.org/isni/0000000055138657"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no90002544"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6br947q"; + base:person\#Source "Großen Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/29717934"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q96176"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Johanna_Gadski"; + base:person\#birthdate "1872-06-15"^^xsd:date; + base:person\#birthdate_max "1872-06-15"^^xsd:date; + base:person\#comment """One of the best singer of wagner Operas in her time. +Her voice is served on more than 100 Schellackplatten and Mapleson-Zylindern. Died as the consequences of a car accident (she was in Germany for searching new singer for her company)"""; + base:person\#deathdate "1932-02-22"^^xsd:date; + base:person\#deathdate_max "1932-02-22"^^xsd:date; + base:person\#family_name "Gadski"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Gadski_Johanna.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Johanna_Gadski"; + base:person\#profession "Opera singer,sopran"; + base:person\#ref-IDBirthPlace base:location\/GER-Ankl-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/PanAle-00 a base:person; + base:person\#Birth_Info "other sources: 1864"; + base:person\#IDPerson "PanAle-00"; + base:person\#ISNI "https://isni.org/isni/0000000497982134"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://id.loc.gov/authorities/names/n2017068369.html"; + base:person\#SNAC "http://n2t.net/ark:/99166/w6f90mnx"; + base:person\#Source """Beth Painter: Biography of Alexander Pantages, in Find a grave, https://de.findagrave.com/memorial/2093/alexander-pantages +# +Bringing Back Broadway (ed.): The Arcade Theatre (1910), https://bringingbackbroadway.com/the-arcade-theatre +# +Daniel Statt: Pantages, Alexander (1876-1936), in HistoryLink.org, Mai 03, 2001, https://www.historylink.org/file/2999. +Hellenica World (ed.): Alexander Pantages, https://www.hellenicaworld.com/Greece/Person/en/AlexanderPantages.html +# +Michael Gates: Hollywood in the Klondike: Dawson City's Great Film Find, Madeira Park, BC: Lost Moose 2022, pp. 118–125, 135, 140–141 +# +Pantages Theatre Archive (PTA) (ed.): “The Life of Alexander Pantages”, the J. Willard Marriott Librar, https://pta.lib.utah.edu/alexander-pantages/ +# +Paul R. Spitzzeri: The Sexual Assault Trial of Alexander Pantages, Los Angeles, October 1929, October 10, 2018, https://homesteadmuseum.blog/2018/10/10/the-sexual-assault-trial-of-alexander-pantages-los-angeles-october-1929/ +# +Taso G. Lagos: American Zeus: The Life of Alexander Pantages, North Carolina: McFarland 2018 +# +The San Diego History Center (ed.): The Pantages, https://sandiegohistory.org/collection/photographs/pantages/ +# +Theodore Saloutos: “Alexander Pantages, Theater Magnate of the West”, in The Pacific Northwest Quarterly, Washington: University of Washington Oct. 1966, Vol. 57, No. 4, pp. 137-147 +# +Water and Power Associates (ed.): Pantages Theatre (Hollywood), https://waterandpower.org/Museum2/Pantages_Theatre_(Hollywood).html"""; + base:person\#VIAF "http://viaf.org/viaf/3876151112573937180001"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2642809#sitelinks-wikipedia"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Alexander_Pantages"; + base:person\#birthdate "1867-01-01"^^xsd:date; + base:person\#birthdate_max "1867-12-31"^^xsd:date; + base:person\#deathdate "1936-02-17"^^xsd:date; + base:person\#deathdate_max "1936-02-17"^^xsd:date; + base:person\#family_name "Pantages"; + base:person\#first_name "Alexander"; + base:person\#fuzzybirthdate "1867"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander_Pantages.gif"; + base:person\#image_source "https://de.wikipedia.org/wiki/Alexander_Pantages#/media/Datei:Alexander_Pantages.gif"; + base:person\#profession "Circus Performer, Impresario"; + base:person\#ref-IDBirthPlace base:location\/GR-Andr-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00 . + +base:person\/SchWil-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01318407"; + base:person\#GND "https://d-nb.info/gnd/119056569"; + base:person\#IDPerson "SchWil-00"; + base:person\#ISNI "https://isni.org/isni/0000000109135073"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n85342496"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6kp8wjz"; + base:person\#Source """Neue Deutsche Biographie +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 4273-4274. """; + base:person\#VIAF "https://viaf.org/viaf/71397570"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q63238"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Wilhelmine_Schr%C3%B6der-Devrient"; + base:person\#birthdate "1804-12-06"^^xsd:date; + base:person\#birthdate_max "1804-12-06"^^xsd:date; + base:person\#deathdate "1860-01-26"^^xsd:date; + base:person\#deathdate_max "1860-01-26"^^xsd:date; + base:person\#family_name "Schroeder-Devrient"; + base:person\#first_name "Wilhelmine Henriette Friederike Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/894px-Schroeder-Devrient_by_Schuler.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Schroeder-Devrient_by_Schuler.jpg"; + base:person\#profession "Opera Singer,Soprano"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/GER-Cob-00 . + +base:person\/TucSop-00 a base:person; + base:person\#Birth_Info "other sources: 13 January 1884 or 1887"; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/124869076"; + base:person\#IDPerson "TucSop-00"; + base:person\#ISNI "https://isni.org/isni/0000000083876542"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87139429"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bz6v06"; + base:person\#Source """Jeannine Henderson-Shifflett: „ Sophie Tucker, The Last of the Red-Hot Mamas”, connecticuthistory.org, May 18, 2022, https://connecticuthistory.org/sophie-tucker-the-last-of-the-red-hot-mamas/. +Ancestry.com, Passenger list, https://www.ancestry.com/search/collections/1068/?name=_Abuza&departure=1887-9&departure_x=0-0-0&name_x=1_1&pcat=img_passlists&geo_a=r&geo_s=us&geo_t=us&geo_v=2.0.0&o_lid=62916&o_sch=Partners&o_xid=62916, und https://www.ancestry.de/search/categories/40/?name=Sofia+Kalish_Abuza&birth=1887&count=50&gender=f. """; + base:person\#VIAF "https://viaf.org/viaf/61733250"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q152520"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Sophie_Tucker"; + base:person\#birthdate "1886-01-13"^^xsd:date; + base:person\#birthdate_max "1886-01-13"^^xsd:date; + base:person\#comment "Burial: Emanuel Synagogue Cemetery, Wethersfield, Connecticut"; + base:person\#deathdate "1966-02-09"^^xsd:date; + base:person\#deathdate_max "1966-02-09"^^xsd:date; + base:person\#family_name "Tucker"; + base:person\#first_name "Sophia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/SophieTucker1917.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Sophie_Tucker#/media/Datei:SophieTucker1917.jpg"; + base:person\#profession "Singer, Actor"; + base:person\#ref-IDBirthPlace base:location\/UA-Tulch-00; + base:person\#ref-IDDeathPlace base:location\/USA-MNHTN-00; + base:person\#religion "Jewish" . + +base:Country-Argentina a base:Country; + rdfs:label "Argentina"@en . + +base:Country-Spain a base:Country; + rdfs:label "Spain"@en . + +base:InstitutionType-CompanyonTour a base:InstitutionType; + rdfs:label "Company on Tour"@en . + +base:location\/AUS-Melb-00 a base:location; + base:location\#City base:City-Melbourne; + base:location\#Continent base:Continent-Australia; + base:location\#Country base:Country-Australia; + base:location\#GeoNamesID "2158177"; + base:location\#IDLocation "AUS-Melb-00"; + base:location\#latitude -3.78e1; + base:location\#longitude 1.4495e2; + base:location\#wikidata "Q3141"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Melbourne" . + +base:location\/IT-Ven-00 a base:location; + base:location\#City base:City-Venice; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3164603"; + base:location\#IDLocation "IT-Ven-00"; + base:location\#latitude 4.54375e1; + base:location\#longitude 1.23358e1; + base:location\#wikidata "Q641"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Venice" . + +base:location\/PL-Krak-00 a base:location; + base:location\#City base:City-Krak\%C3\%B3w; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3094802"; + base:location\#IDLocation "PL-Krak-00"; + base:location\#latitude 5.00614e1; + base:location\#longitude 1.99372e1; + base:location\#wikidata "Q31487"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Krak%C3%B3w" . + +base:location\/USA-Alb-00 a base:location; + base:location\#City base:City-Albany; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5106834"; + base:location\#IDLocation "USA-Alb-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.26597e1; + base:location\#longitude -7.37814e1; + base:location\#wikidata "Q24861"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Albany,_New_York" . + +base:location\/USA-NHav-00 a base:location; + base:location\#City base:City-NewHaven; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4839366"; + base:location\#IDLocation "USA-NHav-00"; + base:location\#State base:State-Connecticut; + base:location\#latitude 4.13081e1; + base:location\#longitude -7.29286e1; + base:location\#wikidata "Q49145"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Haven,_Connecticut" . + +base:organisation\/59300 a base:organisation; + base:organisation\#IDOrganisation 59300; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "National Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:person\/BecBer-1238 a base:person; + base:person\#IDPerson "BecBer-1238"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/beckerman-berish.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.195."""; + base:person\#birthdate "1854-01-01"^^xsd:date; + base:person\#birthdate_max "1854-12-31"^^xsd:date; + base:person\#family_name "Beckerman"; + base:person\#first_name "Berish"; + base:person\#fuzzybirthdate "1854"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-bekerman-berish.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/lex-bekerman-berish.jpg"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-17; + base:person\#religion "Jewish" . + +base:person\/ChrRud-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116509457"; + base:person\#IDPerson "ChrRud-00"; + base:person\#ISNI "https://isni.org/isni/0000000042311908"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2002015043"; + base:person\#VIAF "https://viaf.org/viaf/77069290"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5608458"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Rudolf_Christians_(Schauspieler)"; + base:person\#birthdate "1869-01-15"^^xsd:date; + base:person\#birthdate_max "1869-01-15"^^xsd:date; + base:person\#comment "born in Middoge (Jeverland)"; + base:person\#deathdate "1922-02-07"^^xsd:date; + base:person\#deathdate_max "1922-02-07"^^xsd:date; + base:person\#family_name "Christians"; + base:person\#first_name "Rudolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1280px-Rudolf_Christians_1895_Vilimek.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q5608458#/media/File:Rudolf_Christians_1895_Vilimek.jpg"; + base:person\#profession "Actor, theatre director"; + base:person\#ref-IDDeathPlace base:location\/USA-CA-01 . + +base:person\/DelNic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1057567280"; + base:person\#IDPerson "DelNic-00"; + base:person\#ISNI "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000059401395&TERMS"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchType=7&searchld=6493&am"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Osvaldo Pellettieri: Historia del Teatro argentino en Buenos Aires. La segunda modernidad (1949-1976), Buenos Aires. Galerna 2003. + +Jesús Piernas. \"Nicolás de las Llanderas Fraga\" in Tebeosfera 2022. [Online-edition]: https://www.tebeosfera.com/autores/llanderas_nicolas_de_las.html + +Wikipedia. Nicolás de las Llanderas. Online, https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas"""; + base:person\#VIAF "https://viaf.org/viaf/78650977/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q20014433"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas"; + base:person\#birthdate "1888-02-06"^^xsd:date; + base:person\#birthdate_max "1888-02-06"^^xsd:date; + base:person\#deathdate "1938-05-20"^^xsd:date; + base:person\#deathdate_max "1938-05-20"^^xsd:date; + base:person\#family_name "De las Llanderas"; + base:person\#first_name "Nicolás"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Nicolás de las Llanderas.jpg"; + base:person\#image_source "https://es.wikipedia.org/wiki/Nicol%C3%A1s_de_las_Llanderas "; + base:person\#ref-IDBirthPlace base:location\/ES-Coruna-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/EpsFan-1579 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "EpsFan-1579"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/epstein-fannie-vadya.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1591."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1868-01-01"^^xsd:date; + base:person\#birthdate_max "1868-12-31"^^xsd:date; + base:person\#comment "Buried in Warsaw, Poland"; + base:person\#deathdate "1913-02-03"^^xsd:date; + base:person\#deathdate_max "1913-02-03"^^xsd:date; + base:person\#family_name "Epstein"; + base:person\#first_name "Fannie Vadya"; + base:person\#fuzzybirthdate "1868"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-epstein-fannie-varda.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/E/epstein-fannie-vadya.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/JesOlg-00 a base:person; + base:person\#IDPerson "JesOlg-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source """Carlos María Romero Sosa. “Una escritora entre dos mundos”, La Prensa. July 3, 2016, https://www.laprensa.com.ar/445642-Una-escritora-entre-dos-mundos.note.aspx. + +Monografías: Inmigración a la Argentina 1850-1960: escritores, https://www.monografias.com/trabajos32/inmigracion-escritores/inmigracion-escritores. + +Centro PEN Argentina (ed.): Diccionario de autores argentinos 1810-1960, Buenos Aires, 2020, online: https://www.autores.centropen.com.ar/jespersen-de-adeler-olga-1877-1968/ + +https://www.olhus.dk/getperson.php?personID=I28741&tree=tree1 + +Johnnys Slægtsforskning: “Olga Jespersen”, online: https://finnholbek.dk/getperson.php?personID=I42550&tree=2 + +Skeel, Schaffalitzky og Ahlefeldt: „Olga Jespersen“, online: https://finnholbek.dk/getperson.php?personID=I42550&tree=2My Heritage: “Johannes Adeler”, online: https://www.myheritage.de/names/johannes_adeler + +Geneanet: “Olga Jespersen”, online: https://gw.geneanet.org/lap65200?lang=de&pz=andreas+markus&nz=golzer&p=olga&n=jespersen"""; + base:person\#birthdate "1877-10-22"^^xsd:date; + base:person\#birthdate_max "1877-10-22"^^xsd:date; + base:person\#deathdate "1968-01-31"^^xsd:date; + base:person\#deathdate_max "1968-01-31"^^xsd:date; + base:person\#family_name "Jespersen"; + base:person\#first_name "Olga"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/olgaadeler.jpg"; + base:person\#image_source "https://www.goodreads.com/author/show/5071265.Olga_de_Adeler

"; + base:person\#profession "Writer,Dramaturg"; + base:person\#ref-IDBirthPlace base:location\/DK-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/KroSel-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250088771"; + base:person\#IDPerson "KroSel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18639408"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Selma_Kronold"; + base:person\#birthdate "1861-08-18"^^xsd:date; + base:person\#birthdate_max "1861-08-18"^^xsd:date; + base:person\#comment "Burial: Mount Pleasant Cemetery, Hawthorne (Westchester County)"; + base:person\#deathdate "1920-10-09"^^xsd:date; + base:person\#deathdate_max "1920-10-09"^^xsd:date; + base:person\#family_name "Kronold"; + base:person\#first_name "Selma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Kronold_photo_3.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q18639408#/media/File:Kronold_photo_3.jpg"; + base:person\#profession "Soprano"; + base:person\#ref-IDBirthPlace base:location\/PL-Krak-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/KupCae-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01426411"; + base:person\#GND "https://d-nb.info/gnd/1017770093"; + base:person\#IDPerson "KupCae-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/220736525"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1025449"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Caesarine_Kupfer-Gomansky"; + base:person\#birthdate "1818-12-28"^^xsd:date; + base:person\#birthdate_max "1818-12-28"^^xsd:date; + base:person\#deathdate "1886-04-04"^^xsd:date; + base:person\#deathdate_max "1886-04-04"^^xsd:date; + base:person\#family_name "Kupfer-Gomansky"; + base:person\#first_name "Caesarine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Caesarine_Kupfer-Gomansky.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1025449#/media/File:Caesarine_Kupfer-Gomansky.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/GER-Sigm-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/MimMis-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1022981390"; + base:person\#IDPerson "MimMis-00"; + base:person\#ISNI "https://isni.org/isni/0000000370335511"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2012072957"; + base:person\#VIAF "http://viaf.org/viaf/249643813"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1348485"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Mime_Misu"; + base:person\#birthdate "1888-01-21"^^xsd:date; + base:person\#birthdate_max "1888-01-21"^^xsd:date; + base:person\#deathdate "1953-07-28"^^xsd:date; + base:person\#deathdate_max "1953-07-28"^^xsd:date; + base:person\#family_name "Mime"; + base:person\#first_name "Misu"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Ballet Dancer, Pantomime Artist, Film Actor,Director"; + base:person\#ref-IDBirthPlace base:location\/ROU-Bot-00; + base:person\#ref-IDDeathPlace base:location\/BE-Antw-00 . + +base:person\/NozItz-2579 a base:person; + base:person\#IDPerson "NozItz-2579"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nozyk-itzhak.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1394."""; + base:person\#birthdate "1889-04-23"^^xsd:date; + base:person\#birthdate_max "1889-04-23"^^xsd:date; + base:person\#family_name "Nozyk"; + base:person\#first_name "Itzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-nozyk-itzhak.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/N/nozyk-itzhak.htm "; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/StrMau-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01085777"; + base:person\#GND "https://d-nb.info/gnd/117306282"; + base:person\#IDPerson "StrMau-00"; + base:person\#ISNI "https://isni.org/isni/0000000078451056"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82110061"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6184m9w"; + base:person\#Source "Österreichisches Biographisches Lexikon"; + base:person\#VIAF "https://viaf.org/viaf/88087311"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q506177"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Maurice_Strakosch"; + base:person\#birthdate "1825-01-15"^^xsd:date; + base:person\#birthdate_max "1825-01-15"^^xsd:date; + base:person\#comment "He started concert tours as a pianist all around Europe at the age of eleven."; + base:person\#deathdate "1887-10-09"^^xsd:date; + base:person\#deathdate_max "1887-10-09"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Maurice"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Strakosch_Maurice.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q506177#/media/File:Maurice-strakosch.jpg"; + base:person\#profession "Composer, Pianist, Impresario "; + base:person\#ref-IDBirthPlace base:location\/CZ-GrSeel-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/TagPau-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01386003"; + base:person\#GND "https://d-nb.info/gnd/117197459"; + base:person\#IDPerson "TagPau-00"; + base:person\#ISNI "https://isni.org/isni/0000000077082404"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97859166"; + base:person\#Source "Biographisches Lexikon des Kaiserthums Oesterreich"; + base:person\#VIAF "https://viaf.org/viaf/32265454"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q872165"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Paul_Taglioni"; + base:person\#birthdate "1808-01-12"^^xsd:date; + base:person\#birthdate_max "1808-01-12"^^xsd:date; + base:person\#deathdate "1884-01-06"^^xsd:date; + base:person\#deathdate_max "1884-01-06"^^xsd:date; + base:person\#family_name "Taglioni"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Taglioni_by_Josef_Kriehuber.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q872165#/media/File:Paul_Taglioni_by_Josef_Kriehuber.jpg"; + base:person\#profession "Dancer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/ZilWol-3397 a base:person; + base:person\#IDPerson "ZilWol-3397"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zilberberg-wolf.htm + Papers of Peretz Hirschbein; RG 833; folder number; YIVO Institute for Jewish Research. https://archives.cjh.org/repositories/7/resources/3273 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.777."""; + base:person\#birthdate "1885-11-11"^^xsd:date; + base:person\#birthdate_max "1885-11-11"^^xsd:date; + base:person\#family_name "Zilberberg"; + base:person\#first_name "Wolf"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zilberberg-wolf.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zilberberg-wolf.htm "; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:Country-Austria a base:Country; + rdfs:label "Austria"@en . + +base:InstitutionType-MusicalOrganization a base:InstitutionType; + rdfs:label "Musical Organization"@en . + +base:location\/BR-Recif-00 a base:location; + base:location\#City base:City-Recife; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3390760"; + base:location\#IDLocation "BR-Recif-00"; + base:location\#State base:State-Pernambuco; + base:location\#latitude -8.05556e0; + base:location\#longitude -3.48911e1; + base:location\#wikidata "Q48344"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Recife" . + +base:location\/CA-Toro-00 a base:location; + base:location\#City base:City-Toronto; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-Canada; + base:location\#GeoNamesID "6167865"; + base:location\#IDLocation "CA-Toro-00"; + base:location\#State base:State-Ontario; + base:location\#latitude 4.36614e1; + base:location\#longitude -7.93831e1; + base:location\#wikidata "Q172"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Toronto" . + +base:location\/CH-Zur-00 a base:location; + base:location\#City base:City-Zurich; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Switzerland; + base:location\#GeoNamesID "2657896"; + base:location\#IDLocation "CH-Zur-00"; + base:location\#latitude 4.73667e1; + base:location\#longitude 8.550000000000001e0; + base:location\#wikidata "Q72"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Zurich" . + +base:location\/GER-Mnhm-00 a base:location; + base:location\#City base:City-Mannheim; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2873891"; + base:location\#IDLocation "GER-Mnhm-00"; + base:location\#latitude 4.94878e1; + base:location\#longitude 8.46611e0; + base:location\#wikidata "Q2119"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Mannheim" . + +base:location\/IT-Nap-00 a base:location; + base:location\#City base:City-Naples; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3172394"; + base:location\#IDLocation "IT-Nap-00"; + base:location\#latitude 4.0845e1; + base:location\#longitude 1.42583e1; + base:location\#wikidata "Q2634"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Naples" . + +base:location\/RU-Mosk-00 a base:location; + base:location\#City base:City-Moscow; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#GeoNamesID "524901"; + base:location\#IDLocation "RU-Mosk-00"; + base:location\#latitude 5.57558e1; + base:location\#longitude 3.76172e1; + base:location\#wikidata "Q649"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Moscow" . + +base:location\/SG-00 a base:location; + base:location\#City base:City-Singapore; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-Singapore; + base:location\#GeoNamesID "1880252"; + base:location\#IDLocation "SG-00"; + base:location\#latitude 1.28333e0; + base:location\#longitude 1.03833e2; + base:location\#wikidata "Q334"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Singapore" . + +base:organisation\/283 a base:organisation; + base:organisation\#IDOrganisation 283; + base:organisation\#InstType base:InstitutionType-; + base:organisation\#comment ""; + base:organisation\#inst_name "Park Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:organisation\/3845 a base:organisation; + base:organisation\#IDOrganisation 3845; + base:organisation\#InstType base:InstitutionType-Media; + base:organisation\#comment ""; + base:organisation\#inst_name "20th Century Fox" . + +base:organisation\/537 a base:organisation; + base:organisation\#IDOrganisation 537; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Deutsches Theater"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:person\/BelMor-1243 a base:person; + base:person\#IDPerson "BelMor-1243"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/belavsky-morris.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.164."""; + base:person\#Wikipedia "-"; + base:person\#birthdate "1881-12-27"^^xsd:date; + base:person\#birthdate_max "1881-12-27"^^xsd:date; + base:person\#family_name "Belavsky"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/belavsky-morriss-verdict-sfm.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/pl/belavsky-morriss-verdict-sfm.jpg"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-65; + base:person\#religion "Jewish" . + +base:person\/CarRit-00 a base:person; + base:person\#IDPerson "CarRit-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.  + +Lily Franco: +Rita Carbajo y los teatros porteños, Buenos Aires: Academia Porteña del +Lunfardo 1999. + +Leopoldo Zuloaga: Antología de obras de teatro +argentino desde sus orígenes a la actualidad: 1860-1877: obras de la organización +nacional, con prólogo de Beatriz Seibel, Buenos Aires: Instituto Nacional del +Teatro 2008. + +Susana Llahí, María de los Ángeles Sanz, Teatro para +niños, su historia desde los orígenes, Luna Teatral 2, https://lunateatral2.wordpress.com/2014/01/04/origenes-del-teatro-para-ninos-en-buenos-aires/ + +Buenos Aires Historia: Arnaldo J. Cunietti-Ferrando: +El teatro de la Alegría, online edition, https://buenosaireshistoria.org/juntas/el-teatro-de-la-alegria/"""; + base:person\#birthdate "1838-01-01"^^xsd:date; + base:person\#birthdate_max "1838-12-31"^^xsd:date; + base:person\#deathdate "1919-04-09"^^xsd:date; + base:person\#deathdate_max "1919-04-09"^^xsd:date; + base:person\#family_name "Carbajo"; + base:person\#first_name "Rita"; + base:person\#fuzzybirthdate "1838"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carbajo, Rita.jpg"; + base:person\#image_source "https://buenosaireshistoria.org/juntas/el-teatro-de-la-alegria/"; + base:person\#ref-IDBirthPlace base:location\/ES-Malaga-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/CiaCes-00 a base:person; + base:person\#CERL "-"; + base:person\#Death_Info "01.01.1914-31.12.1914"; + base:person\#GND "-"; + base:person\#IDPerson "CiaCes-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source """Matteo Paoletti: La red de empresarios europeos en Buenos Aires (1880-1925). Algunas consideraciones preliminaries. Revista Argentina de Musicología, Vol. 21 Nro. 1 (2020): 51-76.Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. +William Garrett Acree Jr.: Staging Frontiers. The Making of Modern Popular Culture in Argentina and Uruguay, University of New Mexico Press 2019. + +"""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#deathdate_max "1914-12-31"^^xsd:date; + base:person\#family_name "Ciacchi"; + base:person\#first_name "César"; + base:person\#fuzzydeathdate "1914"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-00; + base:person\#ref-IDDeathPlace base:location\/IT-00 . + +base:person\/DouEmi-00 a base:person; + base:person\#IDPerson "DouEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source "WERNECK, Maria Helena; REIS, Angela de Castro (org.). Rotas de Teatro: entre Portugal e Brasil. Rio de Janeiro: 7Letras, 2012."; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q106319886"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/%C3%89mile_Doux"; + base:person\#birthdate "1798-01-01"^^xsd:date; + base:person\#birthdate_max "1798-01-01"^^xsd:date; + base:person\#comment "other sources say born in Paris"; + base:person\#deathdate "1876-01-01"^^xsd:date; + base:person\#deathdate_max "1876-01-01"^^xsd:date; + base:person\#family_name "Doux"; + base:person\#first_name "Émile"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emílio_Doux_2.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q106319886#/media/File:Em%C3%ADlio_Doux_2.jpg"; + base:person\#profession "Actor, Director, Impresario,Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/FR-Bord-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:person\/EntJoe-1574 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/173077684"; + base:person\#IDPerson "EntJoe-1574"; + base:person\#ISNI "https://isni.org/isni/0000000066949025"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr91013665"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/entin-joel.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1577."""; + base:person\#VIAF "http://viaf.org/viaf/56464712"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q94636105"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1874-01-01"^^xsd:date; + base:person\#birthdate_max "1875-12-31"^^xsd:date; + base:person\#deathdate "1959-01-01"^^xsd:date; + base:person\#deathdate_max "1959-12-31"^^xsd:date; + base:person\#family_name "Entin"; + base:person\#first_name "Joel"; + base:person\#fuzzybirthdate "1874 or 1875"; + base:person\#fuzzydeathdate "1959"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-entin-joel.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/E/entin-joel.htm"; + base:person\#ref-IDBirthPlace base:location\/Bel-DiJeSt-77; + base:person\#religion "Jewish" . + +base:person\/JanEmi-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118556932"; + base:person\#IDPerson "JanEmi-00"; + base:person\#ISNI "https://isni.org/isni/0000000117812281"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87896209"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6np5rk7#resources"; + base:person\#Source "liver cancer. He is buried in the St. Wolfgang cemetery"; + base:person\#VIAF "https://viaf.org/viaf/122349694"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q77181"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Emil_Jannings"; + base:person\#birthdate "1884-07-23"^^xsd:date; + base:person\#birthdate_max "1884-07-23"^^xsd:date; + base:person\#deathdate "1950-01-02"^^xsd:date; + base:person\#deathdate_max "1950-01-02"^^xsd:date; + base:person\#family_name "Jannings"; + base:person\#first_name "Emil"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Emil_Jannings_-_no_watermark.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q77181#/media/File:Emil_Jannings_-_no_watermark.jpg"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/CH-Rohrsch-00; + base:person\#ref-IDDeathPlace base:location\/AT-Strobl-00 . + +base:person\/JuvKal-2061 a base:person; + base:person\#IDPerson "JuvKal-2061"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/J/juvelier-kalmen.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.909."""; + base:person\#birthdate "1863-05-12"^^xsd:date; + base:person\#birthdate_max "1863-05-12"^^xsd:date; + base:person\#family_name "Juvelier"; + base:person\#first_name "Kalmen"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:person\/LehLill-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118883933"; + base:person\#IDPerson "LehLill-00"; + base:person\#ISNI "https://isni.org/isni/0000000108652888"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82101441"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6br9htw"; + base:person\#Source "Ludwig Eisenberg: Großes Biographisches Lexikon der Deutschen Bühne. Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/5089547"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q61641"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Lilli_Lehmann"; + base:person\#birthdate "1848-11-24"^^xsd:date; + base:person\#birthdate_max "1848-11-24"^^xsd:date; + base:person\#deathdate "1929-05-17"^^xsd:date; + base:person\#deathdate_max "1929-05-17"^^xsd:date; + base:person\#family_name "Lehmann"; + base:person\#first_name "Lilli"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lilli_Lehmann.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q61641#/media/File:Lilli_Lehmann.jpg"; + base:person\#profession "Opera Singer ,Soprano"; + base:person\#ref-IDBirthPlace base:location\/GER-Wzbrg-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/MilGeo-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "MilGeo-00"; + base:person\#ISNI "https://isni.org/isni/0000000048100757"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://id.loc.gov/authorities/names/nr2003002108.html"; + base:person\#SNAC "https://snaccooperative.org/view/18653232#resources "; + base:person\#Source "The Sydney Mail and New South Wales Advertiser. \"Her Majesty's Theatre,\" 13th October 1888, p. 761: https://trove.nla.gov.au/newspaper/article/161891040.#South Australian Register. \"Shipping Intelligence,\" 30th October 1890, p. 4: https://trove.nla.gov.au/newspaper/article/47261486.#Kaori Kobayashi: \"Touring in Asia: The Miln Company's Shakespearean Productions in Japan,\" in Shakespeare and his Contemporaries in Performance, edited by Edward J. Esche. Routledge 2016, pp. 53-72.#Bai Sun: “The First Wave of Shakespearean Productions Given by Touring Troupes in Shanghai: A Historical Survey Based on Materials Preserved in The North-China Herald and The North-China Daily News (III),” in Journal of Humanities Across the Straits, September 2021, pp.81-88.#Eric Irvin: \"George Crichton Miln: an individualist on the Australian stage\". Australasian Drama Studies (19): 1991, 94–106."; + base:person\#VIAF "http://viaf.org/viaf/12247418"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q107332078"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/George_C._Miln"; + base:person\#birthdate "1850-01-01"^^xsd:date; + base:person\#birthdate_max "1850-01-01"^^xsd:date; + base:person\#deathdate "1917-01-01"^^xsd:date; + base:person\#deathdate_max "1917-01-01"^^xsd:date; + base:person\#family_name "Miln"; + base:person\#first_name "George Crichton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/George_C._Miln.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q107332078#/media/File:George_C._Miln.jpg"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00 . + +base:person\/NatCha-745 a base:person; + base:person\#IDPerson "NatCha-745"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1401."""; + base:person\#birthdate "1874-12-01"^^xsd:date; + base:person\#birthdate_max "1874-12-31"^^xsd:date; + base:person\#family_name "Nathanson"; + base:person\#first_name "Charles"; + base:person\#fuzzybirthdate "December 1874"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-nathanson-charles.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/N/nathanson-charles.htm"; + base:person\#ref-IDBirthPlace base:location\/BY-Minsk-00; + base:person\#religion "Jewish" . + +base:person\/PolBer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116259876"; + base:person\#IDPerson "PolBer-00"; + base:person\#ISNI "https://isni.org/isni/0000000010255868"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/54895488"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4370318"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Bernhard_Pollini"; + base:person\#birthdate "1838-12-16"^^xsd:date; + base:person\#birthdate_max "1838-12-16"^^xsd:date; + base:person\#comment "(Immediately after a \"Meistersinger\" performance Pollini died of cardiac paralysis)"; + base:person\#deathdate "1897-11-26"^^xsd:date; + base:person\#deathdate_max "1897-11-26"^^xsd:date; + base:person\#family_name "Pollini"; + base:person\#first_name "Bernhard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1.jpeg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q4370318#/media/File:BernhardPollini.jpg"; + base:person\#profession "Operatic Tenor,Opera Director"; + base:person\#ref-IDBirthPlace base:location\/GER-Col-00; + base:person\#ref-IDDeathPlace base:location\/GER-HH-00; + base:person\#religion "Jewish" . + +base:person\/RemJea-00 a base:person; + base:person\#GND "https://www.wikidata.org/wiki/Q12319158#sitelinks-wikipedia"; + base:person\#IDPerson "RemJea-00"; + base:person\#ISNI "https://isni.org/isni/0000000081189394"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n93000729"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#VIAF "http://viaf.org/viaf/39645772"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q12319158#sitelinks-wikipedia"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Jean_R%C3%A9musat"; + base:person\#birthdate "1815-05-11"^^xsd:date; + base:person\#birthdate_max "1815-05-11"^^xsd:date; + base:person\#deathdate "1880-09-01"^^xsd:date; + base:person\#deathdate_max "1880-09-01"^^xsd:date; + base:person\#family_name "Rémusat"; + base:person\#first_name "Jean"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Musician, Composer, Conductor"; + base:person\#ref-IDBirthPlace base:location\/FR-Bord-00; + base:person\#ref-IDDeathPlace base:location\/CN-SH-00 . + +base:person\/SchMal-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01082171"; + base:person\#GND "https://d-nb.info/gnd/116849088"; + base:person\#IDPerson "SchMal-00"; + base:person\#ISNI "https://isni.org/isni/0000000052598156"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr94006615"; + base:person\#Source "Ludwig Eisenberg: Malvina Schnorr von Carolsfeld. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/20442457"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5844416"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Malvina_Garrigues"; + base:person\#birthdate "1825-12-07"^^xsd:date; + base:person\#birthdate_max "1825-12-07"^^xsd:date; + base:person\#deathdate "1904-02-08"^^xsd:date; + base:person\#deathdate_max "1904-02-08"^^xsd:date; + base:person\#family_name "Schnorr von Carolsfeld"; + base:person\#first_name "Malvina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Malwina_Schnorr-Carolsfeld.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q5844416#/media/File:Malwina_Schnorr-Carolsfeld.jpg"; + base:person\#profession "opera singer,soprano, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/DK-Kop-00; + base:person\#ref-IDDeathPlace base:location\/GER-Karls-00 . + +base:person\/StrLud-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117306274"; + base:person\#IDPerson "StrLud-00"; + base:person\#ISNI "https://isni.org/isni/0000000013675999"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Österreichisches Biographisches Lexikon"; + base:person\#VIAF "https://viaf.org/viaf/30309901"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19971480"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ludwig_Strakosch"; + base:person\#birthdate "1855-11-01"^^xsd:date; + base:person\#birthdate_max "1855-11-01"^^xsd:date; + base:person\#comment "Part of the family Strakosch, “the sugar barons”."; + base:person\#deathdate "1919-10-14"^^xsd:date; + base:person\#deathdate_max "1919-10-14"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/GER-HH-00 . + +base:person\/TanAvr-729 a base:person; + base:person\#IDPerson "TanAvr-729"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-avraham-itzhak.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.852."""; + base:person\#birthdate "1857-11-12"^^xsd:date; + base:person\#birthdate_max "1857-11-12"^^xsd:date; + base:person\#family_name "Tanzman"; + base:person\#first_name "Avraham Itzhak"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-tantsman-avraham-itzhak.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/tanzman-avraham-itzhak.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/TomMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250127645"; + base:person\#IDPerson "TomMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Großen Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/1198164357866813250007/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19971499"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Marie_Tomschik"; + base:person\#birthdate "1871-02-23"^^xsd:date; + base:person\#birthdate_max "1871-02-23"^^xsd:date; + base:person\#deathdate "1930-01-01"^^xsd:date; + base:person\#deathdate_max "1930-01-01"^^xsd:date; + base:person\#family_name "Tomschik"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/fef335e7-e4be-46b9-a8c4-e674b39aeded.jpg"; + base:person\#image_source "https://www-p1.archivportal-d.de/item/B3HDH34MFLRBPFQL2EQTTBW2SP5UARCC?facetValues%5B%5D=context%3D6CPYFKH35TYTUWTWR5CIF2CLE3Q5Y6DD&rows=20&offset=0&viewType=list&hitNumber=7"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-Karls-00 . + +base:State-Michigan a base:State; + rdfs:label "Michigan"@en . + +base:location\/EN-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#IDLocation "EN-00"; + base:location\#latitude 5.24833e1; + base:location\#longitude -1.56667e0; + base:location\#wikidata "Q21" . + +base:location\/EN-MANCH-00 a base:location; + base:location\#City base:City-Manchester; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England; + base:location\#GeoNamesID "2643123"; + base:location\#IDLocation "EN-MANCH-00"; + base:location\#latitude 5.34794e1; + base:location\#longitude -2.24528e0; + base:location\#wikidata "Q18125"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Manchester" . + +base:location\/GER-HAJ-00 a base:location; + base:location\#City base:City-Hanover; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2910831"; + base:location\#IDLocation "GER-HAJ-00"; + base:location\#latitude 5.23667e1; + base:location\#longitude 9.716670000000001e0; + base:location\#wikidata "Q1715"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hanover" . + +base:location\/USA-Louis-00 a base:location; + base:location\#City base:City-Louisville; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4299276"; + base:location\#IDLocation "USA-Louis-00"; + base:location\#State base:State-Kentucky; + base:location\#latitude 3.82561e1; + base:location\#longitude -8.57514e1; + base:location\#wikidata "Q43668"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Louisville,_Kentucky" . + +base:organisation\/1254 a base:organisation; + base:organisation\#IDOrganisation 1254; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Galton Opera Company" . + +base:organisation\/527 a base:organisation; + base:organisation\#IDOrganisation 527; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Her Majesty's Theatre"; + base:organisation\#ref-IDLocation base:location\/UK-LDN-00 . + +base:organisation\/70448 a base:organisation; + base:organisation\#IDOrganisation 70448; + base:organisation\#InstType base:InstitutionType-TravelingCompany; + base:organisation\#inst_name "Goldfaden's troupe" . + +base:person\/BaiIda-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/11604022X"; + base:person\#IDPerson "BaiIda-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 208."; + base:person\#VIAF "https://viaf.org/viaf/52432177"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17575917"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Ida_Baier"; + base:person\#birthdate "1863-03-16"^^xsd:date; + base:person\#birthdate_max "1863-03-16"^^xsd:date; + base:person\#comment "After 1906 nothing is known about her."; + base:person\#deathdate "1933-07-01"^^xsd:date; + base:person\#deathdate_max "1933-07-01"^^xsd:date; + base:person\#family_name "Baier"; + base:person\#first_name "Ida"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Ida_Baier_1885_Eigner.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Ida_Baier_1885_Eigner.jpg"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/BruLud-00 a base:person; + base:person\#GND " https://d-nb.info/gnd/11672482X "; + base:person\#IDPerson "BruLud-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 616."; + base:person\#VIAF "http://viaf.org/viaf/30295122 "; + base:person\#Wikidata "
https://www.wikidata.org/wiki/Q948"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Ludwig_von_dem_Bruch"; + base:person\#birthdate "1869-05-30"^^xsd:date; + base:person\#birthdate_max "1869-05-30"^^xsd:date; + base:person\#deathdate "1943-09-13"^^xsd:date; + base:person\#deathdate_max "1943-09-13"^^xsd:date; + base:person\#family_name "Bruch"; + base:person\#first_name "Ludwig"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK192898alt.jpg"; + base:person\#image_source "https://www.theatermuseum.at/online-sammlung/detail/528395/?offset=0&lv=&cHash=8167e6eb0214475ef97a0265b7b59466"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/CZ-Prag-00 . + +base:person\/CsiRos-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116750820"; + base:person\#IDPerson "CsiRos-00"; + base:person\#ISNI "https://isni.org/isni/0000000021385596"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-n2019033614/"; + base:person\#VIAF "https://viaf.org/viaf/47521357"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1756245"; + base:person\#birthdate "1832-10-23"^^xsd:date; + base:person\#birthdate_max "1832-10-23"^^xsd:date; + base:person\#deathdate "1892-02-20"^^xsd:date; + base:person\#deathdate_max "1892-02-20"^^xsd:date; + base:person\#family_name "Csillag"; + base:person\#first_name "Rosa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Rosa_Csillag.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Rosa_Csillag#/media/Datei:Rosa_Csillag_Litho.jpg"; + base:person\#ref-IDBirthPlace base:location\/HU-Irsa-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/DavDav-3821 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/1225579554"; + base:person\#IDPerson "DavDav-3821"; + base:person\#ISNI "https://isni.org/isni/0000000030111378"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/n81048375"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/D/davidov-david-II.htm + +https://en-arts.tau.ac.il/theatre/David + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.538."""; + base:person\#VIAF "http://viaf.org/viaf/233144782719903542620"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q7019257"; + base:person\#Wikipedia "https://pl.wikipedia.org/wiki/Dawid_Dawidow"; + base:person\#birthdate "1890-05-10"^^xsd:date; + base:person\#birthdate_max "1890-05-10"^^xsd:date; + base:person\#deathdate "1975-11-13"^^xsd:date; + base:person\#deathdate_max "1975-11-13"^^xsd:date; + base:person\#family_name "Davidov"; + base:person\#first_name "David "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/David_Davidov.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q7019257#/media/File:David_Davidov.jpg"; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/FarGer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116409681"; + base:person\#IDPerson "FarGer-00"; + base:person\#ISNI "https://isni.org/isni/000000008130695X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n81090616"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6w0977b"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 1400.The New York Times: “Quick Change at Oera.: Mme. Farrar's Illness Forces Substitution of \"Rigoletto\" for \"Carmen.\"”, 5th march 1916, New York."; + base:person\#VIAF "https://viaf.org/viaf/51875177"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q241498"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Geraldine_Farrar"; + base:person\#birthdate "1882-02-28"^^xsd:date; + base:person\#birthdate_max "1882-02-28"^^xsd:date; + base:person\#comment "At the age of 40 she finished her career on stage. She was friends with the German crown prince and his family in Berlin."; + base:person\#deathdate "1967-03-11"^^xsd:date; + base:person\#deathdate_max "1967-03-11"^^xsd:date; + base:person\#family_name "Farrar"; + base:person\#first_name "Geraldine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Geraldine_Farrar_1918.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q241498#/media/File:Geraldine_Farrar_1918.png"; + base:person\#ref-IDBirthPlace base:location\/USA-MA-02; + base:person\#ref-IDDeathPlace base:location\/USA-CT-01 . + +base:person\/GriGiu-01 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01385950"; + base:person\#GND "https://d-nb.info/gnd/116855835"; + base:person\#IDPerson "GriGiu-01"; + base:person\#ISNI "https://isni.org/isni/0000000071431300"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n85326413"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6j67r9n"; + base:person\#VIAF "https://viaf.org/viaf/42040883"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q287344"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Giulia_Grisi"; + base:person\#birthdate "1811-05-22"^^xsd:date; + base:person\#birthdate_max "1811-05-22"^^xsd:date; + base:person\#comment """After a concert with Pauline Viardot in Wiesbaden, she contracted pneumonia during a train journey with her children to visit her husband in St Petersburg and died in a hotel in Berlin. +Burried in Paris, Friedhof Père Lachaise"""; + base:person\#deathdate "1869-11-29"^^xsd:date; + base:person\#deathdate_max "1869-11-29"^^xsd:date; + base:person\#family_name "Grisi"; + base:person\#first_name "Giulia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Giulia_grisi_donna_anna.jpeg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q287344#/media/File:Giulia_grisi_donna_anna.JPG"; + base:person\#profession "Opera singer,coloratura soprano, soprano sfogato"; + base:person\#ref-IDBirthPlace base:location\/IT-Mila-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:person\/LofCis-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250088429"; + base:person\#IDPerson "LofCis-00"; + base:person\#ISNI "https://isni.org/isni/0000000027431194"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87911813"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6q82gvv"; + base:person\#VIAF "https://viaf.org/viaf/63077614"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q980144"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Cecilia_Loftus"; + base:person\#birthdate "1876-10-22"^^xsd:date; + base:person\#birthdate_max "1876-10-22"^^xsd:date; + base:person\#comment "Burial: Kensico Cemetery, Valhalla, New York"; + base:person\#deathdate "1943-07-12"^^xsd:date; + base:person\#deathdate_max "1943-07-12"^^xsd:date; + base:person\#family_name "Loftus"; + base:person\#first_name "Cissie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Cecilia_Loftus.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q980144#/media/File:Cecilia_Loftus.jpg"; + base:person\#profession "Performer, Actress"; + base:person\#ref-IDBirthPlace base:location\/SCT-Glasg-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/NerEst-2555 a base:person; + base:person\#IDPerson "NerEst-2555"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/neroslavska-esther.htm +https://forward.com/life/204501/how-one-yiddish-actress-was-blocked-from-stardom/ +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.143."""; + base:person\#family_name "Neroslavska"; + base:person\#first_name "Esther"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/esther-neroslavska-web-1423584134.jpg"; + base:person\#image_source "https://forward.com/life/204501/how-one-yiddish-actress-was-blocked-from-stardom/"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-122; + base:person\#religion "Jewish" . + +base:person\/SeiAnt-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117464236"; + base:person\#IDPerson "SeiAnt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n81104390"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cr63w0"; + base:person\#VIAF "https://viaf.org/viaf/10624164"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q594113"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Anton_Seidl"; + base:person\#birthdate "1850-05-07"^^xsd:date; + base:person\#birthdate_max "1850-05-07"^^xsd:date; + base:person\#deathdate "1898-03-28"^^xsd:date; + base:person\#deathdate_max "1898-03-28"^^xsd:date; + base:person\#family_name "Seidl"; + base:person\#first_name "Anton"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Anton_Seidl.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q594113#/media/File:Anton_Seidl.png"; + base:person\#profession "Conductor, Chormaster"; + base:person\#ref-IDBirthPlace base:location\/HU-Pest-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/ZibEla-3385 a base:person; + base:person\#IDPerson "ZibEla-3385"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-ela.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.767."""; + base:person\#birthdate "1897-05-16"^^xsd:date; + base:person\#birthdate_max "1897-05-16"^^xsd:date; + base:person\#family_name "Zibel"; + base:person\#first_name "Ela"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zibel-ela.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-ela.htm "; + base:person\#ref-IDBirthPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:InstitutionType-Media a base:InstitutionType; + rdfs:label "Media"@en . + +base:Religion-Jewish a base:Religion; + rdfs:label "Jewish"@en . + +base:State-Ohio a base:State; + rdfs:label "Ohio"@en . + +base:State-Pennsylvania a base:State; + rdfs:label "Pennsylvania"@en . + +base:location\/PL-Bres-00 a base:location; + base:location\#City base:City-Wroc\%C5\%82aw; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3081368"; + base:location\#IDLocation "PL-Bres-00"; + base:location\#latitude 5.111e1; + base:location\#longitude 1.70325e1; + base:location\#wikidata "Q1799"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Wroc%C5%82aw" . + +base:location\/USA-MKE-00 a base:location; + base:location\#City base:City-Milwaukee; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5263045"; + base:location\#IDLocation "USA-MKE-00"; + base:location\#State base:State-Wsconsin; + base:location\#latitude 4.305e1; + base:location\#longitude -8.795e1; + base:location\#wikidata "Q37836"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Milwaukee" . + +base:location\/USA-NY-02 a base:location; + base:location\#City base:City-Rochester; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5134086"; + base:location\#IDLocation "USA-NY-02"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.31656e1; + base:location\#longitude -7.76114e1; + base:location\#wikidata "Q49218"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rochester,_New_York" . + +base:organisation\/75 a base:organisation; + base:organisation\#IDOrganisation 75; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Königliche Oper, Berlin"; + base:organisation\#ref-IDLocation base:location\/GER-BER-00 . + +base:person\/BraMar-01 a base:person; + base:person\#GND "https://d-nb.info/gnd/116406364"; + base:person\#IDPerson "BraMar-01"; + base:person\#ISNI "https://isni.org/isni/0000000043721853"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no93027456"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6086hrx"; + base:person\#Source "Oesterreichisches Musiklexikon."; + base:person\#VIAF "https://viaf.org/viaf/39640252/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q78820"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marianne_Brandt_(contralto)"; + base:person\#birthdate "1842-09-12"^^xsd:date; + base:person\#birthdate_max "1842-09-12"^^xsd:date; + base:person\#deathdate "1921-07-09"^^xsd:date; + base:person\#deathdate_max "1921-07-09"^^xsd:date; + base:person\#family_name "Brandt"; + base:person\#first_name "Marianne"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Brandt_Marianne.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Marianne_Brandt_%28S%C3%A4ngerin%29  "; + base:person\#profession "Opera singer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/DenVic-00 a base:person; + base:person\#IDPerson "DenVic-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Operas Colón: Di Napoli Vita, Vicente, online, http://www.operas-colon.com.ar/new/items/show/634."""; + base:person\#VIAF "https://viaf.org/viaf/307393002/#Di_Napoli-Vita,_Vicenzo"; + base:person\#birthdate "1860-04-04"^^xsd:date; + base:person\#birthdate_max "1860-04-04"^^xsd:date; + base:person\#deathdate "1935-01-01"^^xsd:date; + base:person\#deathdate_max "1935-12-31"^^xsd:date; + base:person\#family_name "De Napoli Vita"; + base:person\#first_name "Vicente"; + base:person\#fuzzydeathdate "1935"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-Nap-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/EgeFra-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116365331"; + base:person\#IDPerson "EgeFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000010440289"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2012106942"; + base:person\#VIAF "https://viaf.org/viaf/64756302"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q104977"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Franz_Egenieff"; + base:person\#birthdate "1874-05-31"^^xsd:date; + base:person\#birthdate_max "1874-05-31"^^xsd:date; + base:person\#deathdate "1949-06-01"^^xsd:date; + base:person\#deathdate_max "1949-06-01"^^xsd:date; + base:person\#family_name "Egenieff "; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Egenieff_Franz_von.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Franz_Egenieff "; + base:person\#profession "Opera singer, film actor"; + base:person\#ref-IDBirthPlace base:location\/GER-Niederw-00; + base:person\#ref-IDDeathPlace base:location\/GER-GmTeg-00 . + +base:person\/FenGeo-00 a base:person; + base:person\#IDPerson "FenGeo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """listing of St Helier Baptisms from 1842 to 1909, https://www.theislandwiki.org/index.php/St_Helier_baptisms_1842-1909_Fagg_to_Fielding. +# +Ancestry.com. George B. Fentum, https://www.ancestry.ca/search/?name=George+Benjamin_Fentum&event=_Singapore&pg=3&birth=9&count=50&location=3257.3250&name_x=_1&priority=english. + # +Zubillaga-Pow Jun, Chee-Kong Ho: The Singaporean Soundscape, Singapore: National Library Board 2014, https://de.scribd.com/document/242878621/The-Singaporean-Soundscape#. +# +North China Herald. “Passengers”, 06th September 1873, p. 204: https://archive.org/details/north-china-herald-1873.09.06/page/204/mode/2up?q=G.+B.+Fentum. +# +North China Herald. “Passengers”, 09th September 1876, p. 1: https://archive.org/details/north-china-herald-1876.09.09/page/n1/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 24th August 1878, p. 190: https://archive.org/details/north-china-herald-1878.08.24/page/190/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 28th September 1883, p. 386: https://archive.org/details/north-china-herald-1883.09.28/page/386/mode/2up?q=G.+B.+Fentum. +# +North China Herald. 09th July 1886, p. 34: https://archive.org/details/north-china-herald-1886.07.09/page/34/mode/2up?q=G.+B.+Fentum. +# +The Musical World. 18th March 1865, p. 157: https://archive.org/details/sim_musical-world_1865-03-18_43_11/page/156/mode/2up?q=G.+B.+Fentum. +# +Brief Summary of Country News. 01st May 1865, p. 61: https://archive.org/details/jstor-3354790/page/n3/mode/2up?q=G.+B.+Fentum. +# +The Magazine of Music. May 1891, p. 93: https://archive.org/details/sim_magazine-of-music_1891-05_8_5/page/92/mode/2up?q=G.+B.+Fentum. +# +The Musical Times. “Music in Australia”, 01st March 1896, p. 189: https://archive.org/details/sim_musical-times_1896-03-01_37_637/page/188/mode/2up?q=Fentum. +# +The Pipe Organ in China Project. “G.B. Fentum (1843-1914): British Organist in Singapore, Shanghai, and Australia,” http://organcn.org/blog/g-b-fentum-1843-1914-british-organist-in-singapore-shanghai-and-australia/."""; + base:person\#birthdate "1843-06-09"^^xsd:date; + base:person\#birthdate_max "1843-06-09"^^xsd:date; + base:person\#deathdate "1914-09-05"^^xsd:date; + base:person\#deathdate_max "1914-09-05"^^xsd:date; + base:person\#family_name "Fentum"; + base:person\#first_name "George Benjamin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Mr-Fentum-PLC-East-Melbourne-early-20th-Century.jpg"; + base:person\#image_source "https://blogs.qub.ac.uk/specialcollections/george-benjamin-fentum-organist-at-shanghai/"; + base:person\#profession "Musician, Conductor"; + base:person\#ref-IDBirthPlace base:location\/Channel-StHel; + base:person\#ref-IDDeathPlace base:location\/AUS-Vict-00 . + +base:person\/GarMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116423374"; + base:person\#IDPerson "GarMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000115620163"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80010421"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w67d2s5n"; + base:person\#VIAF "https://viaf.org/viaf/22228088"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q242752"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Mary_Garden"; + base:person\#birthdate "1874-02-20"^^xsd:date; + base:person\#birthdate_max "1874-02-20"^^xsd:date; + base:person\#deathdate "1967-01-03"^^xsd:date; + base:person\#deathdate_max "1967-01-03"^^xsd:date; + base:person\#family_name "Garden"; + base:person\#first_name "Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Mary_Garden_2.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q242752#/media/File:Mary_Garden_2.jpg"; + base:person\#profession "Opera singer,Leading Soprano, Artistic Director, Vocal advisor,teacher"; + base:person\#ref-IDBirthPlace base:location\/SCT-Aberd-00; + base:person\#ref-IDDeathPlace base:location\/SCT-Inv-00 . + +base:person\/KaiJos-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02033511"; + base:person\#GND "https://d-nb.info/gnd/118559389"; + base:person\#IDPerson "KaiJos-00"; + base:person\#ISNI "https://isni.org/isni/0000000081291030"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86091024"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w60x1wkw#resources"; + base:person\#Source "Österreichisches Biographisches Lexikon 1815–1950"; + base:person\#VIAF "https://viaf.org/viaf/50017298"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q697592"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Josef_Kainz"; + base:person\#birthdate "1858-01-02"^^xsd:date; + base:person\#birthdate_max "1858-01-02"^^xsd:date; + base:person\#comment "died five days after his appointment as Court Theatre Director), burried at Döblinger Friedhof in Wien (honorary grave)"; + base:person\#deathdate "1910-09-20"^^xsd:date; + base:person\#deathdate_max "1910-09-20"^^xsd:date; + base:person\#family_name "Kainz"; + base:person\#first_name "Josef Gottfried Ignaz "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Josef_Kainz_by_Erwin_Raupp.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q697592#/media/File:Josef_Kainz_by_Erwin_Raupp.jpg"; + base:person\#profession "Actor, Director"; + base:person\#ref-IDBirthPlace base:location\/HU-Moson-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/KelAlf-00 a base:person; + base:person\#IDPerson "KelAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Alfred Kelleher, https://www.ibdb.com/broadway-production/the-grand-duchess-445245."""; + base:person\#comment "buried in the USA"; + base:person\#family_name "Kelleher"; + base:person\#first_name "Alfred"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/UK-00; + base:person\#ref-IDDeathPlace base:location\/USA-00; + base:person\#religion "Christian" . + +base:person\/MarBla-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116760052"; + base:person\#IDPerson "MarBla-00"; + base:person\#ISNI "https://isni.org/isni/0000000079736109"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50041813"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6ms450x"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2907.Barbara Boisits, Art. „Marchesi, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x0001d8a6The New York Times: „ Blanche Marchesi Coming: The Singer Is a Passenger on the Umbria -- Her Ideas and Aspirations.”, 1st january 1899, New York.The New York Times; “Music Heard Yesterday: Miss Blanche Marchesi's First Song Recital at Mendelssohn Hall”, 26th January 1899, New York.The New York Times: “Music Heard Yesterday: Mme. Blanche Marchesi's Farewell Song Recital at Carnegie Hall.”16th March 1899, New York.Chicago Daily Tribune: “Opera Season Is Over.: Ellis Company Closes A Successful Engagement. Manager and Milward Adams Both Declare the Performances at the Auditorium Have Been Satisfactory Both Artistically and Financially--Pleased with M. Alvarez's Success-Matinee Production of \"Carmen\" a Spirited, One. Pleased with Alvarez's Reception. Season a Satisfactory One. Blanche Marchesi Song Recital. PROGRAM.“ 26th February 1899, Chicago."; + base:person\#VIAF "https://viaf.org/viaf/37182532"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q881416"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Blanche_Marchesi"; + base:person\#birthdate "1863-04-04"^^xsd:date; + base:person\#birthdate_max "1863-04-04"^^xsd:date; + base:person\#deathdate "1940-12-15"^^xsd:date; + base:person\#deathdate_max "1940-12-15"^^xsd:date; + base:person\#family_name "Marchesi"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Blanche_Marchesi_btv1b85969067-p025_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q881416#/media/File:Blanche_Marchesi_btv1b85969067-p025_(cropped).jpg"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/NadSon-840 a base:person; + base:person\#IDPerson "NadSon-840"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nadolsky-sonia.htm + +Center for Jewish History : https://archives.cjh.org/repositories/7/archival_objects/1286065 + +https://forward.com/life/208686/throwback-thursday-the-actress-who-could-hold-her/ + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/N/nadolsky-leon.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1387."""; + base:person\#birthdate "1867-09-01"^^xsd:date; + base:person\#birthdate_max "1867-09-01"^^xsd:date; + base:person\#family_name "Nadolsky"; + base:person\#first_name "Sonya"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/sonya nadolsky.jpg"; + base:person\#image_source "https://archive.nyu.edu/handle/2451/56155"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-58; + base:person\#religion "Jewish" . + +base:person\/ResEdo-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/135050057"; + base:person\#IDPerson "ResEdo-00"; + base:person\#ISNI "https://isni.org/isni/0000000055522480"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n93015758"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w64f2310"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/43508102"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4025366"; + base:person\#birthdate "1853-12-22"^^xsd:date; + base:person\#birthdate_max "1853-12-22"^^xsd:date; + base:person\#deathdate "1917-05-25"^^xsd:date; + base:person\#deathdate_max "1917-05-25"^^xsd:date; + base:person\#family_name "de Reszke"; + base:person\#first_name "Édouard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Édouard_de_Reszke_LCCN2014698890_(cropped).jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q4025366#/media/File:%C3%89douard_de_Reszke_LCCN2014698890_(cropped).jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/PL-Garn-00 . + +base:person\/VakMor-3137 a base:person; + base:person\#IDPerson "VakMor-3137"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-morris.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.66."""; + base:person\#birthdate "1874-07-25"^^xsd:date; + base:person\#birthdate_max "1874-07-25"^^xsd:date; + base:person\#family_name "Vaksman"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-morris.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-morris.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/ZinYos-3409 a base:person; + base:person\#IDPerson "ZinYos-3409"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zinger-yosef.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.791."""; + base:person\#birthdate "1885-01-01"^^xsd:date; + base:person\#birthdate_max "1885-12-31"^^xsd:date; + base:person\#family_name "Zinger"; + base:person\#first_name "Yosef"; + base:person\#fuzzybirthdate "1885"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zinger-yosef.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zinger-yosef.htm "; + base:person\#ref-IDBirthPlace base:location\/Rom-DiJeSt-102; + base:person\#religion "Jewish" . + +base:location\/USA-Balti-00 a base:location; + base:location\#City base:City-Baltimore; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4347778"; + base:location\#IDLocation "USA-Balti-00"; + base:location\#State base:State-Maryland; + base:location\#latitude 3.92894e1; + base:location\#longitude -7.66153e1; + base:location\#wikidata "Q5092"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Baltimore" . + +base:location\/USA-Clevel-00 a base:location; + base:location\#City base:City-Cleveland; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5150529"; + base:location\#IDLocation "USA-Clevel-00"; + base:location\#State base:State-Ohio; + base:location\#latitude 4.14822e1; + base:location\#longitude -8.166970000000001e1; + base:location\#wikidata "Q37320"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cleveland" . + +base:organisation\/122 a base:organisation; + base:organisation\#IDOrganisation 122; + base:organisation\#InstType base:InstitutionType-temporaryfestival; + base:organisation\#comment ""; + base:organisation\#inst_name "Bayreuther Festpiele"; + base:organisation\#ref-IDLocation base:location\/GER-Bayr-00 . + +base:organisation\/696 a base:organisation; + base:organisation\#IDOrganisation 696; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyceum Theatre" . + +base:person\/BlaEls-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/130104329"; + base:person\#IDPerson "BlaEls-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n84098312"; + base:person\#Source "Kutsch/Riemens: Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/70027666"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q24175013"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Elsa_Bland"; + base:person\#birthdate "1880-04-18"^^xsd:date; + base:person\#birthdate_max "1880-04-18"^^xsd:date; + base:person\#deathdate "1935-09-27"^^xsd:date; + base:person\#deathdate_max "1935-09-27"^^xsd:date; + base:person\#family_name "Bland"; + base:person\#first_name "Elsa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Elsa_Bland_04.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q24175013#/media/File:Elsa_Bland_04.jpg"; + base:person\#profession "Opera singer,soprano,singing teacher"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/BraTer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1242821562"; + base:person\#IDPerson "BraTer-00"; + base:person\#ISNI "https://isni.org/isni/0000000001056314"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w63c06j6#resources"; + base:person\#VIAF "https://viaf.org/viaf/51952983/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3984276"; + base:person\#birthdate "1813-12-23"^^xsd:date; + base:person\#birthdate_max "1813-12-23"^^xsd:date; + base:person\#deathdate "1895-07-15"^^xsd:date; + base:person\#deathdate_max "1895-07-15"^^xsd:date; + base:person\#family_name "Brambilla"; + base:person\#first_name "Teresa"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Teresa_Brambilla_1845.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3984276#/media/File:Teresa_Brambilla_1845.jpg"; + base:person\#profession "Opera singer"; + base:person\#ref-IDBirthPlace base:location\/IT-Cassa-00; + base:person\#ref-IDDeathPlace base:location\/IT-Mila-00 . + +base:person\/GriCar-00 a base:person; + base:person\#CERL "https://www.wikidata.org/wiki/Property:P1871"; + base:person\#GND "https://d-nb.info/gnd/116855789"; + base:person\#IDPerson "GriCar-00"; + base:person\#ISNI "https://isni.org/isni/0000000118978371"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr95008206"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6n87c0p"; + base:person\#Source "Österreichisches Biographisches Lexikon 1815–1950"; + base:person\#VIAF "https://viaf.org/viaf/19946439"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q287812"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Carlotta_Grisi"; + base:person\#birthdate "1819-06-28"^^xsd:date; + base:person\#birthdate_max "1819-06-28"^^xsd:date; + base:person\#deathdate "1899-05-20"^^xsd:date; + base:person\#deathdate_max "1899-05-20"^^xsd:date; + base:person\#family_name "Grisi"; + base:person\#first_name "Carlotta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carlotta_Grisi_in_the_title_role_of_Giselle,_1842.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q287812#/media/File:Carlotta_Grisi_in_the_title_role_of_Giselle,_1842.jpg"; + base:person\#profession "Dancer,opera singer"; + base:person\#ref-IDBirthPlace base:location\/HR-Viz-00; + base:person\#ref-IDDeathPlace base:location\/CH-StJn-00 . + +base:person\/LewAug-00 a base:person; + base:person\#CERL "https://www.wikidata.org/wiki/Property:P1871"; + base:person\#Death_Info "other sources: Munich"; + base:person\#GND "https://d-nb.info/gnd/119164035"; + base:person\#IDPerson "LewAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2002058917"; + base:person\#SNAC "https://www.wikidata.org/wiki/Property:P3430"; + base:person\#VIAF "https://viaf.org/viaf/815792"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q99351"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/August_Lewald"; + base:person\#birthdate "1792-10-14"^^xsd:date; + base:person\#birthdate_max "1792-10-14"^^xsd:date; + base:person\#deathdate "1871-03-10"^^xsd:date; + base:person\#deathdate_max "1871-03-10"^^xsd:date; + base:person\#family_name "Lewald"; + base:person\#first_name "August"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/August_Lewald_1.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q99351#/media/File:August_Lewald_1.jpg"; + base:person\#profession "Actor, Theatre Director, Intendant"; + base:person\#ref-IDBirthPlace base:location\/RUS-Kali-00; + base:person\#ref-IDDeathPlace base:location\/GER-BadBad-00; + base:person\#religion "Jewish, Other" . + +base:person\/MamEmm-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01075147"; + base:person\#GND "https://d-nb.info/gnd/116021799"; + base:person\#IDPerson "MamEmm-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/62289633"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17425396"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Emma_Mampe-Babnigg"; + base:person\#birthdate "1825-02-25"^^xsd:date; + base:person\#birthdate_max "1825-02-25"^^xsd:date; + base:person\#deathdate "1904-05-05"^^xsd:date; + base:person\#deathdate_max "1904-05-05"^^xsd:date; + base:person\#family_name "Mampé-Babnigg"; + base:person\#first_name "Emma"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer,Soprano, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/HU-Pest-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/PadMan-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "-"; + base:person\#IDPerson "PadMan-00"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "-"; + base:person\#Source """Beatriz Seibel: Historia del circo. Buenos Aires, Ediciones del Sol 2005. + +Raúl H. Castagnino: Circo, teatro gauchesco y tango. Buenos Aires, Instituto Nacional de Estudios de Teatro 1981 + +“Manuel Padín” https://everipedia.org/wiki/lang_en/manuel-padin + +Lily Franco: “El circo criollo” https://www.magicasruinas.com.ar/revdesto064b.htm"""; + base:person\#VIAF "-"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q20016349"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Manuel_Pad%C3%ADn"; + base:person\#birthdate "1855-11-04"^^xsd:date; + base:person\#birthdate_max "1855-11-04"^^xsd:date; + base:person\#deathdate "1922-05-05"^^xsd:date; + base:person\#deathdate_max "1922-05-05"^^xsd:date; + base:person\#family_name "Padín"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/padin-manuel.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Manuel_Pad%C3%ADn.jpg"; + base:person\#profession "Actor, Magician,Circus Performer, Photographer"; + base:person\#ref-IDBirthPlace base:location\/PT-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/VelMar-00 a base:person; + base:person\#IDPerson "VelMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Faria, J. R. (2008). Machado de Assis e os estilos de interpretação teatral de seu tempo. Revista USP, v.77, p.135-148 : https://doi.org/10.11606/issn.2316-9036.v0i77p135-148 Faria, J. R.. O teatro realista no Brasil: 1855-1865. 1989. Doctoral dissertation (Doutorado em Literatura Brasileira) - Faculdade de Filosofia, Letras e Ciências Humanas, Universidade de São Paulo, São Paulo, 1990 : https://doi.org/10.11606/T.8.1990.tde-18102022-131721 Stark, A. C. A mulher ausente: a presença de Maria Velluti (1827-1891) no teatro brasileiro. Urdimento - Revista de Estudos em Artes Cênicas, Florianópolis, v. 1, n. 34, p. 280-305, 2019. DOI: 10.5965/1414573101342019280 : https://www.revistas.udesc.br/index.php/urdimento/article/view/1414573101342019280. "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q64623410"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Maria_Velluti"; + base:person\#birthdate "1827-12-10"^^xsd:date; + base:person\#birthdate_max "1827-12-10"^^xsd:date; + base:person\#family_name "Velluti"; + base:person\#first_name "Maria"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Maria_Velluti.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q64623410#/media/File:Maria_Velluti.png"; + base:person\#profession "Actor, Dancer, Playwright, English Teacher, Translator"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:person\/WagJoh-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00538866"; + base:person\#GND "https://d-nb.info/gnd/118805916"; + base:person\#IDPerson "WagJoh-00"; + base:person\#ISNI "https://isni.org/isni/0000000066750112"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2018063686"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6155bj2"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 4945.The Observer: “The Early Life and Personal Apperance of Madmoiselle Wagner”, 26th April 1852, London.Erwin Angermayer: Große Frauen der Weltgeschichte. Tausend Biographien in Wort und Bild. Verlag Kaiser, Klagenfurt 1987, pp.242."; + base:person\#VIAF "https://viaf.org/viaf/10642327"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q91730"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Johanna_Jachmann-Wagner"; + base:person\#birthdate "1828-10-13"^^xsd:date; + base:person\#birthdate_max "1828-10-13"^^xsd:date; + base:person\#deathdate "1894-10-16"^^xsd:date; + base:person\#deathdate_max "1894-10-16"^^xsd:date; + base:person\#family_name "Wagner"; + base:person\#first_name "Johanna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Johanna_Jachmann-Wagner_AEhrlichSängerinnen1895.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q91730#/media/File:Johanna_Jachmann-Wagner_AEhrlichS%C3%A4ngerinnen1895.jpg"; + base:person\#ref-IDBirthPlace base:location\/GER-Seelz-00; + base:person\#ref-IDDeathPlace base:location\/GER-Wzbrg-00 . + +base:location\/GER-Col-00 a base:location; + base:location\#City base:City-Cologne; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2886242"; + base:location\#IDLocation "GER-Col-00"; + base:location\#latitude 5.09364e1; + base:location\#longitude 6.95278e0; + base:location\#wikidata "Q365"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Cologne" . + +base:organisation\/3085 a base:organisation; + base:organisation\#IDOrganisation 3085; + base:organisation\#comment ""; + base:organisation\#inst_name "Cinema Industry" . + +base:person\/KalBer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/135337631"; + base:person\#IDPerson "KalBer-00"; + base:person\#ISNI "https://isni.org/isni/000000011679179X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr98040841"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6sb86wk"; + base:person\#Source "Paula E. Hyman (Hrsg.): Jewish women. A comprehensive historical encyclopedia"; + base:person\#VIAF "https://viaf.org/viaf/80117835"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4895495"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Bertha_Kalich"; + base:person\#birthdate "1874-05-17"^^xsd:date; + base:person\#birthdate_max "1874-05-17"^^xsd:date; + base:person\#comment "Burial: Mount Hebron Cemetery, Flushing NY"; + base:person\#deathdate "1939-04-18"^^xsd:date; + base:person\#deathdate_max "1939-04-18"^^xsd:date; + base:person\#family_name "Kalich"; + base:person\#first_name "Bertha"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Bertha_Kalich_1.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q4895495#/media/File:Bertha_Kalich_1.png"; + base:person\#profession "Singer, Performer, Actress"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/NacFra-00 a base:person; + base:person\#Birth_Info "other sources: 25 March 1835 in Langenargen"; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01289689"; + base:person\#GND "https://d-nb.info/gnd/117208302"; + base:person\#IDPerson "NacFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6w99hsx"; + base:person\#Source "Eisenberg, Ludwig: Großes Biographisches Lexikon der Deutschen Bühne. Verlagsbuchhandlung Paul List. Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/170971097"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1447423"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Franz_Nachbaur"; + base:person\#birthdate "1830-03-25"^^xsd:date; + base:person\#birthdate_max "1830-03-25"^^xsd:date; + base:person\#deathdate "1902-03-21"^^xsd:date; + base:person\#deathdate_max "1902-03-21"^^xsd:date; + base:person\#family_name "Nachbaur"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Die_Gartenlaube_(1873)_b_807.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q1447423#/media/File:Die_Gartenlaube_(1873)_b_807.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/GER-Kress; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:person\/SanJus-00 a base:person; + base:person\#CERL "-"; + base:person\#IDPerson "SanJus-00"; + base:person\#ISNI "https://isni.org/page/search-database/"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchArg=Justo+S.+L%C3%B3pez+de+"; + base:person\#SNAC "https://snaccooperative.org/view/55311558#resources"; + base:person\#Source """Marcela García Sebastiani. “La eficacia de las redes y los resultados de los vínculos: las elites de los emigrantes españoles en la Argentina (1862-1923)”. Revista Complutense de Historia de América, Madrid: Ediciones Complutense, 2005, pp. 147-176. + +Real Academia de la Historia. “Justo Sanjurjo López de Gomara”. Madrid, online: https://dbe.rah.es/biografias/12298/justo-sanjurjo-lopez-de-gomara. + +Genealogía Familiar. “Justo Sanjurjo López de Gomara”. Buenos Aires, online: https://www.genealogiafamiliar.net/getperson.php?personID=I684054&tree=BVCZ. + +Tomás Gismera Velasco. “Justo S. López de Gomara: Brihuega en el corazón”. Guadalajara: Henares al Día, 2017, onlinehttps://henaresaldia.com/justo-s-lopez-gomara-brihuega-corazon/"""; + base:person\#VIAF "https://viaf.org/viaf/search?query=local.names%20all%20%22Justo%20S.%2"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q55838516"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Justo_S._L%C3%B3pez_de_Gomara"; + base:person\#birthdate "1859-05-06"^^xsd:date; + base:person\#birthdate_max "1859-05-06"^^xsd:date; + base:person\#comment "He was employed as a Journalist in several newspapers, and simultaneously he wrote many plays, short stories, and poems. He embodied the role of an intellectual, who combined different artistic and moral talents. Justo S. López de Gomara wrote 28 theatre plays; he was one of the precursors of the Argentinian National Theater and the sainete genre (Sebastiani: 2005, P.168), Buried in Recoleta Cemetery, Buenos Aires"; + base:person\#deathdate "1923-08-12"^^xsd:date; + base:person\#deathdate_max "1923-08-12"^^xsd:date; + base:person\#family_name "López de Gomara"; + base:person\#first_name "Justo Sanjurjo "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/justogomara.jpg"; + base:person\#image_source "https://historia-hispanica.rah.es/biografias/41607-justo-sanjurjo-lopez-de-gomara"; + base:person\#profession "Playwright, Writer, Journalist"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/ARG-Guay-00 . + +base:person\/WilAur-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp02080470"; + base:person\#GND "https://d-nb.info/gnd/1037100972"; + base:person\#IDPerson "WilAur-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Andrea Harrandt: Jäger (-Wilczek), Familie, in: Oesterreichisches Musiklexikon. Online-Ausgabe, Wien 2002 ff., OEML: http://www.musiklexikon.ac.at/ml/musik_J/Jaeger_Familie_2.xmlKarl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, pp. 468- 469."; + base:person\#VIAF "https://viaf.org/viaf/304930607"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18018523"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Aurelie_Wilczek"; + base:person\#birthdate "1845-01-20"^^xsd:date; + base:person\#birthdate_max "1845-01-20"^^xsd:date; + base:person\#comment """born Strusin[e]/Galizien (Strussiw/UA) +"""; + base:person\#deathdate "1927-08-06"^^xsd:date; + base:person\#deathdate_max "1927-08-06"^^xsd:date; + base:person\#family_name "Wilczek"; + base:person\#first_name "Aurelie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#image_source "-"; + base:person\#profession "Singer, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/PL-Galz-00; + base:person\#ref-IDDeathPlace base:location\/AT-Gois-00 . + +base:person\/ZeiMos-3363 a base:person; + base:person\#Birth_Info "in other sources: 02.05.1851"; + base:person\#IDPerson "ZeiMos-3363"; + base:person\#ISNI "https://isni.org/isni/0000000066974781"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr99037144"; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zeifert-moshe.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.772."""; + base:person\#VIAF "http://viaf.org/viaf/29456450"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q101568902"; + base:person\#birthdate "1851-05-09"^^xsd:date; + base:person\#birthdate_max "1851-05-09"^^xsd:date; + base:person\#deathdate "1922-02-07"^^xsd:date; + base:person\#deathdate_max "1922-02-07"^^xsd:date; + base:person\#family_name "Zeifert"; + base:person\#first_name "Moshe"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zeifert-moshe.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zeifert-moshe.htm"; + base:person\#ref-IDBirthPlace base:location\/Lit-DiJeSt-74; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:Country-England\%28UK\%29 a base:Country; + rdfs:label "England (UK)"@en . + +base:InstitutionType-Other a base:InstitutionType; + rdfs:label "Other"@en . + +base:location\/UK-Liv-00 a base:location; + base:location\#City base:City-Liverpool; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2644210"; + base:location\#IDLocation "UK-Liv-00"; + base:location\#latitude 5.34075e1; + base:location\#longitude -2.99194e0; + base:location\#wikidata "Q24826"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Liverpool" . + +base:organisation\/4784 a base:organisation; + base:organisation\#IDOrganisation 4784; + base:organisation\#comment ""; + base:organisation\#inst_name "Compañía de Frank Brown" . + +base:person\/EbeCar-00 a base:person; + base:person\#GND "https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=true&am"; + base:person\#IDPerson "EbeCar-00"; + base:person\#ISNI "https://isni.org/page/search-database/"; + base:person\#LCCN "https://search.catalog.loc.gov/search?option=query&pageNumber=1&am"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w65x2vjz"; + base:person\#Source """Universität Hamburg, Lexikon verfolgter Musiker und Musikerinnen der NS-Zeit (LexM): https://www.lexm.uni-hamburg.de/object/lexm_lexmperson_00002560 +Wikipedia, Carl Ebert: https://tr.wikipedia.org/wiki/Carl_Ebert +Cevad Memduh Altar: https://www.cevadmemduhaltar.itu.edu.tr/carl-ebertin-turk-tiyatro-ve-operasina-katkisi.html +Dogramaci, Burcu. „Faust“ für Ankara – Carl Ebert im türkischen Exil. In Musiktheater im Exil der NS-Zeit, edited by Peter Petersen and Claudia Maurer Zenck, 35–64. Hamburg: von Bockel Verlag, 2007."""; + base:person\#VIAF "https://viaf.org/en/viaf/806518"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q75179"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Carl_Ebert"; + base:person\#birthdate_max "1887-02-20"^^xsd:date; + base:person\#deathdate_max "1980-05-14"^^xsd:date; + base:person\#family_name "Ebert"; + base:person\#first_name "Carl"; + base:person\#fuzzybirthdate "1887-02-20"; + base:person\#fuzzydeathdate "1980-05-14"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/ebert.png"; + base:person\#image_source "https://www.glyndebourne.com/about-us/art-at-glyndebourne/ilse-bing-portraits/"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00 . + +base:person\/KreHei-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01079519"; + base:person\#GND "https://d-nb.info/gnd/116533846"; + base:person\#IDPerson "KreHei-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/45056733"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5700212"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Heinrich_Kreuzer"; + base:person\#birthdate "1819-02-16"^^xsd:date; + base:person\#birthdate_max "1819-02-16"^^xsd:date; + base:person\#deathdate "1900-10-26"^^xsd:date; + base:person\#deathdate_max "1900-10-26"^^xsd:date; + base:person\#family_name "Kreuzer"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载 (2).png"; + base:person\#image_source "https://www.theatermuseum.at/online-sammlung/detail/613403/"; + base:person\#profession "Opera singer, theatre director"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-BadVie-00; + base:person\#religion "Jewish, Christian" . + +base:person\/KreMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/133042715"; + base:person\#IDPerson "KreMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/13488826"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q44583772"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Marie_Kreuzer"; + base:person\#birthdate "1839-03-11"^^xsd:date; + base:person\#birthdate_max "1839-03-11"^^xsd:date; + base:person\#deathdate "1904-01-07"^^xsd:date; + base:person\#deathdate_max "1904-01-07"^^xsd:date; + base:person\#family_name "Kreuzer"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera singer ,Soprano"; + base:person\#ref-IDBirthPlace base:location\/AT-Salzb-00; + base:person\#ref-IDDeathPlace base:location\/GER-Ulm-00 . + +base:person\/SchErn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117303704"; + base:person\#IDPerson "SchErn-00"; + base:person\#ISNI "https://isni.org/isni/0000000117358242"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n86075640"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w62b8zrc"; + base:person\#Source "Passenger Search of The Statue of Liberty - Ellis Island Foundation: Ernestine Schumann-Heink, login required, https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMTk4Mzk1ODAxOSI7/czo5OiJwYXNzZW5nZXIiOw==, and https://heritage.statueofliberty.org/passenger-details/czoxMjoiMTA1MDk2MDIwMTc3Ijs=/czo5OiJwYXNzZW5nZXIiOw==."; + base:person\#VIAF "https://viaf.org/viaf/225411"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q79035"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Ernestine_Schumann-Heink"; + base:person\#birthdate "1861-06-15"^^xsd:date; + base:person\#birthdate_max "1861-06-15"^^xsd:date; + base:person\#comment "born Libeň, Bohemia, Austrian Empire, died in Hollywood, California; Burial: Greenwood Memorial Park in San Diego"; + base:person\#deathdate "1936-11-17"^^xsd:date; + base:person\#deathdate_max "1936-11-17"^^xsd:date; + base:person\#family_name "Schumann-Heink"; + base:person\#first_name "Ernestine"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Ernestine_Schumann-Heink_1916.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Ernestine_Schumann-Heink#/media/Datei:Ernestine_Schumann-Heink_1916.jpg"; + base:person\#profession "Singer, Actress"; + base:person\#ref-IDBirthPlace base:location\/CZ-Prag-00; + base:person\#ref-IDDeathPlace base:location\/USA-LosAng-00; + base:person\#religion "Jewish, Christian" . + +base:Continent-Australia a base:Continent; + rdfs:label "Australia"@en . + +base:Country-Australia a base:Country; + rdfs:label "Australia"@en . + +base:Country-Brazil a base:Country; + rdfs:label "Brazil"@en . + +base:person\/BoiCur-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118512994"; + base:person\#IDPerson "BoiCur-00"; + base:person\#ISNI "https://isni.org/isni/0000000021461894"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80137992"; + base:person\#Source "Sabine Zolchow, Johanna Muschelknautz (eds.): Ich mache alles mit den Beinen … Der Schauspieler Curt Bois. Vorwerk 8, Berlin 2001"; + base:person\#VIAF "https://viaf.org/viaf/51915851"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q66479"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Curt_Bois"; + base:person\#birthdate "1901-04-05"^^xsd:date; + base:person\#birthdate_max "1901-04-05"^^xsd:date; + base:person\#deathdate "1991-12-25"^^xsd:date; + base:person\#deathdate_max "1991-12-25"^^xsd:date; + base:person\#family_name "Bois"; + base:person\#first_name "Curt"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Curt_Bois_im_Schiller-Theater_-_cropped.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q66479#/media/File:Curt_Bois_im_Schiller-Theater_-_cropped.jpg"; + base:person\#profession "Actor,Child Actor"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00; + base:person\#religion "Jewish" . + +base:person\/ElkMen-1567 a base:person; + base:person\#Birth_Info "In other sources: 1873   Place: Broža"; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/119260727"; + base:person\#IDPerson "ElkMen-1567"; + base:person\#ISNI "https://isni.org/isni/0000000047237663"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr00033902"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/E/elkin-mendl.htm + +https://congressforjewishculture.org/people/2322/Elkin-Mendl-April-9-1874-April-22-1962 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.1572."""; + base:person\#VIAF "http://viaf.org/viaf/64813423"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q15714450"; + base:person\#Wikipedia "https://ru.wikipedia.org/wiki/%D0%AD%D0%BB%D1%8C%D0%BA%D0%B8%D0%BD,_%D0%9C%D0%B5%D0%BD%D0%B4%D0%BB"; + base:person\#birthdate "1874-04-09"^^xsd:date; + base:person\#birthdate_max "1874-04-09"^^xsd:date; + base:person\#deathdate "1962-04-22"^^xsd:date; + base:person\#deathdate_max "1962-04-22"^^xsd:date; + base:person\#family_name "Elkin"; + base:person\#first_name "Mendl"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Di_Chaliastre_Mendel_Elkin_Perec_Hirszbajn_Uri_Cwi_Grinberg_Perec_Markisz_Melech_Rawicz_Izrael_Jehoszua_Singer_1922.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Di_Chaliastre_Mendel_Elkin_Perec_Hirszbajn_Uri_Cwi_Grinberg_Perec_Markisz_Melech_Rawicz_Izrael_Jehoszua_Singer_1922.jpg   "; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/FaiBoo-00 a base:person; + base:person\#IDPerson "FaiBoo-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no2009142831"; + base:person\#Source """ +Frederick William: Autograph collection of Frederick W., Boston: C.F. Libbie 1901, p. 47, https://archive.org/details/autographcollect00freniala/page/46/mode/2up?q=Boothroyd+Fairclough. +T. Allston Brown: A history of the New York stage from the first performance in 1732 to 1901, New York: Dodd, Mead and Co. 1903, https://archive.org/details/ahistorynewyork05browgoog/page/404/mode/2up?q=Boothroyd+Fairclough. +North China Herald. 31st August 1878, p.216: https://archive.org/details/north-china-herald-1878.08.31/page/216/mode/2up?q=Boothroyd+Fairclough. +Bai Sun: “The First Wave of Shakespearean Productions Given by Touring Troupes in Shanghai: A Historical Survey Based on Materials Preserved in The North-China Herald and The North-China Daily News,” in Journal of Humanities Across The Straits, March 2021, pp. 103-114. +National Library of New Zealand, Page 8 Advertisements Column 8, https://paperspast.natlib.govt.nz/newspapers/NZH18901119.2.53.8."""; + base:person\#VIAF "http://viaf.org/viaf/100770545"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q107211010"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Boothroyd_Fairclough"; + base:person\#birthdate "1825-01-01"^^xsd:date; + base:person\#birthdate_max "1825-01-01"^^xsd:date; + base:person\#deathdate "1911-09-18"^^xsd:date; + base:person\#deathdate_max "1911-09-18"^^xsd:date; + base:person\#family_name "Fairclough"; + base:person\#first_name "Boothroyd"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/UK-Lanc-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/MotFel-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116942037"; + base:person\#IDPerson "MotFel-00"; + base:person\#ISNI "https://isni.org/isni/0000000110633504"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89002089"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6862rvf"; + base:person\#Source "Deutsche Biographie"; + base:person\#VIAF "https://viaf.org/viaf/54334992"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q694070"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Felix_Mottl"; + base:person\#birthdate "1856-08-24"^^xsd:date; + base:person\#birthdate_max "1856-08-24"^^xsd:date; + base:person\#comment """geboren Unter St. Veit bei Wien, buried at the Waldfriedhof in München, his tombstone was designed by Fritz Behn +(he had a heart attack during his 100th Tristan conducting and died as a result a few days later)"""; + base:person\#deathdate "1911-07-02"^^xsd:date; + base:person\#deathdate_max "1911-07-02"^^xsd:date; + base:person\#family_name "Mottl"; + base:person\#first_name "Felix"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Felix_Mottl.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q694070#/media/File:Felix_Mottl.jpg"; + base:person\#profession "Conductor, Composer"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00 . + +base:person\/VakFan-3136 a base:person; + base:person\#IDPerson "VakFan-3136"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-fanny.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.661."""; + base:person\#birthdate "1878-02-14"^^xsd:date; + base:person\#birthdate_max "1878-02-14"^^xsd:date; + base:person\#family_name "Vaksman"; + base:person\#first_name "Fanny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-vaksman-fanny.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/V/vaksman-fanny.htm "; + base:person\#ref-IDBirthPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/ZigWil-3393 a base:person; + base:person\#IDPerson "ZigWil-3393"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zigenlaub-william.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.77."""; + base:person\#birthdate "1883-09-02"^^xsd:date; + base:person\#birthdate_max "1883-09-02"^^xsd:date; + base:person\#family_name "Zigenlaub"; + base:person\#first_name "William"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zigenloyb-william.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zigenlaub-william.htm"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-126; + base:person\#religion "Jewish" . + +base:location\/USA-Buff-00 a base:location; + base:location\#City base:City-Buffalo; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5110629"; + base:location\#IDLocation "USA-Buff-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.28923e1; + base:location\#longitude -7.885939999999999e1; + base:location\#wikidata "Q40435"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Buffalo,_New_York" . + +base:location\/USA-Wash-00 a base:location; + base:location\#City base:City-Washington; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4140963"; + base:location\#IDLocation "USA-Wash-00"; + base:location\#State base:State-DistrictofColumbia; + base:location\#latitude 3.89101e1; + base:location\#longitude -7.70147e1; + base:location\#wikidata "Q61"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Washington,_D.C." . + +base:organisation\/575 a base:organisation; + base:organisation\#IDOrganisation 575; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Lyric Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:person\/TeiAbr-3061 a base:person; + base:person\#IDPerson "TeiAbr-3061"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/T/teitelbaum-abraham.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.875."""; + base:person\#birthdate "1889-03-01"^^xsd:date; + base:person\#birthdate_max "1889-03-01"^^xsd:date; + base:person\#family_name "Teitelbaum"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-teitelbaum-abraham.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/T/teitelbaum-abraham.htm"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/ZibFri-3386 a base:person; + base:person\#IDPerson "ZibFri-3386"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zibel-frida.htm + +\"Shund on Shellac or Gimpel’s Theatre, Lemberg: The Sounds of a Popular Yiddish Theatre Preserved on Gramophone Records 1904–1913 +April 17, 2024\" : https://forgottengalicia.com/shund-on-shellac-or-gimpels-theatre-lemberg/ + +Jewish Music Research Centre: https://jewish-music.huji.ac.il/index.php/en/content/frida-zibel-goldstein + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.767."""; + base:person\#birthdate "1877-12-27"^^xsd:date; + base:person\#birthdate_max "1877-12-27"^^xsd:date; + base:person\#deathdate "1939-01-01"^^xsd:date; + base:person\#deathdate_max "1939-12-31"^^xsd:date; + base:person\#family_name "Zibel"; + base:person\#first_name "Frida"; + base:person\#fuzzydeathdate "1939"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/frida zibel.jpg"; + base:person\#image_source "https://jewish-music.huji.ac.il/index.php/en/content/frida-zibel-goldstein"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#religion "Jewish" . + +base:Country-England a base:Country; + rdfs:label "England"@en . + +base:InstitutionType-Amateur a base:InstitutionType; + rdfs:label "Amateur"@en . + +base:location\/BR-SaoPau-00 a base:location; + base:location\#City base:City-S\%C3\%A3oPaulo; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3448439"; + base:location\#IDLocation "BR-SaoPau-00"; + base:location\#latitude -2.35e1; + base:location\#longitude -4.66167e1; + base:location\#wikidata "Q174"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/S%C3%A3o_Paulo" . + +base:location\/GER-Bayr-00 a base:location; + base:location\#City base:City-Bayreuth; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2951825"; + base:location\#IDLocation "GER-Bayr-00"; + base:location\#latitude 4.99481e1; + base:location\#longitude 1.15783e1; + base:location\#wikidata "Q3923"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bayreuth" . + +base:location\/GER-Brem-00 a base:location; + base:location\#City base:City-Bremen; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2944388"; + base:location\#IDLocation "GER-Brem-00"; + base:location\#State base:State-Bremen; + base:location\#latitude 5.30833e1; + base:location\#longitude 8.800000000000001e0; + base:location\#wikidata "Q24879"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bremen" . + +base:organisation\/469 a base:organisation; + base:organisation\#IDOrganisation 469; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand theatre"; + base:organisation\#ref-IDLocation base:location\/FR-Lille-00 . + +base:person\/BieEmi-00 a base:person; + base:person\#IDPerson "BieEmi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Daniel Balmaceda, “La historia de Bieckert, cerveza y +mucho más”, Forbes Argentina, 3rd September 2019, [online], + + https://www.forbesargentina.com/editorial/la-historia-bieckert-cerveza-mucho-mas-n1325 + +Wikipedia: +Emilio Bieckert, online, https://es.wikipedia.org/wiki/Emilio_Bieckert + +Family Search: Jean Émile Bieckert, online, https://ancestors.familysearch.org/de/G3W6-M59/jean-emile-bieckert-1837-1913 + +Juan Pablo Estévez, “La historia de Bieckert: la +primera fábrica de cerveza argentina que vendió hasta malta para embarazadas”, online, +https://www.clarin.com/gourmet/historia-bieckert-primera-fabrica-cerveza-argentina-vendio-malta-embarazadas_0_6MRExDXla.html + +Ecured: Teatro Odeón Buenos Aires, online, https://www.ecured.cu/Teatro_Ode%C3%B3n_(Buenos_Aires) + +Wikipedia: Teatro Odeón (Buenos Aires), online, https://es.wikipedia.org/wiki/Teatro_Ode%C3%B3n_(Buenos_Aires)"""; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q539348"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Emilio_Bieckert"; + base:person\#birthdate "1837-06-16"^^xsd:date; + base:person\#birthdate_max "1837-06-16"^^xsd:date; + base:person\#deathdate "1913-07-19"^^xsd:date; + base:person\#deathdate_max "1913-07-19"^^xsd:date; + base:person\#family_name "Bieckert"; + base:person\#first_name "Emilio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Emilio_Bieckert.jpg"; + base:person\#image_source "ArgentinaenlaMemoria"; + base:person\#ref-IDBirthPlace base:location\/FR-Barr-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/BruOtt-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116726954"; + base:person\#IDPerson "BruOtt-00"; + base:person\#ISNI "https://d-nb.info/gnd/116726954"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 616.Ludwig Eisenberg: Otto Brucks. in: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. List: Leipzig 1903, p. 131Wiener Staatsoper: Aufführungsarchiv,  https://archiv.wiener-staatsoper.at/search/person/9469"; + base:person\#VIAF "https://d-nb.info/gnd/116726954"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17590782"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Otto_Brucks"; + base:person\#birthdate "1858-11-28"^^xsd:date; + base:person\#birthdate_max "1858-11-28"^^xsd:date; + base:person\#deathdate "1914-01-15"^^xsd:date; + base:person\#deathdate_max "1914-01-15"^^xsd:date; + base:person\#family_name "Brucks"; + base:person\#first_name "Otto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK167143alt.jpg"; + base:person\#image_source "https://www.theatermuseum.at/fr/onlinesammlung/detail/404383/?offset=0&lv=list "; + base:person\#ref-IDBirthPlace base:location\/GER-Brand-00; + base:person\#ref-IDDeathPlace base:location\/FR-Met-00 . + +base:person\/EicJos-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00696923"; + base:person\#GND "https://d-nb.info/gnd/130803839"; + base:person\#IDPerson "EicJos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#VIAF "https://viaf.org/viaf/30652911"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19959346"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Josef_Eichberger_senior"; + base:person\#birthdate "1801-11-26"^^xsd:date; + base:person\#birthdate_max "1801-11-26"^^xsd:date; + base:person\#deathdate "1862-03-05"^^xsd:date; + base:person\#deathdate_max "1862-03-05"^^xsd:date; + base:person\#family_name "Eichberger"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Opera Singer,Soprano, Bass, Tenor, Opera Director, Theatre Director, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/CZ-Zbi-00; + base:person\#ref-IDDeathPlace base:location\/GER-Brem-00 . + +base:person\/KorFri-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118565591"; + base:person\#IDPerson "KorFri-00"; + base:person\#ISNI "https://isni.org/isni/000000008116201X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n81071068"; + base:person\#VIAF "https://viaf.org/viaf/37126870"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q78919"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Fritz_Kortner"; + base:person\#birthdate "1892-05-12"^^xsd:date; + base:person\#birthdate_max "1892-05-12"^^xsd:date; + base:person\#comment "Auf dem Waldfriedhof in München, Neuer Teil, im Grab Nr. 246-W-23 beigesetzt"; + base:person\#deathdate "1970-07-22"^^xsd:date; + base:person\#deathdate_max "1970-07-22"^^xsd:date; + base:person\#family_name "Kortner "; + base:person\#first_name "Fritz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Fritz-Kortner-1959.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q78919#/media/File:Fritz-Kortner-1959.jpg"; + base:person\#profession "Actor, Movie director, Theater director"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-MUC-00; + base:person\#religion "Jewish" . + +base:person\/MahGus-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118576291"; + base:person\#IDPerson "MahGus-00"; + base:person\#ISNI "https://isni.org/isni/0000000121358915"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80067106"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w65r5nvx"; + base:person\#Source "Jens Malte Fischer: Gustav Mahler. Der fremde Vertraute. Paul-Zsolnay-Verlag, Wien 2003"; + base:person\#VIAF "https://viaf.org/viaf/61732497"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q7304"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Gustav_Mahler"; + base:person\#birthdate "1860-07-07"^^xsd:date; + base:person\#birthdate_max "1860-07-07"^^xsd:date; + base:person\#deathdate "1911-05-08"^^xsd:date; + base:person\#deathdate_max "1911-05-08"^^xsd:date; + base:person\#family_name "Mahler"; + base:person\#first_name "Gustav"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Composer, Conductor, Opera Director"; + base:person\#ref-IDBirthPlace base:location\/CZ-Bohe-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00; + base:person\#religion "Jewish, Christian" . + +base:person\/MarSal-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01437550"; + base:person\#GND "https://d-nb.info/gnd/116760338"; + base:person\#IDPerson "MarSal-00"; + base:person\#ISNI "https://isni.org/isni/000000008349478X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-n93072493/"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2909.Barbara Boisits;. „Marchesi, Ehepaar‟, in: Oesterreichisches Musiklexikon online, https://dx.doi.org/10.1553/0x0001d8a6The Observer: „Music“, 19th July 1863, London.The Observer: „Music“, 13th July 1863, London."; + base:person\#VIAF "https://viaf.org/viaf/277753/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3946123"; + base:person\#Wikipedia "https://it.wikipedia.org/wiki/Salvatore_Marchesi"; + base:person\#birthdate "1822-01-15"^^xsd:date; + base:person\#birthdate_max "1822-01-15"^^xsd:date; + base:person\#comment "Born of Italian nobility; gave up officer's career in 1840 and began to study singing; fled to North America in 1848 as a participant in the revolution."; + base:person\#deathdate "1908-02-20"^^xsd:date; + base:person\#deathdate_max "1908-02-20"^^xsd:date; + base:person\#family_name "Marchesi"; + base:person\#first_name "Salvatore"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/SalvatoreMarchesi.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3946123#/media/File:SalvatoreMarchesi.jpg"; + base:person\#profession "Opera singer, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/IT-Sici-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/StrAle-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117306207"; + base:person\#IDPerson "StrAle-00"; + base:person\#ISNI "https://isni.org/isni/0000000010447923"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Großes biographisches Lexikon der Deutschen Bühne im 19. Jahrhundert, Paul List, Leipzig 1903"; + base:person\#VIAF "https://viaf.org/viaf/64780579/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q19971478"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Alexander_Strakosch_%28Schauspieler%29"; + base:person\#birthdate "1845-12-03"^^xsd:date; + base:person\#birthdate_max "1845-12-03"^^xsd:date; + base:person\#comment """Part of the family Strakosch, the so called “sugar barons”, who helped to shape Viennese cultural life. +From 1880 he undertook his great recitation tours, which took him all over the world (Austria-Hungary, Germany, Russia, England, Holland, Italy, Turkey, 1887 and 1888 America)."""; + base:person\#deathdate "1909-09-16"^^xsd:date; + base:person\#deathdate_max "1909-09-16"^^xsd:date; + base:person\#family_name "Strakosch"; + base:person\#first_name "Alexander"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alexander_Strakosch_1909_Scolik.png"; + base:person\#image_source "https://de.wikipedia.org/wiki/Alexander_Strakosch_(Schauspieler)#/media/Datei:Alexander_Strakosch_1909_Scolik.png"; + base:person\#profession "Singer, Actor"; + base:person\#ref-IDBirthPlace base:location\/HU-Seb-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00; + base:person\#religion "Jewish, Christian" . + +base:location\/ES-Barc-00 a base:location; + base:location\#City base:City-Barcelona; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3128760"; + base:location\#IDLocation "ES-Barc-00"; + base:location\#latitude 4.13833e1; + base:location\#longitude 2.18333e0; + base:location\#wikidata "Q1492"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Barcelona" . + +base:person\/AbeIre-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116002506"; + base:person\#IDPerson "AbeIre-00"; + base:person\#ISNI "https://isni.org/isni/0000000035722792"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://worldcat.org/identities/lccn-n97053925/"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bt189x#resources"; + base:person\#Source """Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 3-4. +Wiener Staatsoper: Aufführungsarchiv, https://archiv.wiener-staatsoper.at/search/person/7243 +Fremdenblatt - Organ für die böhmischen Kurorte, 8th July 1888, p. 2: https://anno.onb.ac.at/cgi-content/anno?aid=fbl&datum=18880708&query=%22Abendroth+Karlsbad%22~25&ref=anno-search&seite=2 + +"""; + base:person\#VIAF "https://viaf.org/viaf/39572476"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q79002"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Irene_Abendroth"; + base:person\#birthdate "1872-07-14"^^xsd:date; + base:person\#birthdate_max "1872-07-14"^^xsd:date; + base:person\#deathdate "1932-09-01"^^xsd:date; + base:person\#deathdate_max "1932-09-01"^^xsd:date; + base:person\#family_name "Abendroth"; + base:person\#first_name "Irene"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/FS_PK267702alt.jpg"; + base:person\#image_source "https://www.theatermuseum.at/online-sammlung/detail/546808/"; + base:person\#profession "Opera singer"; + base:person\#ref-IDBirthPlace base:location\/UA-Lv-00; + base:person\#ref-IDDeathPlace base:location\/AT-Weid-00; + base:person\#religion "Christian" . + +base:person\/BroPhi-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1249761018"; + base:person\#IDPerson "BroPhi-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 614.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.  Leipzig: List 1903, p. 1169. The Manchester Guardian: “Prince's Theatre: The Carl Rosa Company in \"Carmen\"”, 23th septembre 1898, Manchester.The Manchester Guardian: „Classified Ad 29 -- No Title“, 3rd Octobre 1896, Manchester.The Observer: “The Musical World”, 2nd April 1899, London.The Observer: “The Musical World: Carl Rosa Opera Queen's Hall Promenade Concerts”, 24th January, 1897, London."; + base:person\#VIAF "https://viaf.org/viaf/6948164298344708630006/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18026910"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Philipp_Brozel"; + base:person\#deathdate "1927-12-23"^^xsd:date; + base:person\#deathdate_max "1927-12-23"^^xsd:date; + base:person\#family_name "Brozel"; + base:person\#first_name "Philipp"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1257.jpg"; + base:person\#image_source "http://operascotland.org/person/3067/Philip+Brozel"; + base:person\#profession "Opera singer,Tenor, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/RU-StPet-00; + base:person\#ref-IDDeathPlace base:location\/UK-Twick-00 . + +base:person\/DelFra-00 a base:person; + base:person\#IDPerson "DelFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Colecciones Teatrales: El desaparecido Teatro Buenos Aires, online, https://coleccionesteatrales.blogspot.com/2016/01/el-teatro-buenos-aires-muino-y-alippi.html + +Fundación Internacional Carlos Gardel: 1923 El viejo mundo, online, https://fundacioncarlosgardel.org/biografia/1923-el-viejo-mundo + +Dossier Carlos Gardel: Gardel en su debut en España, online, https://dossiercarlosgardel.blogspot.com/2010/11/gardel-en-su-debut-en-espana.html"""; + base:person\#deathdate "1941-11-01"^^xsd:date; + base:person\#deathdate_max "1941-11-01"^^xsd:date; + base:person\#family_name "Delgado"; + base:person\#first_name "Francisco"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/HelAnn-00 a base:person; + base:person\#Birth_Info "other sources: 1865, 1872"; + base:person\#GND "https://d-nb.info/gnd/122427882"; + base:person\#IDPerson "HelAnn-00"; + base:person\#ISNI "https://isni.org/isni/0000000020570853"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79081752"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6r90qr9"; + base:person\#VIAF "https://viaf.org/viaf/305409554/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q454030"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Anna_Held"; + base:person\#birthdate "1873-03-18"^^xsd:date; + base:person\#birthdate_max "1873-03-18"^^xsd:date; + base:person\#comment "Birth date unclear: March 8, 18 or 19, 1872, (sources range from 1865-1873)"; + base:person\#deathdate "1918-08-12"^^xsd:date; + base:person\#deathdate_max "1918-08-12"^^xsd:date; + base:person\#family_name "Held"; + base:person\#first_name "Anna"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-Anna_Held_JWS19265.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q454030#/media/File:Anna_Held_JWS19265.jpg"; + base:person\#profession "Singer, Actress, Performer, Stage Actor, Film Actor"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish, Christian" . + +base:State-California a base:State; + rdfs:label "California"@en . + +base:organisation\/2270 a base:organisation; + base:organisation\#IDOrganisation 2270; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Bijou Opera House" . + +base:organisation\/331 a base:organisation; + base:organisation\#IDOrganisation 331; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Windsor Theatre"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:person\/BaoMig-00 a base:person; + base:person\#IDPerson "BaoMig-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + base:person\#VIAF "https://viaf.org/en/viaf/2385267"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6014454"; + base:person\#birthdate "1894-10-27"^^xsd:date; + base:person\#deathdate "1961-09-17"^^xsd:date; + base:person\#family_name "Gómez Bao"; + base:person\#first_name "Miguel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Miguel_Gómez_Bao.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q6014454"; + base:person\#ref-IDBirthPlace base:location\/ES-Malaga-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/BraHer-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1156299659"; + base:person\#IDPerson "BraHer-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n84130388"; + base:person\#Source """ + + + + + + + +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 555-556.Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert.,List: Leipzig 1903, pp. 117-118. + +"""; + base:person\#VIAF "https://viaf.org/viaf/21085302"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5584425"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Hermann_Brag"; + base:person\#birthdate "1860-04-01"^^xsd:date; + base:person\#birthdate_max "1860-04-01"^^xsd:date; + base:person\#comment "He was most famous for the embodiment of the buffo roles"; + base:person\#deathdate "1936-01-03"^^xsd:date; + base:person\#deathdate_max "1936-01-03"^^xsd:date; + base:person\#family_name "Brag"; + base:person\#first_name "Hermann"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Herman_Brag.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Herman_Brag.jpg"; + base:person\#profession "Opera Singer"; + base:person\#ref-IDBirthPlace base:location\/SE-Kalm-00; + base:person\#ref-IDDeathPlace base:location\/SE-Stock-00 . + +base:person\/VilRos-00 a base:person; + base:person\#IDPerson "VilRos-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Fernandes, Carolina; Bulgarelli, Lais; Furtado, Mariana; Palermo, Suzana. Conheça Rose Villiot francesa eleita a primeira atriz de opereta do Rio de Janeiro. Ed.1, Unicamp, 2015 :https://viewer.joomag.com/rose-villiot-rose-villiot/0235382001448545438?page=3 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 (Newspapers of Hemeroteca Nacional Website):Jornal do Commercio (RJ). 24th December 1871. Ed. 00355, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22rose%20villiot%22&hf=memoria.bn.br&pagfis=3883 "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q56727166"; + base:person\#birthdate "1850-01-01"^^xsd:date; + base:person\#birthdate_max "1850-12-31"^^xsd:date; + base:person\#deathdate "1908-08-07"^^xsd:date; + base:person\#deathdate_max "1908-08-07"^^xsd:date; + base:person\#family_name "Villiot"; + base:person\#first_name "Rose"; + base:person\#fuzzybirthdate "1850"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/8049R_-_Rose_Villiot(Actris)_-_01,_Acervo_do_Museu_Paulista_da_USP.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q56727166"; + base:person\#profession "Actress, Singer"; + base:person\#ref-IDBirthPlace base:location\/FR-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:person\/WeiSim-3237 a base:person; + base:person\#IDPerson "WeiSim-3237"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weintraub-simcha.htm + +Center for Jewish History: https://archives.cjh.org/agents/people/120505 + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.687."""; + base:person\#birthdate "1890-02-04"^^xsd:date; + base:person\#birthdate_max "1890-02-04"^^xsd:date; + base:person\#family_name "Weintraub"; + base:person\#first_name "Simcha"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Simcha Weintraub.png"; + base:person\#image_source "https://archives.cjh.org/repositories/7/archival_objects/1270734"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:location\/CZ-Brno-00 a base:location; + base:location\#City base:City-Brno; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3078610"; + base:location\#IDLocation "CZ-Brno-00"; + base:location\#latitude 4.91925e1; + base:location\#longitude 1.66083e1; + base:location\#wikidata "Q14960"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brno" . + +base:location\/HU-Buda-00 a base:location; + base:location\#City base:City-Budapest; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Hungary; + base:location\#GeoNamesID "3054643"; + base:location\#IDLocation "HU-Buda-00"; + base:location\#latitude 4.74925e1; + base:location\#longitude 1.90514e1; + base:location\#wikidata "Q1781"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Budapest" . + +base:location\/USA-Brook-00 a base:location; + base:location\#City base:City-Brooklyn; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5110302"; + base:location\#IDLocation "USA-Brook-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.06444e1; + base:location\#longitude -7.39483e1; + base:location\#wikidata "Q18419"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brooklyn" . + +base:organisation\/1001 a base:organisation; + base:organisation\#IDOrganisation 1001; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "K.k. priv. Theater an der Wien" . + +base:person\/CanAug-00 a base:person; + base:person\#IDPerson "CanAug-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "STARK, Andrea Carvalho. Augusta Candiani no Rio Grande do Sul: a trajetória artística de uma cantora lírica e atriz durante a guerra do Paraguai. In.: Revista do Instituto Histórico e Geográfico do Rio Grande do Sul. n. 161, 2021: https://seer.ufrgs.br/revistaihgrgs/article/view/111527 (Newspapers of Hemeroteca Nacional Website):Jornal do Commercio. 10th February 1844. Ed. 00039, Rio de Janeiro, p.2: http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_03&pesq=augusta%20candiani&hf=memoria.bn.br&pagfis=5928 Jornal do Commercio. 18th October 1850. Ed. 00286, Rio de Janeiro, p.4: http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_04&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=1306 Jornal do Commercio. 12th August 1875. Ed. 00223, Rio de Janeiro, p.8:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22augusta%20candiani%22&hf=memoria.bn.br&pagfis=11657 O Album Semanal : Chronologico, Litterario, Critico e de Modas. 8th Februar 1852. Ed. 00025, N. 14, Rio de Janeiro, p.1:http://memoria.bn.br/DocReader/DocReader.aspx?bib=701092&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=111 O Album Semanal : Chronologico, Litterario, Critico e de Modas. 2nd May 1852. Ed. 00025, N. 25, Rio de Janeiro, p.1: http://memoria.bn.br/DocReader/DocReader.aspx?bib=701092&pesq=%22augusta%20candiani%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=200 Gazeta de Noticias. 27th Februar 1890. Ed. 00058, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_03&pesq=%22augusta%20candiani%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=270 Gazeta de Noticias. 26th March 1890. Ed. 00085, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_03&pesq=%22augusta%20candiani%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=423"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q9637428"; + base:person\#Wikipedia "https://pt.wikipedia.org/wiki/Augusta_Candiani"; + base:person\#birthdate "1820-04-03"^^xsd:date; + base:person\#birthdate_max "1820-04-03"^^xsd:date; + base:person\#deathdate "1890-02-28"^^xsd:date; + base:person\#deathdate_max "1890-02-28"^^xsd:date; + base:person\#family_name "Candiani"; + base:person\#first_name "Augusta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Retrato-de-Augusta-Candiani.jpeg"; + base:person\#image_source "https://bndigital.bn.gov.br/exposicoes/machado-de-assis-100-anos-de-uma-cartografia-inacabada/a-vida-e-uma-opera-e-uma-grande-opera/"; + base:person\#profession "Actress, Lyric Singer, Singer teacher"; + base:person\#ref-IDBirthPlace base:location\/IT-Mila-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:person\/HouHar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119243830"; + base:person\#IDPerson "HouHar-00"; + base:person\#ISNI "https://isni.org/isni/0000000108862279"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n79096862"; + base:person\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:person\#SNAC "http://n2t.net/ark:/99166/w60c4t2z"; + base:person\#Source """Passenger Search of The Statue of Liberty - Ellis Island Foundation, Weiss, Erich, login required, https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMjIzNTc3NDM3NyI7/czo5OiJwYXNzZW5nZXIiOw==. +Passenger Search of The Statue of Liberty - Ellis Island Foundation, Houdini, Harry, login required, https://heritage.statueofliberty.org/passenger-result. +Britannica.com, Harry Houdini | Biography & Facts | Britannica, https://www.britannica.com/biography/Harry-Houdini. """; + base:person\#VIAF "http://viaf.org/viaf/34465218"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q131545#sitelinks-wikipedia"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Harry_Houdini"; + base:person\#birthdate "1874-03-24"^^xsd:date; + base:person\#birthdate_max "1874-03-24"^^xsd:date; + base:person\#deathdate "1926-10-31"^^xsd:date; + base:person\#deathdate_max "1926-10-31"^^xsd:date; + base:person\#family_name "Houdini"; + base:person\#first_name "Harry"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harry_Houdini.png"; + base:person\#image_source "https://en.wikipedia.org/wiki/Harry_Houdini#/media/File:Harry_Houdini.png"; + base:person\#profession "Magician,Circus Performer"; + base:person\#ref-IDBirthPlace base:location\/HU-Buda-00; + base:person\#ref-IDDeathPlace base:location\/USA-Detroit-00; + base:person\#religion "jewish" . + +base:person\/KreEli-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250088534"; + base:person\#IDPerson "KreEli-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ludwig Eisenberg: Elise Stephanie Kreuzer. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Paul List, Leipzig 1903"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q60997963"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Elise_Stephanie_Kreuzer"; + base:person\#birthdate "1845-09-08"^^xsd:date; + base:person\#birthdate_max "1845-09-08"^^xsd:date; + base:person\#comment "died in Huntlosen bei Oldenburg"; + base:person\#deathdate "1936-09-03"^^xsd:date; + base:person\#deathdate_max "1936-09-03"^^xsd:date; + base:person\#family_name "Kreuzer"; + base:person\#first_name "Elise Stephanie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/g.jpeg"; + base:person\#image_source "https://geneee.org/elise/kreuzer?lang=de"; + base:person\#profession "Opera Singer ,Soprano"; + base:person\#ref-IDBirthPlace base:location\/GER-Mnhm-00; + base:person\#religion "Jewish, Christian" . + +base:person\/MeyMor-00 a base:person; + base:person\#IDPerson "MeyMor-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Other; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6913810"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Morris_Meyerfeld_Jr."; + base:person\#birthdate "1855-11-17"^^xsd:date; + base:person\#birthdate_max "1855-11-17"^^xsd:date; + base:person\#deathdate "1935-06-20"^^xsd:date; + base:person\#deathdate_max "1935-06-20"^^xsd:date; + base:person\#family_name "Meyerfeld"; + base:person\#first_name "Morris"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Morris_Meyerfeld.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/File:Morris_Meyerfeld.jpg"; + base:person\#profession "Founder, Manager"; + base:person\#ref-IDBirthPlace base:location\/GR-Bever-00; + base:person\#ref-IDDeathPlace base:location\/USA-SanFranc-02 . + +base:person\/RusAnn-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250127602"; + base:person\#IDPerson "RusAnn-00"; + base:person\#ISNI "https://isni.org/isni/0000000080781302"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2004031548"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w65b0t16"; + base:person\#Source """Digital collections: \"Images related to Annie Russell\", https://digitalcollections.nypl.org/search/index?keywords=Annie+Russell#. +Ancestry. com, “Einwanderung und Reisen: Alle Suchergebnisse für Annie Russel“, https://www.ancestry.de/search/categories/40/?name=Annie_Russel&birth=1864_england-grossbritannien_3251&birth_x=0-0-0&gender=f. """; + base:person\#VIAF "https://viaf.org/viaf/41547682"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4769421"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Annie_Russell"; + base:person\#birthdate "1864-01-12"^^xsd:date; + base:person\#birthdate_max "1864-01-12"^^xsd:date; + base:person\#comment "buried in St. Stephen's Cemetery in Millburn, New Jersey"; + base:person\#deathdate "1936-01-16"^^xsd:date; + base:person\#deathdate_max "1936-01-16"^^xsd:date; + base:person\#family_name "Russell"; + base:person\#first_name "Annie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/800px-Annie_Russell_001.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Annie_Russell#/media/File:Annie_Russell_001.jpg"; + base:person\#profession "Actress,Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/UK-Liv-00; + base:person\#ref-IDDeathPlace base:location\/USA-Flor-00 . + +base:person\/TagMar-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01385712"; + base:person\#GND "https://d-nb.info/gnd/117197408"; + base:person\#IDPerson "TagMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000081016477"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50047856"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6dr2xv8"; + base:person\#Source "Biographisches Lexikon des Kaiserthums Oesterreich."; + base:person\#VIAF "https://viaf.org/viaf/22408351"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q203990"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marie_Taglioni"; + base:person\#birthdate "1804-04-23"^^xsd:date; + base:person\#birthdate_max "1804-04-23"^^xsd:date; + base:person\#deathdate "1884-04-22"^^xsd:date; + base:person\#deathdate_max "1884-04-22"^^xsd:date; + base:person\#family_name "Taglioni"; + base:person\#first_name "Marie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Maria_Taglioni_Kriehuber.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q203990#/media/File:Maria_Taglioni_Kriehuber.jpg"; + base:person\#profession "Dancer"; + base:person\#ref-IDDeathPlace base:location\/FR-Mars-00 . + +base:person\/ThoFra-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00651802"; + base:person\#GND "https://d-nb.info/gnd/117350370"; + base:person\#IDPerson "ThoFra-00"; + base:person\#ISNI "https://isni.org/isni/0000000448864684"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Biographisches Lexikon des Kaiserthums Oesterreich"; + base:person\#VIAF "https://viaf.org/viaf/25377562"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18411760"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Franz_Thom%C3%A9"; + base:person\#birthdate "1807-11-21"^^xsd:date; + base:person\#birthdate_max "1807-11-21"^^xsd:date; + base:person\#deathdate "1872-05-22"^^xsd:date; + base:person\#deathdate_max "1872-05-22"^^xsd:date; + base:person\#family_name "Thomé"; + base:person\#first_name "Franz"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Thome_Franz.gif"; + base:person\#image_source "https://de.wikipedia.org/wiki/Franz_Thom%C3%A9"; + base:person\#profession "Theatre Director, Actor"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/AT-Graz-00 . + +base:InstitutionType-Kleinkunst a base:InstitutionType; + rdfs:label "Kleinkunst"@en . + +base:State-NewYork a base:State; + rdfs:label "New York"@en . + +base:location\/ROU-Buch-00 a base:location; + base:location\#City base:City-Bucharest; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "683506"; + base:location\#IDLocation "ROU-Buch-00"; + base:location\#latitude 4.44325e1; + base:location\#longitude 2.61039e1; + base:location\#wikidata "Q19660"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Bucharest" . + +base:organisation\/747 a base:organisation; + base:organisation\#IDOrganisation 747; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Teatro Politeama Argentino " . + +base:person\/AdlSam-740 a base:person; + base:person\#IDPerson "AdlSam-740"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-sam.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.3."""; + base:person\#birthdate "1868-01-01"^^xsd:date; + base:person\#birthdate_max "1868-12-31"^^xsd:date; + base:person\#comment "Buried in Vienna"; + base:person\#deathdate_max "1925-11-26"^^xsd:date; + base:person\#family_name "Adler"; + base:person\#first_name "Sam"; + base:person\#fuzzybirthdate "1868"; + base:person\#fuzzydeathdate "26.11.1925"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Sam Adler.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/lex-adler-sam.jpg"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-80; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00; + base:person\#religion "Jewish" . + +base:person\/CamJua-00 a base:person; + base:person\#IDPerson "CamJua-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchArg=Juan+Comorera&searc"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Enric Juliana, “Opinión” in: La Vanguardia. Catalonia, 21 January 2021 [online edition], https://conversacionsobrehistoria.info/2021/01/21/la-maldicion-de-joan-comorera/Real Academia de la Historia: Juan Comorera Soler, online, https://dbe.rah.es/biografias/4760/joan-comorera-solerWikipedia: Joan Comorera, online, https://en.wikipedia.org/wiki/Joan_ComoreraDossier Carlos Gardel: Gardel en su debut en España, online, https://dossiercarlosgardel.blogspot.com/2010/11/gardel-en-su-debut-en-espana.html + +"""; + base:person\#VIAF "https://viaf.org/viaf/54987269/#Comorera,_Joan,_1895 "; + base:person\#Wikipedia "https://wikidata.org/wiki/Q2500336"; + base:person\#birthdate "1894-09-05"^^xsd:date; + base:person\#deathdate "1960-05-07"^^xsd:date; + base:person\#family_name "Camorera"; + base:person\#first_name "Juan"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Juan Comorera.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Joan_Comorera "; + base:person\#ref-IDBirthPlace base:location\/ES-Catal-00; + base:person\#ref-IDDeathPlace base:location\/ES-Burg-00; + base:person\#religion "Atheist" . + +base:person\/GuaAlf-00 a base:person; + base:person\#IDPerson "GuaAlf-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchCode=LCCN&searchArg=200"; + base:person\#Source """Laura Mogliani (comp.): Entre la tradición y lamodernidad. Historia del Instituto Nacional de Estudios de Teatro (1936-2022),Buenos Aires: Ministry of Culture of Argentina 2023. + +Federico Peltzer: Homenaje a Alfredo de la Guardia ensu centenario. Online,https://www.letras.edu.ar/wwwisis/index/arti/Boletin1999-253-254_433-440.pdf pp. 433-440. + +Consello da Cultura Galega, Fondos Documentais, Online,https://consellodacultura.gal/fondos_documentais/epistolarios/persoas.php?p=1844 + +Instituto Nacional de Estudios de Teatro (INET): Revistade Estudios de Teatro, Online, https://inet.cultura.gob.ar/noticia/revista-de-estudios-de-teatro/Tito + +Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."""; + base:person\#VIAF "https://viaf.org/processed/ARBABN%7C000052681"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q17037808"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Alfredo_de_la_Guardia"; + base:person\#birthdate "1899-12-08"^^xsd:date; + base:person\#birthdate_max "1899-12-08"^^xsd:date; + base:person\#deathdate "1974-02-06"^^xsd:date; + base:person\#deathdate_max "1974-02-06"^^xsd:date; + base:person\#family_name "de la Guardia"; + base:person\#first_name "Alfredo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alfredo_de_la_Guardia.jpg"; + base:person\#image_source """Laura Mogliani (comp.): Entre la tradición y la modernidad. Historia del Instituto Nacional de +Estudios de Teatro (1936-2022), Buenos Aires: Ministry of Culture of Argentina +2023.

"""; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/HemFri-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118710281"; + base:person\#IDPerson "HemFri-00"; + base:person\#ISNI "https://isni.org/isni/0000000117478113"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82139118"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w62v2krq"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2029-2030.Boston Daily Globe: ”Her First Boston Appearance.: Frieda Hempel, Coloratura Soprano, Here to Sing Rosina in Tonight's Opera.”, 20th January 1913, Boston.Chicago Daily Tribune: “Chicago to Share Galli-Curci with Metropolitan: Frieda Hempel Engaged for Next Season Here.”, 9th February 1921, Chicago.Chicago Daily Tribune: “American Now: Manager Puts German Born Opera Singer Under Protection of Stars and Stripes.”, 9th June 1918, Chicago.Chicago Daily Tribune:”Miss Hempel Is Star of \"Lucia\" Revival.”, 8th January 1914, Chicago.Chicago Daily Tribune: “News of Musical Events: Miss Frieda Hempel Has Triumph in \"Traviata.\"”, 6th January 1914, Chicago.The Los Angelos Times: She Looks Her Roles, Too.: Coloratura Star of Chicago Opera.”, 31st march 1921, Los Angelos.The New York Times: “Frieda Hempel Wed; is American Citizen: Metropolitan Opera Star, Born in Germany, Marries Wm. B. Kahn in St. James's Lutheran Church”., 9th June 1918, New York.The New York Times: “Frieda Hempel Robbed.: Gems Were Stolen on Train, Now Apartment Is Ransacked”,29th April 1918, New York. The New York Times: “Opera Stars Regret Break: \"Sorry, Because I Love America,\" Says Frieda Hempel;-All Mozart Day.”, 4th February 1917, New York.The New York Times: “Frieda Hempel Sings Eva.: Wins Great Success in \"Die Meistersinger\" -- Mme. Homer, Magdalene”., 28th march 1914, New York.The New York Times: “Les Huguenots' at Metropolitan: First Appearance in America of Miss Frieda Hempel, Coloratura Soprano. Handsome Scenic Outfit A Cast in Which Excellent Singers Were Not Heard to Their Best Advantage”., 28th Decembre 1912, New York.The New York Times: “Mme. Frieda Hempel ill.: Coloratura Soprano May Not Appear at the Metropolitan”,.30th October 1912, New York.The New York Times: “ Opera Novelities For Metropolitan: \" Boris Gudounow,\" a Russian Work, by Moussorgsky, and \"Cyrano de Bergerac.\" Then \"Madame Sans-Gene\" Season to Open with \"The Magic Flute,\" with Frieda Hempel, Coloratura Soprano -- Other New Singers.”, 7th August 1912, New York.The New York Times: “Frieda Hempel Coming: Engaged for Metropolitan at Salary Said to be $60,000 a Season.”, 24th December 1911, New York.The Washington Post: “Frieda Hempel is Bride.: Becomes American Citizen and Will Continue to Sing in Opera.”, 9th June 1918, Washington.The Washington Post: “Kreisler Barred from Youngstown: Engagement of Frieda Hempel Also Is Canceled.”, 11th novembre 1917, Washington.The Washington Post: “DIVA LE"; + base:person\#VIAF "https://viaf.org/viaf/17437634"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q86727"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Frieda_Hempel"; + base:person\#birthdate "1884-06-26"^^xsd:date; + base:person\#birthdate_max "1884-06-26"^^xsd:date; + base:person\#comment "She devoted herself entirely to concert singing and became famous in particular for her 'Jenny Lind concerts' (the first of which she gave in October 1920 to mark the centenary of the great singer's birth), in which she performed in the centers of American musical life in costume and with the repertoire of the unforgettable Swedish singer."; + base:person\#deathdate "1955-10-07"^^xsd:date; + base:person\#deathdate_max "1955-10-07"^^xsd:date; + base:person\#family_name "Hempel"; + base:person\#first_name "Frieda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Frieda_Hempel.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q86727#/media/File:Frieda_Hempel.jpg"; + base:person\#profession "Singer, Singing Teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-Leip-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:location\/ROU-Jassy-00 a base:location; + base:location\#City base:City-Ia\%C8\%99i; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "675810"; + base:location\#IDLocation "ROU-Jassy-00"; + base:location\#latitude 4.71569e1; + base:location\#longitude 2.75903e1; + base:location\#wikidata "Q46852"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Ia%C8%99i" . + +base:location\/USA-NewOrl-00 a base:location; + base:location\#City base:City-NewOrleans; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4335045"; + base:location\#IDLocation "USA-NewOrl-00"; + base:location\#State base:State-Louisiana; + base:location\#latitude 2.99547e1; + base:location\#longitude -9.0075e1; + base:location\#wikidata "Q34404"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_Orleans" . + +base:location\/USA-StLouis-00 a base:location; + base:location\#City base:City-St\.Louis; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4407066"; + base:location\#IDLocation "USA-StLouis-00"; + base:location\#State base:State-Missouri; + base:location\#latitude 3.86272e1; + base:location\#longitude -9.01978e1; + base:location\#wikidata "Q38022"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/St._Louis" . + +base:person\/BarMar-00 a base:person; + base:person\#GND "https://www.deutsche-biographie.de/132307545.html"; + base:person\#IDPerson "BarMar-00"; + base:person\#ISNI "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000083855549%COKIE=U50"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://www.loc.gov/item/2014700794/"; + base:person\#SNAC "https://snaccooperative.org/view/9163171#biography"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Virginia Sánchez Rodríguez. “María Barrientos, la diva olvidada” in The Conversation: May 6th 2019. [Online-edition]: https://theconversation.com/maria-barrientos-la-diva-olvidada-115272 + +Real Academia de la Historia. María Barrientos. Online: https://dbe.rah.es/biografias/8054/maria-barrientos + +Biografías y vidas. María Barrientos. Online: https://www.biografiasyvidas.com/biografia/b/barrientos_maria.htm + +Ecured. María Barrientos. Online: https://www.ecured.cu/Mar%C3%ADa_Barrientos + +Wikipedia. María Barrientos. Online, https://es.wikipedia.org/wiki/Mar%C3%ADa_Barrientos"""; + base:person\#VIAF "https://viaf.org/viaf/57770137/#Barrientos,_Mar%C3%ADa,_1884-1946"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4888169"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Maria_Barrientos"; + base:person\#birthdate "1884-05-10"^^xsd:date; + base:person\#birthdate_max "1884-05-10"^^xsd:date; + base:person\#deathdate "1946-08-08"^^xsd:date; + base:person\#deathdate_max "1946-08-08"^^xsd:date; + base:person\#family_name "Barrientos"; + base:person\#first_name "María"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Barrientos, María.jfif"; + base:person\#image_source "https://es.wikipedia.org/wiki/Mar%C3%ADa_Barrientos"; + base:person\#ref-IDBirthPlace base:location\/ES-Barc-00; + base:person\#ref-IDDeathPlace base:location\/FR-Cibo-00 . + +base:person\/ConHei-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/116655577"; + base:person\#IDPerson "ConHei-00"; + base:person\#ISNI "https://isni.org/isni/0000000048794912"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr2003031428"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bk1q6j"; + base:person\#Source """Karl Richter: +Conried, Heinrich. In: Neue Deutsche Biographie (NDB). Band 3, Duncker & +Humblot, Berlin 1957, ISBN 3-428-00184-2, S. 341 f. (https://daten.digitale-sammlungen.de/0001/bsb00016319/images/index.html?seite=357). + +Cohn Heinrich. +In: Österreichisches Biographisches Lexikon 1815–1950 (ÖBL). Band 1, Verlag der Österreichischen +Akademie der Wissenschaften, Wien 1957, S. 150. https://www.biographien.ac.at/oebl_1/150.pdf + +Grange William: +The Astonishing Career of Heinrich Conried. In: Paul S. Ulrich, Gunilla +Dahlberg, Horst Fassel (Hrsg.), Im Spiegel der Theatergeschichte : +deutschsprachiges Theater im Wechsel von Raum und Zeit, Thalia Germanica Band +15. Berlin / Münster: Lit 2015. S. 225–"""; + base:person\#VIAF "https://viaf.org/viaf/32753970/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q85491"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Heinrich_Conried"; + base:person\#birthdate "1855-09-03"^^xsd:date; + base:person\#birthdate_max "1855-09-03"^^xsd:date; + base:person\#deathdate "1909-04-27"^^xsd:date; + base:person\#deathdate_max "1909-04-27"^^xsd:date; + base:person\#family_name "Conried"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Heinrich_Conried.jpg"; + base:person\#image_source "Unknown photographer, Newspaper \"Der Tag“, 29 May 1902, p. 7."; + base:person\#ref-IDBirthPlace base:location\/PL-Biala-00; + base:person\#ref-IDDeathPlace base:location\/IT-Meran-00; + base:person\#religion "Jewish" . + +base:person\/DarFau-00 a base:person; + base:person\#IDPerson "DarFau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio +Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. +Ediciones del Carro de Tespis 1961. + +Óperas Colón: +Da Rosa, Faustino. Online, https://http://www.operas-colon.com.ar/new/items/show/652 + +Gabriela Neme: \"Tucumán +está destinada a ser como Niza, joya del Mediterráneo\": la fascinante +historia del Teatro San Martín. Online, https://www.eltucumano.com/noticia/libre/295169/tucuman-esta-destinada-a-ser-como-niza-joya-del-mediterraneo-la-fascinante-historia-del-teatro-san-martin + +18. Faustino Da +Rosa. Online, https://margaritaxirgu.es/castellano/vivencia/18darosa/darosa.htm"""; + base:person\#birthdate "1861-01-01"^^xsd:date; + base:person\#birthdate_max "1861-12-31"^^xsd:date; + base:person\#deathdate "1936-05-16"^^xsd:date; + base:person\#deathdate_max "1936-05-16"^^xsd:date; + base:person\#family_name "Da Rosa"; + base:person\#first_name "Faustino"; + base:person\#fuzzybirthdate "1861"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Faustino da Rosa.jpg"; + base:person\#image_source "https://margaritaxirgu.es/castellano/vivencia/18darosa/darosa.htm

"; + base:person\#ref-IDBirthPlace base:location\/PT-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/RafPab-00 a base:person; + base:person\#Death_Info "other sources: 6 May 1914"; + base:person\#IDPerson "RafPab-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Migration-Related; + base:person\#Source """Raúl H. Castagnino, “Pablo Raffetto, el Bárnum Genovés” in Castagnino: El circo criollo. Buenos Aires: Ed. Plus Ultra 1969. pp. 48-65. + +Beatriz Seibel, “La escena de la Organización Nacional: compañías europeas” in: Historia del Teatro Argentino. Desde los rituales hasta 1930, Buenos Aires: Corregidor 2002. pp. 132-262. + +Fray Mocho. “El famoso Raffetto”. 23th January 1914. N°91. Buenos Aires.  José J. Podestá. Medio siglo de farándula. Memorias de José J. Podestá. Buenos Aires: Subsecretaría de Cultura, 1986. pp. 21-54 + +Arnaldo J. Cunietti-Ferrando, “El famoso Raffetto”. IV. N°18. Historias de la ciudad. Buenos Aires: 2002 https://buenosaireshistoria.org/juntas/el-famoso-raffetto/"""; + base:person\#birthdate "1842-04-23"^^xsd:date; + base:person\#birthdate_max "1842-04-23"^^xsd:date; + base:person\#comment "Namechange 1869-12-19 till 1913-04-06, buried in Buenos Aires, Argentina"; + base:person\#deathdate "1913-05-06"^^xsd:date; + base:person\#deathdate_max "1913-05-06"^^xsd:date; + base:person\#family_name "Raffetto"; + base:person\#first_name "Pablo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/RaffettoPablo.jpg"; + base:person\#image_source "

http://historiaycuriosidadesdelilusionismo.blogspot.com/2009/11/una-de-circo-el-40-onzas-y-los-magos.html

"; + base:person\#profession "Circus Performer, Director, Impresario, Founder"; + base:person\#ref-IDBirthPlace base:location\/IT-Genoa-00; + base:person\#ref-IDDeathPlace base:location\/ARG-Cord-00 . + +base:location\/Europe a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Europe; + base:location\#GeoNamesID "6255148"; + base:location\#IDLocation "Europe"; + base:location\#latitude 5.4526e1; + base:location\#longitude 1.52551e1; + base:location\#wikidata "Q46"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Europe" . + +base:location\/SE-Stock-00 a base:location; + base:location\#City base:City-Stockholm; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Sweden; + base:location\#GeoNamesID "2673730"; + base:location\#IDLocation "SE-Stock-00"; + base:location\#latitude 5.93294e1; + base:location\#longitude 1.80686e1; + base:location\#wikidata "Q1754"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Stockholm" . + +base:person\/BecMar-00 a base:person; + base:person\#Birth_Info "other sources: 30 July 1868"; + base:person\#GND "https://d-nb.info/gnd/1249759331"; + base:person\#IDPerson "BecMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000038516230"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n99284548"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6x197g4#resources"; + base:person\#Source "Billboard (ed.): 1919-01-25: Vol 31 Iss 4, https://archive.org/details/sim_billboard_1919-01-25_31_4/page/8/mode/2up?q=Martin+Beck+dies.St. Louis Post-Dispatch (ed.): 1940-11-16: Vol 93 Iss 72, https://archive.org/details/per_st-louis-post-dispatch_1940-11-16_93_72/page/n3/mode/2up?q=Martin+Beck+dies.Los Angeles Times  1940-11-17: Vol 59, https://archive.org/details/sim_los-angeles-times_los-angeles-times_1940-11-17_59/page/n7/mode/2up?q=Martin+Beck%2C+Producer+1884. The New York Times (ed.): \"Martin Beck Dies. Theatre Veteran. Manager, Producer and Actor, Builder of the Palace, Stricken Here at 71. Began Orpheum Circuit. Headed Variety Group in West for 27 Years. Came to U.S. as Immigrant at 18\". November 17, 1940, https://www.nytimes.com/1940/11/17/archives/martin-beck-dies-theatre-veteran-manager-producer-and-actor-builder.html.Britannica (ed.): “Martin Beck, American theatre manager, owner, and impresario”, https://www.britannica.com/biography/Martin-Beck.American Experience (ed.): \"Martin Beck (1867-1940)\", https://www.pbs.org/wgbh/americanexperience/features/houdini-beck/. "; + base:person\#VIAF "https://viaf.org/viaf/46099984"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6774972"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Martin_Beck_(vaudeville)"; + base:person\#birthdate "1868-07-31"^^xsd:date; + base:person\#birthdate_max "1868-07-31"^^xsd:date; + base:person\#comment "https://en.wikipedia.org/wiki/Martin_Beck_(vaudeville), buried in Salem Fields Cemetery, Brooklyn, New York"; + base:person\#deathdate "1940-11-16"^^xsd:date; + base:person\#deathdate_max "1940-11-16"^^xsd:date; + base:person\#family_name "Beck"; + base:person\#first_name "Martin"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Beck_Martin.jpg"; + base:person\#image_source "https://www.britannica.com/biography/Martin-Beck"; + base:person\#profession "Founder, Manager, Agent, Actor"; + base:person\#ref-IDBirthPlace base:location\/SK-Lipt-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/DreLou-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11927395"; + base:person\#IDPerson "DreLou-00"; + base:person\#ISNI "https://isni.org/isni/0000000063962152"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no98097391"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w69w0mv7#resources"; + base:person\#Source """Drew, Louisa (Lane). Autobiographycal sketch of Mrs. John Drew, New York: Charles Scribner‘s Sons, 1899, https://archive.org/details/autobiographica00taylgoog/page/n8/mode/2up +# +Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994. """; + base:person\#VIAF "https://viaf.org/viaf/11927395/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3837642"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Louisa_Lane_Drew"; + base:person\#birthdate "1820-01-10"^^xsd:date; + base:person\#birthdate_max "1820-01-10"^^xsd:date; + base:person\#comment """born Lambeth Parish, London died in Larchmont Manor, +New York; burial: Mount Vernon Cemetery, Philadelphia, Pennsylvania"""; + base:person\#deathdate "1897-08-31"^^xsd:date; + base:person\#deathdate_max "1897-08-31"^^xsd:date; + base:person\#family_name "Drew"; + base:person\#first_name "Louisa Lane"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Louisa_Lane.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q3837642#/media/File:Louisa_Lane.jpg"; + base:person\#profession "Actress, Theater maneger, Businesswoman"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/LyoPau-00 a base:person; + base:person\#IDPerson "LyoPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source "Callipo, Daniela Mantarro. As Grandes Estrelas do Alcazar Lyrique do Rio De Janeiro: A Edificação De Um Mito. In.: Historiæ, Rio Grande, v. 8, n. 2, p. 31-46, 2017: https://periodicos.furg.br/hist/article/download/7908/5162/22630 Callipo, Daniela Mantarro. O Teatro Musicado Francês no Rio De Janeiro Oitocentista: sucesso, ruína, aplausos e críticas. In.: Miscelânea, Assis, v. 31, p. 49-64, 2022: https://seer.assis.unesp.br/index.php/miscelanea/article/view/2211 SALGADO, Suzana. The Teatro Solis: 150 years of Opera, Concert and Ballet in Montevideo. USA: Wesleyan University Press, 2003. (Newspapers of Hemeroteca Nacional Website):Correio Mercantil, e Instructivo, Politico, Universal. 30th December 1859. Ed. 00356, Rio de Janeiro, p.4: https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&pesq=%22pauline%20lyon%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=17060 Courrier Du Brésil : Politique, Litterature, Revue des Theatres, Sciences et Arts, Industrie, Commerce. 4th September 1859. Ed. 00036, Rio de Janeiro, p.8: https://memoria.bn.br/DocReader/DocReader.aspx?bib=709719&pesq=%22pauline%20lyon%22&pasta=ano%20185&hf=memoria.bn.br&pagfis=1418 Jornal do Commercio. 9th June 1897. Ed.00159, Rio de Janeiro, p.1: https://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_08&pesq=%22pauline%20lyon%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=25028 Correio Mercantil, e Instructivo, Politico, Universal. 25th July 1856. Ed. 00204, Rio de Janeiro, p.4.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=12143 Correio Mercantil, e Instructivo, Politico, Universal. 1st March 1859. Ed. 00060, Rio de Janeiro, p.2.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=15868Correio Mercantil, e Instructivo, Politico, Universal. 4th August 1860. Ed. 00215, Rio de Janeiro, p.4.https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22pauline%20lyon%22&pagfis=17922 L'Écho du Brésil : Et de L'Amerique du Sud - Ce Journal parait tous dimanches. 19th February 1860. Ed. 00043, Rio de Janeiro, p.15.https://memoria.bn.br/DocReader/DocReader.aspx?bib=386189&pesq=%22pauline%20lyon%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=701 Entreacto : Jornal Illustrado com retratos e caricaturas. 12nd May 1860. Ed. 00002, Rio de Janeiro, p.5.https://memoria.bn.br/DocReader/DocReader.aspx?bib=758817&pesq=%22pauline%20lyon%22&pasta=ano%20186&hf=memoria.bn.br&pagfis=9O Mercantil. 13rd J"; + base:person\#deathdate "1876-01-01"^^xsd:date; + base:person\#deathdate_max "1876-12-31"^^xsd:date; + base:person\#family_name "Lyon"; + base:person\#first_name "Pauline"; + base:person\#fuzzydeathdate "1876"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#image_source "-"; + base:person\#profession "Actor, Director" . + +base:person\/ZheLey-3381 a base:person; + base:person\#GND "http://d-nb.info/gnd/1260675254"; + base:person\#IDPerson "ZheLey-3381"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zhelazo-leyzer.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.797."""; + base:person\#VIAF "http://viaf.org/viaf/20165624600942240455"; + base:person\#birthdate "1877-09-21"^^xsd:date; + base:person\#birthdate_max "1877-09-21"^^xsd:date; + base:person\#family_name "Zhelazo"; + base:person\#first_name "Leyzer"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Leyzer Zhelazo.png"; + base:person\#image_source "https://archives.cjh.org/repositories/7/archival_objects/1285762"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-150; + base:person\#religion "Jewish" . + +base:Country-France a base:Country; + rdfs:label "France"@en . + +base:Profession-Journalist a base:Profession; + rdfs:label "Journalist"@en . + +base:location\/RU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#GeoNamesID "2017370"; + base:location\#IDLocation "RU-00"; + base:location\#latitude 6.0e1; + base:location\#longitude 9.0e1; + base:location\#wikidata "Q159"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Russia" . + +base:person\/ArnMar-1177 a base:person; + base:person\#IDPerson "ArnMar-1177"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/arnstein-mark.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 5, Mexico City: 1967, p.4414."""; + base:person\#birthdate "1878-01-02"^^xsd:date; + base:person\#birthdate_max "1878-01-02"^^xsd:date; + base:person\#family_name "Arnstein"; + base:person\#first_name "Mark"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-arnstein-mark.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/A/lex-arnstein-mark.jpg"; + base:person\#ref-IDBirthPlace base:location\/PL-WA-00; + base:person\#religion "Jewish" . + +base:person\/CapVic-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/116447745"; + base:person\#IDPerson "CapVic-00"; + base:person\#ISNI "https://isni.org/isni/0000000083840064"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n84193515"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6m92d1p"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon."; + base:person\#VIAF "https://viaf.org/viaf/54900525"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3557211"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Victor_Capoul"; + base:person\#birthdate "1839-02-27"^^xsd:date; + base:person\#birthdate_max "1839-02-27"^^xsd:date; + base:person\#comment """In 1905 he was invited by the Fonotipia label to make one of the earliest recordings in history. +The artist is said to have lost his entire fortune through speculation - with the exception of a small farm in southwestern France, the Château de Lartus, where he retired."""; + base:person\#deathdate "1924-02-18"^^xsd:date; + base:person\#deathdate_max "1924-02-18"^^xsd:date; + base:person\#family_name "Capoul"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Victor_Capoul.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Victor_Capoul.jpg"; + base:person\#profession "opera singer"; + base:person\#ref-IDBirthPlace base:location\/FR-Toulo-00; + base:person\#ref-IDDeathPlace base:location\/FR-Puja-00 . + +base:person\/DegEus-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1057653187"; + base:person\#IDPerson "DegEus-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchArg=Eusebio+de+Gorbea&s"; + base:person\#Source """Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Manuel Aznar Soler, “El Caracol y la Sala Rex (1928-1929)”, online: https://www.revistapausa.cat/el-caracol-y-la-sala-rex-1928-1929/ + +Ministerio de Cultura de España, Detalle del premiado Eusebio de Gorbea, online, https://www.cultura.gob.es/premiado/mostrarDetalleAction.do?prev_layout=premiadoResultado&layout=premiadoFicha&cache=init&language=es&id=24227 + +Eusebio de Gorbea Lemmi. Online, https://www.epdlp.com/escritor.php?id=16981 + +Wikipedia. Eusebio de Gorbea. Online: https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi"""; + base:person\#VIAF "https://viaf.org/viaf/87019742/"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi"; + base:person\#birthdate "1881-03-23"^^xsd:date; + base:person\#birthdate_max "1881-03-23"^^xsd:date; + base:person\#deathdate "1948-12-17"^^xsd:date; + base:person\#deathdate_max "1948-12-17"^^xsd:date; + base:person\#family_name "de Gorbea"; + base:person\#first_name "Eusebio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Eusebio de Gorbea.jpg"; + base:person\#image_source "https://es.wikipedia.org/wiki/Eusebio_de_Gorbea_Lemmi

"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:location\/USA-Honul-00 a base:location; + base:location\#City base:City-Honolulu; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5856195"; + base:location\#IDLocation "USA-Honul-00"; + base:location\#State base:State-Hawaii; + base:location\#latitude 2.13089e1; + base:location\#longitude -1.57826e2; + base:location\#wikidata "Q18094"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Honolulu" . + +base:organisation\/72439 a base:organisation; + base:organisation\#IDOrganisation 72439; + base:organisation\#inst_name """Kleines Theater Unter den Linden +"""; + base:organisation\#ref-IDLocation base:location\/GER-Ber-00 . + +base:person\/FurCoe-00 a base:person; + base:person\#IDPerson "FurCoe-00"; + base:person\#ISNI "https://isni.org/isni/0000000108304410"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no90024351"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#SNAC "http://n2t.net/ark:/99166/w6n660tt"; + base:person\#Source "Faria, J. R. (2008). Machado de Assis e os estilos de interpretação teatral de seu tempo. Revista USP, (77), p. 135-148 : https://doi.org/10.11606/issn.2316-9036.v0i77p135-148 Faria, J. R. (2008). O teatro realista no Brasil: 1855-1865. 1989. Doctoral dissertation (Doutorado em Literatura Brasileira) - Faculdade de Filosofia, Letras e Ciências Humanas, Universidade de São Paulo, São Paulo, 1990 : https://doi.org/10.11606/T.8.1990.tde-18102022-131721 Gonçalves, M. C., & Messer Levin, O. (2017). Furtado Coelho e sua atuação no Teatro Ginásio Dramático, do Rio de Janeiro. Convergência Lusíada, v.25, n.32 :  https://convergencialusiada.com.br/rcl/article/view/84 Junior, Luiz Americo Lisboa. Teatro português no Brasil : do Império à Primeira República. Master thesis (Mestrado em História, na especialidade de História e Cultura do Brasil) – Faculdade de Letras of University of Lisbon. Lisbon, 2020 : http://hdl.handle.net/10451/44149  Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021 : http://hdl.handle.net/10451/48198 Simões, Lucinda. Memorieas: factos e impressões. SA Litho-Typographia Fluminese, 1922.Sobrinho, Francisco Antonio Filgueiras. Estudos biográficos: Teatro I – Furtado Coelho. Pernambuco: R. de Mattos, 1863 : https://play.google.com/books/reader?id=7TAbAAAAYAAJ&pg=GBS.PA18&hl=pt Zambrano, Gustavo. A trajetória artística de Furtado Coelho nos palcos brasileiros: (1856-1867). Master's thesis defended at Universidade Estadual Paulista “Júlio de Mesquita Filho”, Instituto de Biociências, Letras e Ciências Exatas. São José do Rio Preto, 2018 : https://repositorio.unesp.br/handle/11449/152956 "; + base:person\#VIAF "http://viaf.org/viaf/50471542"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q10286657"; + base:person\#Wikipedia "https://pt.wikipedia.org/wiki/Furtado_Coelho"; + base:person\#birthdate "1831-12-28"^^xsd:date; + base:person\#birthdate_max "1831-12-28"^^xsd:date; + base:person\#comment "Cemitério dos Prazeres, Lisboa"; + base:person\#deathdate "1900-02-13"^^xsd:date; + base:person\#deathdate_max "1900-02-13"^^xsd:date; + base:person\#family_name "Coelho"; + base:person\#first_name "Furtado"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Furtado_Coelho.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q10286657#/media/File:Furtado_Coelho.jpg"; + base:person\#profession "Actor, Impresario, Founder, Playwright, Composer"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/PT-Liss-00 . + +base:person\/GroPau-00 a base:person; + base:person\#IDPerson "GroPau-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://catalog.loc.gov/vwebv/search?searchArg=Paul+Groussac&searc"; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + base:person\#VIAF "https://viaf.org/en/viaf/106964814"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2550159"; + base:person\#birthdate "1848-02-15"^^xsd:date; + base:person\#deathdate "1929-06-27"^^xsd:date; + base:person\#family_name "Groussac"; + base:person\#first_name "Paul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Paul_Groussac.jpg"; + base:person\#image_source "https://es.wikipedia.org/wiki/Paul_Groussac"; + base:person\#ref-IDBirthPlace base:location\/FR-Toulo-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/HerLui-00 a base:person; + base:person\#IDPerson "HerLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/view/13159888#resources"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Ecured, Lus Bayón Herrera, online: https://www.ecured.cu/Luis_Bay%C3%B3n_Herrera + +Orlando del Greco, Todo Tango, online: mso-themecolor:background1;mso-ansi-language:ES-AR\">https://www.todotango.com/creadores/biografia/313/Luis-Bayon-Herrera/ + +Real Academia de la Historia, Luis Bayón Herrera,online: mso-ansi-language:ES-AR\">https://dbe.rah.es/biografias/46506/luis-bayon-herrera + +Luis Perrière. Los vascos del tango. Online, https://rauldeloshoyos.com/luis-bayon-herrera-un-tropezon-raul-los-hoyos/"""; + base:person\#VIAF "https://viaf.org/viaf/87140235/#Bay%C3%B3n_Herrera,_Luis,_1889-1956"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6700358"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Luis_Bay%C3%B3n_Herrera"; + base:person\#birthdate "1889-09-23"^^xsd:date; + base:person\#birthdate_max "1889-09-23"^^xsd:date; + base:person\#deathdate "1956-03-30"^^xsd:date; + base:person\#deathdate_max "1956-03-30"^^xsd:date; + base:person\#family_name "Bayón Herrera"; + base:person\#first_name "Luis"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Luis_Bayón_Herrera.jpg"; + base:person\#image_source "https://www.discogs.com/fr/artist/1296673-Luis-Bay%C3%B3n-Herrera-"; + base:person\#ref-IDBirthPlace base:location\/ES-Bilb-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/JoaAma-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/117139947"; + base:person\#IDPerson "JoaAma-00"; + base:person\#ISNI "https://isni.org/isni/0000000066772370"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no00035271"; + base:person\#SNAC "https://snaccooperative.org/view/18378859"; + base:person\#Source """Beatrix Borchard: Amalie Joachim in Troppau und Hermannstadt. In: Freia Hoffmann (ed.): Reiseberichte von Musikerinnen des 19. Jahrhunderts: Quellentexte, Biographien und Kommentare. Hildesheim 2011, pp. 197–212. +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 5003-5004. +Ludwig Eisenberg: Amalie Joachim. In: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert., Leipzig: List 1903, p. 483. + +"""; + base:person\#VIAF "https://viaf.org/viaf/47532229/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q86910"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Amalie_Joachim"; + base:person\#birthdate "1839-05-10"^^xsd:date; + base:person\#birthdate_max "1839-05-10"^^xsd:date; + base:person\#comment "buried in Kaiser Wilhelm Memorial Cemetery in Berlin."; + base:person\#deathdate "1899-02-03"^^xsd:date; + base:person\#deathdate_max "1899-02-03"^^xsd:date; + base:person\#family_name "Joachim"; + base:person\#first_name "Amalie"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Amalie_Joachim,Photographie_von_J._C._Schaarwächter.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q86910#/media/File:Amalie_Joachim,Photographie_von_J._C._Schaarw%C3%A4chter.jpg"; + base:person\#profession "opera singer, concert singer"; + base:person\#ref-IDBirthPlace base:location\/SI-Marb-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00 . + +base:Country-Italy a base:Country; + rdfs:label "Italy"@en . + +base:location\/LV-RIX-00 a base:location; + base:location\#City base:City-Riga; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Latvia; + base:location\#GeoNamesID "456172"; + base:location\#IDLocation "LV-RIX-00"; + base:location\#latitude 5.69489e1; + base:location\#longitude 2.41064e1; + base:location\#wikidata "Q1773"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Riga" . + +base:person\/AloEnz-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/143736051"; + base:person\#IDPerson "AloEnz-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de laPlata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Inmigración a la Argentina 1850-1960: escritores (página2), online, https://www.monografias.com/trabajos32/inmigracion-escritores/inmigracion-escritores2Wikipedia. + +Los afincaos. Online, https://es.wikipedia.org/wiki/Los_afincaosTodo colección. Aloisi, Enzo: El crimen de Liniers, online, https://www.todocoleccion.net/libros-antiguos-teatro/aloisi-enzo-crimen-liniers-comedia-policial-un-acto-cinco-cuadros-bambalinas-n-189~x40031348 + +James Troiano. “Life as Theater in Aloisi’s Nada dePirandello, por favor” in: Revista de literatura hispánica: No. 34, Article 15. [Online-Edition]: https://digitalcommons.providence.edu/inti/vol1/iss34/15Family Search. Enzo Aloisi, online: https://ancestors.familysearch.org/de/G2PG-T3L/enzo-luis-humberto-v%C3%ADctor-manuel-aloisi-1886-1975"""; + base:person\#VIAF "https://viaf.org/processed/ARBABN%7C000057365"; + base:person\#birthdate "1886-04-02"^^xsd:date; + base:person\#birthdate_max "1886-04-02"^^xsd:date; + base:person\#deathdate "1975-05-02"^^xsd:date; + base:person\#deathdate_max "1975-05-02"^^xsd:date; + base:person\#family_name "Aloisi"; + base:person\#first_name "Enzo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Enzo_Aloisi.jpg"; + base:person\#image_source "FamilySearch.com"; + base:person\#ref-IDBirthPlace base:location\/IT-Flor-00; + base:person\#ref-IDDeathPlace base:location\/ARG-Oliv-00 . + +base:person\/CahCha-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/134817826"; + base:person\#IDPerson "CahCha-00"; + base:person\#ISNI "https://isni.org/isni/0000000055524304"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n97064362"; + base:person\#SNAC "http://n2t.net/ark:/99166/w6m045wn"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 681-682.Richard Dyer: Cahier, Mme Charles. In: Laura Williams Macy: The Grove Book of Opera Singers, Oxford: University Press, 2008 p. 69.The New York Times: “Music Here and There“, 17th Novembre 1912, New York."; + base:person\#VIAF "https://viaf.org/viaf/46048961"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q60608471"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Sara_Cahier"; + base:person\#birthdate "1870-01-08"^^xsd:date; + base:person\#birthdate_max "1870-01-08"^^xsd:date; + base:person\#comment "She sang the premiere of Gustav Mahler's Lied von der Erde in Munich."; + base:person\#deathdate "1951-04-15"^^xsd:date; + base:person\#deathdate_max "1951-04-15"^^xsd:date; + base:person\#family_name "Cahier"; + base:person\#first_name "Sarah Charles"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Madame_Charles_Cahier_-_The_grand_opera_singers_of_to-day_(1912).jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Mme._Charles_Cahier#/media/Datei:Madame_Charles_Cahier_-_The_grand_opera_singers_of_to-day_(1912).jpg"; + base:person\#profession "singer, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/USA-Tenn-00; + base:person\#ref-IDDeathPlace base:location\/USA-CA-07 . + +base:person\/GalSus-00 a base:person; + base:person\#IDPerson "GalSus-00"; + base:person\#ISNI "https://isni.org/isni/0000000047378925"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "http://n2t.net/ark:/99166/w6hv0ck8
"; + base:person\#Source "Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. Internet Broadway Database(ed.): Susan Galton in Broadway, https://www.ibdb.com/broadway-cast-staff/susan-galton-433825. "; + base:person\#VIAF "http://viaf.org/viaf/68761999"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q21557524"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Susan_Galton"; + base:person\#birthdate "1849-01-01"^^xsd:date; + base:person\#birthdate_max "1849-01-01"^^xsd:date; + base:person\#deathdate "1918-01-01"^^xsd:date; + base:person\#deathdate_max "1918-01-01"^^xsd:date; + base:person\#family_name "Galton"; + base:person\#first_name "Susan"; + base:person\#fuzzybirthdate "1849"; + base:person\#fuzzydeathdate "1918"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/图片 1.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Susan_Galton#/media/File:Miss_Susan_Galton.jpg"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#religion "Christian" . + +base:Country-Poland a base:Country; + rdfs:label "Poland"@en . + +base:Nametype-Pseudonym\%2FStagename a base:Nametype; + rdfs:label "Pseudonym/Stage name"@en . + +base:RelationshipTypePrecise-Other a base:RelationshipTypePrecise; + rdfs:label "Other"@en . + +base:location\/PT-Porto-00 a base:location; + base:location\#City base:City-Porto; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2735943"; + base:location\#IDLocation "PT-Porto-00"; + base:location\#latitude 4.11494e1; + base:location\#longitude -8.61056e0; + base:location\#wikidata "Q36433"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Porto" . + +base:location\/ROU-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Romania; + base:location\#GeoNamesID "798549"; + base:location\#IDLocation "ROU-00"; + base:location\#latitude 4.6e1; + base:location\#longitude 2.5e1; + base:location\#wikidata "Q218"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Romania" . + +base:organisation\/71224 a base:organisation; + base:organisation\#IDOrganisation 71224; + base:organisation\#inst_name "גאָלדפאדעןס טרופּע - Avraham Goldfaden's troupe" . + +base:person\/BauRos-00 a base:person; + base:person\#Birth_Info "other sources: 23 April 1850"; + base:person\#IDPerson "BauRos-00"; + base:person\#ISNI "https://isni.org/isni/0000000012096194"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Callipo, Daniela Mantarro. De vedete à poeta: a trajetória de Rose Méryss. In Miscelânea, Assis, v. 24, p. 145-163, jul.-dez., 2018. https://seer.assis.unesp.br/index.php/miscelanea/article/view/1222 Prado, Décio de Almeida. História concisa do teatro brasileiro: 1570-1908. São Paulo: Editora da Universidade de São Paulo, 1999.Ruiz, Roberto. Teatro de revista no Brasil: do início a I Guerra Mundial. Rio de Janeiro : INACEN, 1988. "; + base:person\#VIAF "http://viaf.org/viaf/47078175"; + base:person\#birthdate "1850-01-23"^^xsd:date; + base:person\#birthdate_max "1850-01-23"^^xsd:date; + base:person\#deathdate "1929-07-01"^^xsd:date; + base:person\#deathdate_max "1929-07-01"^^xsd:date; + base:person\#family_name "Baudon"; + base:person\#first_name "Rose Marie "; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/image_atelier_nadar_portrait_de_ros_ph53813_336226.jpg"; + base:person\#image_source "https://www.parismuseescollections.paris.fr/fr/musee-carnavalet/oeuvres/portrait-de-rose-marie-baudon-ap-1901-dite-rose-meryss-actrice-de-theatre#infos-principales"; + base:person\#profession "Actor, Customier, French Theacher, Painter, Writer, Hotel founder"; + base:person\#ref-IDBirthPlace base:location\/FR-Bord-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/DeaPie-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1226784682"; + base:person\#IDPerson "DeaPie-00"; + base:person\#ISNI "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000073158889&TERMS"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Wikipedia. Pierina Dealessi, online: https://es.wikipedia.org/wiki/Pierina_Dealessi + +Wikiwand. Pierina Dealessi, online: https://www.wikiwand.com/es/Pierina_Dealessi + +IMDb. Pierina Dealessi, online: https://www.imdb.com/name/nm0212663/"""; + base:person\#VIAF "https://viaf.org/viaf/102354879/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6075434"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Pierina_Dealessi"; + base:person\#birthdate "1894-12-25"^^xsd:date; + base:person\#birthdate_max "1894-12-25"^^xsd:date; + base:person\#deathdate "1983-01-21"^^xsd:date; + base:person\#deathdate_max "1983-01-21"^^xsd:date; + base:person\#family_name "Dealessi"; + base:person\#first_name "Pierina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Pierina Dealessi.jpg"; + base:person\#image_source "https://www.imdb.com/name/nm0212663/I"; + base:person\#ref-IDBirthPlace base:location\/IT-Tur-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/EusArt-00 a base:person; + base:person\#IDPerson "EusArt-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.   + +Carmen Fraga González. “Arturo Nemesio Eusevi Valladares. Labor artística en Madrid, Tenerife y Argentina” in: Guaraguao, No. 66/67, Canarias y América (2021), pp. 149-172 (24 pages), [Online Edition]: https://www.jstor.org/stable/27111235  + +Museo del Dibujo y la Ilustración: “Eusevi, Arturo Nemesio”, online, https://museodeldibujo.com.ar/obras_muestras/artistas.php?ida=140&a=Eusevi%2C+Arturo+Nemesio   + +Arte de la Argentina: “Eusevi, Arturo Nemesio”, online, https://www.artedelaargentina.com.ar/disciplinas/artista/pintura/arturo-nemesio-eusevi"""; + base:person\#VIAF "https://viaf.org/processed/DNB%7C1207262293"; + base:person\#birthdate "1860-12-19"^^xsd:date; + base:person\#birthdate_max "1860-12-19"^^xsd:date; + base:person\#deathdate "1933-11-20"^^xsd:date; + base:person\#deathdate_max "1933-11-20"^^xsd:date; + base:person\#family_name "Eusevi"; + base:person\#first_name "Arturo"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Eusevi, Arturo Nemesio.jpg"; + base:person\#image_source "https://museodeldibujo.com.ar/obras_muestras/artistas.php?ida=140&a=Eusevi%2C+Arturo+Nemesio

"; + base:person\#ref-IDBirthPlace base:location\/ES-Nava-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/LevMis-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/134729455"; + base:person\#IDPerson "LevMis-00"; + base:person\#ISNI "https://isni.org/isni/0000000080991799"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n87110967"; + base:person\#SNAC "https://snaccooperative.org/view/60971773"; + base:person\#Source "North China Herald. 17th October, 1925, p. 105: https://archive.org/details/north-china-herald-1925.10.17/page/104/mode/2up?q=Mischa+Levitzki."; + base:person\#VIAF "http://viaf.org/viaf/19868342"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q506276"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Mischa_Levitzki"; + base:person\#birthdate "1898-05-25"^^xsd:date; + base:person\#birthdate_max "1898-05-25"^^xsd:date; + base:person\#comment "buried at Mount Lebanon Cemetery"; + base:person\#deathdate "1941-01-02"^^xsd:date; + base:person\#deathdate_max "1941-01-02"^^xsd:date; + base:person\#family_name "Levitzki"; + base:person\#first_name "Mischa"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/图片 2.png"; + base:person\#image_source "https://en.wikipedia.org/wiki/File:MischaLevitzki1925.png"; + base:person\#ref-IDBirthPlace base:location\/UA-Krem-00; + base:person\#ref-IDDeathPlace base:location\/USA-Jersey-00; + base:person\#religion "Jewish" . + +base:person\/ReiCat-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1250127599"; + base:person\#IDPerson "ReiCat-00"; + base:person\#ISNI "https://isni.org/isni/0000000023548299"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Edward T. James (ed.): Notable American Women, 1607–1950, Cambridge, MA: The Belknap Press of Harvard University Press, 1971.   + Women in World History: A Biographical Encyclopedia of Reignolds, Catherine Mary (1836–1911), https://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/reignolds-catherine-mary-1836-1911.    + Catherine Mary Reignolds-Winslow: Yesterdays with Actors, Boston, Cupples and Hurd, 1887, https://archive.org/details/yesterdayswitha00wins/page/n15/mode/2up.   """; + base:person\#VIAF "https://viaf.org/viaf/65363170"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q61890447"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Kate_Reignolds"; + base:person\#birthdate "1836-05-16"^^xsd:date; + base:person\#birthdate_max "1836-05-16"^^xsd:date; + base:person\#comment """Burial: Springfield Cemetery, Springfield, Hampden County, Massachusetts +"""; + base:person\#deathdate "1911-07-11"^^xsd:date; + base:person\#deathdate_max "1911-07-11"^^xsd:date; + base:person\#family_name "Reignolds"; + base:person\#first_name "Catherine-Mary"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/reignoldsmary.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Kate_Reignolds#/media/File:Catherine_Mary_Reignolds_Winslow,_oval_portrait.jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-MA-01 . + +base:location\/AT-Graz-00 a base:location; + base:location\#City base:City-Graz; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2778067"; + base:location\#IDLocation "AT-Graz-00"; + base:location\#latitude 4.70708e1; + base:location\#longitude 1.54386e1; + base:location\#wikidata "Q13298"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Graz" . + +base:person\/BalHel-00 a base:person; + base:person\#IDPerson "BalHel-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source "PEREIRA, Esteves; RODRIGUES, Guilherme. Dicionário Histórico, Corográfico,Heráldico, Biográfico, Bibliográfico, Numismático e Artístico. Volume VII : https://www.arqnet.pt/dicionario/balsemao_rodrigues.htmlVASCONCELOS, Thaís. A trajetória de Lima Penante e o espaço teatral no Amazonas no século XIX. In.: ARTERIAIS, V.6, N.11, 2020 : https://periodicos.ufpa.br/index.php/ppgartes/article/view/11023 STARK, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321 (Newspapers of Hemeroteca Nacional Website)Gazeta de Noticias. 27th June 1880. Ed. 00177, Rio de Janeiro, p.6: http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=863 Gazeta de Noticias. 13th August 1884. Ed. 00226, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=7369 Gazeta de Noticias. 8th November 1884. Ed. 00313, Rio de Janeiro, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_02&Pesq=%22helena%20balsem%c3%a3o%22&pagfis=7776 Jornal do Commercio. 4th July 1877. Ed. 00184, Rio de Janeiro, p.6:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=16242 Jornal do Commercio. 18th June 1878. Ed. 00164, Rio de Janeiro, p.5:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_06&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=18611 Correio da Manhã. 12th February 1893.Ed. 02548, Lisboa, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=890529&pesq=%22helena%20balsem%C3%A3o%22&hf=memoria.bn.br&pagfis=11625 Jornal do Commercio. 21st April 1892. Ed. 00111, Rio de Janeiro, p.10:http://memoria.bn.br/DocReader/DocReader.aspx?bib=364568_08&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=7230 Correio Paulistano. 26th March 1895. Ed. 11517, São Paulo, p.2:http://memoria.bn.br/DocReader/DocReader.aspx?bib=090972_05&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memoria.bn.br&pagfis=6153 O Commercio de São Paulo. 5th August 1900. Ed. 02291, São Paulo, p.1:http://memoria.bn.br/DocReader/DocReader.aspx?bib=227900&pesq=%22Helena%20Balsem%C3%A3o%22&pasta=ano%20189&hf=memori"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q97013754"; + base:person\#Wikipedia "https://pt.wikipedia.org/wiki/Helena_Balsem%C3%A3o"; + base:person\#birthdate "1850-01-01"^^xsd:date; + base:person\#birthdate_max "1850-12-31"^^xsd:date; + base:person\#comment "Cemetery of Agramonte in Porto"; + base:person\#deathdate "1903-02-21"^^xsd:date; + base:person\#deathdate_max "1903-02-21"^^xsd:date; + base:person\#family_name "Balsemão"; + base:person\#first_name "Helena"; + base:person\#fuzzybirthdate "1850"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actress , Director, Theatre Entrepreneur,Trader"; + base:person\#ref-IDBirthPlace base:location\/PT-FdD-00; + base:person\#ref-IDDeathPlace base:location\/PT-Cedof-00 . + +base:person\/WhiTho-00 a base:person; + base:person\#IDPerson "WhiTho-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://id.loc.gov/authorities/names/no2009043646.html"; + base:person\#Source """# +Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Thomas Whiffen in Broadway, https://www.ibdb.com/broadway-cast-staff/thomas-whiffen-64703."""; + base:person\#VIAF "https://viaf.org/viaf/83621397/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q106565806"; + base:person\#birthdate "1842-01-01"^^xsd:date; + base:person\#birthdate_max "1845-12-31"^^xsd:date; + base:person\#deathdate "1897-10-10"^^xsd:date; + base:person\#deathdate_max "1897-10-12"^^xsd:date; + base:person\#family_name "Whiffen"; + base:person\#first_name "Thomas"; + base:person\#fuzzybirthdate "between 1842 and 1845"; + base:person\#fuzzydeathdate "between 10 and 12 October 1897"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/UK-00; + base:person\#ref-IDDeathPlace base:location\/UK-Hertf-00 . + +base:Continent-Asia a base:Continent; + rdfs:label "Asia"@en . + +base:RelationshipTypePrecise-Mother a base:RelationshipTypePrecise; + rdfs:label "Mother"@en . + +base:RelationshipTypePrecise-Sister a base:RelationshipTypePrecise; + rdfs:label "Sister"@en . + +base:person\/AimMar-00 a base:person; + base:person\#Birth_Info "other sources:1845 in Lyon"; + base:person\#CERL "http://data.cerl.org/thesaurus/cnp01390285"; + base:person\#IDPerson "AimMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000052775503"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Callipo, Daniela Mantarro. As Grandes Estrelas Do Alcazar Lyrique Do Rio De Janeiro: A Edificação De Um Mito. In.: Historiæ, Rio Grande, v. 8, n. 2, p. 31-46, 2017: https://periodicos.furg.br/hist/article/download/7908/5162/22630 Menezes, Lená Medeiros de. (Re)inventando a noite: o Alcazar Lyrique e a cocotte comédiénne no Rio de Janeiro oitocentista. In.: Revista Rio de Janeiro, n. 20-21, jan.-dez, 2007. http://www.forumrio.uerj.br/publicacoes_fase3_n20_21.htm (Newspapers from American National Congress) The sun. 14th March 1896. New York, p. 7. +https://www.loc.gov/resource/sn83030272/1896-03-14/ed-1/?sp=7&q=Aim%C3%A9e+Tronchon&r=-0.05,0.663,0.359,0.184,0 + +Public ledger. 20th March 1872. Memphis, Tennessee, p. 2. +https://www.loc.gov/resource/sn85033673/1872-03-20/ed-1/?sp=2&q=+Aimee+actress&r=0.275,0.545,0.446,0.229,0 Salt Lake evening Democrat. 23rd May 1885. Salt Lake City, Utah, p.4 +https://www.loc.gov/resource/sn85058117/1885-05-23/ed-1/?sp=4&q=+Aimee+actress&r=0.232,0.09,0.505,0.259,0 + +New York dispatch. 25th December 1870. New York, p.4. +https://www.loc.gov/resource/sn85026214/1870-12-25/ed-1/?sp=4&q=+Aimee+actress&r=0.232,-0.036,1.18,0.605,0 New York dispatch. 29th October 1871. New York, p.5. +https://www.loc.gov/resource/sn85026214/1871-10-29/ed-1/?sp=5&q=+Aimee+actress&r=0.019,0.068,0.277,0.142,0 +New Orleans Republican. 18th February 1872. New Orleans, LA, p.5. +https://www.loc.gov/resource/sn83016555/1872-02-18/ed-1/?sp=5&q=+Aimee+actress&r=0.079,-0.021,0.92,0.472,0 + +New York dispatch. 13rd October 1872. New York, p.8. +https://www.loc.gov/resource/sn85026214/1872-10-13/ed-1/?sp=8&q=+Aimee+actress&r=0.157,0.422,0.219,0.112,0 Chicago tribune. 21st March 1872. Chicago, Ill., p.5. +https://www.loc.gov/resource/sn82014064/1872-03-21/ed-1/?sp=5&q=+Aimee+actress&r=0.215,-0.072,0.544,0.279,0 New Orleans Republican. 9th February 1873. New Orleans, LA, p. 2. +https://www.loc.gov/resource/sn83016555/1873-02-09/ed-1/?sp=2&q=+Aimee+actress&r=0.438,0.926,0.414,0.212,0 Evening star. 16th January 1873. Washington, D.C., p. 4. +https://www.loc.gov/resource/sn83045462/1873-01-16/ed-1/?sp=4&q=+Aimee+actress&r=0.008,0.966,0.264,0.135,0 +New York dispatch. 16th March 1873. New York, p.5. +https://www.loc.gov/resource/sn85026214/1873-03-16/ed-1/?sp=5&q=+Aimee+actress&r=0.088,0.783,0.307,0.158,0 + +Memphis daily appeal. 15th March 1873. Memphis, Tenn., p.4. +https://www.loc.gov/resource/sn83045160/1873-03-15/ed-1/?sp=4&q=+Aimee+actress&r=0.29,-0.048,0.534,0.274,0 +New York dispatch. 13rd April 1873. New York, p.8. +https://www.loc.gov/resource/sn85026214/1873-04-13/ed-1/?sp=8&q=+Aimee+actress&r=0.178,0.113,0.227,0.116,0 +The Cincinnati daily star. 27th September 1879. Fourth Edition. Cincinnati, Ohio, p.4. +https://www.loc."""; + base:person\#VIAF "https://viaf.org/viaf/51982521/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4934643"; + base:person\#birthdate "1852-01-01"^^xsd:date; + base:person\#birthdate_max "1852-12-31"^^xsd:date; + base:person\#deathdate "1887-10-02"^^xsd:date; + base:person\#deathdate_max "1887-10-02"^^xsd:date; + base:person\#family_name "Aimée"; + base:person\#first_name "Marie"; + base:person\#fuzzybirthdate "1852"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Aimée.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q4934643"; + base:person\#profession "Actor, Singer, Dancer"; + base:person\#ref-IDBirthPlace base:location\/DZ-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:person\/BorHei-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118810715"; + base:person\#IDPerson "BorHei-00"; + base:person\#ISNI "https://isni.org/isni/0000000080831867"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://id.loc.gov/authorities/names/n85201304.html"; + base:person\#Source "Börnstein, Heinrich: Fünfundsiebzig Jahre in der Alten und Neuen Welt. Memoiren eines Unbedeutenden. Vol. 1 and 2, Leipzig: Otto Wigand 1881.Wienbibliothek im Rathaus: https://www.digital.wienbibliothek.at/name/view/2982632"; + base:person\#VIAF "https://viaf.org/de/viaf/3267298"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q87331"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Henry_Boernstein"; + base:person\#birthdate "1805-11-04"^^xsd:date; + base:person\#birthdate_max "1805-11-04"^^xsd:date; + base:person\#deathdate "1892-09-10"^^xsd:date; + base:person\#deathdate_max "1892-09-10"^^xsd:date; + base:person\#family_name "Börnstein"; + base:person\#first_name "Heinrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1-Henry-Boernstein.jpg"; + base:person\#image_source "Heinrich Börnstein, Visitenkarte, ca. 1873, Jean-Baptiste Feilner. Missouri Historical Society, St. Louis, Photographs and Prints Collection"; + base:person\#ref-IDBirthPlace base:location\/GER-HH-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00; + base:person\#religion "Christian" . + +base:person\/GarMan-01 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01078559"; + base:person\#GND "https://d-nb.info/gnd/116421029"; + base:person\#IDPerson "GarMan-01"; + base:person\#ISNI "https://isni.org/isni/0000000108836310"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n83070053"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w67d33n1"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 1638-1639.The Observer: “The Early Life and Personal Apperance of Madmoiselle Wagner”, 26th April 1852, London./Riemens: Großes Sängerlexikon"; + base:person\#VIAF "https://viaf.org/viaf/29630509"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q333183"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Manuel_Garc%C3%ADa_(baritone)"; + base:person\#birthdate "1805-03-17"^^xsd:date; + base:person\#birthdate_max "1805-03-17"^^xsd:date; + base:person\#deathdate "1906-07-01"^^xsd:date; + base:person\#deathdate_max "1906-07-01"^^xsd:date; + base:person\#family_name "García Junior"; + base:person\#first_name "Manuel"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuel_Garcia_(John_Singer_Sargent_1905).png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q333183#/media/File:Manuel_Garcia_(John_Singer_Sargent_1905).png"; + base:person\#profession "Opera singer,baritone, singing teacher,music teacher"; + base:person\#ref-IDBirthPlace base:location\/ES-ZAFRA-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:person\/PacReg-00 a base:person; + base:person\#IDPerson "PacReg-00"; + base:person\#ISNI "https://isni.org/page/search-database/"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Santiago Sylvester, “Regina Pacini”, in Centro Virtual Cervantes, 15th November 2006, online https://cvc.cervantes.es/el_rinconete/anteriores/noviembre_06/15112006_01.htm  + +“Regina Pacini”: Efemérides radicales. Hombres, mujeres y hechos de la Unión Cívica Radical día por día, online, http://www.efemeridesradicales.com.ar/Indice/R/Regina_Pacini/Regina_Pacini.html + +“Regina Pacini, la soprano portuguesa que abrazó y protegió a la cultura argentina”. Ministerio de Cultura Argentina, 6th January 2020, online, https://www.cultura.gob.ar/regina-pacini-la-soprano-portuguesa-que-abrazo-y-protegio-la-cultura-a-8662/ + +“La historia de amor de Marcelo T. de Alvear y Regina Pacini: un escándalo, una ceremonia a solas y un amor para toda la vida”, Infobae [Online-Edition]  https://www.infobae.com/sociedad/2021/01/04/la-historia-de-amor-de-marcelo-t-de-alvear-y-regina-pacini-un-escandalo-una-ceremonia-a-solas-y-un-amor-para-toda-la-vida/ + +1871-1965 Regina Pacini. https://casadelteatro.org.ar/regina-pacini/"""; + base:person\#VIAF "https://viaf.org/viaf/206990/#Pacini,_Regina,_1871-1965"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q9067599"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Regina_Pacini"; + base:person\#birthdate "1871-01-06"^^xsd:date; + base:person\#birthdate_max "1871-01-06"^^xsd:date; + base:person\#comment "died in Don Torcuato, Province of Buenos Aires"; + base:person\#deathdate "1965-09-18"^^xsd:date; + base:person\#deathdate_max "1965-09-18"^^xsd:date; + base:person\#family_name "Pacini"; + base:person\#first_name "Regina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Regina_Pacini.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Regina_Pacini"; + base:person\#profession "Singer, Actor"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:location\/BE-BRU-00 a base:location; + base:location\#City base:City-Brussels; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Belgium; + base:location\#GeoNamesID "2800866"; + base:location\#IDLocation "BE-BRU-00"; + base:location\#latitude 5.085e1; + base:location\#longitude 4.35e0; + base:location\#wikidata "Q239"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Brussels" . + +base:person\/BodRob-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/126097429"; + base:person\#IDPerson "BodRob-00"; + base:person\#ISNI " https://isni.org/isni/0000000115924132"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n81084042"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w66x0dwm#resources"; + base:person\#Source """MGG + +Portmann, Werner, und Siegbert Wolf. „Ja, ich kämpfte“ : von Revolutionsträumen, „Luftmenschen“ und Kindern des Schtetls ; Biographien radikaler Jüdinnen und Juden. 1. Aufl. Münster: Unrast, 2006. +"""; + base:person\#VIAF "https://viaf.org/viaf/8368943"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q326252"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Robert_Bodanzky"; + base:person\#birthdate "1879-03-20"^^xsd:date; + base:person\#birthdate_max "1879-03-20"^^xsd:date; + base:person\#deathdate "1923-02-11"^^xsd:date; + base:person\#deathdate_max "1923-02-11"^^xsd:date; + base:person\#family_name "Bodanzky"; + base:person\#first_name "Robert"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Zygmunt_Skwirczyński_Robert_Bodanzky_1911.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Robert_Bodanzky#/media/Datei:Zygmunt_Skwirczy%C5%84ski_Robert_Bodanzky_1911.jpg"; + base:person\#profession "Operetta, Schlager Author, Director, Journalist, Actor,Emcee"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/GER-BER-00; + base:person\#religion " Jewish" . + +base:person\/GiuRob-00 a base:person; + base:person\#GND " https://portal.dnb.de/opac.htm?method=simpleSearch&cqlMode=t"; + base:person\#IDPerson "GiuRob-00"; + base:person\#ISNI "https://isni.oclc.org/cbs/DB=1.2//CMD?ACT=SRCH&IKT=8006&TRM=ISN%3A0000000083491175&TERM"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://id.loc.gov/authorities/names/n81042129.html"; + base:person\#SNAC "https://snaccooperative.org/?count=10&start=0&entity_type=&"; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.Centro de Documentación e Investigación de la Cultura de Izquierdas. Diccionario Biográfico de las Izquierdas Latinoamericanas: “Giusti, Roberto F.”, online: https://diccionario.cedinci.org/giusti-roberto-f/Facultad de Filosofía y Letras de la Universidad de Buenos Aires. Filo Digital Archivos: “Giusti, Roberto”, online: http://archivos.filo.uba.ar/index.php/Detail/entities/665Fermín Estrella Gutiérrez, “Roberto F. Giusti: su vida, su obra”, Buenos Aires, Asociación Dante Alighieri, 1980."; + base:person\#VIAF "https://viaf.org/en/viaf/search?field=local.names&index=viaf&s"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q25417610"; + base:person\#birthdate "1887-03-10"^^xsd:date; + base:person\#deathdate "1978-05-06"^^xsd:date; + base:person\#family_name "Giusti"; + base:person\#first_name "Roberto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Giusti_Roberto.JPG"; + base:person\#image_source "https://www.wikidata.org/wiki/Q25417610"; + base:person\#ref-IDBirthPlace base:location\/IT-Lucc-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/SemMar-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/117469513"; + base:person\#IDPerson "SemMar-00"; + base:person\#ISNI "https://isni.org/isni/0000000083493859"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82001308"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w66h4gwt"; + base:person\#Source "E.W. Allen: The Biograph and Review, New York: the New York Public Library, 1879."; + base:person\#VIAF "https://viaf.org/viaf/197617"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q265698"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marcella_Sembrich"; + base:person\#birthdate "1858-02-15"^^xsd:date; + base:person\#birthdate_max "1858-02-15"^^xsd:date; + base:person\#comment "Sembrich traveled across the United States and Europe singing in major cities including Dresden, London, Madrid, Paris, St. Petersburg, New York. Burial: Johannisfriedhof Tolkewitz, Dresden, Germany"; + base:person\#deathdate "1935-01-11"^^xsd:date; + base:person\#deathdate_max "1935-01-11"^^xsd:date; + base:person\#family_name "Sembrich"; + base:person\#first_name "Marcelina"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marcella_Sembrich_-_portrait.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/File:Marcella_Sembrich_-_portrait.jpg"; + base:person\#profession "Singer, Musician,Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/UA-Wis-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:location\/GER-Ffm-00 a base:location; + base:location\#City base:City-Frankfurt; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2925533"; + base:location\#IDLocation "GER-Ffm-00"; + base:location\#latitude 5.01167e1; + base:location\#longitude 8.68333e0; + base:location\#wikidata "Q1794"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Frankfurt" . + +base:organisation\/157 a base:organisation; + base:organisation\#IDOrganisation 157; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Metropolitain Opera, New York"; + base:organisation\#ref-IDLocation base:location\/USA-NY-00 . + +base:person\/LeaCar-00 a base:person; + base:person\#IDPerson "LeaCar-00"; + base:person\#ISNI "https://isni.org/isni/0000000067753606"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no98107189"; + base:person\#Source "Belfort Palmeira, Natasha (2018). O entreato da belle époque: a cena nacional e luso-brasileira. Convergência Lusíada, v.28, n.37, p.58-68 : https://convergencialusiada.com.br/rcl/article/view/211 Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198 "; + base:person\#VIAF "http://viaf.org/viaf/9467942"; + base:person\#birthdate "1878-12-17"^^xsd:date; + base:person\#birthdate_max "1878-12-17"^^xsd:date; + base:person\#family_name "Leal"; + base:person\#first_name "Carlos"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Actor, Playwriter, Director, Cartoonist, Advertiser"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00 . + +base:RelationshipTypePrecise-Brother a base:RelationshipTypePrecise; + rdfs:label "Brother"@en . + +base:person\/ZilKar-3399 a base:person; + base:person\#IDPerson "ZilKar-3399"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Z/zilberman-karl.htm + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.783."""; + base:person\#birthdate "1883-01-01"^^xsd:date; + base:person\#birthdate_max "1883-12-31"^^xsd:date; + base:person\#family_name "Zilberman"; + base:person\#first_name "Karl"; + base:person\#fuzzybirthdate "1883"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-zilberman-karl.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/Z/zilberman-karl.htm "; + base:person\#ref-IDBirthPlace base:location\/ROU-Jassy-00; + base:person\#religion "Jewish" . + +base:location\/PL-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "798544"; + base:location\#IDLocation "PL-00"; + base:location\#latitude 5.2e1; + base:location\#longitude 2.0e1; + base:location\#wikidata "Q36"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Poland" . + +base:person\/ConSan-00 a base:person; + base:person\#IDPerson "ConSan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961."; + base:person\#birthdate "1884-05-07"^^xsd:date; + base:person\#birthdate_max "1884-05-07"^^xsd:date; + base:person\#family_name "Contento"; + base:person\#first_name "Santiago"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/IT-Tries-00 . + +base:RelationshipTypePrecise-Son a base:RelationshipTypePrecise; + rdfs:label "Son"@en . + +base:EmploymentType-Itinerant a base:EmploymentType; + rdfs:label "Itinerant"@en . + +base:location\/CN-SH-00 a base:location; + base:location\#City base:City-Shanghai; + base:location\#Continent base:Continent-Asia; + base:location\#Country base:Country-China; + base:location\#GeoNamesID "1796236"; + base:location\#IDLocation "CN-SH-00"; + base:location\#latitude 3.12333e1; + base:location\#longitude 1.21467e2; + base:location\#wikidata "Q8686"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Shanghai" . + +base:Country-Ukraine a base:Country; + rdfs:label "Ukraine"@en . + +base:person\/BraMar-02 a base:person; + base:person\#CERL "http://data.cerl.org/thesaurus/cnp02150882"; + base:person\#GND "https://d-nb.info/gnd/1089754426"; + base:person\#IDPerson "BraMar-02"; + base:person\#ISNI "https://isni.org/isni/0000000046175309"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no2002104866"; + base:person\#SNAC "http://n2t.net/ark:/99166/w6377n14"; + base:person\#Source """Fondazione Adkins Chiti: Donne in Musica, Sonstige. Le lombarde in musica. Roma: Colombo, 2009. + +Laura Macy. “Brambilla, Marietta.” The Grove Book of Opera Singers, 2nd ed., Oxford University Press, 2008. + +MGG + +"""; + base:person\#VIAF "http://viaf.org/viaf/32265598"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q3847905"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Marietta_Brambilla"; + base:person\#birthdate "1807-06-06"^^xsd:date; + base:person\#birthdate_max "1807-06-06"^^xsd:date; + base:person\#deathdate "1875-11-06"^^xsd:date; + base:person\#deathdate_max "1875-11-06"^^xsd:date; + base:person\#family_name "Brambilla "; + base:person\#first_name "Marietta"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Marietta_Brambilla_1828.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Marietta_Brambilla_1828.jpg"; + base:person\#ref-IDBirthPlace base:location\/IT-Cassa-00; + base:person\#ref-IDDeathPlace base:location\/IT-Mila-00 . + +base:Profession-Magician a base:Profession; + rdfs:label "Magician"@en . + +base:RelationshipTypePrecise-Father a base:RelationshipTypePrecise; + rdfs:label "Father"@en . + +base:person\/AmaLui-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/143945599"; + base:person\#IDPerson "AmaLui-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "https://snaccooperative.org/view/19562106#resources"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la +Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Luis Perrière: Teatro, +letras, letristas. Luis César Amadori, Raúl de los Hoyos-online, https://rauldeloshoyos.com/luis-cesar-amadori-raul-de-los-hoyos/ + +Busca +Biografías: Luis César Amadori. Online: https://www.buscabiografias.com/biografia/verDetalle/7397/Luis%20Cesar%20Amadori + +Néstor Pinsón: Luis César Amadori, Todo Tango-online, https://www.todotango.com/creadores/biografia/508/Luis-Cesar-Amadori/ + +Diccionario de Directores del Cine Mexicano: Amadori, +Luis César. Online, +https://diccionariodedirectoresdelcinemexicano.com/directores-cine-mex/amadori-luis-cesar/"""; + base:person\#VIAF "https://viaf.org/viaf/6652869/#Amadori,_Luis_C%C3%A9sar,_1902-1977"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q472866"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Luis_C%C3%A9sar_Amadori"; + base:person\#birthdate "1902-05-28"^^xsd:date; + base:person\#birthdate_max "1902-05-28"^^xsd:date; + base:person\#deathdate "1977-06-05"^^xsd:date; + base:person\#deathdate_max "1977-06-05"^^xsd:date; + base:person\#family_name "Amadori"; + base:person\#first_name "Luis César"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Luis_Cesar_Amadori.jpg"; + base:person\#image_source "https://www.buscabiografias.com/biografia/verDetalle/7397/Luis%20Cesar%20Amadori

"; + base:person\#ref-IDBirthPlace base:location\/IT-Pesca-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:Profession-MusicDirector a base:Profession; + rdfs:label "Music Director"@en . + +base:person\/JagFer-01 a base:person; + base:person\#GND "https://d-nb.info/gnd/117052477"; + base:person\#IDPerson "JagFer-01"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Ludwig Eisenberg: Großes biographisches Lexikon der deutschen Bühne im XIX. Jahrhundert. Leipzig: List 1903, pp. 468- 469. +# +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 2217. +# +Gedenktafel im Foyer des Bayreuther Festspielhauses, Bayreuther Festspiele 1876, (c) RWA Nationalarchiv Bayreuth, https://www.bayreuther-festspiele.de/festspiele/historie/ +Wiener Staatsoper Archiv: https://archiv.wiener-staatsoper.at/search/person/8120 +"""; + base:person\#VIAF "https://viaf.org/viaf/13074670"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18020135"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Ferdinand_J%C3%A4ger_%28S%C3%A4nger%2C_1839%29"; + base:person\#birthdate "1839-12-25"^^xsd:date; + base:person\#birthdate_max "1839-12-25"^^xsd:date; + base:person\#deathdate "1902-06-13"^^xsd:date; + base:person\#deathdate_max "1902-06-13"^^xsd:date; + base:person\#family_name "Jäger"; + base:person\#first_name "Ferdinand"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/下载 (1).png"; + base:person\#image_source "https://www.theatermuseum.at/online-sammlung/detail/542585/"; + base:person\#profession "Singer, Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-Hanau-00; + base:person\#ref-IDDeathPlace base:location\/AT-VIE-00 . + +base:person\/NovAlb-00 a base:person; + base:person\#GND "http://d-nb.info/gnd/1057253391"; + base:person\#IDPerson "NovAlb-00"; + base:person\#ISNI "https://isni.org/isni/000000006636932X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no97036998"; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961. + +Argentores: 1910-2000. 90 años. \"Semblanzas. Alberto Novión\", Buenos Aires: Sociedad General de Autores de la Argentina 2000. + +Alberto Novión. Edition and foreword by Osvaldo Pellettieri: Alberto Novión. La transición al grotesco criollo, Buenos Aires: Eudeba 2002. + +Nora Glickman and Gloria F. Waldman: Argentine Jewish Theatre: a critical anthology, Lewisburg: Bucknell Univ. Press 1996. + +María González Rouco: Alberto Novión: un vasco en escena. Online, https://letras-uruguay.espaciolatino.com/aaa/gonzalez_rouco_maria/alberto_novion.htm + +La Capital: Fotos de familia. El gran álbum de Mar del Plata. Online, https://www.lacapitalmdp.com/contenidos/fotosfamilia/fotos/8226Wikipedia. + +Alberto Novión. Online, https://es.wikipedia.org/wiki/Alberto_Novi%C3%B3n + +"""; + base:person\#VIAF "https://viaf.org/viaf/53754721"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5663380"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Alberto_Novi%C3%B3n"; + base:person\#birthdate "1881-02-09"^^xsd:date; + base:person\#birthdate_max "1881-02-09"^^xsd:date; + base:person\#deathdate "1937-11-25"^^xsd:date; + base:person\#deathdate_max "1937-11-25"^^xsd:date; + base:person\#family_name "Novión"; + base:person\#first_name "Alberto "; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Alberto Novión.jpg"; + base:person\#image_source """Argentores. 1910-2000. 90 años. Semblanzas. Alberto Novión: Sociedad General de Autores de la Argentina 2000.

"""; + base:person\#ref-IDBirthPlace base:location\/FR-Bayo-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:location\/GER-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2921044"; + base:location\#IDLocation "GER-00"; + base:location\#latitude 5.1e1; + base:location\#longitude 9.0e0; + base:location\#wikidata "Q183"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Germany" . + +base:location\/URY-Montvid-00 a base:location; + base:location\#City base:City-Montevideo; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Uruguay; + base:location\#GeoNamesID "3441575"; + base:location\#IDLocation "URY-Montvid-00"; + base:location\#latitude -3.48667e1; + base:location\#longitude -5.61667e1; + base:location\#wikidata "Q1335"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Montevideo" . + +base:person\/LucMan-00 a base:person; + base:person\#Birth_Info "other sources: 1834"; + base:person\#IDPerson "LucMan-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Stark, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321 Salles, Vicente. Épocas do Teatro no Grão-Pará ou apresentação do teatro de época.Tomo 1. Belém: Ed. UFPA, 1994.Sousa Bastos, A Carteira do Artista. Apontamentos para a História do TheatroPortuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898."; + base:person\#birthdate "1833-01-01"^^xsd:date; + base:person\#birthdate_max "1833-12-31"^^xsd:date; + base:person\#comment "(There are texts that state that she was Italian, having arrived in Brazil with her father at the age of three. The most states that she was born in Lisbon, daughter of Italian parents.)"; + base:person\#deathdate "1899-05-28"^^xsd:date; + base:person\#deathdate_max "1899-05-28"^^xsd:date; + base:person\#family_name "Lucci"; + base:person\#first_name "Manuella"; + base:person\#fuzzybirthdate "1833"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Manuella Lucci.png"; + base:person\#image_source "Stark, Andrea Carvalho. Sobre um retrato embaçado: a atriz e empresária Manuella Lucci (Lisboa – 18? – Belém do Pará – 1899). v. 21 (2021): XI Congresso da ABRACE. Seção História das Artes e do Espetáculo, 2016 : https://www.publionline.iar.unicamp.br/index.php/abrace/article/view/5321"; + base:person\#profession "Actress, Singer, Entrepreneur "; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/BR-Bel-00 . + +base:RelationshipTypePrecise-Husband a base:RelationshipTypePrecise; + rdfs:label "Husband"@en . + +base:location\/USA-LosAng-00 a base:location; + base:location\#City base:City-LosAngeles; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5368361"; + base:location\#IDLocation "USA-LosAng-00"; + base:location\#State base:State-California; + base:location\#latitude 3.41017e1; + base:location\#longitude -1.18327e2; + base:location\#wikidata "Q65"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Los_Angeles" . + +base:organisation\/71 a base:organisation; + base:organisation\#IDOrganisation 71; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Hofoper Wien" . + +base:location\/UK-00 a base:location; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-UnitedKingdom; + base:location\#GeoNamesID "2635167"; + base:location\#IDLocation "UK-00"; + base:location\#latitude 5.22e1; + base:location\#longitude -1.22e0; + base:location\#wikidata "Q145"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/United_Kingdom" . + +base:person\/BenJac-1252 a base:person; + base:person\#GND "https://d-nb.info/gnd/1061552861"; + base:person\#IDPerson "BenJac-1252"; + base:person\#ISNI "https://isni.org/isni/0000000119508339"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/B/ben-ami-jacob.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.184. +Internet Broadway Database, Jacob Ben-Ami: https://www.ibdb.com/broadway-cast-staff/jacob-ben-ami-14154. +Anna Quindlen: \"Jacob Ben-Ami, Actor, Dies at 86; A Founder of Jewish Art Theater\", The New York Times, 1977-07-23: https://www.nytimes.com/1977/07/23/archives/jacob-benami-actor-dies-at-86-a-founder-of-jewish-art-theater.html +Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742)"""; + base:person\#VIAF "https://viaf.org/de/viaf/68835836"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q24203455"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Jacob_Ben-Ami"; + base:person\#birthdate "1890-12-23"^^xsd:date; + base:person\#birthdate_max "1890-12-23"^^xsd:date; + base:person\#comment "Buried in New York City"; + base:person\#deathdate_max "1977-07-02"^^xsd:date; + base:person\#family_name "Ben-Ami"; + base:person\#first_name "Jacob"; + base:person\#fuzzybirthdate "1890-12-23"; + base:person\#fuzzydeathdate "1977-07-02"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-ben-ami-jacob.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/B/lex-ben-ami-jacob.jpg"; + base:person\#ref-IDBirthPlace base:location\/BY-Minsk-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/WeiJos-3230 a base:person; + base:person\#IDPerson "WeiJos-3230"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/weinstock-joseph.htm + +Center for Jewish History: https://archives.cjh.org/agents/people/121275 + +Kuligowska-Korzeniewska, Anna, and Edna Nahshon. “The Polish Shulamis: Jewish Drama On The Polish Stage In The Late 19th-Early 20th Centuries.” Jewish Theatre. vol. 8. United States: BRILL, 2009. p. 83.. + +Newspapers: + +The Hebrew Standarts, 13th June 1930, p.2: https://trove.nla.gov.au/newspaper/article/121835373?searchTerm=Joseph%20Weinstock + +Jewish Telegraphic Agency Archive : https://www.jta.org/archive/veteran-jewish-actor-drops-dead-in-milwaukee-theatre + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.69."""; + base:person\#VIAF "http://viaf.org/viaf/279157132"; + base:person\#birthdate "1858-04-19"^^xsd:date; + base:person\#birthdate_max "1858-04-19"^^xsd:date; + base:person\#deathdate "1930-04-02"^^xsd:date; + base:person\#deathdate_max "1930-04-02"^^xsd:date; + base:person\#family_name "Weinstock"; + base:person\#first_name "Joseph"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Joseph Weinstock.png"; + base:person\#image_source "https://archives.cjh.org/repositories/7/archival_objects/1227196"; + base:person\#ref-IDBirthPlace base:location\/Ukr-DiJeSt-142; + base:person\#ref-IDDeathPlace base:location\/USA-MKE-00; + base:person\#religion "Jewish" . + +base:location\/IT-Mila-00 a base:location; + base:location\#City base:City-Milan; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Italy; + base:location\#GeoNamesID "3173435"; + base:location\#IDLocation "IT-Mila-00"; + base:location\#latitude 4.54669e1; + base:location\#longitude 9.19e0; + base:location\#wikidata "Q490"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Milan" . + +base:person\/FeiSig-714 a base:person; + base:person\#Death_Info "Place of burial: Lodz Jewish cemetery"; + base:person\#IDPerson "FeiSig-714"; + base:person\#ISNI "https://isni.org/isni/0000000408226725"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/F/feinman-sigmund.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 4, New York: 1963, p.2544."""; + base:person\#VIAF "http://viaf.org/viaf/300742204"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q18821878"; + base:person\#birthdate "1862-04-28"^^xsd:date; + base:person\#birthdate_max "1862-04-28"^^xsd:date; + base:person\#comment "Buried in Lodz Jewish cemetery"; + base:person\#deathdate "1909-07-01"^^xsd:date; + base:person\#deathdate_max "1909-07-01"^^xsd:date; + base:person\#family_name "Feinman"; + base:person\#first_name "Sigmund"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Captura de Tela 2025-07-07 às 20.44.19.png"; + base:person\#image_source "https://archives.cjh.org/repositories/7/archival_objects/1285949"; + base:person\#ref-IDBirthPlace base:location\/Mol-DiJeSt-5; + base:person\#ref-IDDeathPlace base:location\/PL-Lod-00; + base:person\#religion "Jewish" . + +base:person\/AreEnr-00 a base:person; + base:person\#IDPerson "AreEnr-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. + +Ediciones del Carro de Tespis 1961.“Enrique Arellano”. Revista Chantecler: No 12, Córdoba, 1912, [Online Edition]: https://archivoteatrodecordoba.artes.unc.edu.ar/enrique-arellano-revista-chantecler-no12-cordoba-1912/ + +Patricia Verónica Fischer, “Elías Alipi” in: Osvaldo Pellettieri (dir): De Eduardo de Filippo a Tita Merello. Del cómico italiano al ‘actor nacional’ argentino. Buenos Aires: Galerna 2003. + +Jorge Dubatti: Cien años de teatro argentino. Desde 1910 hasta nuestros días, Buenos Aires: Editorial Biblios 2012. + +Wikipedia. Enrique Arellano, online: https://es.wikipedia.org/wiki/Enrique_Arellano + +“Pepe Cibrián y Ana María Campoy”, online: https://trujaman.net/2021/03/06/pepe-cibrian-y-ana-maria-campoy/"""; + base:person\#Wikidata "www.wikidata.org/wiki/Q5833033"; + base:person\#Wikipedia "https://es.wikipedia.org/wiki/Enrique_Arellano"; + base:person\#birthdate "1876-10-02"^^xsd:date; + base:person\#birthdate_max "1876-10-02"^^xsd:date; + base:person\#deathdate "1945-08-23"^^xsd:date; + base:person\#deathdate_max "1945-08-23"^^xsd:date; + base:person\#family_name "Arellano"; + base:person\#first_name "Enrique"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#ref-IDBirthPlace base:location\/ES-Mad-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:RelationshipTypePrecise-Daughter a base:RelationshipTypePrecise; + rdfs:label "Daughter"@en . + +base:RelationshipTypePrecise-Wife a base:RelationshipTypePrecise; + rdfs:label "Wife"@en . + +base:Nametype-Marriage a base:Nametype; + rdfs:label "Marriage"@en . + +base:person\/YouBer-3320 a base:person; + base:person\#GND "https://d-nb.info/gnd/173483437"; + base:person\#IDPerson "YouBer-3320"; + base:person\#ISNI "https://isni.org/isni/0000000403632783"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr2003000574"; + base:person\#Nametype base:Nametype-; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/Y/young-bernard.htm + +Leksikon Fun Der Nayer Yidisher Literatur: https://congressforjewishculture.org/people/3926/Young,%20Boaz%20(March%201870%E2%80%93December%2020,%201955) + +Mayn lebn in teatr (My Life in the Theatre), Bernard Young, 1950: https://archive.org/details/nybc207961/page/n17/mode/2up  + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 2, Warsaw: 1934, p.914."""; + base:person\#VIAF "http://viaf.org/viaf/19618884"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4931569"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Boaz_Young"; + base:person\#birthdate "1870-03-01"^^xsd:date; + base:person\#birthdate_max "1870-03-31"^^xsd:date; + base:person\#deathdate "1955-12-20"^^xsd:date; + base:person\#deathdate_max "1955-12-20"^^xsd:date; + base:person\#family_name "Young"; + base:person\#first_name "Bernard"; + base:person\#fuzzybirthdate "March 1870"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Boaz Young1.png"; + base:person\#image_source "Mayn lebn in teatr (My Life in the Theatre), Bernard Young, 1950: https://archive.org/details/nybc207961/page/n17/mode/2up"; + base:person\#ref-IDBirthPlace base:location\/Pol-DiJeSt-7; + base:person\#ref-IDDeathPlace base:location\/USA-Miami-00; + base:person\#religion "Jewish" . + +base:organisation\/1101 a base:organisation; + base:organisation\#IDOrganisation 1101; + base:organisation\#InstType base:InstitutionType-Company; + base:organisation\#comment ""; + base:organisation\#inst_name "Bandmann-Beaudet Company" . + +base:person\/PynMar-00 a base:person; + base:person\#IDPerson "PynMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source "Englishromanticopera(ed.): The Pyne SistersMary Ann, Susan, Louisa, https://www.englishromanticopera.org/singers/Pyne_Sisters.htm."; + base:person\#birthdate "1819-01-01"^^xsd:date; + base:person\#birthdate_max "1819-12-31"^^xsd:date; + base:person\#deathdate "1892-03-01"^^xsd:date; + base:person\#deathdate_max "1892-03-31"^^xsd:date; + base:person\#family_name "Pyne"; + base:person\#first_name "Mary Ann"; + base:person\#fuzzybirthdate "1819"; + base:person\#fuzzydeathdate "March 1892"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Musician, Singer,Theatre Teacher, Manager"; + base:person\#ref-IDBirthPlace base:location\/UK-Kent-00; + base:person\#ref-IDDeathPlace base:location\/UK-Blean-00 . + +base:person\/MarMat-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01340457"; + base:person\#GND "https://d-nb.info/gnd/116760206"; + base:person\#IDPerson "MarMat-00"; + base:person\#ISNI "https://isni.org/isni/0000000368513040"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no88000133"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w60p19tk"; + base:person\#Source "Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 2908-2909.Frost, Reinhard: Marchesi, Mathilde. Artikel aus der Frankfurter Biographie (1994/96) in: Frankfurter Personenlexikon (Onlineausgabe), https://frankfurter-personenlexikon.de/node/448"; + base:person\#VIAF "https://viaf.org/viaf/9929266"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q437075"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Mathilde_Marchesi"; + base:person\#birthdate "1821-03-24"^^xsd:date; + base:person\#birthdate_max "1821-03-24"^^xsd:date; + base:person\#deathdate "1913-11-17"^^xsd:date; + base:person\#deathdate_max "1913-11-17"^^xsd:date; + base:person\#family_name "Marchesi"; + base:person\#first_name "Mathilde"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Matilde_Marchesi.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q437075#/media/File:Matilde_Marchesi.jpg"; + base:person\#profession "singer, singing teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-Ffm-00; + base:person\#ref-IDDeathPlace base:location\/UK-LDN-00 . + +base:InstitutionType-Society\%2FUnion a base:InstitutionType; + rdfs:label "Society/Union"@en . + +base:person\/PinAnt-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1192844165"; + base:person\#IDPerson "PinAnt-00"; + base:person\#ISNI "https://isni.org/isni/0000000067800142"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no98103852"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#SNAC "http://n2t.net/ark:/99166/w64c7b6b"; + base:person\#Source "Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198"; + base:person\#VIAF "http://viaf.org/viaf/56234964"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q9619981"; + base:person\#Wikipedia "https://pt.wikipedia.org/wiki/Ant%C3%B3nio_Pinheiro"; + base:person\#birthdate "1867-11-21"^^xsd:date; + base:person\#birthdate_max "1867-11-21"^^xsd:date; + base:person\#deathdate "1943-03-02"^^xsd:date; + base:person\#deathdate_max "1943-03-02"^^xsd:date; + base:person\#family_name "Pinheiro "; + base:person\#first_name "António"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/António_Pinheiro.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q9619981"; + base:person\#profession "Actor, Director, Theatre Teacher, Technician, Impresario"; + base:person\#ref-IDBirthPlace base:location\/PT-StMar-00; + base:person\#ref-IDDeathPlace base:location\/PT-Liss-00 . + +base:person\/HelJac-00 a base:person; + base:person\#IDPerson "HelJac-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Ferreira, Aléxia Lorrana Silva. Jacinto Heller: Repertório de um empresário teatral (1875-1885). In.: Cadernos Letra e Ato, v.6, n.6: Unicamp publionline: Campinas, 2016, p.28-41: https://www.publionline.iar.unicamp.br/index.php/letraeato/article/view/585 Mencarelli, Fernando. A voz e a partitura: teatro musical, indústria e diversidade cultural no Rio de Janeiro (1868-1908). Doctoral thesis in history. Campinas, IFCH/Unicamp, 2003: https://repositorio.unicamp.br/acervo/detalhe/280448 Bastos, Sousa. A Carteira do Artista. Apontamentos para a História do Theatro Portuguez e Brazileiro. Lisboa: Antiga Casa Bertrand-José Bastos, 1898.(Newspapers of Hemeroteca Nacional Website):Correio da Manhã. 12th September 1931. Ed.11271, Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_04&pesq=%22jacintho%20heller%22&pasta=ano%20193&hf=memoria.bn.br&pagfis=8507 Jornal do Brasil. 20th June 1905. Ed. 00171, Rio de Janeiro, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=030015_02&pesq=%22jacintho%20heller%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=16856 Jornal do Brasil. 6th November 1909. Ed. 00310, Rio de Janeiro, p.12:https://memoria.bn.br/DocReader/DocReader.aspx?bib=030015_02&pesq=%22jacintho%20heller%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=35226Correio Mercantil, e Instructivo, Politico, Universal. 18th July 1855. Ed. 00207, Rio de Janeiro, p.3. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=10690 Correio Mercantil, e Instructivo, Politico, Universal. 24th January 1856. Ed. 00024, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=11417 Correio Mercantil, e Instructivo, Politico, Universal. 23th March 1856. Ed. 00082, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=11651 Correio Mercantil, e Instructivo, Politico, Universal. 10th August 1856. Ed. 00229, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=12243 Correio Mercantil, e Instructivo, Politico, Universal. 2nd Juny 1858. Ed. 00149, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280&Pesq=%22heller%22&pagfis=14801 Correio Mercantil, e Instructivo, Politico, Universal. 20th November 1863. Ed. 00319, Rio de Janeiro, p.4. https://memoria.bn.br/DocReader/DocReader.aspx?bib=217280"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q56727129"; + base:person\#birthdate "1834-03-04"^^xsd:date; + base:person\#birthdate_max "1834-03-04"^^xsd:date; + base:person\#comment "Cemetery São João Batista, Rio de Janeiro"; + base:person\#deathdate "1909-11-05"^^xsd:date; + base:person\#deathdate_max "1909-11-05"^^xsd:date; + base:person\#family_name "Heller"; + base:person\#first_name "Jacinto"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/8032R_-_Jacinto_Heller(Empr._Theatral)_-_01,_Acervo_do_Museu_Paulista_da_USP.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q56727129"; + base:person\#profession "Actor, Director"; + base:person\#ref-IDBirthPlace base:location\/PT-Porto-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:location\/ES-Mad-00 a base:location; + base:location\#City base:City-Madrid; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Spain; + base:location\#GeoNamesID "3117735"; + base:location\#IDLocation "ES-Mad-00"; + base:location\#latitude 4.04167e1; + base:location\#longitude -3.71667e0; + base:location\#wikidata "Q2807"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Madrid" . + +base:person\/BodArt-00 a base:person; + base:person\#Death_Info "Place of Burial: Sleepy Hollow Cemetery, NY"; + base:person\#GND "https://d-nb.info/gnd/116215119"; + base:person\#IDPerson "BodArt-00"; + base:person\#ISNI """https://isni.org/isni/ 0000000081386865 """; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89002518"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6ww7m1d#resources"; + base:person\#Source """MGG Online: https://www.mgg-online.com/articles/mgg01698/1.0/mgg01698Österreichisches + +Österreichisches Musiklexikon Online: https://musiklexikon.ac.at/ml/musik_B/Bodanzky_Brueder.xml + +Beaumont, Anthony (2000). “Zemlinsky”. Ithaca, NY: Cornell University Press. ISBN 0-8014-3803-9. + +Horowitz, Joseph (2005). Classical Music in America: A History of Its Rise and Fall. New York, NY: W. W. Norton and Company. ISBN 0-393-05717-8. + +Kwasny, Ralf; Ullrich Scheideler. \"... und dem künstlerisch Mutigen fühle ich mich verwandt.\" Arnold Schönberg und sein früher Förderer Artur Bodanzky, in: ÖMZ 56 (2001), H. 3-4, S. 28–39. + +Nedbal, Martin; Czech-German Collaborations at the Metropolitan Opera in the Early Twentieth Century. Journal of Austrian-American History 18 May 2022; 6 (1): 14–43. doi: https://doi.org/10.5325/jaustamerhist.6.1.0014 + +Mugmon, Matthew. Aaron Copland and the American Legacy of Gustav Mahler. NED-New edition. Boydell & Brewer, 2019. + + +"""; + base:person\#VIAF "https://viaf.org/viaf/59288996"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q714276"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Artur_Bodanzky"; + base:person\#birthdate "1877-12-16"^^xsd:date; + base:person\#birthdate_max "1877-12-16"^^xsd:date; + base:person\#deathdate "1939-11-23"^^xsd:date; + base:person\#deathdate_max "1939-11-23"^^xsd:date; + base:person\#family_name "Bodanzky"; + base:person\#first_name "Artur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Artur_Bodanzky,_by_Herman_Mishkin.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q714276#/media/File:Artur_Bodanzky,_by_Herman_Mishkin.jpg"; + base:person\#profession "Violinist, Conductor"; + base:person\#ref-IDBirthPlace base:location\/AT-VIE-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:Continent-SouthAmerica a base:Continent; + rdfs:label "South America"@en . + +base:MigrationReason-Forced a base:MigrationReason; + rdfs:label "Forced"@en . + +base:location\/CZ-Prag-00 a base:location; + base:location\#City base:City-Prague; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-CzechRepublic; + base:location\#GeoNamesID "3067696"; + base:location\#IDLocation "CZ-Prag-00"; + base:location\#latitude 5.00833e1; + base:location\#longitude 1.44167e1; + base:location\#wikidata "Q1085"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Prague" . + +base:location\/PL-Lod-00 a base:location; + base:location\#City base:City-\%C5\%81\%C3\%B3d\%C5\%BA; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "3093133"; + base:location\#IDLocation "PL-Lod-00"; + base:location\#latitude 5.175e1; + base:location\#longitude 1.94667e1; + base:location\#wikidata "Q580"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/%C5%81%C3%B3d%C5%BA" . + +base:person\/CunAnt-00 a base:person; + base:person\#IDPerson "CunAnt-00"; + base:person\#ISNI "https://isni.org/page/search-database/"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://www.loc.gov/search/?all=True&q=Antonio+Cunill+Cabanellas&st=li"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source """Primera Plana, “Teatro. El creador de la Comedia Nacional, Antonio Cunill Cabanellas”, 21. June 1966 https://www.magicasruinas.com.ar/revistero/1/cunill-cabanellas.htm . + +Antonio Cunill Cabanellas https://es.wikipedia.org/wiki/Antonio_Cunill_Cabanellas   + +Aporte de Cunill Cabanellas https://www.argentina.gob.ar/cultura/teatrocervantes/historia/cunill + +Conrado Ramonet, “Notas sobre la relación entre Adriá Gual y Antoni Cunill i Cabanellas” file:///C:/Users/ra78hon/Downloads/145348-Text%20de%20l'article-247994-1-10-20100520.pdf + +Antonio Cunill Cabanellas https://www.ecured.cu/Antonio_Cunill_Cabanellas  + +Antonio Cunill Cabanellas, online: https://www.ecured.cu/Antonio_Cunill_Cabanellas """; + base:person\#VIAF "https://viaf.org/viaf/16175631/#Cunill_Cabanellas,_Antonio,_1894-1969"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4776556"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Antonio_Cunill_Cabanellas"; + base:person\#birthdate "1894-08-27"^^xsd:date; + base:person\#birthdate_max "1894-08-27"^^xsd:date; + base:person\#deathdate "1969-02-18"^^xsd:date; + base:person\#deathdate_max "1969-02-18"^^xsd:date; + base:person\#family_name "Cunill Cabanellas"; + base:person\#first_name "Antonio"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Antonio_Cunill_Cabanellas.jpg"; + base:person\#image_source "https://es.wikipedia.org/wiki/Antonio_Cunill_Cabanellas"; + base:person\#profession "Playwright, Actor, Director"; + base:person\#ref-IDBirthPlace base:location\/ES-Barc-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:location\/RU-StPet-00 a base:location; + base:location\#City base:City-SaintPetersburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Russia; + base:location\#GeoNamesID "498817"; + base:location\#IDLocation "RU-StPet-00"; + base:location\#latitude 5.99375e1; + base:location\#longitude 3.03086e1; + base:location\#wikidata "Q656"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Saint_Petersburg" . + +base:organisation\/1098 a base:organisation; + base:organisation\#IDOrganisation 1098; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Opera House" . + +base:person\/WalSau-3206 a base:person; + base:person\#CERL "-"; + base:person\#Death_Info "Place of Burial: Jewish Cemetery in Queens"; + base:person\#GND "-"; + base:person\#IDPerson "WalSau-3206"; + base:person\#ISNI "-"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "-"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "-"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-saul.htm + +In the Jewish Cemetery in Queens Journal - Grand Street, Vol. 9, No. 3 (Spring, 1990), pp. 174-181 : https://www.jstor.org/stable/25007379 + +Belling, Veronica-Sue. THE HISTORY OF YIDDISH THEATRE IN SOUTH AFRICA FROM THE LATE NINETEENTH CENTURY TO 1960, Dissertation submitted in fulfilment of the requirements for the award of the degree of Master of Arts in Jewish Civilization, Department of Hebrew and Jewish Studies, Faculty of the Humanities, University of Cape Town, 2003. https://open.uct.ac.za/items/86e0d713-7c23-4efc-b272-d84752e3668d + +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.649."""; + base:person\#VIAF "-"; + base:person\#Wikidata "-"; + base:person\#Wikipedia "-"; + base:person\#birthdate "1873-02-03"^^xsd:date; + base:person\#birthdate_max "1873-02-03"^^xsd:date; + base:person\#deathdate "1933-03-13"^^xsd:date; + base:person\#deathdate_max "1933-03-13"^^xsd:date; + base:person\#family_name "Wallerstein"; + base:person\#first_name "Saul"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/lex-wallerstein-saul.jpg"; + base:person\#image_source "https://www.museumoffamilyhistory.com/yt/lex/W/wallerstein-saul.htm"; + base:person\#ref-IDBirthPlace base:location\/Lit-DiJeSt-111; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:InstitutionType-Education\%28Theatrerelated\%29 a base:InstitutionType; + rdfs:label "Education (Theatre related)"@en . + +base:person\/BroFra-00 a base:person; + base:person\#Death_Info "other sources: 9 April 1943"; + base:person\#IDPerson "BroFra-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source """Laura Mogliani: \"Frank Brown, un clown inglés en Buenos Aires\", en Historia del circo en Buenos Aires: de los volatineros a la formación universitaria. Universidad Nacional Tres de Febrero 2017. PP. 37-49 + +Beatriz Seibel: Vida de circo. Rosita de la Plata. Una estrella argentina en el mundo, Buenos Aires: Ed. Corregidor 2012 + +Raúl H. Castagnino: El circo criollo, Buenos Aires: Ed. Plus Ultra 1969 + +Rubén Darío, “Frank Brown. (Medalla)” in: 3.1897 Buenos Aires: April, 18 1897. P.12 + +La vida de Rubén Darío: Wikisource, https://es.wikisource.org/wiki/La_vida_de_Rub%C3%A9n_Dar%C3%ADo:_XLVIIAtlántida. + +Ilustración Semanal Argentina. Buenos Aires: 24th April 1924. Year VII. N° 316. P.26 + +Fray Mocho. “El campeón tirador de chocolate. Frank Brown entrevistado por Fray Mocho”. 1912. P.55-57. + +Martín Fierro. Segunda época. Buenos Aires: 20th March 1924. Year 1 N° 2. P. 12 + +Mundo Argentino. “El señor Frank Brown. Rosita de la Plata, su compañera del circo y de la vida, es la última persona que ríe con Frank Brown”, Buenos Aires: 20th July 1931. N° 1069. P. 14-15 + +The Standard. “Frank Brown of Circus Fame”, Buenos Aires: 1st May 1930. P.73"""; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2889120"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Frank_Brown_(entertainer)"; + base:person\#birthdate "1858-09-06"^^xsd:date; + base:person\#birthdate_max "1858-09-06"^^xsd:date; + base:person\#deathdate "1943-04-24"^^xsd:date; + base:person\#deathdate_max "1943-04-24"^^xsd:date; + base:person\#family_name "Brown"; + base:person\#first_name "Frank"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/frank_brown.jpg"; + base:person\#image_source "https://www.infobae.com/sociedad/2021/04/09"; + base:person\#profession "Circus Performer,Director,Founder,Impresario"; + base:person\#ref-IDBirthPlace base:location\/UK-Bright-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:person\/MccJoh-00 a base:person; + base:person\#IDPerson "MccJoh-00"; + base:person\#ISNI "https://isni.org/isni/0000000052704326"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr2002042852"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6gh9kwf"; + base:person\#Source "Liz Evers: McCullough, John Edward, in Dictionary of Irish biography, 2019, https://doi.org/10.3318/dib.010107.v1. William Winter: In Memory of John McCullough. New York: De Vinne Press, 1889. "; + base:person\#VIAF "http://viaf.org/viaf/24540331"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6231329"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/John_McCullough_(actor)"; + base:person\#birthdate "1832-11-14"^^xsd:date; + base:person\#birthdate_max "1832-11-14"^^xsd:date; + base:person\#deathdate "1885-11-08"^^xsd:date; + base:person\#deathdate_max "1885-11-08"^^xsd:date; + base:person\#family_name "McCullough"; + base:person\#first_name "John"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/1024px-John_Edward_McCullough.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/John_McCullough_(actor)#/media/File:John_Edward_McCullough.jpg"; + base:person\#ref-IDBirthPlace base:location\/IE-Ldnder-00; + base:person\#ref-IDDeathPlace base:location\/USA-Phila-00 . + +base:Nametype-Other a base:Nametype; + rdfs:label "Other"@en . + +base:location\/USA-Bost-00 a base:location; + base:location\#City base:City-Boston; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4930956"; + base:location\#IDLocation "USA-Bost-00"; + base:location\#State base:State-Massachusetts; + base:location\#latitude 4.23581e1; + base:location\#longitude -7.106359999999999e1; + base:location\#wikidata "Q100"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Boston" . + +base:Profession-CircusPerformer a base:Profession; + rdfs:label "Circus Performer"@en . + +base:location\/GER-HH-00 a base:location; + base:location\#City base:City-Hamburg; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2911298"; + base:location\#IDLocation "GER-HH-00"; + base:location\#latitude 5.35653e1; + base:location\#longitude 1.00014e1; + base:location\#wikidata "Q1055"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hamburg" . + +base:location\/GER-Leip-00 a base:location; + base:location\#City base:City-Leipzig; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2879139"; + base:location\#IDLocation "GER-Leip-00"; + base:location\#latitude 5.13333e1; + base:location\#longitude 1.23833e1; + base:location\#wikidata "Q2079"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Leipzig" . + +base:location\/USA-SanFranc-02 a base:location; + base:location\#City base:City-SanFrancisco; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5391959"; + base:location\#IDLocation "USA-SanFranc-02"; + base:location\#State base:State-California; + base:location\#latitude 3.77775e1; + base:location\#longitude -1.22416e2; + base:location\#wikidata "Q62"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/San_Francisco" . + +base:location\/GER-MUC-00 a base:location; + base:location\#City base:City-Munich; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2867714"; + base:location\#IDLocation "GER-MUC-00"; + base:location\#latitude 4.81333e1; + base:location\#longitude 1.15667e1; + base:location\#wikidata "Q1726"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Munich" . + +base:location\/UA-Lv-00 a base:location; + base:location\#City base:City-Lviv; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "702550"; + base:location\#IDLocation "UA-Lv-00"; + base:location\#latitude 4.983e1; + base:location\#longitude 2.40142e1; + base:location\#wikidata "Q36036"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lviv" . + +base:location\/GER-Dresd-00 a base:location; + base:location\#City base:City-Dresden; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2935022"; + base:location\#IDLocation "GER-Dresd-00"; + base:location\#latitude 5.105e1; + base:location\#longitude 1.374e1; + base:location\#wikidata "Q1731"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Dresden" . + +base:location\/UA-Od-00 a base:location; + base:location\#City base:City-Odesa; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Ukraine; + base:location\#GeoNamesID "698740"; + base:location\#IDLocation "UA-Od-00"; + base:location\#latitude 4.64857e1; + base:location\#longitude 3.07434e1; + base:location\#wikidata "Q1874"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Odessa" . + +base:location\/USA-Phila-00 a base:location; + base:location\#City base:City-Philadelphia; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4560349"; + base:location\#IDLocation "USA-Phila-00"; + base:location\#State base:State-Pennsylvania; + base:location\#latitude 3.99528e1; + base:location\#longitude -7.51636e1; + base:location\#wikidata "Q1345"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Philadelphia" . + +base:person\/GodAra-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/11669517X"; + base:person\#IDPerson "GodAra-00"; + base:person\#ISNI "https://isni.org/isni/0000000066775037"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/no2009050527"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#SNAC "http://n2t.net/ark:/99166/w64f22j9"; + base:person\#Source """# +Sophie Drinker Institut. Markus Gärtner: Europäische Instrumentalistinnen des 18. und 19. Jahrhunderts, https://www.sophie-drinker-institut.de/goddard-arabella. +# +Hongyu Gong: “Beginnings of Beethoven in Shanghai (1861-1880)”, in Musicology in China, 2016, Issue 1, pp.36-43. +# +Melanie Spanswick: British female pianists and teachers: Arabella Goddard, https://melaniespanswick.com/2012/04/01/british-female-pianists-and-teachers-arabella-goddard/."""; + base:person\#VIAF "https://viaf.org/viaf/52448227/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q4783331"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Arabella_Goddard"; + base:person\#birthdate "1836-01-12"^^xsd:date; + base:person\#birthdate_max "1836-01-12"^^xsd:date; + base:person\#deathdate "1922-04-06"^^xsd:date; + base:person\#deathdate_max "1922-04-06"^^xsd:date; + base:person\#family_name "Goddard"; + base:person\#first_name "Arabella"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/800px-Arabella_Goddard.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Arabella_Goddard#/media/File:Arabella_Goddard.jpg"; + base:person\#profession "Musician, Composer, Theatre Teacher"; + base:person\#ref-IDDeathPlace base:location\/FR-BOUL-01 . + +base:Profession-Impresario a base:Profession; + rdfs:label "Impresario"@en . + +base:Country-Germany a base:Country; + rdfs:label "Germany"@en . + +base:MigrationReason-Other a base:MigrationReason; + rdfs:label "Other"@en . + +base:Profession-Musician a base:Profession; + rdfs:label "Musician"@en . + +base:location\/USA-Holly-00 a base:location; + base:location\#City base:City-Hollywood\%28LosAngeles\%29; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5357527"; + base:location\#IDLocation "USA-Holly-00"; + base:location\#State base:State-California; + base:location\#latitude 3.40926e1; + base:location\#longitude -1.1832e2; + base:location\#wikidata "Q34006"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Hollywood,_Los_Angeles" . + +base:MigrationReason-Education a base:MigrationReason; + rdfs:label "Education"@en . + +base:Profession-Teacher\%28Theatrerelated\%29 a base:Profession; + rdfs:label "Teacher (Theatre related)"@en . + +base:person\/BarVic-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118652613"; + base:person\#IDPerson "BarVic-00"; + base:person\#ISNI "https://isni.org/isni/0000000009056829"; + base:person\#Importsource base:ImportSource-Own; + base:person\#SNAC "http://n2t.net/ark:/99166/w63v18bj"; + base:person\#Source """Berst, Julius l: Odyssee eines Theatermannes. Erinnerungen aus 7 Jahrzehnten. Berlin- +Grunewald: arani 1963. + +Berstl, Julius (Hrsg.): 25 Jahre Berliner Theater und Victor Barnowsky. Gustav Kiepenheuer, Berlin 1930. + +Margot Berthold, \"Barnowsky, Viktor\" in: Neue Deutsche Biographie 1, Historische Kommission bei der Bayrischen Akademie der Wissenschaften [ed.], Duncker&Humboldt: Berlin, 1953, p. 596, Online-Edition, https://www.deutsche-biographie.de/pnd118652613.html#ndbcontent. + + +"""; + base:person\#VIAF "https://viaf.org/viaf/3481149068531965730003"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2522209"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Victor_Barnowsky"; + base:person\#birthdate "1875-09-10"^^xsd:date; + base:person\#birthdate_max "1875-09-10"^^xsd:date; + base:person\#deathdate "1952-08-09"^^xsd:date; + base:person\#deathdate_max "1952-08-09"^^xsd:date; + base:person\#family_name "Barnowsky"; + base:person\#first_name "Victor"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Victor_Barnowsky_(BerlLeben_1908-05).jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Victor_Barnowsky_(BerlLeben_1908-05).jpg"; + base:person\#profession "Actor, Theater director"; + base:person\#ref-IDBirthPlace base:location\/GER-BER-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/GalMar-00 a base:person; + base:person\#Birth_Info "1850-01-01- 1850-12-31"; + base:person\#IDPerson "GalMar-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source "Tito Livio Foppa: Diccionario Teatral del Río de la Plata, Buenos Aires: Argentores. Ediciones del Carro de Tespis 1961.José Antonio Saldías: Figuras del teatro argentino a fines del siglo XIX: Mariano Galé, Volume 2: Centro de Estudiantes, Fac. de Filosofía y Letras 1985José Antonio Saldías: Mariano Galé: benemérito del teatro argentino: Instituto Nacional de Estudios de Teatro: Volume 22 1947"; + base:person\#deathdate "1922-10-11"^^xsd:date; + base:person\#family_name "Galé"; + base:person\#first_name "Mariano"; + base:person\#fuzzybirthdate "1850"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Galé_Mariano.jpg"; + base:person\#ref-IDBirthPlace base:location\/ES-Murc-00; + base:person\#ref-IDDeathPlace base:location\/ARG-BA-00 . + +base:organisation\/1083 a base:organisation; + base:organisation\#IDOrganisation 1083; + base:organisation\#InstType base:InstitutionType-Theatre; + base:organisation\#comment ""; + base:organisation\#inst_name "Grand Opera House" . + +base:person\/AdlJac-706 a base:person; + base:person\#Birth_Info "other dates: 01.01.1855"; + base:person\#CERL "-"; + base:person\#Death_Info "other dates: 31 March 1926, Place of Burial: Mount Carmel Cemetery"; + base:person\#GND " http://d-nb.info/gnd/118643878"; + base:person\#IDPerson "AdlJac-706"; + base:person\#ISNI "https://isni.org/isni/0000000066761831"; + base:person\#Importsource base:ImportSource-TauCooperation; + base:person\#LCCN "https://lccn.loc.gov/n86124164"; + base:person\#Nametype base:Nametype-; + base:person\#SNAC "http://n2t.net/ark:/99166/w6hx1x7g"; + base:person\#Source """Data collection and modelling by the DYBBUK project (ERC StG No. 948150); curation and enrichment by the T-MIGRANTS project (ERC StG No. 850742) + +Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/A/adler-jacob-p.htm +Zalman Zylbercweig: Leksikon fun Yidishn Teater 1, New York: 1931, p.13."""; + base:person\#VIAF "http://viaf.org/viaf/30330277"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q2660878"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Jacob_Pavlovich_Adler"; + base:person\#birthdate "1855-02-12"^^xsd:date; + base:person\#birthdate_max "1855-02-12"^^xsd:date; + base:person\#comment "Buried in Mount Carmel Cemetery, New York"; + base:person\#deathdate "1926-04-01"^^xsd:date; + base:person\#deathdate_max "1926-04-01"^^xsd:date; + base:person\#family_name "Adler"; + base:person\#first_name "Jacob P."; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Jacob_Adler.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q2660878#/media/File:Jacob_Adler.jpg"; + base:person\#ref-IDBirthPlace base:location\/UA-Od-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish" . + +base:person\/SimLuc-00 a base:person; + base:person\#IDPerson "SimLuc-00"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Source """Oliveira, Cláudia da Conceição Sousa Sales de. Ser actor : figurações nas memórias de actores portugueses nascidos no século XIX. PhD Thesis in Theatre Studies (Doutoramento em Estudos de Teatro) – Faculdade de Letras of University of Lisbon. Lisbon, 2021: http://hdl.handle.net/10451/48198 Junior, Luiz Americo Lisboa. Teatro português no Brasil : do Império à Primeira República. Master thesis (Mestrado em História, na especialidade de História e Cultura do Brasil) – Faculdade de Letras of University of Lisbon. Lisbon, 2020: http://hdl.handle.net/10451/44149  Simões, Lucinda. Memorieas: factos e impressões. SA Litho-Typographia Fluminese, 1922: https://books.google.de/books?id=oW8yAQAAMAAJ&printsec=frontcover&hl=pt-BR&source=gbs_ge_summary_r&cad=0 +v=onepage&q&f=false (Portuguese National Library):O povo do Algarve. 6th July 1917. Ed. 94. Tavira, p.3.https://bndigital.bnportugal.gov.pt/viewer/180622?medianame=374670_1917-07-06_000003&q=%22lucinda%20sim%C3%B5es%22 +page=3&viewer=picture&o=search&n=0&q=%22lucinda%20sim%C3%B5es%22 O povo do Algarve. 20th July 1917. Ed. 96. Tavira, p.1.https://bndigital.bnportugal.gov.pt/viewer/180650?medianame=374670_1917-07-20_000001&q=%22lucinda%20sim%C3%B5es%22%20%221917%22 +page=1&viewer=picture&o=search&n=0&q=%22lucinda%20sim%C3%B5es%22%20%221917%22 (Newspapers of Hemeroteca Nacional Website):Diário do Rio De Janeiro. Year 55, Number 143, Rio de Janeiro, 26.05.1872: http://memoria.bn.br/DocReader/DocReader.aspx?bib=094170_02&pagfis=28788 O Paiz. 18th October 1919. Ed. 12791. Rio de Janeiro, p. 4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=178691_04&Pesq=%22lucinda%20sim%c3%b5es%22%20%221917%22&pagfis=44684 A Tribuna. 24th November 1922. Ed. 00242. São Paulo, p. 9:https://memoria.bn.br/DocReader/DocReader.aspx?bib=153931_00&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=47697 Pacotilha. 27th October 1920. Ed. 00254. São Luiz, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=168319_02&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=13943 Pacotilha. 19th Dezember 1922. Ed. 00297. São Luiz, p.4:https://memoria.bn.br/DocReader/DocReader.aspx?bib=168319_02&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&pagfis=16584Gazeta de Notícias. 12th March 1917. Ed. 00071. Rio de Janeiro, p.6: https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22lucinda%20sim%C3%B5es%22%20%221917%22&hf=memoria.bn.br&am"""; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q104322025 "; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Lucinda_Sim%C3%B5es"; + base:person\#birthdate "1850-12-17"^^xsd:date; + base:person\#birthdate_max "1850-12-17"^^xsd:date; + base:person\#deathdate "1928-05-21"^^xsd:date; + base:person\#deathdate_max "1928-05-21"^^xsd:date; + base:person\#family_name "Simões"; + base:person\#first_name "Lucinda"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Lucinda_Simões_-_Teatro_D._Maria_II.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q104322025"; + base:person\#profession "Actress, Director, Entrepreneur, Declamation Teacher"; + base:person\#ref-IDBirthPlace base:location\/PT-Liss-00; + base:person\#ref-IDDeathPlace base:location\/PT-Liss-00 . + +base:person\/BerJul-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/118656651"; + base:person\#IDPerson "BerJul-00"; + base:person\#ISNI "https://isni.org/isni/0000000114410666"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr99024646"; + base:person\#Source """Berst, Julius l: Odyssee eines Theatermannes. Erinnerungen aus 7 Jahrzehnten. Berlin-Grunewald: arani 1963. + +Fischer, Ernst: Verleger, Buchhändler und Antiquare Aus Deutschland und Österreich in der Emigration Nach 1933: Ein Biographisches Handbuch. Berlin/Boston: Walter de Gruyter GmbH, 2020. +"""; + base:person\#VIAF "https://viaf.org/viaf/32790153"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1328402"; + base:person\#Wikipedia "https://de.wikipedia.org/wiki/Julius_Berstl"; + base:person\#birthdate "1883-08-06"^^xsd:date; + base:person\#birthdate_max "1883-08-06"^^xsd:date; + base:person\#deathdate "1975-12-08"^^xsd:date; + base:person\#deathdate_max "1975-12-08"^^xsd:date; + base:person\#family_name "Berstl"; + base:person\#first_name "Julius"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/b6ea9648-6b48-4be9-a359-75a2f2dc4f98.avif"; + base:person\#image_source "https://www.berliner-zeitung.de/kultur-vergnuegen/literatur/schlimme-zeiten-julius-berstls-grossartiger-roman-berlin-schlesischer-bahnhof-li.287502"; + base:person\#profession "Writer"; + base:person\#ref-IDBirthPlace base:location\/GER-Bernb-00; + base:person\#ref-IDDeathPlace base:location\/USA-StBarb-04 . + +base:RelationshipType-family a base:RelationshipType; + rdfs:label "family"@en . + +base:person\/WagRic-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01439117"; + base:person\#Death_Info "Place of Burial: Villa Wahnfried in Bayreuth, Germany"; + base:person\#GND "https://d-nb.info/gnd/118594117"; + base:person\#IDPerson "WagRic-00"; + base:person\#ISNI "https://isni.org/isni/0000000122779084"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79089831"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6f769wx"; + base:person\#Source """Wagner, Richard. My Life, 1813-1883. Vol.1. New York : Dodd, Mead and Company, 1911: https://archive.org/details/mylifewagner01wagniala/page/n9/mode/2up +Wagner, Richard. My Life, 1813-1883. Vol.2. New York : Dodd, Mead and Company, 1911: https://archive.org/details/myliferichwagner02wagnuoft + +Richard Wagner Museum - Luzern: https://www.richard-wagner-museum.ch/geschichte/tribschener-zeit/Richard Wagner Verband International e.V. Über Richard Wagner: https://www.richard-wagner.org/rwvi/de/richard-wagner/ueber-rw/ + +LEMO - Lebendiges Museum Online: https://www.dhm.de/lemo/biografie/richard-wagner +Wagnermania. Vol. 276. Zaragoza, 2023: http://www.wagnermania.com/biografia/ """; + base:person\#VIAF "https://viaf.org/viaf/29732107"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q1511"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Richard_Wagner"; + base:person\#birthdate "1813-05-22"^^xsd:date; + base:person\#birthdate_max "1813-05-22"^^xsd:date; + base:person\#deathdate "1883-02-13"^^xsd:date; + base:person\#deathdate_max "1883-02-13"^^xsd:date; + base:person\#family_name "Wagner"; + base:person\#first_name "Richard"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Wagner_Richard.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Richard_Wagner"; + base:person\#profession "Composer, Conducter, Theater Director"; + base:person\#ref-IDBirthPlace base:location\/GER-Leip-00; + base:person\#ref-IDDeathPlace base:location\/IT-Ven-00; + base:person\#religion "Christian" . + +base:MigrationReason- a base:MigrationReason; + rdfs:label ""@en . + +base:person\/HerAde-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/1272648788"; + base:person\#IDPerson "HerAde-00"; + base:person\#ISNI "https://isni.org/isni/0000000053522196"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2005100154"; + base:person\#VIAF "https://viaf.org/viaf/4670295/"; + base:person\#Wikidata "https://en.wikipedia.org/wiki/Adelaide_Herrmann"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Adelaide_Herrmann"; + base:person\#birthdate "1853-08-11"^^xsd:date; + base:person\#birthdate_max "1853-08-11"^^xsd:date; + base:person\#comment "The Queen of Magic in 1899, buried in Woodlawn Cemetery in New York"; + base:person\#deathdate "1932-02-19"^^xsd:date; + base:person\#deathdate_max "1932-02-19"^^xsd:date; + base:person\#family_name "Herrmann"; + base:person\#first_name "Adelaide"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Adelaide Herrmann.jpg"; + base:person\#image_source "https://commons.wikimedia.org/wiki/File:Adelaide_Herrmann,_head-and-shoulders_portrait,_facing_right_LCCN94500214.jpg"; + base:person\#profession "Dancer, Circus Performer,Magician"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Christian" . + +base:person\/StrFri-00 a base:person; + base:person\#Birth_Info "other sources: 23.05.1823, 23.05.1827"; + base:person\#CERL "http://data.cerl.org/thesaurus/cnp00651797"; + base:person\#Death_Info "other source: 08 April 1890"; + base:person\#GND "https://d-nb.info/gnd/1200564383"; + base:person\#IDPerson "StrFri-00"; + base:person\#ISNI "https://isni.org/isni/0000000013676000"; + base:person\#Importsource base:ImportSource-Own; + base:person\#Nametype base:Nametype-Birthname; + base:person\#Source """Ludwig Eisenberg: Ludwig Eisenberg’s Großes Biographisches Lexikon der Deutschen Bühne im XIX. Jahrhundert, Leipzig: Verlagsbuchhandlung Paul List 1903, pp. 1008-1009.  +Alexander von Weilen, „Friedrich Strampfer“ in: Allgemeine Deutsche Biographie 36, Historische Kommission bei der Königlichen Akademie der Wissenschaften [ed.], Duncker&Humboldt: Leipzig, 1893, pp. 496-497 [Online-Edition], https://www.deutsche-biographie.de/sfz81647.html#adbcontent +A. Heinrich: Almanach für Freunde der Schauspielkunst 12–17, Berlin: Self-published, 1849–1853. +A. Heinrich: Deutscher Bühnenalmanach 18–23,Berlin: Kommissions-Verlag Laffar, 1854–1859. +Ingrid Bigler-Marschall, „Strampfer, Friedrich (Ernst Wolfgang)“ in: Deutsches Theaterlexikon 4, Wilhelm Kosch (ed.), München: K. G. Saur Verlag, 1998, p.2381.  +Constantin von Wurzbach: Biographisches Lexikon des Kaiserthums Oesterreich: enthaltend die Lebensskizzen der denkwürdigen Personen, welche 1750 bis 1850 im Kaiserstaate und in seinen Kronländern gelebt haben 39, Wien: kaiserlich-königliche Hof- und Staatsdruckerei, 1879, pp. 232-237. +"""; + base:person\#VIAF "http://viaf.org/viaf/30309929"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q27598665"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Friedrich_Strampfer"; + base:person\#birthdate "1823-07-24"^^xsd:date; + base:person\#birthdate_max "1823-07-24"^^xsd:date; + base:person\#deathdate "1890-04-07"^^xsd:date; + base:person\#deathdate_max "1890-04-07"^^xsd:date; + base:person\#family_name "Strampfer"; + base:person\#first_name "Friedrich"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Friedrich_Strampfer_Wien_Museum_Online_Sammlung_49786_372_1.jpg"; + base:person\#image_source """Wiener Museum, Inv. Nr. 49786_372 +"""; + base:person\#profession "Actor, Impresario, Director, Reciter, Farmer,Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/GER-Grimm-00; + base:person\#ref-IDDeathPlace base:location\/AT-Graz-00; + base:person\#religion "Christian" . + +base:RelationshipType-teacher a base:RelationshipType; + rdfs:label "teacher"@en . + +base:location\/USA-CHIC-00 a base:location; + base:location\#City base:City-Chicago; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "4887398"; + base:location\#IDLocation "USA-CHIC-00"; + base:location\#State base:State-Illinois; + base:location\#latitude 4.18819e1; + base:location\#longitude -8.762779999999999e1; + base:location\#wikidata "Q1297"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Chicago" . + +base:person\/ViaPau-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp00538806"; + base:person\#GND "https://d-nb.info/gnd/118804375"; + base:person\#IDPerson "ViaPau-00"; + base:person\#ISNI "https://isni.org/isni/000000010915619X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50019659"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6251w1r#resources"; + base:person\#Source "Research project: Pauline Viardot- Orte und Wege europäischer Kulturvermittlung durch Musik,  https://www.pauline-viardot.de/index.html Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, pp. 4887-4889. Beatrix Borchard: „Erben, weitertragen, verwandeln – der Weg zur Selbstbestimmung einer Sängerin. Pauline Viardot-Garcia (1821–1910)“ in: Nicole K. Strohmann und Antje Tumat (edd.); with the cooperation of Lukas Kurz and Juana Zimmermann: Bühnenrollen und Identitätskonzepte. Karrierestrategien von Künstlerinnen im Theater des 19. Jahrhunderts, Hannover: 2016, pp. 73–91. Beatrix Borchard: Pauline Viardot-Garcia: Fülle des Lebens. Köln: Böhlau 2016.Volker Hagedorn: Pauline Viardot-García: Schluss mit Diva und Deko. Zum 200. Geburtstag von Pauline Viardot-García: Sie erweiterte die Möglichkeiten der weiblichen Stimme.  in: Die Zeit, 04. Januar 2021, Hamburg: 2021. https://www.zeit.de/2021/01/pauline-viardot-garcia-opernsaengerin-musik-komponistinPauline Viardot-García:  Pauline Viardot - Julius Rietz : Der Briefwechsel 1858 - 1874, Beatrix Borchard, Miriam-Alexandra Wigbers (edd.),Hildesheim: Olms, 2021."; + base:person\#VIAF "https://viaf.org/viaf/73929645"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q122998"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Pauline_Viardot"; + base:person\#birthdate "1821-07-18"^^xsd:date; + base:person\#birthdate_max "1821-07-18"^^xsd:date; + base:person\#comment "Concert and opera tours to London, Wien, Prag, Berlin, Dresden, Weimar, Pest and Dublin. Burried at Paris, Montmartre (catholic)"; + base:person\#deathdate "1910-05-18"^^xsd:date; + base:person\#deathdate_max "1910-05-18"^^xsd:date; + base:person\#family_name "Viardot-García"; + base:person\#first_name "Pauline"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Pauline_Viardot-Garcia_3.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q122998#/media/File:Pauline_Viardot-Garcia_3.jpg "; + base:person\#profession "Singer, Composer, Musician, Teacher (Theatre-related), Editor"; + base:person\#ref-IDBirthPlace base:location\/FR-PARIS-00; + base:person\#ref-IDDeathPlace base:location\/FR-PARIS-00 . + +base:Profession-Author a base:Profession; + rdfs:label "Author"@en . + +base:person\/GolAbr-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/119119013"; + base:person\#IDPerson "GolAbr-00"; + base:person\#ISNI " https://isni.org/isni/0000000081463621"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87933242"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w60k2c91#resources"; + base:person\#Source "Museum of Family History: https://www.museumoffamilyhistory.com/yt/lex/G/goldfaden-abraham.htm"; + base:person\#VIAF "https://viaf.org/viaf/66613610"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q330024"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Abraham_Goldfaden"; + base:person\#birthdate "1840-07-24"^^xsd:date; + base:person\#birthdate_max "1840-07-24"^^xsd:date; + base:person\#comment "Consider the Father of Yiddish Theater"; + base:person\#deathdate "1908-01-09"^^xsd:date; + base:person\#deathdate_max "1908-01-09"^^xsd:date; + base:person\#family_name "Goldfaden"; + base:person\#first_name "Abraham"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Abraham_Goldfaden.png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q330024#/media/File:Abraham_Goldfaden.png"; + base:person\#profession "Poet, Playwright, Director, Actor, Dramatist, Composer, Scenic Designer, Acting Instructor, Impresario"; + base:person\#ref-IDBirthPlace base:location\/RU-STARO-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00; + base:person\#religion "Jewish, Other" . + +base:person\/NapArt-00 a base:person; + base:person\#GND "http://d-nb.info/gnd/1073481700"; + base:person\#IDPerson "NapArt-00"; + base:person\#ISNI "https://isni.org/isni/0000000083655993 "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n83127010"; + base:person\#SNAC "https://isni.org/isni/0000000083655993 "; + base:person\#Source "Frias, Visconte Sanches de. Arthur Napoleão: Resenha comemorativa de sua vida pessoal e artística (1845-1922). Lisbon, 1913:https://archive.org/details/arthurnapoleaore00fria/page/n7/mode/2up  Salgado, Suzana. The Teatro Solis: 150 years of Opera, Concert and Ballet in Montevideo. USA: Wesleyan University Press, 2003. Brazilian Music Academy, „Patronos: Arthur Napoleão“, online source: https://abmusica.org.br/academicos/#patronos (Newspapers of Hemeroteca Nacional Website):Gazeta de Notícias. 24th November 1901. Ed.00328, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=3206 Gazeta de Notícias. 25th July 1902. Ed.00206, Rio de Janeiro, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4319Gazeta de Notícias. 5th October 1902. Ed.00278, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4674 Gazeta de Notícias. 15th October 1902. Ed.00288, Rio de Janeiro, p.1:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4723 Gazeta de Notícias. 5th December 1902. Ed.00339, Rio de Janeiro, p.3:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=4966 Gazeta de Notícias. 26th August 1908. Ed.00239, Rio de Janeiro, p.3:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=18097Gazeta de Notícias. 24th July 1909. Ed.00175, Rio de Janeiro, p.8:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&pesq=%22arthur%20napoleao%22&pasta=ano%20190&hf=memoria.bn.br&pagfis=20192 Gazeta de Notícias. 9th October 1909. Ed.00282, Rio de Janeiro, p.2:https://memoria.bn.br/DocReader/DocReader.aspx?bib=103730_04&Pesq=%22arthur%20napoleao%22&pagfis=21035 Correio da Manhã. 28th January 1924. Ed.09088, Rio de Janeiro, p.8:https://memoria.bn.br/DocReader/DocReader.aspx?bib=089842_03&pesq=%22arthur%20napoleao%22&pasta=ano%20192&hf=memoria.bn.br&pagfis=18113(Memorys of Arthur Napoleão published in „Correio da Manhã“ Newspaper)"; + base:person\#VIAF "http://viaf.org/viaf/24867923 "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q265288 "; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Arthur_Napole%C3%A3o_dos_Santos"; + base:person\#birthdate "1843-03-06"^^xsd:date; + base:person\#birthdate_max "1843-03-06"^^xsd:date; + base:person\#deathdate "1925-05-12"^^xsd:date; + base:person\#deathdate_max "1925-05-12"^^xsd:date; + base:person\#family_name "Napoleão"; + base:person\#first_name "Arthur"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Artur_Napoleão_(Maio_1889)_-_Emilio_Biel_e_C.ª_(Museu_Bordalo_Pinheiro).png"; + base:person\#image_source "https://www.wikidata.org/wiki/Q265288#/media/File:Artur_Napole%C3%A3o_(Maio_1889)_-_Emilio_Biel_e_C.%C2%AA_(Museu_Bordalo_Pinheiro).png"; + base:person\#ref-IDBirthPlace base:location\/PT-Porto-00; + base:person\#ref-IDDeathPlace base:location\/BR-RdJ-00 . + +base:Nametype-Birthname a base:Nametype; + rdfs:label "Birth name"@en . + +base:person\/FisCla-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01927932"; + base:person\#GND "https://d-nb.info/gnd/172270715"; + base:person\#IDPerson "FisCla-00"; + base:person\#ISNI "https://isni.org/isni/0000000049531807"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/nr95044548"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6gm983f#resources"; + base:person\#Source """Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994, p.90-91. + +Maeder, Clara Fisher. Autobiography of Clara Fisher Maeder. Edited by Douglas Taylor. New York: The Dunlap Society, 1897, https://books.google.de/books?id=UWc7AQAAMAAJ&hl=pt-BR&pg=PA11#v=onepage&q&f=false """; + base:person\#VIAF "https://viaf.org/viaf/56504951"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5125982"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Clara_Fisher"; + base:person\#birthdate "1811-07-14"^^xsd:date; + base:person\#birthdate_max "1811-07-14"^^xsd:date; + base:person\#comment "died in Metuchen, New Jersey; Burial: Woodlawn Cemetery, New York "; + base:person\#deathdate "1898-11-12"^^xsd:date; + base:person\#deathdate_max "1898-11-12"^^xsd:date; + base:person\#family_name "Fisher"; + base:person\#first_name "Clara"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Inman,_Henry_-_Portrait_of_Clara_Fisher_-_Google_Art_Project.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q5125982#/media/File:Inman,_Henry_-_Portrait_of_Clara_Fisher_-_Google_Art_Project.jpg"; + base:person\#profession "Actress, Singing Actress, Drama teacher, Elocution teacher"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:Profession-Founder a base:Profession; + rdfs:label "Founder"@en . + +base:person\/MarMax-00 a base:person; + base:person\#GND "https://d-nb.info/gnd/132478765"; + base:person\#IDPerson "MarMax-00"; + base:person\#ISNI "https://isni.org/isni/0000000063125389"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/nr95035336"; + base:person\#Nametype base:Nametype-Birthname; + base:person\#SNAC "http://n2t.net/ark:/99166/w6j98bdf"; + base:person\#Source """Lætitia Corbière: “Les Strakosch, les Maretzek et les Grau : imprésarios moraves à New York,” https://www.transatlantic-cultures.org/pt/catalog/les-strakosch-les-maretzek-et-les-grau-impresarios-moraves-a-new-york. +# +Max Maretzek: Crotchets and Quavers: or, Revelations of an Opera Manager in America, 1855."""; + base:person\#VIAF "http://viaf.org/viaf/17548909"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q456347#sitelinks-wikipedia"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Max_Maretzek"; + base:person\#birthdate "1821-06-28"^^xsd:date; + base:person\#birthdate_max "1821-06-28"^^xsd:date; + base:person\#deathdate "1897-05-14"^^xsd:date; + base:person\#deathdate_max "1897-05-14"^^xsd:date; + base:person\#family_name "Maretzek"; + base:person\#first_name "Max"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Max_Maretzek_001.png"; + base:person\#image_source "https://de.wikipedia.org/wiki/Max_Maretzek#/media/Datei:Max_Maretzek_001.png"; + base:person\#profession "Composer, Conductor, Impresario, Founder, Manager, Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/CZ-Brno-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:MigrationReason-Family a base:MigrationReason; + rdfs:label "Family"@en . + +base:Profession-Dancer a base:Profession; + rdfs:label "Dancer"@en . + +base:InstitutionType-PrintedMedia a base:InstitutionType; + rdfs:label "Printed Media"@en . + +base:location\/PT-Liss-00 a base:location; + base:location\#City base:City-Lisbon; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Portugal; + base:location\#GeoNamesID "2267057"; + base:location\#IDLocation "PT-Liss-00"; + base:location\#latitude 3.87167e1; + base:location\#longitude -9.16667e0; + base:location\#wikidata "Q597"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Lisbon" . + +base:RelationshipType-other a base:RelationshipType; + rdfs:label "other"@en . + +base:Profession-Manager a base:Profession; + rdfs:label "Manager"@en . + +base:location\/USA-00 a base:location; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "6252001"; + base:location\#IDLocation "USA-00"; + base:location\#latitude 4.0e1; + base:location\#longitude -1.0e2; + base:location\#wikidata "Q30"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/United_States" . + +base:location\/PL-WA-00 a base:location; + base:location\#City base:City-Warsaw; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Poland; + base:location\#GeoNamesID "756135"; + base:location\#IDLocation "PL-WA-00"; + base:location\#latitude 5.22333e1; + base:location\#longitude 2.10167e1; + base:location\#wikidata "Q270"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Warsaw" . + +base:person\/LinJen-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01322611"; + base:person\#GND "https://d-nb.info/gnd/118780026"; + base:person\#IDPerson "LinJen-00"; + base:person\#ISNI "https://isni.org/isni/0000000079779109"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n80024529"; + base:person\#Nametype base:Nametype-Pseudonym\%2FStagename; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w61c23kj"; + base:person\#Source """Henry Scott Holland, W. S. Rockstro: Jenny Lind. Ihre Laufbahn als Künstlerin. 1820 bis 1851. Band I. F. A. Brockhaus, Leipzig 1891; Jenny Lind. Ihre Laufbahn als Künstlerin. 1820 bis 1851. Zweiter Band (1891). + +Ellis Island records, Passenger Record: Jenny Lind arrived in America in 1850, her companions, Giovanni Belletti and Julius Benedict, were also on the passenger list. https://heritage.statueofliberty.org/passenger-details/czoxMzoiOTAxMTk5OTYwNjk2NSI7/czo4OiJtYW5pZmVzdCI7#passengerListAnchor. """; + base:person\#VIAF "https://viaf.org/viaf/74649260"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q231345"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Jenny_Lind"; + base:person\#birthdate "1820-10-06"^^xsd:date; + base:person\#birthdate_max "1820-10-06"^^xsd:date; + base:person\#comment "From 1850 to 1852 she went on a grand tour of the USA organised by P. T. Barnum, where she was to perform in 150 concerts, at a fee of $1,000 per performance; however, she reneged on her contract after some time, paid Barnum compensation of $30,000, and gave the last 60 concerts on her own meaning that she now no longer had to share the income with Barnum and could donate all the more money to charity (in the USA, but also later in Sweden and Great Britain)."; + base:person\#deathdate "1887-11-02"^^xsd:date; + base:person\#deathdate_max "1887-11-02"^^xsd:date; + base:person\#family_name "Lind"; + base:person\#first_name "Jenny"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Jenny_lind_colour.jpg"; + base:person\#image_source "https://de.wikipedia.org/wiki/Jenny_Lind#/media/Datei:Jenny_lind_colour.jpg"; + base:person\#profession "Singer, Actor, Theatre Teacher"; + base:person\#ref-IDBirthPlace base:location\/SE-Stock-00; + base:person\#ref-IDDeathPlace base:location\/UK-Malv-00; + base:person\#religion "Protestantism" . + +base:person\/WhiBla-00 a base:person; + base:person\#Birth_Info "other sources: 12 March 1844"; + base:person\#Death_Info "other sources: 26 November 1936"; + base:person\#GND "https://d-nb.info/gnd/1250084199"; + base:person\#IDPerson "WhiBla-00"; + base:person\#ISNI "https://isni.org/isni/0000000057213673"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no2009043651"; + base:person\#Nametype base:Nametype-Marriage; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cv7gf4#resources"; + base:person\#Source """# +Passenger Search of The Statue of Liberty - Ellis Island Foundation: Blanche Whiffen, login required, https://heritage.statueofliberty.org/passenger-result. +# +Blanche Whiffen: Keeping off the shelf, New York, Dutton 1928. +# +Internet Broadway Database(ed.): Mrs. Thomas Whiffen in Broadway, https://www.ibdb.com/broadway-cast-staff/mrs-thomas-whiffen-69049. +# +A Glimpse of Theater History, MRS. WHIFFEN, in Internet Archive, https://web.archive.org/web/20061029072816/http://www.wayneturney.20m.com/whiffenmrs.htm. """; + base:person\#VIAF "https://viaf.org/viaf/83621425"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q83526"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Blanche_Whiffen"; + base:person\#birthdate "1845-03-12"^^xsd:date; + base:person\#birthdate_max "1845-03-12"^^xsd:date; + base:person\#comment " Burial: Cremated, Specifically: Location of ashes is unknown, but possibly in England. "; + base:person\#deathdate "1936-11-25"^^xsd:date; + base:person\#deathdate_max "1936-11-25"^^xsd:date; + base:person\#family_name "Galton Whiffen"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Whiffin_Blanche.JPG"; + base:person\#image_source "https://en.wikipedia.org/wiki/Blanche_Whiffen#/media/File:Blanche_Whiffin_1.JPG"; + base:person\#profession "Actor"; + base:person\#ref-IDBirthPlace base:location\/UK-LDN-00; + base:person\#ref-IDDeathPlace base:location\/USA-Virg-00 . + +base:EmploymentType-Other a base:EmploymentType; + rdfs:label "Other"@en . + +base:person\/ArrBla-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/124787827"; + base:person\#IDPerson "ArrBla-00"; + base:person\#ISNI "https://isni.org/isni/0000000050347185"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/no89010654 "; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6sr3mtw#resources"; + base:person\#Source """Arral, Blanche: The Extraordinary Operatic Adventures of Blanche Arral. Portland, Cambridge: Amadeus Press, 2002. +Karl-Josef Kutsch, Leo Riemens: Großes Sängerlexikon, Bern: Saur 2003, p. 158-159. +The New York Times: “Mme. Arral's Recital.: A Programme of Varied Character Given in Aeolian Hall.” 5th Novembre 1912, New York. +The New York Times: “Mme. Arral's Concert.: Operatic Airs, with Orchestral Accompaniment, Given in Carnegie Hall.”  25th Octobre 1909, New York."""; + base:person\#VIAF "https://viaf.org/viaf/2679689/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q881398"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Blanche_Arral"; + base:person\#birthdate "1864-10-10"^^xsd:date; + base:person\#birthdate_max "1864-10-10"^^xsd:date; + base:person\#comment "In 1908, she met American author Jack London and his wife in Suva, Fiji, after which London later gave her a brief mention as Lucille Arral in his novella Smoke Bellew."; + base:person\#deathdate "1945-03-03"^^xsd:date; + base:person\#deathdate_max "1945-03-03"^^xsd:date; + base:person\#family_name "Arral"; + base:person\#first_name "Blanche"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/BlancheArral1909.jpg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q881398#/media/File:BlancheArral1909.jpg "; + base:person\#ref-IDBirthPlace base:location\/BE-Lieg-00; + base:person\#ref-IDDeathPlace base:location\/USA-NJ-01 . + +base:person\/MonLol-00 a base:person; + base:person\#CERL "https://data.cerl.org/thesaurus/cnp01319580"; + base:person\#GND "https://d-nb.info/gnd/118583719"; + base:person\#IDPerson "MonLol-00"; + base:person\#ISNI "https://isni.org/isni/0000000063026460"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n50004180"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6sx6fkj"; + base:person\#VIAF "https://viaf.org/viaf/67257793"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q161154"; + base:person\#birthdate "1821-02-17"^^xsd:date; + base:person\#birthdate_max "1821-02-17"^^xsd:date; + base:person\#comment "Marita Krauss: “Ich habe dem starken Geschlecht überall den Fehdehandschuh hingeworfen”. Das Leben der Lola Montez, München: C.H. Beck, 22021."; + base:person\#deathdate "1861-01-17"^^xsd:date; + base:person\#deathdate_max "1861-01-17"^^xsd:date; + base:person\#family_name "Montez"; + base:person\#first_name "Lola"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/placeholder_t_mig_2024.png"; + base:person\#profession "Dancer,Actress"; + base:person\#ref-IDBirthPlace base:location\/IE-Grang-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/MirCar-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "http://d-nb.info/gnd/118899252"; + base:person\#IDPerson "MirCar-00"; + base:person\#ISNI "https://isni.org/isni/0000000449432103 "; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "-"; + base:person\#SNAC "https://snaccooperative.org/view/29317775#resources "; + base:person\#Source "CASTRO, Ruy. Carmen: uma biografia. São Paulo: Companhia das Letras, 2005."; + base:person\#VIAF "http://viaf.org/viaf/309804448 "; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q121655 "; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Carmen_Miranda"; + base:person\#birthdate "1909-02-09"^^xsd:date; + base:person\#birthdate_max "1909-02-09"^^xsd:date; + base:person\#deathdate "1955-08-05"^^xsd:date; + base:person\#deathdate_max "1955-08-05"^^xsd:date; + base:person\#family_name "Miranda"; + base:person\#first_name "Carmen"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Carmen_Miranda_1941.jpeg"; + base:person\#image_source "https://www.wikidata.org/wiki/Q121655#/media/File:Carmen_Miranda_1941.JPG "; + base:person\#ref-IDBirthPlace base:location\/PT-Porto-00; + base:person\#ref-IDDeathPlace base:location\/USA-Holly-00; + base:person\#religion "Christian" . + +base:person\/BenCha-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/138342660"; + base:person\#IDPerson "BenCha-00"; + base:person\#ISNI "https://isni.org/isni/0000000107750195"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n87860281"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6cv4t7f"; + base:person\#Source """https://de.wikipedia.org/wiki/Charles_Bennett_(Autor) + +Bennett, Charles. Hitchcock's Partner in Suspense: The Life of Screenwriter Charles Bennett. University Press of Kentucky, 2014. https://www-jstor-org.emedien.ub.uni-muenchen.de/stable/j.ctt5vkkwb +"""; + base:person\#VIAF "https://viaf.org/viaf/106977894"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q329009"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Charles_Bennett_(screenwriter)"; + base:person\#birthdate "1899-08-02"^^xsd:date; + base:person\#birthdate_max "1899-08-02"^^xsd:date; + base:person\#deathdate "1995-06-15"^^xsd:date; + base:person\#deathdate_max "1995-06-15"^^xsd:date; + base:person\#family_name "Bennett"; + base:person\#first_name "Charles"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Charles Bennet.webp"; + base:person\#image_source "https://www.themoviedb.org/person/3599-charles-bennett "; + base:person\#profession "Playwright, screenwriter"; + base:person\#ref-IDBirthPlace base:location\/UK-ShorSea-00; + base:person\#ref-IDDeathPlace base:location\/USA-LA-00 . + +base:Profession-Other a base:Profession; + rdfs:label "Other"@en . + +base:InstitutionType- a base:InstitutionType; + rdfs:label ""@en . + +base:person\/MarJul-00 a base:person; + base:person\#Birth_Info """other sources: 17 or 27 August 1866 + +"""; + base:person\#GND "https://d-nb.info/gnd/1271165740"; + base:person\#IDPerson "MarJul-00"; + base:person\#ISNI "https://isni.org/isni/0000000026435097"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n82143187"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6pk0k2t"; + base:person\#Source """Litoff, Judy Barrett, and Judith McDonnell. European immigrant women in the United States: a biographical dictionary. New York & London: Garland Publishing: 1994. +# +\"Marlowe, Julia\" Notable American Women, Vol. 2, 4th ed., The Belknap Press of Harvard University Press, 1975. +John D. Barry: Julia Marlowe. Boston: R. G. Badger, 1899. +Charles Edward Russell: Julia Marlowe, Her Life and Art, New York: D. Appleton and company, 1926. +Julia Marlowe and E. H. Sothern: Julia Marlowe's Story, edited by Fairfax Downey, New York: Rinehart, 1954. +Sothern and Marlowe papers (1860-1950), held by the Billy Rose Theatre Division, New York Public Library for the Performing Arts, https://archives.nypl.org/mss/2820. +Guide to the Edward Albert Filene papers, 1918-1937 P-164, Part of the American Jewish Historical Society Repository, 2009, https://archives.cjh.org/repositories/3/resources/2799. +Margherita Arlina Hamm: Eminent Actors in Their Homes, New York: 1902. +Garff B. Wilson: A History of American Acting, Bloomington Indiana University Press, 1966. +William Winter: Vagrant Memories, New York: 1915, repr. New York: 1970. +William C. Young: Famous Actors and Actresses on the American Stage, Vol. 2. New York: 1975. +Julia Marlowe: \"How to Succeed on the Stage,\" Metropolitan: September 1909, pp. 287–288. +Women in World History: A Biographical Encyclopedia of Marlowe, Julia (1866–1950), https://www.encyclopedia.com/women/encyclopedias-almanacs-transcripts-and-maps/marlowe-julia-1866-1950. """; + base:person\#VIAF "https://viaf.org/viaf/23494416/"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q6306561"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Julia_Marlowe"; + base:person\#birthdate "1865-08-17"^^xsd:date; + base:person\#birthdate_max "1865-08-17"^^xsd:date; + base:person\#comment "Burial: Brompton Cemetery, Royal Borough of Kensington and Chelsea, Greater London, England "; + base:person\#deathdate "1950-11-12"^^xsd:date; + base:person\#deathdate_max "1950-11-12"^^xsd:date; + base:person\#family_name "Marlow"; + base:person\#first_name "Julia"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/440px-Julia_Marlowe_photograph_(cropped).jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Julia_Marlowe#/media/File:Julia_Marlowe_photograph_(cropped).jpg"; + base:person\#profession "Actress"; + base:person\#ref-IDBirthPlace base:location\/UK-Caldb-00; + base:person\#ref-IDDeathPlace base:location\/USA-NY-00 . + +base:person\/BanDan-00 a base:person; + base:person\#Birth_Info "other sources: between Novembre 1839 and Decembre 1840"; + base:person\#GND "https://d-nb.info/gnd/116048441"; + base:person\#IDPerson "BanDan-00"; + base:person\#ISNI "https://isni.org/isni/000000011653075X"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "http://id.loc.gov/authorities/names/n2007051300"; + base:person\#SNAC "http://n2t.net/ark:/99166/w67955j7"; + base:person\#Source """ +Ancestry.com. (ed.): Daniel E. Bandmann, Hellgate, Montana, 1900 US Census. https://www.ancestry.de/search/categories/40/?name=Daniel++E._Bandmann&birth=1837_Kassel&birth_x=5-0-0&count=50&gender=m&name_x=_1 + +The Statue of Liberty - Ellis Island Foundation (ed.): SS Fanny Kirchner Passenger List, 11st November 1861, Daniel Bandmann. + +Christopher B. Balme: The Globalization of Theatre 1870–1930: The Theatrical Networks of Maurice E. Bandmann, Cambridge: 2019. + +Bear Bones Historians (ed.): Jewish Settlers in Montana: Daniel E. Bandmann, https://www.bearboneshistorians.org/copy-of-leslie-fiedler. + +Lisa J. Warrington: “Herr Daniel Bandmann and Shakespeare vs the World,” in Theatrescapes Global Media and Translocal Publics (1850-1950), 2016, Vol. 1 No. 2, pp.56-70. + +Nicole Anae: “The German-Jew that Bandmann Drew: Daniel E. Bandmann’s Shylock on the Australian Colonial Stage, 1869–1870,” in Special Issue On Shakespeare And Ben Jonson, Vol. 12, 2016, pp. 389-410, https://www.tandfonline.com/doi/abs/10.1080/17450918.2016.1196723?journalCode=rshk20. + +North China Herald. 12rd May 1882, p.498, pp.515-516: https://archive.org/details/north-china-herald-1882.05.26/page/568/mode/2up?q=Bandmann. + +James Grant Wilson (ed.): The Memorial History of the City of New-York, New York: New York History Co., 1892-93, p. 495. + +Graham, Franklin: Histrionic Montreal: Annals of the Montreal stage, with biographical and critical notices of the plays and players of a century, Montreal: J. Lovell, 1902, p. 240-p.243"""; + base:person\#VIAF "http://viaf.org/viaf/59826007"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q5217035"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Daniel_E._Bandmann"; + base:person\#birthdate "1837-11-01"^^xsd:date; + base:person\#birthdate_max "1837-11-01"^^xsd:date; + base:person\#deathdate "1905-11-23"^^xsd:date; + base:person\#deathdate_max "1905-11-23"^^xsd:date; + base:person\#family_name "Bandmann"; + base:person\#first_name "Daniel Edward"; + base:person\#gender base:Gender-male; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Harvard_Theatre_Collection_-_D._E._Bandmann_TCS_1.1050_-_cropped.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/Daniel_E._Bandmann#/media/File:Harvard_Theatre_Collection_-_D._E._Bandmann_TCS_1.1050_-_cropped.jpg"; + base:person\#profession "Actor, Manager, Rancher"; + base:person\#ref-IDBirthPlace base:location\/GER-Kas-00; + base:person\#ref-IDDeathPlace base:location\/USA-MtEastMis-00; + base:person\#religion "Jewish" . + +base:InstitutionType-TravelingCompany a base:InstitutionType; + rdfs:label "Traveling Company"@en . + +base:RelationshipType-friendship a base:RelationshipType; + rdfs:label "friendship"@en . + +base:InstitutionType-Company a base:InstitutionType; + rdfs:label "Company"@en . + +base:location\/BR-RdJ-00 a base:location; + base:location\#City base:City-RiodeJaneiro; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Brazil; + base:location\#GeoNamesID "3451190"; + base:location\#IDLocation "BR-RdJ-00"; + base:location\#latitude -2.29114e1; + base:location\#longitude -4.32059e1; + base:location\#wikidata "Q8678"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Rio_de_Janeiro" . + +base:location\/FR-PARIS-00 a base:location; + base:location\#City base:City-Paris; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-France; + base:location\#GeoNamesID "2988507"; + base:location\#IDLocation "FR-PARIS-00"; + base:location\#latitude 4.88566e1; + base:location\#longitude 2.35222e0; + base:location\#wikidata "Q90"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Paris" . + +base:location\/GER-BER-00 a base:location; + base:location\#City base:City-Berlin; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Germany; + base:location\#GeoNamesID "2950159"; + base:location\#IDLocation "GER-BER-00"; + base:location\#latitude 5.252e1; + base:location\#longitude 1.3405e1; + base:location\#wikidata "Q64"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Berlin" . + +base:Country-USA a base:Country; + rdfs:label "USA"@en . + +base:Continent-NorthAmerica a base:Continent; + rdfs:label "North America"@en . + +base:Profession-Director a base:Profession; + rdfs:label "Director"@en . + +base:location\/AT-VIE-00 a base:location; + base:location\#City base:City-Vienna; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-Austria; + base:location\#GeoNamesID "2761369"; + base:location\#IDLocation "AT-VIE-00"; + base:location\#latitude 4.821e1; + base:location\#longitude 1.63634e1; + base:location\#wikidata "Q1741"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Vienna" . + +base:MigrationReason-Labour a base:MigrationReason; + rdfs:label "Labour"@en . + +base:EmploymentType-Guest a base:EmploymentType; + rdfs:label "Guest"@en . + +base:ImportSource-TauCooperation a base:ImportSource; + rdfs:label "Tau Cooperation"@en . + +base:location\/UK-LDN-00 a base:location; + base:location\#City base:City-London; + base:location\#Continent base:Continent-Europe; + base:location\#Country base:Country-England\%28UK\%29; + base:location\#GeoNamesID "2643743"; + base:location\#IDLocation "UK-LDN-00"; + base:location\#latitude 5.15072e1; + base:location\#longitude -1.275e-1; + base:location\#wikidata "Q84"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/London" . + +base:Continent-Europe a base:Continent; + rdfs:label "Europe"@en . + +base:Nametype- a base:Nametype; + rdfs:label ""@en . + +base:RelationshipType- a base:RelationshipType; + rdfs:label ""@en . + +base:InstitutionType-Theatre a base:InstitutionType; + rdfs:label "Theatre"@en . + +base:Gender-female a base:Gender; + rdfs:label "female"@en . + +base:location\/ARG-BA-00 a base:location; + base:location\#City base:City-BuenosAires; + base:location\#Continent base:Continent-SouthAmerica; + base:location\#Country base:Country-Argentina; + base:location\#GeoNamesID "3435910"; + base:location\#IDLocation "ARG-BA-00"; + base:location\#latitude -3.45997e1; + base:location\#longitude -5.83819e1; + base:location\#wikidata "Q1486"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/Buenos_Aires" . + +base:EmploymentType-Permanent a base:EmploymentType; + rdfs:label "Permanent"@en . + +base:location\/USA-NY-00 a base:location; + base:location\#City base:City-NewYork; + base:location\#Continent base:Continent-NorthAmerica; + base:location\#Country base:Country-USA; + base:location\#GeoNamesID "5128581"; + base:location\#IDLocation "USA-NY-00"; + base:location\#State base:State-NewYork; + base:location\#latitude 4.07128e1; + base:location\#longitude -7.40061e1; + base:location\#wikidata "Q60"; + base:location\#wikipedia "https://en.wikipedia.org/wiki/New_York_City" . + +base:Profession-Singer a base:Profession; + rdfs:label "Singer"@en . + +base:person\/ModHel-00 a base:person; + base:person\#CERL "-"; + base:person\#GND "https://d-nb.info/gnd/118992023"; + base:person\#IDPerson "ModHel-00"; + base:person\#ISNI "https://isni.org/isni/0000000109098508"; + base:person\#Importsource base:ImportSource-Own; + base:person\#LCCN "https://lccn.loc.gov/n79105715"; + base:person\#SNAC "https://snaccooperative.org/ark:/99166/w6bg2sv7"; + base:person\#Source """Helena Modjeska: Memories and Impressions of Helena Modjeska: An Autobiography, New York and London: Benjamin Blom, 1910. +Helena Modrzejewska: Listy, Vol. 1 and 2, ed. by Alicja Kędziora and Emil Orzechowski. Warszawa: PIW 2015. +Beth Holmgren: Starring Madame Modjeska: On Tour in Poland and America, Bloomington: Indiana University Press, 2012.  +Helena Modjeska: US Theatrical Tours, From 1877-1907, Polish actress Helena Modjeska toured the United States and Canada. Explore these maps to learn about her historic career. Hosted by OC Parks. October 8, 2022: https://storymaps.arcgis.com/stories/385c21595f534869ad9a64a1349c0c0d +\"Helena Modjeska scrapbook\" Volume 1, The New York Public Library Digital Collections. 1877 - 1898. Billy Rose Theatre Division, The New York Public Library. https://digitalcollections.nypl.org/items/56fa7820-fd8e-0132-8cd4-58d385a7bbd0 +\"Helena Modjeska scrapbook\" Volume 2, The New York Public Library Digital Collections. 1878 - 1897. Billy Rose Theatre Division, The New York Public Library. https://digitalcollections.nypl.org/items/6a39f2b0-fd8e-0132-d628-58d385a7bbd0 +"""; + base:person\#VIAF "https://viaf.org/viaf/64807810"; + base:person\#Wikidata "https://www.wikidata.org/wiki/Q454653"; + base:person\#Wikipedia "https://en.wikipedia.org/wiki/Helena_Modjeska"; + base:person\#birthdate "1840-10-12"^^xsd:date; + base:person\#birthdate_max "1840-10-12"^^xsd:date; + base:person\#comment "Bay Island, Newport Beach, near Los Angeles her body was returned to Poland for the burial at Rakowicky Cemetery, Cracow"; + base:person\#deathdate "1909-04-08"^^xsd:date; + base:person\#deathdate_max "1909-04-08"^^xsd:date; + base:person\#family_name "Modjeska"; + base:person\#first_name "Helena"; + base:person\#gender base:Gender-female; + base:person\#imageURL "https://www.t-migrants.gwi.uni-muenchen.de/wp-content/uploads/images/Helena_Modjeska_ca._1890_by_Sarony_(Gardner_Mus_ARC006444)_-_crop.jpg"; + base:person\#image_source "https://en.wikipedia.org/wiki/File:Helena_Modjeska_ca._1890_by_Sarony_(Gardner_Mus_ARC006444)_-_crop.jpg"; + base:person\#profession "Stage director, Actress"; + base:person\#ref-IDBirthPlace base:location\/PL-Krak-00; + base:person\#ref-IDDeathPlace base:location\/USA-LA-00; + base:person\#religion "Catholic" . + +base:Profession- a base:Profession; + rdfs:label ""@en . + +base:RelationshipType-work a base:RelationshipType; + rdfs:label "work"@en . + +base:ImportSource-Own a base:ImportSource; + rdfs:label "Own"@en . + +base:Gender-male a base:Gender; + rdfs:label "male"@en . + +base:Profession-Actor a base:Profession; + rdfs:label "Actor"@en . + +base:EmploymentType-Tour a base:EmploymentType; + rdfs:label "Tour"@en . diff --git a/map/step-01.rb b/map/step-01.rb index 1779743..7266c7c 100644 --- a/map/step-01.rb +++ b/map/step-01.rb @@ -66,8 +66,12 @@ def row_iri(table, pk_value) RDF::URI.new("#{BASE_IRI}#{table}/#{URI.encode_www_form_component(pk_value.to_s)}") end +def sanitize_name(name) + name.to_s.gsub(/[^a-zA-Z0-9_-]/, '_').gsub(/_+/, '_').gsub(/\A_+|_+\z/, '') +end + def column_iri(table, column) - RDF::URI.new("#{BASE_IRI}#{table}##{column}") + RDF::URI.new("#{BASE_IRI}#{table}##{sanitize_name(column)}") end def class_iri(table) @@ -75,7 +79,7 @@ def class_iri(table) end def ref_iri(table, fk_col) - RDF::URI.new("#{BASE_IRI}#{table}#ref-#{fk_col}") + RDF::URI.new("#{BASE_IRI}#{table}#ref-#{sanitize_name(fk_col)}") end def to_rdf_literal(value) @@ -124,11 +128,10 @@ PRIMARY_KEYS.each do |table, pk_col| end end -output_path = File.expand_path('../graph-01.ttl', __dir__) +output_path = File.expand_path('../data/graph-01.ttl', __dir__) RDF::Turtle::Writer.open(output_path, prefixes: { - rdf: RDF.to_uri, - xsd: RDF::XSD.to_uri, - base: RDF::URI.new(BASE_IRI) + rdf: RDF.to_uri, + xsd: RDF::XSD.to_uri }) do |writer| graph.each_statement { |stmt| writer << stmt } end diff --git a/map/step-02.rb b/map/step-02.rb new file mode 100644 index 0000000..155237e --- /dev/null +++ b/map/step-02.rb @@ -0,0 +1,38 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Step 2: Transform literal values into RDF objects using SPARQL UPDATE queries + +require 'rdf' +require 'rdf/turtle' +require 'sparql' + +input_path = File.expand_path('../data/graph-01.ttl', __dir__) +output_path = File.expand_path('../data/graph-02.ttl', __dir__) +updates_dir = File.expand_path('../updates', __dir__) + +puts "Loading graph from #{input_path}..." +graph = RDF::Graph.load(input_path) +puts "Loaded #{graph.count} triples." + +Dir.glob(File.join(updates_dir, '*.rq')).sort.each do |query_file| + query = File.read(query_file) + name = File.basename(query_file) + + before = graph.count + SPARQL.execute(query, graph, update: true) + after = graph.count + puts "Applied #{name}: #{before} -> #{after} triples (#{after - before >= 0 ? '+' : ''}#{after - before})" +end + +puts "Writing #{graph.count} triples to #{output_path}..." +RDF::Turtle::Writer.open(output_path, prefixes: { + rdf: RDF.to_uri, + rdfs: RDF::RDFS.to_uri, + xsd: RDF::XSD.to_uri, + base: RDF::URI.new('http://example.org/migrants/') +}) do |writer| + graph.each_statement { |stmt| writer << stmt } +end + +puts "Done." diff --git a/updates/001-location-continent.rq b/updates/001-location-continent.rq new file mode 100644 index 0000000..1a8902d --- /dev/null +++ b/updates/001-location-continent.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Continent-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/002-location-country.rq b/updates/002-location-country.rq new file mode 100644 index 0000000..604034e --- /dev/null +++ b/updates/002-location-country.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Country-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/003-location-state.rq b/updates/003-location-state.rq new file mode 100644 index 0000000..6f155b4 --- /dev/null +++ b/updates/003-location-state.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/State-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/004-location-city.rq b/updates/004-location-city.rq new file mode 100644 index 0000000..f964571 --- /dev/null +++ b/updates/004-location-city.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/City-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/005-migration_table-reason.rq b/updates/005-migration_table-reason.rq new file mode 100644 index 0000000..74460fc --- /dev/null +++ b/updates/005-migration_table-reason.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/MigrationReason-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/006-migration_table-reason2.rq b/updates/006-migration_table-reason2.rq new file mode 100644 index 0000000..149fa8d --- /dev/null +++ b/updates/006-migration_table-reason2.rq @@ -0,0 +1,15 @@ +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/MigrationReason-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/007-organisation-insttype.rq b/updates/007-organisation-insttype.rq new file mode 100644 index 0000000..4b7abab --- /dev/null +++ b/updates/007-organisation-insttype.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/InstitutionType-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/008-person-gender.rq b/updates/008-person-gender.rq new file mode 100644 index 0000000..5cd0f0e --- /dev/null +++ b/updates/008-person-gender.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Gender-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/009-person-nametype.rq b/updates/009-person-nametype.rq new file mode 100644 index 0000000..3498326 --- /dev/null +++ b/updates/009-person-nametype.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Nametype-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/010-person-importsource.rq b/updates/010-person-importsource.rq new file mode 100644 index 0000000..156a37c --- /dev/null +++ b/updates/010-person-importsource.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/ImportSource-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/011-person_profession-eprofession.rq b/updates/011-person_profession-eprofession.rq new file mode 100644 index 0000000..b981c9a --- /dev/null +++ b/updates/011-person_profession-eprofession.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Profession-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/012-personnames-nametype.rq b/updates/012-personnames-nametype.rq new file mode 100644 index 0000000..46d72ff --- /dev/null +++ b/updates/012-personnames-nametype.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Nametype-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/013-relationship-relationshiptype.rq b/updates/013-relationship-relationshiptype.rq new file mode 100644 index 0000000..f053d87 --- /dev/null +++ b/updates/013-relationship-relationshiptype.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/RelationshipType-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/014-relationship-relationshiptype_precise.rq b/updates/014-relationship-relationshiptype_precise.rq new file mode 100644 index 0000000..9baf47a --- /dev/null +++ b/updates/014-relationship-relationshiptype_precise.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/RelationshipTypePrecise-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/015-religions-religion.rq b/updates/015-religions-religion.rq new file mode 100644 index 0000000..3419afb --- /dev/null +++ b/updates/015-religions-religion.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Religion-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/016-work-profession.rq b/updates/016-work-profession.rq new file mode 100644 index 0000000..86264eb --- /dev/null +++ b/updates/016-work-profession.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Profession-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/017-work-profession2.rq b/updates/017-work-profession2.rq new file mode 100644 index 0000000..36fde56 --- /dev/null +++ b/updates/017-work-profession2.rq @@ -0,0 +1,15 @@ +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Profession-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/018-work-profession3.rq b/updates/018-work-profession3.rq new file mode 100644 index 0000000..31c6d91 --- /dev/null +++ b/updates/018-work-profession3.rq @@ -0,0 +1,15 @@ +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/Profession-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +} diff --git a/updates/019-work-employmenttype.rq b/updates/019-work-employmenttype.rq new file mode 100644 index 0000000..b619f7d --- /dev/null +++ b/updates/019-work-employmenttype.rq @@ -0,0 +1,16 @@ + +PREFIX rdfs: + +DELETE { + ?s ?val . +} +INSERT { + ?s ?obj . + ?obj a . + ?obj rdfs:label ?label . +} +WHERE { + ?s ?val . + BIND(IRI(CONCAT("http://example.org/migrants/EmploymentType-", ENCODE_FOR_URI(REPLACE(?val, " ", "")))) AS ?obj) + BIND(STRLANG(STR(?val), "en") AS ?label) +}